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.
 
 
 

37645 líneas
946 KiB

  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. "mammal"
  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. "mammal"
  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. "canine"
  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", "demon"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["mammal"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mammal"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. }
  1619. //species
  1620. function getSpeciesInfo(speciesList) {
  1621. let result = new Set();
  1622. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1623. result.add(entry)
  1624. });
  1625. return Array.from(result);
  1626. };
  1627. function getSpeciesInfoHelper(species) {
  1628. if (!speciesData[species]) {
  1629. console.warn(species + " doesn't exist");
  1630. return [];
  1631. }
  1632. if (speciesData[species].parents) {
  1633. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1634. } else {
  1635. return [species];
  1636. }
  1637. }
  1638. characterMakers.push(() => makeCharacter(
  1639. {
  1640. name: "Fen",
  1641. species: ["crux"],
  1642. description: {
  1643. title: "Bio",
  1644. text: "Very furry. Sheds on everything."
  1645. },
  1646. tags: [
  1647. "anthro",
  1648. "goo"
  1649. ]
  1650. },
  1651. {
  1652. back: {
  1653. height: math.unit(2.2428, "meter"),
  1654. weight: math.unit(124.738, "kg"),
  1655. name: "Back",
  1656. image: {
  1657. source: "./media/characters/fen/back.svg",
  1658. extra: 2024 / 1867,
  1659. bottom: 13 / 2037
  1660. },
  1661. info: {
  1662. description: {
  1663. mode: "append",
  1664. text: "\n\nHe is not currently looking at you."
  1665. }
  1666. }
  1667. },
  1668. full: {
  1669. height: math.unit(1.34, "meter"),
  1670. weight: math.unit(225, "kg"),
  1671. name: "Full",
  1672. image: {
  1673. source: "./media/characters/fen/full.svg"
  1674. },
  1675. info: {
  1676. description: {
  1677. mode: "append",
  1678. text: "\n\nMunch."
  1679. }
  1680. }
  1681. },
  1682. kneeling: {
  1683. height: math.unit(5.4, "feet"),
  1684. weight: math.unit(124.738, "kg"),
  1685. name: "Kneeling",
  1686. image: {
  1687. source: "./media/characters/fen/kneeling.svg",
  1688. extra: 563 / 507
  1689. }
  1690. },
  1691. goo: {
  1692. height: math.unit(2.8, "feet"),
  1693. weight: math.unit(125, "kg"),
  1694. capacity: math.unit(1, "people"),
  1695. name: "Goo",
  1696. image: {
  1697. source: "./media/characters/fen/goo.svg",
  1698. bottom: 116 / 613
  1699. }
  1700. },
  1701. lounging: {
  1702. height: math.unit(6.5, "feet"),
  1703. weight: math.unit(125, "kg"),
  1704. name: "Lounging",
  1705. image: {
  1706. source: "./media/characters/fen/lounging.svg"
  1707. }
  1708. },
  1709. },
  1710. [
  1711. {
  1712. name: "Normal",
  1713. height: math.unit(2.2428, "meter")
  1714. },
  1715. {
  1716. name: "Big",
  1717. height: math.unit(12, "feet")
  1718. },
  1719. {
  1720. name: "Minimacro",
  1721. height: math.unit(40, "feet"),
  1722. default: true,
  1723. info: {
  1724. description: {
  1725. mode: "append",
  1726. text: "\n\nTOO DAMN BIG"
  1727. }
  1728. }
  1729. },
  1730. {
  1731. name: "Macro",
  1732. height: math.unit(100, "feet"),
  1733. info: {
  1734. description: {
  1735. mode: "append",
  1736. text: "\n\nTOO DAMN BIG"
  1737. }
  1738. }
  1739. },
  1740. {
  1741. name: "Macro+",
  1742. height: math.unit(300, "feet")
  1743. },
  1744. {
  1745. name: "Megamacro",
  1746. height: math.unit(2, "miles")
  1747. }
  1748. ]
  1749. ))
  1750. characterMakers.push(() => makeCharacter(
  1751. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1752. {
  1753. front: {
  1754. height: math.unit(183, "cm"),
  1755. weight: math.unit(80, "kg"),
  1756. name: "Front",
  1757. image: {
  1758. source: "./media/characters/sofia-fluttertail/front.svg",
  1759. bottom: 0.01,
  1760. extra: 2154 / 2081
  1761. }
  1762. },
  1763. frontAlt: {
  1764. height: math.unit(183, "cm"),
  1765. weight: math.unit(80, "kg"),
  1766. name: "Front (alt)",
  1767. image: {
  1768. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1769. }
  1770. },
  1771. back: {
  1772. height: math.unit(183, "cm"),
  1773. weight: math.unit(80, "kg"),
  1774. name: "Back",
  1775. image: {
  1776. source: "./media/characters/sofia-fluttertail/back.svg"
  1777. }
  1778. },
  1779. kneeling: {
  1780. height: math.unit(125, "cm"),
  1781. weight: math.unit(80, "kg"),
  1782. name: "Kneeling",
  1783. image: {
  1784. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1785. extra: 1033 / 977,
  1786. bottom: 23.7 / 1057
  1787. }
  1788. },
  1789. maw: {
  1790. height: math.unit(183 / 5, "cm"),
  1791. name: "Maw",
  1792. image: {
  1793. source: "./media/characters/sofia-fluttertail/maw.svg"
  1794. }
  1795. },
  1796. mawcloseup: {
  1797. height: math.unit(183 / 5 * 0.41, "cm"),
  1798. name: "Maw (Closeup)",
  1799. image: {
  1800. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1801. }
  1802. },
  1803. paws: {
  1804. height: math.unit(1.17, "feet"),
  1805. name: "Paws",
  1806. image: {
  1807. source: "./media/characters/sofia-fluttertail/paws.svg",
  1808. extra: 851 / 851,
  1809. bottom: 17 / 868
  1810. }
  1811. },
  1812. },
  1813. [
  1814. {
  1815. name: "Normal",
  1816. height: math.unit(1.83, "meter")
  1817. },
  1818. {
  1819. name: "Size Thief",
  1820. height: math.unit(18, "feet")
  1821. },
  1822. {
  1823. name: "50 Foot Collie",
  1824. height: math.unit(50, "feet")
  1825. },
  1826. {
  1827. name: "Macro",
  1828. height: math.unit(96, "feet"),
  1829. default: true
  1830. },
  1831. {
  1832. name: "Megamerger",
  1833. height: math.unit(650, "feet")
  1834. },
  1835. ]
  1836. ))
  1837. characterMakers.push(() => makeCharacter(
  1838. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1839. {
  1840. front: {
  1841. height: math.unit(7, "feet"),
  1842. weight: math.unit(100, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/march/front.svg",
  1846. extra: 1,
  1847. bottom: 0.015
  1848. }
  1849. },
  1850. foot: {
  1851. height: math.unit(0.9, "feet"),
  1852. name: "Foot",
  1853. image: {
  1854. source: "./media/characters/march/foot.svg"
  1855. }
  1856. },
  1857. },
  1858. [
  1859. {
  1860. name: "Normal",
  1861. height: math.unit(7.9, "feet")
  1862. },
  1863. {
  1864. name: "Macro",
  1865. height: math.unit(220, "meters")
  1866. },
  1867. {
  1868. name: "Megamacro",
  1869. height: math.unit(2.98, "km"),
  1870. default: true
  1871. },
  1872. {
  1873. name: "Gigamacro",
  1874. height: math.unit(15963, "km")
  1875. },
  1876. {
  1877. name: "Teramacro",
  1878. height: math.unit(2980000000, "km")
  1879. },
  1880. {
  1881. name: "Examacro",
  1882. height: math.unit(250, "parsecs")
  1883. },
  1884. ]
  1885. ))
  1886. characterMakers.push(() => makeCharacter(
  1887. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1888. {
  1889. front: {
  1890. height: math.unit(6, "feet"),
  1891. weight: math.unit(60, "kg"),
  1892. name: "Front",
  1893. image: {
  1894. source: "./media/characters/noir/front.svg",
  1895. extra: 1,
  1896. bottom: 0.032
  1897. }
  1898. },
  1899. },
  1900. [
  1901. {
  1902. name: "Normal",
  1903. height: math.unit(6.6, "feet")
  1904. },
  1905. {
  1906. name: "Macro",
  1907. height: math.unit(500, "feet")
  1908. },
  1909. {
  1910. name: "Megamacro",
  1911. height: math.unit(2.5, "km"),
  1912. default: true
  1913. },
  1914. {
  1915. name: "Gigamacro",
  1916. height: math.unit(22500, "km")
  1917. },
  1918. {
  1919. name: "Teramacro",
  1920. height: math.unit(2500000000, "km")
  1921. },
  1922. {
  1923. name: "Examacro",
  1924. height: math.unit(200, "parsecs")
  1925. },
  1926. ]
  1927. ))
  1928. characterMakers.push(() => makeCharacter(
  1929. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1930. {
  1931. front: {
  1932. height: math.unit(7, "feet"),
  1933. weight: math.unit(100, "kg"),
  1934. name: "Front",
  1935. image: {
  1936. source: "./media/characters/okuri/front.svg",
  1937. extra: 1,
  1938. bottom: 0.037
  1939. }
  1940. },
  1941. back: {
  1942. height: math.unit(7, "feet"),
  1943. weight: math.unit(100, "kg"),
  1944. name: "Back",
  1945. image: {
  1946. source: "./media/characters/okuri/back.svg",
  1947. extra: 1,
  1948. bottom: 0.007
  1949. }
  1950. },
  1951. },
  1952. [
  1953. {
  1954. name: "Megamacro",
  1955. height: math.unit(100, "miles"),
  1956. default: true
  1957. },
  1958. ]
  1959. ))
  1960. characterMakers.push(() => makeCharacter(
  1961. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1962. {
  1963. front: {
  1964. height: math.unit(7, "feet"),
  1965. weight: math.unit(100, "kg"),
  1966. name: "Front",
  1967. image: {
  1968. source: "./media/characters/manny/front.svg",
  1969. extra: 1,
  1970. bottom: 0.06
  1971. }
  1972. },
  1973. back: {
  1974. height: math.unit(7, "feet"),
  1975. weight: math.unit(100, "kg"),
  1976. name: "Back",
  1977. image: {
  1978. source: "./media/characters/manny/back.svg",
  1979. extra: 1,
  1980. bottom: 0.014
  1981. }
  1982. },
  1983. },
  1984. [
  1985. {
  1986. name: "Normal",
  1987. height: math.unit(7, "feet"),
  1988. },
  1989. {
  1990. name: "Macro",
  1991. height: math.unit(78, "feet"),
  1992. default: true
  1993. },
  1994. {
  1995. name: "Macro+",
  1996. height: math.unit(300, "meters")
  1997. },
  1998. {
  1999. name: "Macro++",
  2000. height: math.unit(2400, "meters")
  2001. },
  2002. {
  2003. name: "Megamacro",
  2004. height: math.unit(5167, "meters")
  2005. },
  2006. {
  2007. name: "Gigamacro",
  2008. height: math.unit(41769, "miles")
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(7, "feet"),
  2017. weight: math.unit(100, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/adake/front-1.svg"
  2021. }
  2022. },
  2023. frontAlt: {
  2024. height: math.unit(7, "feet"),
  2025. weight: math.unit(100, "kg"),
  2026. name: "Front (Alt)",
  2027. image: {
  2028. source: "./media/characters/adake/front-2.svg",
  2029. extra: 1,
  2030. bottom: 0.01
  2031. }
  2032. },
  2033. back: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(100, "kg"),
  2036. name: "Back",
  2037. image: {
  2038. source: "./media/characters/adake/back.svg",
  2039. }
  2040. },
  2041. kneel: {
  2042. height: math.unit(5.385, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Kneeling",
  2045. image: {
  2046. source: "./media/characters/adake/kneel.svg",
  2047. bottom: 0.052
  2048. }
  2049. },
  2050. },
  2051. [
  2052. {
  2053. name: "Normal",
  2054. height: math.unit(7, "feet"),
  2055. },
  2056. {
  2057. name: "Macro",
  2058. height: math.unit(78, "feet"),
  2059. default: true
  2060. },
  2061. {
  2062. name: "Macro+",
  2063. height: math.unit(300, "meters")
  2064. },
  2065. {
  2066. name: "Macro++",
  2067. height: math.unit(2400, "meters")
  2068. },
  2069. {
  2070. name: "Megamacro",
  2071. height: math.unit(5167, "meters")
  2072. },
  2073. {
  2074. name: "Gigamacro",
  2075. height: math.unit(41769, "miles")
  2076. },
  2077. ]
  2078. ))
  2079. characterMakers.push(() => makeCharacter(
  2080. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2081. {
  2082. front: {
  2083. height: math.unit(1.65, "meters"),
  2084. weight: math.unit(50, "kg"),
  2085. name: "Front",
  2086. image: {
  2087. source: "./media/characters/elijah/front.svg",
  2088. extra: 858 / 830,
  2089. bottom: 95.5 / 953.8559
  2090. }
  2091. },
  2092. back: {
  2093. height: math.unit(1.65, "meters"),
  2094. weight: math.unit(50, "kg"),
  2095. name: "Back",
  2096. image: {
  2097. source: "./media/characters/elijah/back.svg",
  2098. extra: 895 / 850,
  2099. bottom: 5.3 / 897.956
  2100. }
  2101. },
  2102. frontNsfw: {
  2103. height: math.unit(1.65, "meters"),
  2104. weight: math.unit(50, "kg"),
  2105. name: "Front (NSFW)",
  2106. image: {
  2107. source: "./media/characters/elijah/front-nsfw.svg",
  2108. extra: 858 / 830,
  2109. bottom: 95.5 / 953.8559
  2110. }
  2111. },
  2112. backNsfw: {
  2113. height: math.unit(1.65, "meters"),
  2114. weight: math.unit(50, "kg"),
  2115. name: "Back (NSFW)",
  2116. image: {
  2117. source: "./media/characters/elijah/back-nsfw.svg",
  2118. extra: 895 / 850,
  2119. bottom: 5.3 / 897.956
  2120. }
  2121. },
  2122. dick: {
  2123. height: math.unit(1, "feet"),
  2124. name: "Dick",
  2125. image: {
  2126. source: "./media/characters/elijah/dick.svg"
  2127. }
  2128. },
  2129. beakOpen: {
  2130. height: math.unit(1.25, "feet"),
  2131. name: "Beak (Open)",
  2132. image: {
  2133. source: "./media/characters/elijah/beak-open.svg"
  2134. }
  2135. },
  2136. beakShut: {
  2137. height: math.unit(1.25, "feet"),
  2138. name: "Beak (Shut)",
  2139. image: {
  2140. source: "./media/characters/elijah/beak-shut.svg"
  2141. }
  2142. },
  2143. footFlexing: {
  2144. height: math.unit(1.61, "feet"),
  2145. name: "Foot (Flexing)",
  2146. image: {
  2147. source: "./media/characters/elijah/foot-flexing.svg"
  2148. }
  2149. },
  2150. footStepping: {
  2151. height: math.unit(1.44, "feet"),
  2152. name: "Foot (Stepping)",
  2153. image: {
  2154. source: "./media/characters/elijah/foot-stepping.svg"
  2155. }
  2156. },
  2157. plantigradeLeg: {
  2158. height: math.unit(2.34, "feet"),
  2159. name: "Plantigrade Leg",
  2160. image: {
  2161. source: "./media/characters/elijah/plantigrade-leg.svg"
  2162. }
  2163. },
  2164. plantigradeFootLeft: {
  2165. height: math.unit(0.9, "feet"),
  2166. name: "Plantigrade Foot (Left)",
  2167. image: {
  2168. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2169. }
  2170. },
  2171. plantigradeFootRight: {
  2172. height: math.unit(0.9, "feet"),
  2173. name: "Plantigrade Foot (Right)",
  2174. image: {
  2175. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Normal",
  2182. height: math.unit(1.65, "meters")
  2183. },
  2184. {
  2185. name: "Macro",
  2186. height: math.unit(55, "meters"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Macro+",
  2191. height: math.unit(105, "meters")
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(11, "feet"),
  2200. weight: math.unit(320, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/rai/front.svg",
  2204. extra: 1802/1696,
  2205. bottom: 68/1870
  2206. }
  2207. },
  2208. frontDressed: {
  2209. height: math.unit(11, "feet"),
  2210. weight: math.unit(320, "kg"),
  2211. name: "Front (Dressed)",
  2212. image: {
  2213. source: "./media/characters/rai/front-dressed.svg",
  2214. extra: 1802/1696,
  2215. bottom: 68/1870
  2216. }
  2217. },
  2218. side: {
  2219. height: math.unit(11, "feet"),
  2220. weight: math.unit(320, "kg"),
  2221. name: "Side",
  2222. image: {
  2223. source: "./media/characters/rai/side.svg",
  2224. extra: 1789/1710,
  2225. bottom: 115/1904
  2226. }
  2227. },
  2228. back: {
  2229. height: math.unit(11, "feet"),
  2230. weight: math.unit(320, "kg"),
  2231. name: "Back",
  2232. image: {
  2233. source: "./media/characters/rai/back.svg",
  2234. extra: 1770/1707,
  2235. bottom: 28/1798
  2236. }
  2237. },
  2238. feral: {
  2239. height: math.unit(11, "feet"),
  2240. weight: math.unit(640, "kg"),
  2241. name: "Feral",
  2242. image: {
  2243. source: "./media/characters/rai/feral.svg",
  2244. extra: 1035/642,
  2245. bottom: 86/1121
  2246. }
  2247. },
  2248. dragon: {
  2249. height: math.unit(23, "feet"),
  2250. weight: math.unit(50000, "lb"),
  2251. name: "Dragon",
  2252. image: {
  2253. source: "./media/characters/rai/dragon.svg",
  2254. extra: 2498 / 2030,
  2255. bottom: 85.2 / 2584
  2256. }
  2257. },
  2258. maw: {
  2259. height: math.unit(6 / 3.81416, "feet"),
  2260. name: "Maw",
  2261. image: {
  2262. source: "./media/characters/rai/maw.svg"
  2263. }
  2264. },
  2265. },
  2266. [
  2267. {
  2268. name: "Normal",
  2269. height: math.unit(11, "feet")
  2270. },
  2271. {
  2272. name: "Macro",
  2273. height: math.unit(302, "feet"),
  2274. default: true
  2275. },
  2276. ]
  2277. ))
  2278. characterMakers.push(() => makeCharacter(
  2279. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2280. {
  2281. frontDressed: {
  2282. height: math.unit(216, "feet"),
  2283. weight: math.unit(7000000, "lb"),
  2284. name: "Front (Dressed)",
  2285. image: {
  2286. source: "./media/characters/jazzy/front-dressed.svg",
  2287. extra: 2738 / 2651,
  2288. bottom: 41.8 / 2786
  2289. }
  2290. },
  2291. backDressed: {
  2292. height: math.unit(216, "feet"),
  2293. weight: math.unit(7000000, "lb"),
  2294. name: "Back (Dressed)",
  2295. image: {
  2296. source: "./media/characters/jazzy/back-dressed.svg",
  2297. extra: 2775 / 2673,
  2298. bottom: 36.8 / 2817
  2299. }
  2300. },
  2301. front: {
  2302. height: math.unit(216, "feet"),
  2303. weight: math.unit(7000000, "lb"),
  2304. name: "Front",
  2305. image: {
  2306. source: "./media/characters/jazzy/front.svg",
  2307. extra: 2738 / 2651,
  2308. bottom: 41.8 / 2786
  2309. }
  2310. },
  2311. back: {
  2312. height: math.unit(216, "feet"),
  2313. weight: math.unit(7000000, "lb"),
  2314. name: "Back",
  2315. image: {
  2316. source: "./media/characters/jazzy/back.svg",
  2317. extra: 2775 / 2673,
  2318. bottom: 36.8 / 2817
  2319. }
  2320. },
  2321. maw: {
  2322. height: math.unit(20, "feet"),
  2323. name: "Maw",
  2324. image: {
  2325. source: "./media/characters/jazzy/maw.svg"
  2326. }
  2327. },
  2328. paws: {
  2329. height: math.unit(27.5, "feet"),
  2330. name: "Paws",
  2331. image: {
  2332. source: "./media/characters/jazzy/paws.svg"
  2333. }
  2334. },
  2335. eye: {
  2336. height: math.unit(4.4, "feet"),
  2337. name: "Eye",
  2338. image: {
  2339. source: "./media/characters/jazzy/eye.svg"
  2340. }
  2341. },
  2342. droneOffense: {
  2343. height: math.unit(9.5, "inches"),
  2344. name: "Drone (Offense)",
  2345. image: {
  2346. source: "./media/characters/jazzy/drone-offense.svg"
  2347. }
  2348. },
  2349. droneRecon: {
  2350. height: math.unit(9.5, "inches"),
  2351. name: "Drone (Recon)",
  2352. image: {
  2353. source: "./media/characters/jazzy/drone-recon.svg"
  2354. }
  2355. },
  2356. droneDefense: {
  2357. height: math.unit(9.5, "inches"),
  2358. name: "Drone (Defense)",
  2359. image: {
  2360. source: "./media/characters/jazzy/drone-defense.svg"
  2361. }
  2362. },
  2363. },
  2364. [
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(216, "feet"),
  2368. default: true
  2369. },
  2370. ]
  2371. ))
  2372. characterMakers.push(() => makeCharacter(
  2373. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2374. {
  2375. front: {
  2376. height: math.unit(9 + 6/12, "feet"),
  2377. weight: math.unit(700, "lb"),
  2378. name: "Front",
  2379. image: {
  2380. source: "./media/characters/flamm/front.svg",
  2381. extra: 1751/1632,
  2382. bottom: 46/1797
  2383. }
  2384. },
  2385. buff: {
  2386. height: math.unit(9 + 6/12, "feet"),
  2387. weight: math.unit(950, "lb"),
  2388. name: "Buff",
  2389. image: {
  2390. source: "./media/characters/flamm/buff.svg",
  2391. extra: 3018/2874,
  2392. bottom: 221/3239
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Normal",
  2399. height: math.unit(9.5, "feet")
  2400. },
  2401. {
  2402. name: "Macro",
  2403. height: math.unit(200, "feet"),
  2404. default: true
  2405. },
  2406. ]
  2407. ))
  2408. characterMakers.push(() => makeCharacter(
  2409. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2410. {
  2411. front: {
  2412. height: math.unit(5 + 3/12, "feet"),
  2413. weight: math.unit(60, "kg"),
  2414. name: "Front",
  2415. image: {
  2416. source: "./media/characters/zephiro/front.svg",
  2417. extra: 2309 / 2162,
  2418. bottom: 0.069
  2419. }
  2420. },
  2421. side: {
  2422. height: math.unit(5 + 3/12, "feet"),
  2423. weight: math.unit(60, "kg"),
  2424. name: "Side",
  2425. image: {
  2426. source: "./media/characters/zephiro/side.svg",
  2427. extra: 2403 / 2279,
  2428. bottom: 0.015
  2429. }
  2430. },
  2431. back: {
  2432. height: math.unit(5 + 3/12, "feet"),
  2433. weight: math.unit(60, "kg"),
  2434. name: "Back",
  2435. image: {
  2436. source: "./media/characters/zephiro/back.svg",
  2437. extra: 2373 / 2244,
  2438. bottom: 0.013
  2439. }
  2440. },
  2441. hand: {
  2442. height: math.unit(0.68, "feet"),
  2443. name: "Hand",
  2444. image: {
  2445. source: "./media/characters/zephiro/hand.svg"
  2446. }
  2447. },
  2448. paw: {
  2449. height: math.unit(1, "feet"),
  2450. name: "Paw",
  2451. image: {
  2452. source: "./media/characters/zephiro/paw.svg"
  2453. }
  2454. },
  2455. beans: {
  2456. height: math.unit(0.93, "feet"),
  2457. name: "Beans",
  2458. image: {
  2459. source: "./media/characters/zephiro/beans.svg"
  2460. }
  2461. },
  2462. },
  2463. [
  2464. {
  2465. name: "Micro",
  2466. height: math.unit(3, "inches")
  2467. },
  2468. {
  2469. name: "Normal",
  2470. height: math.unit(5 + 3 / 12, "feet"),
  2471. default: true
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(118, "feet")
  2476. },
  2477. ]
  2478. ))
  2479. characterMakers.push(() => makeCharacter(
  2480. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2481. {
  2482. front: {
  2483. height: math.unit(5, "feet"),
  2484. weight: math.unit(90, "kg"),
  2485. name: "Front",
  2486. image: {
  2487. source: "./media/characters/fory/front.svg",
  2488. extra: 2862 / 2674,
  2489. bottom: 180 / 3043.8
  2490. }
  2491. },
  2492. back: {
  2493. height: math.unit(5, "feet"),
  2494. weight: math.unit(90, "kg"),
  2495. name: "Back",
  2496. image: {
  2497. source: "./media/characters/fory/back.svg",
  2498. extra: 2962 / 2791,
  2499. bottom: 106 / 3071.8
  2500. }
  2501. },
  2502. foot: {
  2503. height: math.unit(2.14, "feet"),
  2504. name: "Foot",
  2505. image: {
  2506. source: "./media/characters/fory/foot.svg"
  2507. }
  2508. },
  2509. },
  2510. [
  2511. {
  2512. name: "Normal",
  2513. height: math.unit(5, "feet")
  2514. },
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(50, "feet"),
  2518. default: true
  2519. },
  2520. {
  2521. name: "Megamacro",
  2522. height: math.unit(10, "miles")
  2523. },
  2524. {
  2525. name: "Gigamacro",
  2526. height: math.unit(5, "earths")
  2527. },
  2528. ]
  2529. ))
  2530. characterMakers.push(() => makeCharacter(
  2531. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2532. {
  2533. front: {
  2534. height: math.unit(7, "feet"),
  2535. weight: math.unit(90, "kg"),
  2536. name: "Front",
  2537. image: {
  2538. source: "./media/characters/kurrikage/front.svg",
  2539. extra: 1,
  2540. bottom: 0.035
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(7, "feet"),
  2545. weight: math.unit(90, "lb"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/kurrikage/back.svg"
  2549. }
  2550. },
  2551. paw: {
  2552. height: math.unit(1.5, "feet"),
  2553. name: "Paw",
  2554. image: {
  2555. source: "./media/characters/kurrikage/paw.svg"
  2556. }
  2557. },
  2558. staff: {
  2559. height: math.unit(6.7, "feet"),
  2560. name: "Staff",
  2561. image: {
  2562. source: "./media/characters/kurrikage/staff.svg"
  2563. }
  2564. },
  2565. peek: {
  2566. height: math.unit(1.05, "feet"),
  2567. name: "Peeking",
  2568. image: {
  2569. source: "./media/characters/kurrikage/peek.svg",
  2570. bottom: 0.08
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(12, "feet"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Big",
  2582. height: math.unit(20, "feet")
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(500, "feet")
  2587. },
  2588. {
  2589. name: "Megamacro",
  2590. height: math.unit(20, "miles")
  2591. },
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2596. {
  2597. front: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(75, "kg"),
  2600. name: "Front",
  2601. image: {
  2602. source: "./media/characters/shingo/front.svg",
  2603. extra: 706/681,
  2604. bottom: 11/717
  2605. }
  2606. },
  2607. frontAlt: {
  2608. height: math.unit(6, "feet"),
  2609. weight: math.unit(75, "kg"),
  2610. name: "Front (Alt)",
  2611. image: {
  2612. source: "./media/characters/shingo/front-alt.svg",
  2613. extra: 3511 / 3338,
  2614. bottom: 0.005
  2615. }
  2616. },
  2617. paw: {
  2618. height: math.unit(1, "feet"),
  2619. name: "Paw",
  2620. image: {
  2621. source: "./media/characters/shingo/paw.svg"
  2622. }
  2623. },
  2624. },
  2625. [
  2626. {
  2627. name: "Micro",
  2628. height: math.unit(4, "inches")
  2629. },
  2630. {
  2631. name: "Normal",
  2632. height: math.unit(6, "feet"),
  2633. default: true
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(108, "feet")
  2638. },
  2639. {
  2640. name: "Macro+",
  2641. height: math.unit(1500, "feet")
  2642. },
  2643. ]
  2644. ))
  2645. characterMakers.push(() => makeCharacter(
  2646. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2647. {
  2648. side: {
  2649. height: math.unit(6, "feet"),
  2650. weight: math.unit(75, "kg"),
  2651. name: "Side",
  2652. image: {
  2653. source: "./media/characters/aigey/side.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(200, "feet"),
  2661. default: true
  2662. },
  2663. {
  2664. name: "Megamacro",
  2665. height: math.unit(100, "miles")
  2666. },
  2667. ]
  2668. )
  2669. )
  2670. characterMakers.push(() => makeCharacter(
  2671. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2672. {
  2673. front: {
  2674. height: math.unit(5 + 5 / 12, "feet"),
  2675. weight: math.unit(75, "kg"),
  2676. name: "Front",
  2677. image: {
  2678. source: "./media/characters/natasha/front.svg",
  2679. extra: 859 / 824,
  2680. bottom: 23 / 879.6
  2681. }
  2682. },
  2683. frontNsfw: {
  2684. height: math.unit(5 + 5 / 12, "feet"),
  2685. weight: math.unit(75, "kg"),
  2686. name: "Front (NSFW)",
  2687. image: {
  2688. source: "./media/characters/natasha/front-nsfw.svg",
  2689. extra: 859 / 824,
  2690. bottom: 23 / 879.6
  2691. }
  2692. },
  2693. frontErect: {
  2694. height: math.unit(5 + 5 / 12, "feet"),
  2695. weight: math.unit(75, "kg"),
  2696. name: "Front (Erect)",
  2697. image: {
  2698. source: "./media/characters/natasha/front-erect.svg",
  2699. extra: 859 / 824,
  2700. bottom: 23 / 879.6
  2701. }
  2702. },
  2703. back: {
  2704. height: math.unit(5 + 5 / 12, "feet"),
  2705. weight: math.unit(75, "kg"),
  2706. name: "Back",
  2707. image: {
  2708. source: "./media/characters/natasha/back.svg",
  2709. extra: 887.9 / 852.6,
  2710. bottom: 9.7 / 896.4
  2711. }
  2712. },
  2713. backAlt: {
  2714. height: math.unit(5 + 5 / 12, "feet"),
  2715. weight: math.unit(75, "kg"),
  2716. name: "Back (Alt)",
  2717. image: {
  2718. source: "./media/characters/natasha/back-alt.svg",
  2719. extra: 1236.7 / 1192,
  2720. bottom: 22.3 / 1258.2
  2721. }
  2722. },
  2723. dick: {
  2724. height: math.unit(1.772, "feet"),
  2725. name: "Dick",
  2726. image: {
  2727. source: "./media/characters/natasha/dick.svg"
  2728. }
  2729. },
  2730. paw: {
  2731. height: math.unit(0.250, "meters"),
  2732. name: "Paw",
  2733. image: {
  2734. source: "./media/characters/natasha/paw.svg"
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(5 + 5 / 12, "feet")
  2742. },
  2743. {
  2744. name: "Large",
  2745. height: math.unit(12, "feet")
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(100, "feet"),
  2750. default: true
  2751. },
  2752. {
  2753. name: "Macro+",
  2754. height: math.unit(260, "feet")
  2755. },
  2756. {
  2757. name: "Macro++",
  2758. height: math.unit(1, "mile")
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2764. {
  2765. front: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Front",
  2769. image: {
  2770. source: "./media/characters/malik/front.svg"
  2771. }
  2772. },
  2773. side: {
  2774. height: math.unit(6, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Side",
  2777. image: {
  2778. source: "./media/characters/malik/side.svg",
  2779. extra: 1.1539
  2780. }
  2781. },
  2782. back: {
  2783. height: math.unit(6, "feet"),
  2784. weight: math.unit(75, "kg"),
  2785. name: "Back",
  2786. image: {
  2787. source: "./media/characters/malik/back.svg"
  2788. }
  2789. },
  2790. },
  2791. [
  2792. {
  2793. name: "Macro",
  2794. height: math.unit(156, "feet"),
  2795. default: true
  2796. },
  2797. {
  2798. name: "Macro+",
  2799. height: math.unit(1188, "feet")
  2800. },
  2801. ]
  2802. ))
  2803. characterMakers.push(() => makeCharacter(
  2804. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2805. {
  2806. front: {
  2807. height: math.unit(6, "feet"),
  2808. weight: math.unit(75, "kg"),
  2809. name: "Front",
  2810. image: {
  2811. source: "./media/characters/sefer/front.svg",
  2812. extra: 848 / 659,
  2813. bottom: 28.3 / 876.442
  2814. }
  2815. },
  2816. back: {
  2817. height: math.unit(6, "feet"),
  2818. weight: math.unit(75, "kg"),
  2819. name: "Back",
  2820. image: {
  2821. source: "./media/characters/sefer/back.svg",
  2822. extra: 864 / 695,
  2823. bottom: 10 / 871
  2824. }
  2825. },
  2826. frontDressed: {
  2827. height: math.unit(6, "feet"),
  2828. weight: math.unit(75, "kg"),
  2829. name: "Front (Dressed)",
  2830. image: {
  2831. source: "./media/characters/sefer/front-dressed.svg",
  2832. extra: 839 / 653,
  2833. bottom: 37.6 / 878
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(6, "feet"),
  2841. default: true
  2842. },
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2847. {
  2848. body: {
  2849. height: math.unit(2.2428, "meter"),
  2850. weight: math.unit(124.738, "kg"),
  2851. name: "Body",
  2852. image: {
  2853. extra: 1225 / 1050,
  2854. source: "./media/characters/north/front.svg"
  2855. }
  2856. }
  2857. },
  2858. [
  2859. {
  2860. name: "Micro",
  2861. height: math.unit(4, "inches")
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(63, "meters")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(101, "miles"),
  2870. default: true
  2871. }
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2876. {
  2877. angled: {
  2878. height: math.unit(4, "meter"),
  2879. weight: math.unit(150, "kg"),
  2880. name: "Angled",
  2881. image: {
  2882. source: "./media/characters/talan/angled-sfw.svg",
  2883. bottom: 29 / 3734
  2884. }
  2885. },
  2886. angledNsfw: {
  2887. height: math.unit(4, "meter"),
  2888. weight: math.unit(150, "kg"),
  2889. name: "Angled (NSFW)",
  2890. image: {
  2891. source: "./media/characters/talan/angled-nsfw.svg",
  2892. bottom: 29 / 3734
  2893. }
  2894. },
  2895. frontNsfw: {
  2896. height: math.unit(4, "meter"),
  2897. weight: math.unit(150, "kg"),
  2898. name: "Front (NSFW)",
  2899. image: {
  2900. source: "./media/characters/talan/front-nsfw.svg",
  2901. bottom: 29 / 3734
  2902. }
  2903. },
  2904. sideNsfw: {
  2905. height: math.unit(4, "meter"),
  2906. weight: math.unit(150, "kg"),
  2907. name: "Side (NSFW)",
  2908. image: {
  2909. source: "./media/characters/talan/side-nsfw.svg",
  2910. bottom: 29 / 3734
  2911. }
  2912. },
  2913. back: {
  2914. height: math.unit(4, "meter"),
  2915. weight: math.unit(150, "kg"),
  2916. name: "Back",
  2917. image: {
  2918. source: "./media/characters/talan/back.svg"
  2919. }
  2920. },
  2921. dickBottom: {
  2922. height: math.unit(0.621, "meter"),
  2923. name: "Dick (Bottom)",
  2924. image: {
  2925. source: "./media/characters/talan/dick-bottom.svg"
  2926. }
  2927. },
  2928. dickTop: {
  2929. height: math.unit(0.621, "meter"),
  2930. name: "Dick (Top)",
  2931. image: {
  2932. source: "./media/characters/talan/dick-top.svg"
  2933. }
  2934. },
  2935. dickSide: {
  2936. height: math.unit(0.305, "meter"),
  2937. name: "Dick (Side)",
  2938. image: {
  2939. source: "./media/characters/talan/dick-side.svg"
  2940. }
  2941. },
  2942. dickFront: {
  2943. height: math.unit(0.305, "meter"),
  2944. name: "Dick (Front)",
  2945. image: {
  2946. source: "./media/characters/talan/dick-front.svg"
  2947. }
  2948. },
  2949. },
  2950. [
  2951. {
  2952. name: "Normal",
  2953. height: math.unit(4, "meters")
  2954. },
  2955. {
  2956. name: "Macro",
  2957. height: math.unit(100, "meters")
  2958. },
  2959. {
  2960. name: "Megamacro",
  2961. height: math.unit(2, "miles"),
  2962. default: true
  2963. },
  2964. {
  2965. name: "Gigamacro",
  2966. height: math.unit(5000, "miles")
  2967. },
  2968. {
  2969. name: "Teramacro",
  2970. height: math.unit(100, "parsecs")
  2971. }
  2972. ]
  2973. ))
  2974. characterMakers.push(() => makeCharacter(
  2975. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2976. {
  2977. front: {
  2978. height: math.unit(2, "meter"),
  2979. weight: math.unit(90, "kg"),
  2980. name: "Front",
  2981. image: {
  2982. source: "./media/characters/gael'rathus/front.svg"
  2983. }
  2984. },
  2985. frontAlt: {
  2986. height: math.unit(2, "meter"),
  2987. weight: math.unit(90, "kg"),
  2988. name: "Front (alt)",
  2989. image: {
  2990. source: "./media/characters/gael'rathus/front-alt.svg"
  2991. }
  2992. },
  2993. frontAlt2: {
  2994. height: math.unit(2, "meter"),
  2995. weight: math.unit(90, "kg"),
  2996. name: "Front (alt 2)",
  2997. image: {
  2998. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2999. }
  3000. }
  3001. },
  3002. [
  3003. {
  3004. name: "Normal",
  3005. height: math.unit(9, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Large",
  3010. height: math.unit(25, "feet")
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(0.25, "miles")
  3015. },
  3016. {
  3017. name: "Megamacro",
  3018. height: math.unit(10, "miles")
  3019. }
  3020. ]
  3021. ))
  3022. characterMakers.push(() => makeCharacter(
  3023. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3024. {
  3025. side: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(140, "kg"),
  3028. name: "Side",
  3029. image: {
  3030. source: "./media/characters/sosha/side.svg",
  3031. bottom: 0.042
  3032. }
  3033. },
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(12, "feet"),
  3039. default: true
  3040. }
  3041. ]
  3042. ))
  3043. characterMakers.push(() => makeCharacter(
  3044. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3045. {
  3046. side: {
  3047. height: math.unit(5 + 5 / 12, "feet"),
  3048. weight: math.unit(170, "kg"),
  3049. name: "Side",
  3050. image: {
  3051. source: "./media/characters/runnola/side.svg",
  3052. extra: 741 / 448,
  3053. bottom: 0.05
  3054. }
  3055. },
  3056. },
  3057. [
  3058. {
  3059. name: "Small",
  3060. height: math.unit(3, "feet")
  3061. },
  3062. {
  3063. name: "Normal",
  3064. height: math.unit(5 + 5 / 12, "feet"),
  3065. default: true
  3066. },
  3067. {
  3068. name: "Big",
  3069. height: math.unit(10, "feet")
  3070. },
  3071. ]
  3072. ))
  3073. characterMakers.push(() => makeCharacter(
  3074. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3075. {
  3076. front: {
  3077. height: math.unit(2, "meter"),
  3078. weight: math.unit(50, "kg"),
  3079. name: "Front",
  3080. image: {
  3081. source: "./media/characters/kurribird/front.svg",
  3082. bottom: 0.015
  3083. }
  3084. },
  3085. frontAlt: {
  3086. height: math.unit(1.5, "meter"),
  3087. weight: math.unit(50, "kg"),
  3088. name: "Front (Alt)",
  3089. image: {
  3090. source: "./media/characters/kurribird/front-alt.svg",
  3091. extra: 1.45
  3092. }
  3093. },
  3094. },
  3095. [
  3096. {
  3097. name: "Normal",
  3098. height: math.unit(7, "feet")
  3099. },
  3100. {
  3101. name: "Big",
  3102. height: math.unit(12, "feet"),
  3103. default: true
  3104. },
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(1500, "feet")
  3108. },
  3109. {
  3110. name: "Megamacro",
  3111. height: math.unit(2, "miles")
  3112. }
  3113. ]
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3117. {
  3118. front: {
  3119. height: math.unit(2, "meter"),
  3120. weight: math.unit(80, "kg"),
  3121. name: "Front",
  3122. image: {
  3123. source: "./media/characters/elbial/front.svg",
  3124. extra: 1643 / 1556,
  3125. bottom: 60.2 / 1696
  3126. }
  3127. },
  3128. side: {
  3129. height: math.unit(2, "meter"),
  3130. weight: math.unit(80, "kg"),
  3131. name: "Side",
  3132. image: {
  3133. source: "./media/characters/elbial/side.svg",
  3134. extra: 1630 / 1565,
  3135. bottom: 71.5 / 1697
  3136. }
  3137. },
  3138. back: {
  3139. height: math.unit(2, "meter"),
  3140. weight: math.unit(80, "kg"),
  3141. name: "Back",
  3142. image: {
  3143. source: "./media/characters/elbial/back.svg",
  3144. extra: 1668 / 1595,
  3145. bottom: 5.6 / 1672
  3146. }
  3147. },
  3148. frontDressed: {
  3149. height: math.unit(2, "meter"),
  3150. weight: math.unit(80, "kg"),
  3151. name: "Front (Dressed)",
  3152. image: {
  3153. source: "./media/characters/elbial/front-dressed.svg",
  3154. extra: 1653 / 1584,
  3155. bottom: 57 / 1708
  3156. }
  3157. },
  3158. genitals: {
  3159. height: math.unit(2 / 3.367, "meter"),
  3160. name: "Genitals",
  3161. image: {
  3162. source: "./media/characters/elbial/genitals.svg"
  3163. }
  3164. },
  3165. },
  3166. [
  3167. {
  3168. name: "Large",
  3169. height: math.unit(100, "feet")
  3170. },
  3171. {
  3172. name: "Macro",
  3173. height: math.unit(500, "feet"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Megamacro",
  3178. height: math.unit(10, "miles")
  3179. },
  3180. {
  3181. name: "Gigamacro",
  3182. height: math.unit(25000, "miles")
  3183. },
  3184. {
  3185. name: "Full-Size",
  3186. height: math.unit(8000000, "gigaparsecs")
  3187. }
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3192. {
  3193. front: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(60, "kg"),
  3196. name: "Front",
  3197. image: {
  3198. source: "./media/characters/noah/front.svg"
  3199. }
  3200. },
  3201. talons: {
  3202. height: math.unit(0.315, "meter"),
  3203. name: "Talons",
  3204. image: {
  3205. source: "./media/characters/noah/talons.svg"
  3206. }
  3207. }
  3208. },
  3209. [
  3210. {
  3211. name: "Large",
  3212. height: math.unit(50, "feet")
  3213. },
  3214. {
  3215. name: "Macro",
  3216. height: math.unit(750, "feet"),
  3217. default: true
  3218. },
  3219. {
  3220. name: "Megamacro",
  3221. height: math.unit(50, "miles")
  3222. },
  3223. {
  3224. name: "Gigamacro",
  3225. height: math.unit(100000, "miles")
  3226. },
  3227. {
  3228. name: "Full-Size",
  3229. height: math.unit(3000000000, "miles")
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(2, "meter"),
  3238. weight: math.unit(80, "kg"),
  3239. name: "Front",
  3240. image: {
  3241. source: "./media/characters/natalya/front.svg"
  3242. }
  3243. },
  3244. back: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(80, "kg"),
  3247. name: "Back",
  3248. image: {
  3249. source: "./media/characters/natalya/back.svg"
  3250. }
  3251. }
  3252. },
  3253. [
  3254. {
  3255. name: "Normal",
  3256. height: math.unit(150, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Megamacro",
  3261. height: math.unit(5, "miles")
  3262. },
  3263. {
  3264. name: "Full-Size",
  3265. height: math.unit(600, "kiloparsecs")
  3266. }
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3271. {
  3272. front: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(50, "kg"),
  3275. name: "Front",
  3276. image: {
  3277. source: "./media/characters/erestrebah/front.svg",
  3278. extra: 208 / 193,
  3279. bottom: 0.055
  3280. }
  3281. },
  3282. back: {
  3283. height: math.unit(2, "meter"),
  3284. weight: math.unit(50, "kg"),
  3285. name: "Back",
  3286. image: {
  3287. source: "./media/characters/erestrebah/back.svg",
  3288. extra: 1.3
  3289. }
  3290. }
  3291. },
  3292. [
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(10, "feet")
  3296. },
  3297. {
  3298. name: "Large",
  3299. height: math.unit(50, "feet"),
  3300. default: true
  3301. },
  3302. {
  3303. name: "Macro",
  3304. height: math.unit(300, "feet")
  3305. },
  3306. {
  3307. name: "Macro+",
  3308. height: math.unit(750, "feet")
  3309. },
  3310. {
  3311. name: "Megamacro",
  3312. height: math.unit(3, "miles")
  3313. }
  3314. ]
  3315. ))
  3316. characterMakers.push(() => makeCharacter(
  3317. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3318. {
  3319. front: {
  3320. height: math.unit(2, "meter"),
  3321. weight: math.unit(80, "kg"),
  3322. name: "Front",
  3323. image: {
  3324. source: "./media/characters/jennifer/front.svg",
  3325. bottom: 0.11,
  3326. extra: 1.16
  3327. }
  3328. },
  3329. frontAlt: {
  3330. height: math.unit(2, "meter"),
  3331. weight: math.unit(80, "kg"),
  3332. name: "Front (Alt)",
  3333. image: {
  3334. source: "./media/characters/jennifer/front-alt.svg"
  3335. }
  3336. }
  3337. },
  3338. [
  3339. {
  3340. name: "Canon Height",
  3341. height: math.unit(120, "feet"),
  3342. default: true
  3343. },
  3344. {
  3345. name: "Macro+",
  3346. height: math.unit(300, "feet")
  3347. },
  3348. {
  3349. name: "Megamacro",
  3350. height: math.unit(20000, "feet")
  3351. }
  3352. ]
  3353. ))
  3354. characterMakers.push(() => makeCharacter(
  3355. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3356. {
  3357. front: {
  3358. height: math.unit(2, "meter"),
  3359. weight: math.unit(50, "kg"),
  3360. name: "Front",
  3361. image: {
  3362. source: "./media/characters/kalista/front.svg",
  3363. extra: 1947 / 1700,
  3364. bottom: 76.6 / 1412.98
  3365. }
  3366. },
  3367. back: {
  3368. height: math.unit(2, "meter"),
  3369. weight: math.unit(50, "kg"),
  3370. name: "Back",
  3371. image: {
  3372. source: "./media/characters/kalista/back.svg",
  3373. extra: 1366 / 1156,
  3374. bottom: 33.9 / 1362.78
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Uncomfortably Small",
  3381. height: math.unit(10, "feet")
  3382. },
  3383. {
  3384. name: "Small",
  3385. height: math.unit(30, "feet")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(100, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro+",
  3394. height: math.unit(2000, "feet")
  3395. },
  3396. {
  3397. name: "True Form",
  3398. height: math.unit(8924, "miles")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(2, "meter"),
  3407. weight: math.unit(120, "kg"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/ggv/front.svg"
  3411. }
  3412. },
  3413. side: {
  3414. height: math.unit(2, "meter"),
  3415. weight: math.unit(120, "kg"),
  3416. name: "Side",
  3417. image: {
  3418. source: "./media/characters/ggv/side.svg"
  3419. }
  3420. }
  3421. },
  3422. [
  3423. {
  3424. name: "Extremely Puny",
  3425. height: math.unit(9 + 5 / 12, "feet")
  3426. },
  3427. {
  3428. name: "Horribly Small",
  3429. height: math.unit(47.7, "miles"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Reasonably Sized",
  3434. height: math.unit(25000, "parsecs")
  3435. },
  3436. {
  3437. name: "Slightly Uncompressed",
  3438. height: math.unit(7.77e31, "parsecs")
  3439. },
  3440. {
  3441. name: "Omniversal",
  3442. height: math.unit(1e300, "meters")
  3443. },
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(2, "meter"),
  3451. weight: math.unit(75, "lb"),
  3452. name: "Front",
  3453. image: {
  3454. source: "./media/characters/napalm/front.svg"
  3455. }
  3456. },
  3457. back: {
  3458. height: math.unit(2, "meter"),
  3459. weight: math.unit(75, "lb"),
  3460. name: "Back",
  3461. image: {
  3462. source: "./media/characters/napalm/back.svg"
  3463. }
  3464. }
  3465. },
  3466. [
  3467. {
  3468. name: "Standard",
  3469. height: math.unit(55, "feet"),
  3470. default: true
  3471. }
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3476. {
  3477. front: {
  3478. height: math.unit(7 + 5 / 6, "feet"),
  3479. weight: math.unit(325, "lb"),
  3480. name: "Front",
  3481. image: {
  3482. source: "./media/characters/asana/front.svg",
  3483. extra: 1133 / 1060,
  3484. bottom: 15.2 / 1148.6
  3485. }
  3486. },
  3487. back: {
  3488. height: math.unit(7 + 5 / 6, "feet"),
  3489. weight: math.unit(325, "lb"),
  3490. name: "Back",
  3491. image: {
  3492. source: "./media/characters/asana/back.svg",
  3493. extra: 1114 / 1043,
  3494. bottom: 5 / 1120
  3495. }
  3496. },
  3497. dressedDark: {
  3498. height: math.unit(7 + 5 / 6, "feet"),
  3499. weight: math.unit(325, "lb"),
  3500. name: "Dressed (Dark)",
  3501. image: {
  3502. source: "./media/characters/asana/dressed-dark.svg",
  3503. extra: 1133 / 1060,
  3504. bottom: 15.2 / 1148.6
  3505. }
  3506. },
  3507. dressedLight: {
  3508. height: math.unit(7 + 5 / 6, "feet"),
  3509. weight: math.unit(325, "lb"),
  3510. name: "Dressed (Light)",
  3511. image: {
  3512. source: "./media/characters/asana/dressed-light.svg",
  3513. extra: 1133 / 1060,
  3514. bottom: 15.2 / 1148.6
  3515. }
  3516. },
  3517. },
  3518. [
  3519. {
  3520. name: "Standard",
  3521. height: math.unit(7 + 5 / 6, "feet"),
  3522. default: true
  3523. },
  3524. {
  3525. name: "Large",
  3526. height: math.unit(10, "meters")
  3527. },
  3528. {
  3529. name: "Macro",
  3530. height: math.unit(2500, "meters")
  3531. },
  3532. {
  3533. name: "Megamacro",
  3534. height: math.unit(5e6, "meters")
  3535. },
  3536. {
  3537. name: "Examacro",
  3538. height: math.unit(5e12, "lightyears")
  3539. },
  3540. {
  3541. name: "Max Size",
  3542. height: math.unit(1e31, "lightyears")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(60, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/ebony/front.svg",
  3555. bottom: 0.03,
  3556. extra: 1045 / 810 + 0.03
  3557. }
  3558. },
  3559. side: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(60, "kg"),
  3562. name: "Side",
  3563. image: {
  3564. source: "./media/characters/ebony/side.svg",
  3565. bottom: 0.03,
  3566. extra: 1045 / 810 + 0.03
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(60, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/ebony/back.svg",
  3575. bottom: 0.01,
  3576. extra: 1045 / 810 + 0.01
  3577. }
  3578. },
  3579. },
  3580. [
  3581. // TODO check why I did this lol
  3582. {
  3583. name: "Standard",
  3584. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3585. default: true
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(200, "feet")
  3590. },
  3591. {
  3592. name: "Gigamacro",
  3593. height: math.unit(13000, "km")
  3594. }
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3599. {
  3600. front: {
  3601. height: math.unit(6, "feet"),
  3602. weight: math.unit(175, "lb"),
  3603. name: "Front",
  3604. image: {
  3605. source: "./media/characters/mountain/front.svg",
  3606. extra: 972 / 955,
  3607. bottom: 64 / 1036.6
  3608. }
  3609. },
  3610. back: {
  3611. height: math.unit(6, "feet"),
  3612. weight: math.unit(175, "lb"),
  3613. name: "Back",
  3614. image: {
  3615. source: "./media/characters/mountain/back.svg",
  3616. extra: 970 / 950,
  3617. bottom: 28.25 / 999
  3618. }
  3619. },
  3620. },
  3621. [
  3622. {
  3623. name: "Large",
  3624. height: math.unit(20, "meters")
  3625. },
  3626. {
  3627. name: "Macro",
  3628. height: math.unit(300, "meters")
  3629. },
  3630. {
  3631. name: "Gigamacro",
  3632. height: math.unit(10000, "km"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Examacro",
  3637. height: math.unit(10e9, "lightyears")
  3638. }
  3639. ]
  3640. ))
  3641. characterMakers.push(() => makeCharacter(
  3642. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3643. {
  3644. front: {
  3645. height: math.unit(8, "feet"),
  3646. weight: math.unit(500, "lb"),
  3647. name: "Front",
  3648. image: {
  3649. source: "./media/characters/rick/front.svg"
  3650. }
  3651. }
  3652. },
  3653. [
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(8, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Macro",
  3661. height: math.unit(5, "km")
  3662. }
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(8, "feet"),
  3670. weight: math.unit(120, "lb"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/ona/front.svg"
  3674. }
  3675. },
  3676. frontAlt: {
  3677. height: math.unit(8, "feet"),
  3678. weight: math.unit(120, "lb"),
  3679. name: "Front (Alt)",
  3680. image: {
  3681. source: "./media/characters/ona/front-alt.svg"
  3682. }
  3683. },
  3684. back: {
  3685. height: math.unit(8, "feet"),
  3686. weight: math.unit(120, "lb"),
  3687. name: "Back",
  3688. image: {
  3689. source: "./media/characters/ona/back.svg"
  3690. }
  3691. },
  3692. foot: {
  3693. height: math.unit(1.1, "feet"),
  3694. name: "Foot",
  3695. image: {
  3696. source: "./media/characters/ona/foot.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Megamacro",
  3703. height: math.unit(70, "km"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Gigamacro",
  3708. height: math.unit(681818, "miles")
  3709. },
  3710. {
  3711. name: "Examacro",
  3712. height: math.unit(3800000, "lightyears")
  3713. },
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(12, "feet"),
  3721. weight: math.unit(3000, "lb"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/mech/front.svg",
  3725. extra: 2900 / 2770,
  3726. bottom: 110 / 3010
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(12, "feet"),
  3731. weight: math.unit(3000, "lb"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/mech/back.svg",
  3735. extra: 3011 / 2890,
  3736. bottom: 94 / 3105
  3737. }
  3738. },
  3739. maw: {
  3740. height: math.unit(3.07, "feet"),
  3741. name: "Maw",
  3742. image: {
  3743. source: "./media/characters/mech/maw.svg"
  3744. }
  3745. },
  3746. head: {
  3747. height: math.unit(2.82, "feet"),
  3748. name: "Head",
  3749. image: {
  3750. source: "./media/characters/mech/head.svg"
  3751. }
  3752. },
  3753. dick: {
  3754. height: math.unit(1.43, "feet"),
  3755. name: "Dick",
  3756. image: {
  3757. source: "./media/characters/mech/dick.svg"
  3758. }
  3759. },
  3760. },
  3761. [
  3762. {
  3763. name: "Normal",
  3764. height: math.unit(12, "feet")
  3765. },
  3766. {
  3767. name: "Macro",
  3768. height: math.unit(300, "feet"),
  3769. default: true
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(1500, "feet")
  3774. },
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(1.3, "meter"),
  3782. weight: math.unit(30, "kg"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/gregory/front.svg",
  3786. }
  3787. }
  3788. },
  3789. [
  3790. {
  3791. name: "Normal",
  3792. height: math.unit(1.3, "meter"),
  3793. default: true
  3794. },
  3795. {
  3796. name: "Macro",
  3797. height: math.unit(20, "meter")
  3798. }
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3803. {
  3804. front: {
  3805. height: math.unit(2.8, "meter"),
  3806. weight: math.unit(200, "kg"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/elory/front.svg",
  3810. }
  3811. }
  3812. },
  3813. [
  3814. {
  3815. name: "Normal",
  3816. height: math.unit(2.8, "meter"),
  3817. default: true
  3818. },
  3819. {
  3820. name: "Macro",
  3821. height: math.unit(38, "meter")
  3822. }
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(470, "feet"),
  3830. weight: math.unit(924, "tons"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/angelpatamon/front.svg",
  3834. }
  3835. }
  3836. },
  3837. [
  3838. {
  3839. name: "Normal",
  3840. height: math.unit(470, "feet"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Deity Size I",
  3845. height: math.unit(28651.2, "km")
  3846. },
  3847. {
  3848. name: "Deity Size II",
  3849. height: math.unit(171907.2, "km")
  3850. }
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3855. {
  3856. side: {
  3857. height: math.unit(7.2, "meter"),
  3858. weight: math.unit(8.2, "tons"),
  3859. name: "Side",
  3860. image: {
  3861. source: "./media/characters/cryae/side.svg",
  3862. extra: 3500 / 1500
  3863. }
  3864. }
  3865. },
  3866. [
  3867. {
  3868. name: "Normal",
  3869. height: math.unit(7.2, "meter"),
  3870. default: true
  3871. }
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3876. {
  3877. front: {
  3878. height: math.unit(6, "feet"),
  3879. weight: math.unit(175, "lb"),
  3880. name: "Front",
  3881. image: {
  3882. source: "./media/characters/xera/front.svg",
  3883. extra: 2377 / 1972,
  3884. bottom: 75.5 / 2452
  3885. }
  3886. },
  3887. side: {
  3888. height: math.unit(6, "feet"),
  3889. weight: math.unit(175, "lb"),
  3890. name: "Side",
  3891. image: {
  3892. source: "./media/characters/xera/side.svg",
  3893. extra: 2345 / 2019,
  3894. bottom: 39.7 / 2384
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(175, "lb"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/xera/back.svg",
  3903. extra: 2095 / 1984,
  3904. bottom: 67 / 2166
  3905. }
  3906. },
  3907. },
  3908. [
  3909. {
  3910. name: "Small",
  3911. height: math.unit(10, "feet")
  3912. },
  3913. {
  3914. name: "Macro",
  3915. height: math.unit(500, "meters"),
  3916. default: true
  3917. },
  3918. {
  3919. name: "Macro+",
  3920. height: math.unit(10, "km")
  3921. },
  3922. {
  3923. name: "Gigamacro",
  3924. height: math.unit(25000, "km")
  3925. },
  3926. {
  3927. name: "Teramacro",
  3928. height: math.unit(3e6, "km")
  3929. }
  3930. ]
  3931. ))
  3932. characterMakers.push(() => makeCharacter(
  3933. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3934. {
  3935. front: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(175, "lb"),
  3938. name: "Front",
  3939. image: {
  3940. source: "./media/characters/nebula/front.svg",
  3941. extra: 2566 / 2362,
  3942. bottom: 81 / 2644
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Small",
  3949. height: math.unit(4.5, "meters")
  3950. },
  3951. {
  3952. name: "Macro",
  3953. height: math.unit(1500, "meters"),
  3954. default: true
  3955. },
  3956. {
  3957. name: "Megamacro",
  3958. height: math.unit(150, "km")
  3959. },
  3960. {
  3961. name: "Gigamacro",
  3962. height: math.unit(27000, "km")
  3963. }
  3964. ]
  3965. ))
  3966. characterMakers.push(() => makeCharacter(
  3967. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3968. {
  3969. front: {
  3970. height: math.unit(6, "feet"),
  3971. weight: math.unit(225, "lb"),
  3972. name: "Front",
  3973. image: {
  3974. source: "./media/characters/abysgar/front.svg"
  3975. }
  3976. }
  3977. },
  3978. [
  3979. {
  3980. name: "Small",
  3981. height: math.unit(4.5, "meters")
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(1250, "meters"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Megamacro",
  3990. height: math.unit(125, "km")
  3991. },
  3992. {
  3993. name: "Gigamacro",
  3994. height: math.unit(26000, "km")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(180, "lb"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/yakuz/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Small",
  4013. height: math.unit(5, "meters")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(1500, "meters"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Megamacro",
  4022. height: math.unit(200, "km")
  4023. },
  4024. {
  4025. name: "Gigamacro",
  4026. height: math.unit(100000, "km")
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(175, "lb"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/mirova/front.svg",
  4039. extra: 3334 / 3071,
  4040. bottom: 42 / 3375.6
  4041. }
  4042. }
  4043. },
  4044. [
  4045. {
  4046. name: "Small",
  4047. height: math.unit(5, "meters")
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(900, "meters"),
  4052. default: true
  4053. },
  4054. {
  4055. name: "Megamacro",
  4056. height: math.unit(135, "km")
  4057. },
  4058. {
  4059. name: "Gigamacro",
  4060. height: math.unit(20000, "km")
  4061. }
  4062. ]
  4063. ))
  4064. characterMakers.push(() => makeCharacter(
  4065. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4066. {
  4067. side: {
  4068. height: math.unit(28.35, "feet"),
  4069. weight: math.unit(99.75, "tons"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/asana-mech/side.svg",
  4073. extra: 923 / 699,
  4074. bottom: 50 / 975
  4075. }
  4076. },
  4077. chaingun: {
  4078. height: math.unit(7, "feet"),
  4079. weight: math.unit(2400, "lb"),
  4080. name: "Chaingun",
  4081. image: {
  4082. source: "./media/characters/asana-mech/chaingun.svg"
  4083. }
  4084. },
  4085. laser: {
  4086. height: math.unit(7.12, "feet"),
  4087. weight: math.unit(2000, "lb"),
  4088. name: "Laser",
  4089. image: {
  4090. source: "./media/characters/asana-mech/laser.svg"
  4091. }
  4092. },
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(28.35, "feet"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(2500, "feet")
  4103. },
  4104. {
  4105. name: "Megamacro",
  4106. height: math.unit(25, "miles")
  4107. },
  4108. {
  4109. name: "Examacro",
  4110. height: math.unit(6e8, "lightyears")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(5, "meters"),
  4119. weight: math.unit(1000, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/asche/front.svg",
  4123. extra: 1258 / 1190,
  4124. bottom: 47 / 1305
  4125. }
  4126. },
  4127. frontUnderwear: {
  4128. height: math.unit(5, "meters"),
  4129. weight: math.unit(1000, "kg"),
  4130. name: "Front (Underwear)",
  4131. image: {
  4132. source: "./media/characters/asche/front-underwear.svg",
  4133. extra: 1258 / 1190,
  4134. bottom: 47 / 1305
  4135. }
  4136. },
  4137. frontDressed: {
  4138. height: math.unit(5, "meters"),
  4139. weight: math.unit(1000, "kg"),
  4140. name: "Front (Dressed)",
  4141. image: {
  4142. source: "./media/characters/asche/front-dressed.svg",
  4143. extra: 1258 / 1190,
  4144. bottom: 47 / 1305
  4145. }
  4146. },
  4147. frontArmor: {
  4148. height: math.unit(5, "meters"),
  4149. weight: math.unit(1000, "kg"),
  4150. name: "Front (Armored)",
  4151. image: {
  4152. source: "./media/characters/asche/front-armored.svg",
  4153. extra: 1374 / 1308,
  4154. bottom: 23 / 1397
  4155. }
  4156. },
  4157. mp724: {
  4158. height: math.unit(0.96, "meters"),
  4159. weight: math.unit(38, "kg"),
  4160. name: "H&K MP724",
  4161. image: {
  4162. source: "./media/characters/asche/h&k-mp724.svg"
  4163. }
  4164. },
  4165. side: {
  4166. height: math.unit(5, "meters"),
  4167. weight: math.unit(1000, "kg"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/asche/side.svg",
  4171. extra: 1717 / 1609,
  4172. bottom: 0.005
  4173. }
  4174. },
  4175. back: {
  4176. height: math.unit(5, "meters"),
  4177. weight: math.unit(1000, "kg"),
  4178. name: "Back",
  4179. image: {
  4180. source: "./media/characters/asche/back.svg",
  4181. extra: 1570 / 1501
  4182. }
  4183. },
  4184. },
  4185. [
  4186. {
  4187. name: "DEFCON 5",
  4188. height: math.unit(5, "meters")
  4189. },
  4190. {
  4191. name: "DEFCON 4",
  4192. height: math.unit(500, "meters"),
  4193. default: true
  4194. },
  4195. {
  4196. name: "DEFCON 3",
  4197. height: math.unit(5, "km")
  4198. },
  4199. {
  4200. name: "DEFCON 2",
  4201. height: math.unit(500, "km")
  4202. },
  4203. {
  4204. name: "DEFCON 1",
  4205. height: math.unit(500000, "km")
  4206. },
  4207. {
  4208. name: "DEFCON 0",
  4209. height: math.unit(3, "gigaparsecs")
  4210. },
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(2, "meters"),
  4218. weight: math.unit(76, "kg"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/gale/front.svg"
  4222. }
  4223. },
  4224. frontAlt1: {
  4225. height: math.unit(2, "meters"),
  4226. weight: math.unit(76, "kg"),
  4227. name: "Front (Alt 1)",
  4228. image: {
  4229. source: "./media/characters/gale/front-alt-1.svg"
  4230. }
  4231. },
  4232. frontAlt2: {
  4233. height: math.unit(2, "meters"),
  4234. weight: math.unit(76, "kg"),
  4235. name: "Front (Alt 2)",
  4236. image: {
  4237. source: "./media/characters/gale/front-alt-2.svg"
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(7, "feet")
  4245. },
  4246. {
  4247. name: "Macro",
  4248. height: math.unit(150, "feet"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Macro+",
  4253. height: math.unit(300, "feet")
  4254. },
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4259. {
  4260. front: {
  4261. height: math.unit(2, "meters"),
  4262. weight: math.unit(76, "kg"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/draylen/front.svg"
  4266. }
  4267. }
  4268. },
  4269. [
  4270. {
  4271. name: "Macro",
  4272. height: math.unit(150, "feet"),
  4273. default: true
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4279. {
  4280. front: {
  4281. height: math.unit(7 + 9 / 12, "feet"),
  4282. weight: math.unit(379, "lbs"),
  4283. name: "Front",
  4284. image: {
  4285. source: "./media/characters/chez/front.svg"
  4286. }
  4287. },
  4288. side: {
  4289. height: math.unit(7 + 9 / 12, "feet"),
  4290. weight: math.unit(379, "lbs"),
  4291. name: "Side",
  4292. image: {
  4293. source: "./media/characters/chez/side.svg"
  4294. }
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(7 + 9 / 12, "feet"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "God King",
  4305. height: math.unit(9750000, "meters")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(6, "feet"),
  4314. weight: math.unit(275, "lbs"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/kaylum/front.svg",
  4318. bottom: 0.01,
  4319. extra: 1166 / 1031
  4320. }
  4321. },
  4322. frontWingless: {
  4323. height: math.unit(6, "feet"),
  4324. weight: math.unit(275, "lbs"),
  4325. name: "Front (Wingless)",
  4326. image: {
  4327. source: "./media/characters/kaylum/front-wingless.svg",
  4328. bottom: 0.01,
  4329. extra: 1117 / 1031
  4330. }
  4331. }
  4332. },
  4333. [
  4334. {
  4335. name: "Normal",
  4336. height: math.unit(3.05, "meters")
  4337. },
  4338. {
  4339. name: "Master",
  4340. height: math.unit(5.5, "meters")
  4341. },
  4342. {
  4343. name: "Rampage",
  4344. height: math.unit(19, "meters")
  4345. },
  4346. {
  4347. name: "Macro Lite",
  4348. height: math.unit(37, "meters")
  4349. },
  4350. {
  4351. name: "Hyper Predator",
  4352. height: math.unit(61, "meters")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(138, "meters"),
  4357. default: true
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(6, "feet"),
  4366. weight: math.unit(150, "lbs"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/geta/front.svg"
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Micro",
  4376. height: math.unit(3, "inches"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Normal",
  4381. height: math.unit(5 + 5 / 12, "feet")
  4382. }
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4387. {
  4388. front: {
  4389. height: math.unit(6, "feet"),
  4390. weight: math.unit(300, "lbs"),
  4391. name: "Front",
  4392. image: {
  4393. source: "./media/characters/tyrnn/front.svg"
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Main Height",
  4400. height: math.unit(355, "feet"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Fave. Height",
  4405. height: math.unit(2400, "feet")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(6, "feet"),
  4414. weight: math.unit(300, "lbs"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/appledectomy/front.svg"
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Macro",
  4424. height: math.unit(2500, "feet")
  4425. },
  4426. {
  4427. name: "Megamacro",
  4428. height: math.unit(50, "miles"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Gigamacro",
  4433. height: math.unit(5000, "miles")
  4434. },
  4435. {
  4436. name: "Teramacro",
  4437. height: math.unit(250000, "miles")
  4438. },
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(6, "feet"),
  4446. weight: math.unit(200, "lbs"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/vulpes/front.svg",
  4450. extra: 573 / 543,
  4451. bottom: 0.033
  4452. }
  4453. },
  4454. side: {
  4455. height: math.unit(6, "feet"),
  4456. weight: math.unit(200, "lbs"),
  4457. name: "Side",
  4458. image: {
  4459. source: "./media/characters/vulpes/side.svg",
  4460. extra: 577 / 549,
  4461. bottom: 11 / 588
  4462. }
  4463. },
  4464. back: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(200, "lbs"),
  4467. name: "Back",
  4468. image: {
  4469. source: "./media/characters/vulpes/back.svg",
  4470. extra: 573 / 549,
  4471. bottom: 20 / 593
  4472. }
  4473. },
  4474. feet: {
  4475. height: math.unit(1.276, "feet"),
  4476. name: "Feet",
  4477. image: {
  4478. source: "./media/characters/vulpes/feet.svg"
  4479. }
  4480. },
  4481. maw: {
  4482. height: math.unit(1.18, "feet"),
  4483. name: "Maw",
  4484. image: {
  4485. source: "./media/characters/vulpes/maw.svg"
  4486. }
  4487. },
  4488. },
  4489. [
  4490. {
  4491. name: "Micro",
  4492. height: math.unit(2, "inches")
  4493. },
  4494. {
  4495. name: "Normal",
  4496. height: math.unit(6.3, "feet")
  4497. },
  4498. {
  4499. name: "Macro",
  4500. height: math.unit(850, "feet")
  4501. },
  4502. {
  4503. name: "Megamacro",
  4504. height: math.unit(7500, "feet"),
  4505. default: true
  4506. },
  4507. {
  4508. name: "Gigamacro",
  4509. height: math.unit(570000, "miles")
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4515. {
  4516. front: {
  4517. height: math.unit(6, "feet"),
  4518. weight: math.unit(210, "lbs"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/rain-fallen/front.svg"
  4522. }
  4523. },
  4524. side: {
  4525. height: math.unit(6, "feet"),
  4526. weight: math.unit(210, "lbs"),
  4527. name: "Side",
  4528. image: {
  4529. source: "./media/characters/rain-fallen/side.svg"
  4530. }
  4531. },
  4532. back: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(210, "lbs"),
  4535. name: "Back",
  4536. image: {
  4537. source: "./media/characters/rain-fallen/back.svg"
  4538. }
  4539. },
  4540. feral: {
  4541. height: math.unit(9, "feet"),
  4542. weight: math.unit(700, "lbs"),
  4543. name: "Feral",
  4544. image: {
  4545. source: "./media/characters/rain-fallen/feral.svg"
  4546. }
  4547. },
  4548. },
  4549. [
  4550. {
  4551. name: "Meddling with Mortals",
  4552. height: math.unit(8 + 8/12, "feet")
  4553. },
  4554. {
  4555. name: "Normal",
  4556. height: math.unit(5, "meter")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(150, "meter"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(278e6, "meter")
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(2e9, "meter")
  4570. },
  4571. {
  4572. name: "Teramacro",
  4573. height: math.unit(8e12, "meter")
  4574. },
  4575. {
  4576. name: "Devourer",
  4577. height: math.unit(14, "zettameters")
  4578. },
  4579. {
  4580. name: "Scarlet King",
  4581. height: math.unit(18, "yottameters")
  4582. },
  4583. {
  4584. name: "Void",
  4585. height: math.unit(1e88, "yottameters")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4591. {
  4592. standing: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(180, "lbs"),
  4595. name: "Standing",
  4596. image: {
  4597. source: "./media/characters/zaakira/standing.svg",
  4598. extra: 1599/1504,
  4599. bottom: 39/1638
  4600. }
  4601. },
  4602. laying: {
  4603. height: math.unit(3, "feet"),
  4604. weight: math.unit(180, "lbs"),
  4605. name: "Laying",
  4606. image: {
  4607. source: "./media/characters/zaakira/laying.svg"
  4608. }
  4609. },
  4610. },
  4611. [
  4612. {
  4613. name: "Normal",
  4614. height: math.unit(12, "feet")
  4615. },
  4616. {
  4617. name: "Macro",
  4618. height: math.unit(279, "feet"),
  4619. default: true
  4620. }
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4625. {
  4626. femSfw: {
  4627. height: math.unit(8, "feet"),
  4628. weight: math.unit(350, "lb"),
  4629. name: "Fem",
  4630. image: {
  4631. source: "./media/characters/sigvald/fem-sfw.svg",
  4632. extra: 182 / 164,
  4633. bottom: 8.7 / 190.5
  4634. }
  4635. },
  4636. femNsfw: {
  4637. height: math.unit(8, "feet"),
  4638. weight: math.unit(350, "lb"),
  4639. name: "Fem (NSFW)",
  4640. image: {
  4641. source: "./media/characters/sigvald/fem-nsfw.svg",
  4642. extra: 182 / 164,
  4643. bottom: 8.7 / 190.5
  4644. }
  4645. },
  4646. maleNsfw: {
  4647. height: math.unit(8, "feet"),
  4648. weight: math.unit(350, "lb"),
  4649. name: "Male (NSFW)",
  4650. image: {
  4651. source: "./media/characters/sigvald/male-nsfw.svg",
  4652. extra: 182 / 164,
  4653. bottom: 8.7 / 190.5
  4654. }
  4655. },
  4656. hermNsfw: {
  4657. height: math.unit(8, "feet"),
  4658. weight: math.unit(350, "lb"),
  4659. name: "Herm (NSFW)",
  4660. image: {
  4661. source: "./media/characters/sigvald/herm-nsfw.svg",
  4662. extra: 182 / 164,
  4663. bottom: 8.7 / 190.5
  4664. }
  4665. },
  4666. dick: {
  4667. height: math.unit(2.36, "feet"),
  4668. name: "Dick",
  4669. image: {
  4670. source: "./media/characters/sigvald/dick.svg"
  4671. }
  4672. },
  4673. eye: {
  4674. height: math.unit(0.31, "feet"),
  4675. name: "Eye",
  4676. image: {
  4677. source: "./media/characters/sigvald/eye.svg"
  4678. }
  4679. },
  4680. mouth: {
  4681. height: math.unit(0.92, "feet"),
  4682. name: "Mouth",
  4683. image: {
  4684. source: "./media/characters/sigvald/mouth.svg"
  4685. }
  4686. },
  4687. paws: {
  4688. height: math.unit(2.2, "feet"),
  4689. name: "Paws",
  4690. image: {
  4691. source: "./media/characters/sigvald/paws.svg"
  4692. }
  4693. }
  4694. },
  4695. [
  4696. {
  4697. name: "Normal",
  4698. height: math.unit(8, "feet")
  4699. },
  4700. {
  4701. name: "Large",
  4702. height: math.unit(12, "feet")
  4703. },
  4704. {
  4705. name: "Larger",
  4706. height: math.unit(20, "feet")
  4707. },
  4708. {
  4709. name: "Macro",
  4710. height: math.unit(150, "feet")
  4711. },
  4712. {
  4713. name: "Macro+",
  4714. height: math.unit(200, "feet"),
  4715. default: true
  4716. },
  4717. ]
  4718. ))
  4719. characterMakers.push(() => makeCharacter(
  4720. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4721. {
  4722. side: {
  4723. height: math.unit(12, "feet"),
  4724. weight: math.unit(2000, "kg"),
  4725. name: "Side",
  4726. image: {
  4727. source: "./media/characters/scott/side.svg",
  4728. extra: 754 / 724,
  4729. bottom: 0.069
  4730. }
  4731. },
  4732. upright: {
  4733. height: math.unit(12, "feet"),
  4734. weight: math.unit(2000, "kg"),
  4735. name: "Upright",
  4736. image: {
  4737. source: "./media/characters/scott/upright.svg",
  4738. extra: 3881 / 3722,
  4739. bottom: 0.05
  4740. }
  4741. },
  4742. },
  4743. [
  4744. {
  4745. name: "Normal",
  4746. height: math.unit(12, "feet"),
  4747. default: true
  4748. },
  4749. ]
  4750. ))
  4751. characterMakers.push(() => makeCharacter(
  4752. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4753. {
  4754. side: {
  4755. height: math.unit(8, "meters"),
  4756. weight: math.unit(84755, "lbs"),
  4757. name: "Side",
  4758. image: {
  4759. source: "./media/characters/tobias/side.svg",
  4760. extra: 1474 / 1096,
  4761. bottom: 38.9 / 1513.1235
  4762. }
  4763. },
  4764. },
  4765. [
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(8, "meters"),
  4769. default: true
  4770. },
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4775. {
  4776. front: {
  4777. height: math.unit(5.5, "feet"),
  4778. weight: math.unit(400, "lbs"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/kieran/front.svg",
  4782. extra: 2694 / 2364,
  4783. bottom: 217 / 2908
  4784. }
  4785. },
  4786. side: {
  4787. height: math.unit(5.5, "feet"),
  4788. weight: math.unit(400, "lbs"),
  4789. name: "Side",
  4790. image: {
  4791. source: "./media/characters/kieran/side.svg",
  4792. extra: 875 / 777,
  4793. bottom: 84.6 / 959
  4794. }
  4795. },
  4796. },
  4797. [
  4798. {
  4799. name: "Normal",
  4800. height: math.unit(5.5, "feet"),
  4801. default: true
  4802. },
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4807. {
  4808. side: {
  4809. height: math.unit(2, "meters"),
  4810. weight: math.unit(70, "kg"),
  4811. name: "Side",
  4812. image: {
  4813. source: "./media/characters/sanya/side.svg",
  4814. bottom: 0.02,
  4815. extra: 1.02
  4816. }
  4817. },
  4818. },
  4819. [
  4820. {
  4821. name: "Small",
  4822. height: math.unit(2, "meters")
  4823. },
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(3, "meters")
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(16, "meters"),
  4831. default: true
  4832. },
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4837. {
  4838. front: {
  4839. height: math.unit(2, "meters"),
  4840. weight: math.unit(120, "kg"),
  4841. name: "Front",
  4842. image: {
  4843. source: "./media/characters/miranda/front.svg",
  4844. extra: 195 / 185,
  4845. bottom: 10.9 / 206.5
  4846. }
  4847. },
  4848. back: {
  4849. height: math.unit(2, "meters"),
  4850. weight: math.unit(120, "kg"),
  4851. name: "Back",
  4852. image: {
  4853. source: "./media/characters/miranda/back.svg",
  4854. extra: 201 / 193,
  4855. bottom: 2.3 / 203.7
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(10, "feet"),
  4863. default: true
  4864. }
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "James", species: ["deer"], tags: ["anthro"] },
  4869. {
  4870. side: {
  4871. height: math.unit(2, "meters"),
  4872. weight: math.unit(100, "kg"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/james/front.svg",
  4876. extra: 10 / 8.5
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(8.5, "feet"),
  4884. default: true
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4890. {
  4891. side: {
  4892. height: math.unit(9.5, "feet"),
  4893. weight: math.unit(2500, "lbs"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/heather/side.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(9.5, "feet"),
  4904. default: true
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4910. {
  4911. side: {
  4912. height: math.unit(6.5, "feet"),
  4913. weight: math.unit(400, "lbs"),
  4914. name: "Side",
  4915. image: {
  4916. source: "./media/characters/lukas/side.svg",
  4917. extra: 7.25 / 6.5
  4918. }
  4919. },
  4920. },
  4921. [
  4922. {
  4923. name: "Normal",
  4924. height: math.unit(6.5, "feet"),
  4925. default: true
  4926. }
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4931. {
  4932. side: {
  4933. height: math.unit(5, "feet"),
  4934. weight: math.unit(3000, "lbs"),
  4935. name: "Side",
  4936. image: {
  4937. source: "./media/characters/louise/side.svg"
  4938. }
  4939. },
  4940. },
  4941. [
  4942. {
  4943. name: "Normal",
  4944. height: math.unit(5, "feet"),
  4945. default: true
  4946. }
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4951. {
  4952. side: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(150, "lbs"),
  4955. name: "Side",
  4956. image: {
  4957. source: "./media/characters/ramona/side.svg"
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(5.3, "meters"),
  4965. default: true
  4966. },
  4967. {
  4968. name: "Macro",
  4969. height: math.unit(20, "stories")
  4970. },
  4971. {
  4972. name: "Macro+",
  4973. height: math.unit(50, "stories")
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4979. {
  4980. standing: {
  4981. height: math.unit(5.75, "feet"),
  4982. weight: math.unit(160, "lbs"),
  4983. name: "Standing",
  4984. image: {
  4985. source: "./media/characters/deerpuff/standing.svg",
  4986. extra: 682 / 624
  4987. }
  4988. },
  4989. sitting: {
  4990. height: math.unit(5.75 / 1.79, "feet"),
  4991. weight: math.unit(160, "lbs"),
  4992. name: "Sitting",
  4993. image: {
  4994. source: "./media/characters/deerpuff/sitting.svg",
  4995. bottom: 44 / 400,
  4996. extra: 1
  4997. }
  4998. },
  4999. taurLaying: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(400, "lbs"),
  5002. name: "Taur (Laying)",
  5003. image: {
  5004. source: "./media/characters/deerpuff/taur-laying.svg"
  5005. }
  5006. },
  5007. },
  5008. [
  5009. {
  5010. name: "Puffball",
  5011. height: math.unit(6, "inches")
  5012. },
  5013. {
  5014. name: "Normalpuff",
  5015. height: math.unit(5.75, "feet")
  5016. },
  5017. {
  5018. name: "Macropuff",
  5019. height: math.unit(1500, "feet"),
  5020. default: true
  5021. },
  5022. {
  5023. name: "Megapuff",
  5024. height: math.unit(500, "miles")
  5025. },
  5026. {
  5027. name: "Gigapuff",
  5028. height: math.unit(250000, "miles")
  5029. },
  5030. {
  5031. name: "Omegapuff",
  5032. height: math.unit(1000, "lightyears")
  5033. },
  5034. ]
  5035. ))
  5036. characterMakers.push(() => makeCharacter(
  5037. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5038. {
  5039. stomping: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(170, "lbs"),
  5042. name: "Stomping",
  5043. image: {
  5044. source: "./media/characters/vivian/stomping.svg"
  5045. }
  5046. },
  5047. sitting: {
  5048. height: math.unit(6 / 1.75, "feet"),
  5049. weight: math.unit(170, "lbs"),
  5050. name: "Sitting",
  5051. image: {
  5052. source: "./media/characters/vivian/sitting.svg",
  5053. bottom: 1 / 6.4,
  5054. extra: 1,
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(7, "feet"),
  5062. default: true
  5063. },
  5064. {
  5065. name: "Macro",
  5066. height: math.unit(10, "stories")
  5067. },
  5068. {
  5069. name: "Macro+",
  5070. height: math.unit(30, "stories")
  5071. },
  5072. {
  5073. name: "Megamacro",
  5074. height: math.unit(10, "miles")
  5075. },
  5076. {
  5077. name: "Megamacro+",
  5078. height: math.unit(2750000, "meters")
  5079. },
  5080. ]
  5081. ))
  5082. characterMakers.push(() => makeCharacter(
  5083. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5084. {
  5085. front: {
  5086. height: math.unit(6, "feet"),
  5087. weight: math.unit(160, "lbs"),
  5088. name: "Front",
  5089. image: {
  5090. source: "./media/characters/prince/front.svg",
  5091. extra: 3400 / 3000
  5092. }
  5093. },
  5094. jumping: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(160, "lbs"),
  5097. name: "Jumping",
  5098. image: {
  5099. source: "./media/characters/prince/jump.svg",
  5100. extra: 2555 / 2134
  5101. }
  5102. },
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(7.75, "feet"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Not cute",
  5112. height: math.unit(17, "feet")
  5113. },
  5114. {
  5115. name: "I said NOT",
  5116. height: math.unit(91, "feet")
  5117. },
  5118. {
  5119. name: "Please stop",
  5120. height: math.unit(560, "feet")
  5121. },
  5122. {
  5123. name: "What have you done",
  5124. height: math.unit(2200, "feet")
  5125. },
  5126. {
  5127. name: "Deer God",
  5128. height: math.unit(3.6, "miles")
  5129. },
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5134. {
  5135. standing: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(300, "lbs"),
  5138. name: "Standing",
  5139. image: {
  5140. source: "./media/characters/psymon/standing.svg",
  5141. extra: 1888 / 1810,
  5142. bottom: 0.05
  5143. }
  5144. },
  5145. slithering: {
  5146. height: math.unit(6, "feet"),
  5147. weight: math.unit(300, "lbs"),
  5148. name: "Slithering",
  5149. image: {
  5150. source: "./media/characters/psymon/slithering.svg",
  5151. extra: 1330 / 1224
  5152. }
  5153. },
  5154. slitheringAlt: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(300, "lbs"),
  5157. name: "Slithering (Alt)",
  5158. image: {
  5159. source: "./media/characters/psymon/slithering-alt.svg",
  5160. extra: 1330 / 1224
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(11.25, "feet"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Large",
  5172. height: math.unit(27, "feet")
  5173. },
  5174. {
  5175. name: "Giant",
  5176. height: math.unit(87, "feet")
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(365, "feet")
  5181. },
  5182. {
  5183. name: "Megamacro",
  5184. height: math.unit(3, "miles")
  5185. },
  5186. {
  5187. name: "World Serpent",
  5188. height: math.unit(8000, "miles")
  5189. },
  5190. ]
  5191. ))
  5192. characterMakers.push(() => makeCharacter(
  5193. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5194. {
  5195. front: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(180, "lbs"),
  5198. name: "Front",
  5199. image: {
  5200. source: "./media/characters/daimos/front.svg",
  5201. extra: 4160 / 3897,
  5202. bottom: 0.021
  5203. }
  5204. }
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(8, "feet"),
  5210. default: true
  5211. },
  5212. {
  5213. name: "Big Dog",
  5214. height: math.unit(22, "feet")
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(127, "feet")
  5219. },
  5220. {
  5221. name: "Megamacro",
  5222. height: math.unit(3600, "feet")
  5223. },
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5228. {
  5229. side: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(180, "lbs"),
  5232. name: "Side",
  5233. image: {
  5234. source: "./media/characters/blake/side.svg",
  5235. extra: 1212 / 1120,
  5236. bottom: 0.05
  5237. }
  5238. },
  5239. crouched: {
  5240. height: math.unit(6 * 0.57, "feet"),
  5241. weight: math.unit(180, "lbs"),
  5242. name: "Crouched",
  5243. image: {
  5244. source: "./media/characters/blake/crouched.svg",
  5245. extra: 840 / 587,
  5246. bottom: 0.04
  5247. }
  5248. },
  5249. bent: {
  5250. height: math.unit(6 * 0.75, "feet"),
  5251. weight: math.unit(180, "lbs"),
  5252. name: "Bent",
  5253. image: {
  5254. source: "./media/characters/blake/bent.svg",
  5255. extra: 592 / 544,
  5256. bottom: 0.035
  5257. }
  5258. },
  5259. },
  5260. [
  5261. {
  5262. name: "Normal",
  5263. height: math.unit(8 + 1 / 6, "feet"),
  5264. default: true
  5265. },
  5266. {
  5267. name: "Big Backside",
  5268. height: math.unit(37, "feet")
  5269. },
  5270. {
  5271. name: "Subway Shredder",
  5272. height: math.unit(72, "feet")
  5273. },
  5274. {
  5275. name: "City Carver",
  5276. height: math.unit(1675, "feet")
  5277. },
  5278. {
  5279. name: "Tectonic Tweaker",
  5280. height: math.unit(2300, "miles")
  5281. },
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5286. {
  5287. front: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(180, "lbs"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/guisetto/front.svg",
  5293. extra: 856 / 817,
  5294. bottom: 0.06
  5295. }
  5296. },
  5297. airborne: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(180, "lbs"),
  5300. name: "Airborne",
  5301. image: {
  5302. source: "./media/characters/guisetto/airborne.svg",
  5303. extra: 584 / 525
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(10 + 11 / 12, "feet"),
  5311. default: true
  5312. },
  5313. {
  5314. name: "Large",
  5315. height: math.unit(35, "feet")
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(475, "feet")
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5325. {
  5326. front: {
  5327. height: math.unit(6, "feet"),
  5328. weight: math.unit(180, "lbs"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/luxor/front.svg",
  5332. extra: 2940 / 2152
  5333. }
  5334. },
  5335. back: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(180, "lbs"),
  5338. name: "Back",
  5339. image: {
  5340. source: "./media/characters/luxor/back.svg",
  5341. extra: 1083 / 960
  5342. }
  5343. },
  5344. },
  5345. [
  5346. {
  5347. name: "Normal",
  5348. height: math.unit(5 + 5 / 6, "feet"),
  5349. default: true
  5350. },
  5351. {
  5352. name: "Lamp",
  5353. height: math.unit(50, "feet")
  5354. },
  5355. {
  5356. name: "Lämp",
  5357. height: math.unit(300, "feet")
  5358. },
  5359. {
  5360. name: "The sun is a lamp",
  5361. height: math.unit(250000, "miles")
  5362. },
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5367. {
  5368. front: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(50, "lbs"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/huoyan/front.svg"
  5374. }
  5375. },
  5376. side: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(180, "lbs"),
  5379. name: "Side",
  5380. image: {
  5381. source: "./media/characters/huoyan/side.svg"
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Chef",
  5388. height: math.unit(9, "feet")
  5389. },
  5390. {
  5391. name: "Normal",
  5392. height: math.unit(65, "feet"),
  5393. default: true
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(780, "feet")
  5398. },
  5399. {
  5400. name: "Flaming Mountain",
  5401. height: math.unit(4.8, "miles")
  5402. },
  5403. {
  5404. name: "Celestial",
  5405. height: math.unit(765000, "miles")
  5406. },
  5407. ]
  5408. ))
  5409. characterMakers.push(() => makeCharacter(
  5410. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5411. {
  5412. front: {
  5413. height: math.unit(5 + 3 / 4, "feet"),
  5414. weight: math.unit(120, "lbs"),
  5415. name: "Front",
  5416. image: {
  5417. source: "./media/characters/tails/front.svg"
  5418. }
  5419. }
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(5 + 3 / 4, "feet"),
  5425. default: true
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(4, "feet"),
  5434. weight: math.unit(50, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/rainy/front.svg"
  5438. }
  5439. }
  5440. },
  5441. [
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(800, "feet"),
  5445. default: true
  5446. }
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5451. {
  5452. front: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(150, "lbs"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/rainier/front.svg"
  5458. }
  5459. }
  5460. },
  5461. [
  5462. {
  5463. name: "Micro",
  5464. height: math.unit(2, "mm"),
  5465. default: true
  5466. }
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(180, "lbs"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/andy/front.svg"
  5478. }
  5479. }
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(8, "feet"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Macro",
  5489. height: math.unit(1000, "feet")
  5490. },
  5491. {
  5492. name: "Megamacro",
  5493. height: math.unit(5, "miles")
  5494. },
  5495. {
  5496. name: "Gigamacro",
  5497. height: math.unit(5000, "miles")
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5503. {
  5504. front: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(210, "lbs"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/cimmaron/front-sfw.svg",
  5510. extra: 701 / 676,
  5511. bottom: 0.046
  5512. }
  5513. },
  5514. back: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(210, "lbs"),
  5517. name: "Back",
  5518. image: {
  5519. source: "./media/characters/cimmaron/back-sfw.svg",
  5520. extra: 701 / 676,
  5521. bottom: 0.046
  5522. }
  5523. },
  5524. frontNsfw: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(210, "lbs"),
  5527. name: "Front (NSFW)",
  5528. image: {
  5529. source: "./media/characters/cimmaron/front-nsfw.svg",
  5530. extra: 701 / 676,
  5531. bottom: 0.046
  5532. }
  5533. },
  5534. backNsfw: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(210, "lbs"),
  5537. name: "Back (NSFW)",
  5538. image: {
  5539. source: "./media/characters/cimmaron/back-nsfw.svg",
  5540. extra: 701 / 676,
  5541. bottom: 0.046
  5542. }
  5543. },
  5544. dick: {
  5545. height: math.unit(1.714, "feet"),
  5546. name: "Dick",
  5547. image: {
  5548. source: "./media/characters/cimmaron/dick.svg"
  5549. }
  5550. },
  5551. },
  5552. [
  5553. {
  5554. name: "Normal",
  5555. height: math.unit(6, "feet"),
  5556. default: true
  5557. },
  5558. {
  5559. name: "Macro Mayor",
  5560. height: math.unit(350, "meters")
  5561. },
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5566. {
  5567. front: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(200, "lbs"),
  5570. name: "Front",
  5571. image: {
  5572. source: "./media/characters/akari/front.svg",
  5573. extra: 962 / 901,
  5574. bottom: 0.04
  5575. }
  5576. }
  5577. },
  5578. [
  5579. {
  5580. name: "Micro",
  5581. height: math.unit(5, "inches"),
  5582. default: true
  5583. },
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(7, "feet")
  5587. },
  5588. ]
  5589. ))
  5590. characterMakers.push(() => makeCharacter(
  5591. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5592. {
  5593. front: {
  5594. height: math.unit(6, "feet"),
  5595. weight: math.unit(140, "lbs"),
  5596. name: "Front",
  5597. image: {
  5598. source: "./media/characters/cynosura/front.svg",
  5599. extra: 896 / 847
  5600. }
  5601. },
  5602. back: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(140, "lbs"),
  5605. name: "Back",
  5606. image: {
  5607. source: "./media/characters/cynosura/back.svg",
  5608. extra: 1365 / 1250
  5609. }
  5610. },
  5611. },
  5612. [
  5613. {
  5614. name: "Micro",
  5615. height: math.unit(4, "inches")
  5616. },
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(5.75, "feet"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Tall",
  5624. height: math.unit(10, "feet")
  5625. },
  5626. {
  5627. name: "Big",
  5628. height: math.unit(20, "feet")
  5629. },
  5630. {
  5631. name: "Macro",
  5632. height: math.unit(50, "feet")
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5638. {
  5639. front: {
  5640. height: math.unit(13 + 2/12, "feet"),
  5641. weight: math.unit(800, "kg"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/gin/front.svg",
  5645. extra: 1312/1191,
  5646. bottom: 45/1357
  5647. }
  5648. },
  5649. mouth: {
  5650. height: math.unit(2.39 * 1.8, "feet"),
  5651. name: "Mouth",
  5652. image: {
  5653. source: "./media/characters/gin/mouth.svg"
  5654. }
  5655. },
  5656. hand: {
  5657. height: math.unit(1.57 * 2.19, "feet"),
  5658. name: "Hand",
  5659. image: {
  5660. source: "./media/characters/gin/hand.svg"
  5661. }
  5662. },
  5663. foot: {
  5664. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5665. name: "Foot",
  5666. image: {
  5667. source: "./media/characters/gin/foot.svg"
  5668. }
  5669. },
  5670. sole: {
  5671. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5672. name: "Sole",
  5673. image: {
  5674. source: "./media/characters/gin/sole.svg"
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Very Small",
  5681. height: math.unit(13 + 2 / 12, "feet")
  5682. },
  5683. {
  5684. name: "Micro",
  5685. height: math.unit(600, "miles")
  5686. },
  5687. {
  5688. name: "Regular",
  5689. height: math.unit(20, "earths"),
  5690. default: true
  5691. },
  5692. {
  5693. name: "Macro",
  5694. height: math.unit(2.2, "solarradii")
  5695. },
  5696. {
  5697. name: "Teramacro",
  5698. height: math.unit(1.2, "galaxies")
  5699. },
  5700. {
  5701. name: "Omegamacro",
  5702. height: math.unit(200, "universes")
  5703. },
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(6 + 1 / 6, "feet"),
  5711. weight: math.unit(178, "lbs"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/guy/front.svg"
  5715. }
  5716. }
  5717. },
  5718. [
  5719. {
  5720. name: "Normal",
  5721. height: math.unit(6 + 1 / 6, "feet"),
  5722. default: true
  5723. },
  5724. {
  5725. name: "Large",
  5726. height: math.unit(25 + 7 / 12, "feet")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(60 + 9 / 12, "feet")
  5731. },
  5732. {
  5733. name: "Macro+",
  5734. height: math.unit(246, "feet")
  5735. },
  5736. {
  5737. name: "Macro++",
  5738. height: math.unit(878, "feet")
  5739. }
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(9, "feet"),
  5747. weight: math.unit(800, "lbs"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/tiberius/front.svg",
  5751. extra: 2295 / 2071
  5752. }
  5753. },
  5754. back: {
  5755. height: math.unit(9, "feet"),
  5756. weight: math.unit(800, "lbs"),
  5757. name: "Back",
  5758. image: {
  5759. source: "./media/characters/tiberius/back.svg",
  5760. extra: 2373 / 2160
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(9, "feet"),
  5768. default: true
  5769. }
  5770. ]
  5771. ))
  5772. characterMakers.push(() => makeCharacter(
  5773. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5774. {
  5775. front: {
  5776. height: math.unit(6, "feet"),
  5777. weight: math.unit(600, "lbs"),
  5778. name: "Front",
  5779. image: {
  5780. source: "./media/characters/surgo/front.svg",
  5781. extra: 3591 / 2227
  5782. }
  5783. },
  5784. back: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(600, "lbs"),
  5787. name: "Back",
  5788. image: {
  5789. source: "./media/characters/surgo/back.svg",
  5790. extra: 3557 / 2228
  5791. }
  5792. },
  5793. laying: {
  5794. height: math.unit(6 * 0.85, "feet"),
  5795. weight: math.unit(600, "lbs"),
  5796. name: "Laying",
  5797. image: {
  5798. source: "./media/characters/surgo/laying.svg"
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(6, "feet"),
  5806. default: true
  5807. }
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5812. {
  5813. side: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(150, "lbs"),
  5816. name: "Side",
  5817. image: {
  5818. source: "./media/characters/cibus/side.svg",
  5819. extra: 800 / 400
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(6, "feet"),
  5827. default: true
  5828. }
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5833. {
  5834. front: {
  5835. height: math.unit(6, "feet"),
  5836. weight: math.unit(240, "lbs"),
  5837. name: "Front",
  5838. image: {
  5839. source: "./media/characters/nibbles/front.svg"
  5840. }
  5841. },
  5842. side: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(240, "lbs"),
  5845. name: "Side",
  5846. image: {
  5847. source: "./media/characters/nibbles/side.svg"
  5848. }
  5849. },
  5850. },
  5851. [
  5852. {
  5853. name: "Normal",
  5854. height: math.unit(9, "feet"),
  5855. default: true
  5856. }
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5861. {
  5862. side: {
  5863. height: math.unit(5 + 1 / 6, "feet"),
  5864. weight: math.unit(130, "lbs"),
  5865. name: "Side",
  5866. image: {
  5867. source: "./media/characters/rikky/side.svg",
  5868. extra: 851 / 801
  5869. }
  5870. },
  5871. },
  5872. [
  5873. {
  5874. name: "Normal",
  5875. height: math.unit(5 + 1 / 6, "feet")
  5876. },
  5877. {
  5878. name: "Macro",
  5879. height: math.unit(152, "feet"),
  5880. default: true
  5881. },
  5882. {
  5883. name: "Megamacro",
  5884. height: math.unit(7, "miles")
  5885. }
  5886. ]
  5887. ))
  5888. characterMakers.push(() => makeCharacter(
  5889. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5890. {
  5891. side: {
  5892. height: math.unit(370, "cm"),
  5893. weight: math.unit(350, "lbs"),
  5894. name: "Side",
  5895. image: {
  5896. source: "./media/characters/malfressa/side.svg"
  5897. }
  5898. },
  5899. walking: {
  5900. height: math.unit(370, "cm"),
  5901. weight: math.unit(350, "lbs"),
  5902. name: "Walking",
  5903. image: {
  5904. source: "./media/characters/malfressa/walking.svg"
  5905. }
  5906. },
  5907. feral: {
  5908. height: math.unit(2500, "cm"),
  5909. weight: math.unit(100000, "lbs"),
  5910. name: "Feral",
  5911. image: {
  5912. source: "./media/characters/malfressa/feral.svg",
  5913. extra: 2108 / 837,
  5914. bottom: 0.02
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(370, "cm")
  5922. },
  5923. {
  5924. name: "Macro",
  5925. height: math.unit(300, "meters"),
  5926. default: true
  5927. }
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5932. {
  5933. front: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(60, "kg"),
  5936. name: "Front",
  5937. image: {
  5938. source: "./media/characters/jaro/front.svg"
  5939. }
  5940. },
  5941. back: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(60, "kg"),
  5944. name: "Back",
  5945. image: {
  5946. source: "./media/characters/jaro/back.svg"
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Micro",
  5953. height: math.unit(7, "inches")
  5954. },
  5955. {
  5956. name: "Normal",
  5957. height: math.unit(5.5, "feet"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "Minimacro",
  5962. height: math.unit(20, "feet")
  5963. },
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(200, "meters")
  5967. }
  5968. ]
  5969. ))
  5970. characterMakers.push(() => makeCharacter(
  5971. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5972. {
  5973. front: {
  5974. height: math.unit(6, "feet"),
  5975. weight: math.unit(195, "lb"),
  5976. name: "Front",
  5977. image: {
  5978. source: "./media/characters/rogue/front.svg"
  5979. }
  5980. },
  5981. },
  5982. [
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(90, "feet"),
  5986. default: true
  5987. },
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5992. {
  5993. front: {
  5994. height: math.unit(5 + 8 / 12, "feet"),
  5995. weight: math.unit(140, "lb"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/piper/front.svg",
  5999. extra: 3948/3655,
  6000. bottom: 0/3948
  6001. }
  6002. },
  6003. },
  6004. [
  6005. {
  6006. name: "Micro",
  6007. height: math.unit(2, "inches")
  6008. },
  6009. {
  6010. name: "Normal",
  6011. height: math.unit(5 + 8 / 12, "feet")
  6012. },
  6013. {
  6014. name: "Macro",
  6015. height: math.unit(250, "feet"),
  6016. default: true
  6017. },
  6018. {
  6019. name: "Megamacro",
  6020. height: math.unit(7, "miles")
  6021. },
  6022. ]
  6023. ))
  6024. characterMakers.push(() => makeCharacter(
  6025. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6026. {
  6027. front: {
  6028. height: math.unit(6, "feet"),
  6029. weight: math.unit(220, "lb"),
  6030. name: "Front",
  6031. image: {
  6032. source: "./media/characters/gemini/front.svg"
  6033. }
  6034. },
  6035. back: {
  6036. height: math.unit(6, "feet"),
  6037. weight: math.unit(220, "lb"),
  6038. name: "Back",
  6039. image: {
  6040. source: "./media/characters/gemini/back.svg"
  6041. }
  6042. },
  6043. kneeling: {
  6044. height: math.unit(6 / 1.5, "feet"),
  6045. weight: math.unit(220, "lb"),
  6046. name: "Kneeling",
  6047. image: {
  6048. source: "./media/characters/gemini/kneeling.svg",
  6049. bottom: 0.02
  6050. }
  6051. },
  6052. },
  6053. [
  6054. {
  6055. name: "Macro",
  6056. height: math.unit(300, "meters"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Megamacro",
  6061. height: math.unit(6900, "meters")
  6062. },
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6067. {
  6068. anthro: {
  6069. height: math.unit(2.35, "meters"),
  6070. weight: math.unit(73, "kg"),
  6071. name: "Anthro",
  6072. image: {
  6073. source: "./media/characters/alicia/anthro.svg",
  6074. extra: 2571 / 2385,
  6075. bottom: 75 / 2648
  6076. }
  6077. },
  6078. paw: {
  6079. height: math.unit(1.32, "feet"),
  6080. name: "Paw",
  6081. image: {
  6082. source: "./media/characters/alicia/paw.svg"
  6083. }
  6084. },
  6085. feral: {
  6086. height: math.unit(1.69, "meters"),
  6087. weight: math.unit(73, "kg"),
  6088. name: "Feral",
  6089. image: {
  6090. source: "./media/characters/alicia/feral.svg",
  6091. extra: 2123 / 1715,
  6092. bottom: 222 / 2349
  6093. }
  6094. },
  6095. },
  6096. [
  6097. {
  6098. name: "Normal",
  6099. height: math.unit(2.35, "meters")
  6100. },
  6101. {
  6102. name: "Macro",
  6103. height: math.unit(60, "meters"),
  6104. default: true
  6105. },
  6106. {
  6107. name: "Megamacro",
  6108. height: math.unit(10000, "kilometers")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6114. {
  6115. front: {
  6116. height: math.unit(7, "feet"),
  6117. weight: math.unit(250, "lbs"),
  6118. name: "Front",
  6119. image: {
  6120. source: "./media/characters/archy/front.svg"
  6121. }
  6122. }
  6123. },
  6124. [
  6125. {
  6126. name: "Micro",
  6127. height: math.unit(1, "inch")
  6128. },
  6129. {
  6130. name: "Shorty",
  6131. height: math.unit(5, "feet")
  6132. },
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(7, "feet")
  6136. },
  6137. {
  6138. name: "Macro",
  6139. height: math.unit(600, "meters"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Megamacro",
  6144. height: math.unit(1, "mile")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(1.65, "meters"),
  6153. weight: math.unit(74, "kg"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/berri/front.svg",
  6157. extra: 857 / 837,
  6158. bottom: 18 / 877
  6159. }
  6160. },
  6161. bum: {
  6162. height: math.unit(1.46, "feet"),
  6163. name: "Bum",
  6164. image: {
  6165. source: "./media/characters/berri/bum.svg"
  6166. }
  6167. },
  6168. mouth: {
  6169. height: math.unit(0.44, "feet"),
  6170. name: "Mouth",
  6171. image: {
  6172. source: "./media/characters/berri/mouth.svg"
  6173. }
  6174. },
  6175. paw: {
  6176. height: math.unit(0.826, "feet"),
  6177. name: "Paw",
  6178. image: {
  6179. source: "./media/characters/berri/paw.svg"
  6180. }
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(1.65, "meters")
  6187. },
  6188. {
  6189. name: "Macro",
  6190. height: math.unit(60, "m"),
  6191. default: true
  6192. },
  6193. {
  6194. name: "Megamacro",
  6195. height: math.unit(9.213, "km")
  6196. },
  6197. {
  6198. name: "Planet Eater",
  6199. height: math.unit(489, "megameters")
  6200. },
  6201. {
  6202. name: "Teramacro",
  6203. height: math.unit(2471635000000, "meters")
  6204. },
  6205. {
  6206. name: "Examacro",
  6207. height: math.unit(8.0624e+26, "meters")
  6208. }
  6209. ]
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6213. {
  6214. front: {
  6215. height: math.unit(1.72, "meters"),
  6216. weight: math.unit(68, "kg"),
  6217. name: "Front",
  6218. image: {
  6219. source: "./media/characters/lexi/front.svg"
  6220. }
  6221. }
  6222. },
  6223. [
  6224. {
  6225. name: "Very Smol",
  6226. height: math.unit(10, "mm")
  6227. },
  6228. {
  6229. name: "Micro",
  6230. height: math.unit(6.8, "cm"),
  6231. default: true
  6232. },
  6233. {
  6234. name: "Normal",
  6235. height: math.unit(1.72, "m")
  6236. }
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6241. {
  6242. front: {
  6243. height: math.unit(1.69, "meters"),
  6244. weight: math.unit(68, "kg"),
  6245. name: "Front",
  6246. image: {
  6247. source: "./media/characters/martin/front.svg",
  6248. extra: 596 / 581
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(6.85, "cm"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(1.69, "m")
  6261. }
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(1.69, "meters"),
  6269. weight: math.unit(68, "kg"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/juno/front.svg"
  6273. }
  6274. }
  6275. },
  6276. [
  6277. {
  6278. name: "Micro",
  6279. height: math.unit(7, "cm")
  6280. },
  6281. {
  6282. name: "Normal",
  6283. height: math.unit(1.89, "m")
  6284. },
  6285. {
  6286. name: "Macro",
  6287. height: math.unit(353, "meters"),
  6288. default: true
  6289. }
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6294. {
  6295. front: {
  6296. height: math.unit(1.93, "meters"),
  6297. weight: math.unit(83, "kg"),
  6298. name: "Front",
  6299. image: {
  6300. source: "./media/characters/samantha/front.svg"
  6301. }
  6302. },
  6303. frontClothed: {
  6304. height: math.unit(1.93, "meters"),
  6305. weight: math.unit(83, "kg"),
  6306. name: "Front (Clothed)",
  6307. image: {
  6308. source: "./media/characters/samantha/front-clothed.svg"
  6309. }
  6310. },
  6311. back: {
  6312. height: math.unit(1.93, "meters"),
  6313. weight: math.unit(83, "kg"),
  6314. name: "Back",
  6315. image: {
  6316. source: "./media/characters/samantha/back.svg"
  6317. }
  6318. },
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(1.93, "m")
  6324. },
  6325. {
  6326. name: "Macro",
  6327. height: math.unit(74, "meters"),
  6328. default: true
  6329. },
  6330. {
  6331. name: "Macro+",
  6332. height: math.unit(223, "meters"),
  6333. },
  6334. {
  6335. name: "Megamacro",
  6336. height: math.unit(8381, "meters"),
  6337. },
  6338. {
  6339. name: "Megamacro+",
  6340. height: math.unit(12000, "kilometers")
  6341. },
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(1.92, "meters"),
  6349. weight: math.unit(80, "kg"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/dr-clay/front.svg"
  6353. }
  6354. },
  6355. frontClothed: {
  6356. height: math.unit(1.92, "meters"),
  6357. weight: math.unit(80, "kg"),
  6358. name: "Front (Clothed)",
  6359. image: {
  6360. source: "./media/characters/dr-clay/front-clothed.svg"
  6361. }
  6362. }
  6363. },
  6364. [
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(1.92, "m")
  6368. },
  6369. {
  6370. name: "Macro",
  6371. height: math.unit(214, "meters"),
  6372. default: true
  6373. },
  6374. {
  6375. name: "Macro+",
  6376. height: math.unit(12.237, "meters"),
  6377. },
  6378. {
  6379. name: "Megamacro",
  6380. height: math.unit(557, "megameters"),
  6381. },
  6382. {
  6383. name: "Unimaginable",
  6384. height: math.unit(120e9, "lightyears")
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(2, "meters"),
  6393. weight: math.unit(80, "kg"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6397. }
  6398. }
  6399. },
  6400. [
  6401. {
  6402. name: "Teramacro",
  6403. height: math.unit(500000, "lightyears"),
  6404. default: true
  6405. },
  6406. ]
  6407. ))
  6408. characterMakers.push(() => makeCharacter(
  6409. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6410. {
  6411. front: {
  6412. height: math.unit(2, "meters"),
  6413. weight: math.unit(150, "kg"),
  6414. name: "Front",
  6415. image: {
  6416. source: "./media/characters/vemus/front.svg",
  6417. extra: 1074/936,
  6418. bottom: 23/1097
  6419. }
  6420. }
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(3.75, "meters"),
  6426. default: true
  6427. },
  6428. {
  6429. name: "Big",
  6430. height: math.unit(8, "meters")
  6431. },
  6432. {
  6433. name: "Macro",
  6434. height: math.unit(100, "meters")
  6435. },
  6436. {
  6437. name: "Macro+",
  6438. height: math.unit(1500, "meters")
  6439. },
  6440. {
  6441. name: "Stellar",
  6442. height: math.unit(14e8, "meters")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(2, "meters"),
  6451. weight: math.unit(70, "kg"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/beherit/front.svg",
  6455. extra: 1408 / 1242
  6456. }
  6457. }
  6458. },
  6459. [
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(6, "feet")
  6463. },
  6464. {
  6465. name: "Lorg",
  6466. height: math.unit(25, "feet"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Lorger",
  6471. height: math.unit(75, "feet")
  6472. },
  6473. {
  6474. name: "Macro",
  6475. height: math.unit(200, "meters")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(2, "meters"),
  6484. weight: math.unit(150, "kg"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/everett/front.svg",
  6488. extra: 2038 / 1737,
  6489. bottom: 0.03
  6490. }
  6491. },
  6492. paw: {
  6493. height: math.unit(2 / 3.6, "meters"),
  6494. name: "Paw",
  6495. image: {
  6496. source: "./media/characters/everett/paw.svg"
  6497. }
  6498. },
  6499. },
  6500. [
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(15, "feet"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Lorg",
  6508. height: math.unit(70, "feet"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Lorger",
  6513. height: math.unit(250, "feet")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(500, "meters")
  6518. },
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6523. {
  6524. front: {
  6525. height: math.unit(2, "meters"),
  6526. weight: math.unit(86, "kg"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/rose/front.svg",
  6530. extra: 1785/1636,
  6531. bottom: 30/1815
  6532. }
  6533. },
  6534. frontSporty: {
  6535. height: math.unit(2, "meters"),
  6536. weight: math.unit(86, "kg"),
  6537. name: "Front (Sporty)",
  6538. image: {
  6539. source: "./media/characters/rose/front-sporty.svg",
  6540. extra: 350/335,
  6541. bottom: 10/360
  6542. }
  6543. },
  6544. frontAlt: {
  6545. height: math.unit(1.6, "meters"),
  6546. weight: math.unit(86, "kg"),
  6547. name: "Front (Alt)",
  6548. image: {
  6549. source: "./media/characters/rose/front-alt.svg",
  6550. extra: 299/283,
  6551. bottom: 3/302
  6552. }
  6553. },
  6554. plush: {
  6555. height: math.unit(2, "meters"),
  6556. weight: math.unit(86/3, "kg"),
  6557. name: "Plush",
  6558. image: {
  6559. source: "./media/characters/rose/plush.svg",
  6560. extra: 361/337,
  6561. bottom: 11/372
  6562. }
  6563. },
  6564. },
  6565. [
  6566. {
  6567. name: "True Micro",
  6568. height: math.unit(9, "cm")
  6569. },
  6570. {
  6571. name: "Micro",
  6572. height: math.unit(16, "cm")
  6573. },
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(1.85, "meters"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Mini-Macro",
  6581. height: math.unit(5, "meters")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(15, "meters")
  6586. },
  6587. {
  6588. name: "True Macro",
  6589. height: math.unit(40, "meters")
  6590. },
  6591. {
  6592. name: "City Scale",
  6593. height: math.unit(1, "km")
  6594. },
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6599. {
  6600. front: {
  6601. height: math.unit(2, "meters"),
  6602. weight: math.unit(350, "lbs"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/regal/front.svg"
  6606. }
  6607. },
  6608. back: {
  6609. height: math.unit(2, "meters"),
  6610. weight: math.unit(350, "lbs"),
  6611. name: "Back",
  6612. image: {
  6613. source: "./media/characters/regal/back.svg"
  6614. }
  6615. },
  6616. },
  6617. [
  6618. {
  6619. name: "Macro",
  6620. height: math.unit(350, "feet"),
  6621. default: true
  6622. }
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6627. {
  6628. front: {
  6629. height: math.unit(4 + 11 / 12, "feet"),
  6630. weight: math.unit(100, "lbs"),
  6631. name: "Front",
  6632. image: {
  6633. source: "./media/characters/opal/front.svg"
  6634. }
  6635. },
  6636. frontAlt: {
  6637. height: math.unit(4 + 11 / 12, "feet"),
  6638. weight: math.unit(100, "lbs"),
  6639. name: "Front (Alt)",
  6640. image: {
  6641. source: "./media/characters/opal/front-alt.svg"
  6642. }
  6643. },
  6644. },
  6645. [
  6646. {
  6647. name: "Small",
  6648. height: math.unit(4 + 11 / 12, "feet")
  6649. },
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(20, "feet"),
  6653. default: true
  6654. },
  6655. {
  6656. name: "Macro",
  6657. height: math.unit(120, "feet")
  6658. },
  6659. {
  6660. name: "Megamacro",
  6661. height: math.unit(80, "miles")
  6662. },
  6663. {
  6664. name: "True Size",
  6665. height: math.unit(100000, "lightyears")
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(6, "feet"),
  6674. weight: math.unit(200, "lbs"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/vector-wuff/front.svg"
  6678. }
  6679. }
  6680. },
  6681. [
  6682. {
  6683. name: "Normal",
  6684. height: math.unit(2.8, "meters")
  6685. },
  6686. {
  6687. name: "Macro",
  6688. height: math.unit(450, "meters"),
  6689. default: true
  6690. },
  6691. {
  6692. name: "Megamacro",
  6693. height: math.unit(15, "kilometers")
  6694. }
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6699. {
  6700. front: {
  6701. height: math.unit(6, "feet"),
  6702. weight: math.unit(256, "lbs"),
  6703. name: "Front",
  6704. image: {
  6705. source: "./media/characters/dannik/front.svg"
  6706. }
  6707. }
  6708. },
  6709. [
  6710. {
  6711. name: "Macro",
  6712. height: math.unit(69.57, "meters"),
  6713. default: true
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(120, "lbs"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/azura-saharah/front.svg"
  6726. }
  6727. },
  6728. back: {
  6729. height: math.unit(6, "feet"),
  6730. weight: math.unit(120, "lbs"),
  6731. name: "Back",
  6732. image: {
  6733. source: "./media/characters/azura-saharah/back.svg"
  6734. }
  6735. },
  6736. },
  6737. [
  6738. {
  6739. name: "Macro",
  6740. height: math.unit(100, "feet"),
  6741. default: true
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6747. {
  6748. side: {
  6749. height: math.unit(5 + 4 / 12, "feet"),
  6750. weight: math.unit(163, "lbs"),
  6751. name: "Side",
  6752. image: {
  6753. source: "./media/characters/kennedy/side.svg"
  6754. }
  6755. }
  6756. },
  6757. [
  6758. {
  6759. name: "Standard Doggo",
  6760. height: math.unit(5 + 4 / 12, "feet")
  6761. },
  6762. {
  6763. name: "Big Doggo",
  6764. height: math.unit(25 + 3 / 12, "feet"),
  6765. default: true
  6766. },
  6767. ]
  6768. ))
  6769. characterMakers.push(() => makeCharacter(
  6770. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6771. {
  6772. front: {
  6773. height: math.unit(6, "feet"),
  6774. weight: math.unit(90, "lbs"),
  6775. name: "Front",
  6776. image: {
  6777. source: "./media/characters/odi-lunar/front.svg"
  6778. }
  6779. }
  6780. },
  6781. [
  6782. {
  6783. name: "Micro",
  6784. height: math.unit(3, "inches"),
  6785. default: true
  6786. },
  6787. {
  6788. name: "Normal",
  6789. height: math.unit(5.5, "feet")
  6790. }
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6795. {
  6796. back: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(220, "lbs"),
  6799. name: "Back",
  6800. image: {
  6801. source: "./media/characters/mandake/back.svg"
  6802. }
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(7, "feet"),
  6809. default: true
  6810. },
  6811. {
  6812. name: "Macro",
  6813. height: math.unit(78, "feet")
  6814. },
  6815. {
  6816. name: "Macro+",
  6817. height: math.unit(300, "meters")
  6818. },
  6819. {
  6820. name: "Macro++",
  6821. height: math.unit(2400, "feet")
  6822. },
  6823. {
  6824. name: "Megamacro",
  6825. height: math.unit(5167, "meters")
  6826. },
  6827. {
  6828. name: "Gigamacro",
  6829. height: math.unit(41769, "miles")
  6830. },
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6835. {
  6836. front: {
  6837. height: math.unit(6, "feet"),
  6838. weight: math.unit(120, "lbs"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/yozey/front.svg"
  6842. }
  6843. },
  6844. frontAlt: {
  6845. height: math.unit(6, "feet"),
  6846. weight: math.unit(120, "lbs"),
  6847. name: "Front (Alt)",
  6848. image: {
  6849. source: "./media/characters/yozey/front-alt.svg"
  6850. }
  6851. },
  6852. side: {
  6853. height: math.unit(6, "feet"),
  6854. weight: math.unit(120, "lbs"),
  6855. name: "Side",
  6856. image: {
  6857. source: "./media/characters/yozey/side.svg"
  6858. }
  6859. },
  6860. },
  6861. [
  6862. {
  6863. name: "Micro",
  6864. height: math.unit(3, "inches"),
  6865. default: true
  6866. },
  6867. {
  6868. name: "Normal",
  6869. height: math.unit(6, "feet")
  6870. }
  6871. ]
  6872. ))
  6873. characterMakers.push(() => makeCharacter(
  6874. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6875. {
  6876. front: {
  6877. height: math.unit(6, "feet"),
  6878. weight: math.unit(103, "lbs"),
  6879. name: "Front",
  6880. image: {
  6881. source: "./media/characters/valeska-voss/front.svg"
  6882. }
  6883. }
  6884. },
  6885. [
  6886. {
  6887. name: "Mini-Sized Sub",
  6888. height: math.unit(3.1, "inches")
  6889. },
  6890. {
  6891. name: "Mid-Sized Sub",
  6892. height: math.unit(6.2, "inches")
  6893. },
  6894. {
  6895. name: "Full-Sized Sub",
  6896. height: math.unit(9.3, "inches")
  6897. },
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(5 + 2 / 12, "foot"),
  6901. default: true
  6902. },
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6907. {
  6908. front: {
  6909. height: math.unit(6, "feet"),
  6910. weight: math.unit(160, "lbs"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/gene-zeta/front.svg",
  6914. extra: 3006 / 2826,
  6915. bottom: 182 / 3188
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(6, "inches")
  6923. },
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(5 + 11 / 12, "foot"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(140, "feet")
  6932. },
  6933. {
  6934. name: "Supercharged",
  6935. height: math.unit(2500, "feet")
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(350, "lbs"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/razinox/front.svg",
  6948. extra: 1686 / 1548,
  6949. bottom: 28.2 / 1868
  6950. }
  6951. },
  6952. back: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(350, "lbs"),
  6955. name: "Back",
  6956. image: {
  6957. source: "./media/characters/razinox/back.svg",
  6958. extra: 1660 / 1590,
  6959. bottom: 15 / 1665
  6960. }
  6961. },
  6962. },
  6963. [
  6964. {
  6965. name: "Normal",
  6966. height: math.unit(10 + 8 / 12, "foot")
  6967. },
  6968. {
  6969. name: "Minimacro",
  6970. height: math.unit(15, "foot")
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(60, "foot"),
  6975. default: true
  6976. },
  6977. {
  6978. name: "Megamacro",
  6979. height: math.unit(5, "miles")
  6980. },
  6981. {
  6982. name: "Gigamacro",
  6983. height: math.unit(6000, "miles")
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6989. {
  6990. front: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(150, "lbs"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/cobalt/front.svg"
  6996. }
  6997. }
  6998. },
  6999. [
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(8 + 1 / 12, "foot")
  7003. },
  7004. {
  7005. name: "Macro",
  7006. height: math.unit(111, "foot"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Supracosmic",
  7011. height: math.unit(1e42, "feet")
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(140, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/amanda/front.svg"
  7024. }
  7025. }
  7026. },
  7027. [
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(5, "inches"),
  7031. default: true
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(2.75, "meters"),
  7040. weight: math.unit(1200, "lb"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/teal/front.svg",
  7044. extra: 2463 / 2320,
  7045. bottom: 166 / 2629
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(2.75, "meters"),
  7050. weight: math.unit(1200, "lb"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/teal/back.svg",
  7054. extra: 2580 / 2489,
  7055. bottom: 151 / 2731
  7056. }
  7057. },
  7058. sitting: {
  7059. height: math.unit(1.9, "meters"),
  7060. weight: math.unit(1200, "lb"),
  7061. name: "Sitting",
  7062. image: {
  7063. source: "./media/characters/teal/sitting.svg",
  7064. extra: 623 / 590,
  7065. bottom: 121 / 744
  7066. }
  7067. },
  7068. standing: {
  7069. height: math.unit(2.75, "meters"),
  7070. weight: math.unit(1200, "lb"),
  7071. name: "Standing",
  7072. image: {
  7073. source: "./media/characters/teal/standing.svg",
  7074. extra: 923 / 893,
  7075. bottom: 60 / 983
  7076. }
  7077. },
  7078. stretching: {
  7079. height: math.unit(3.65, "meters"),
  7080. weight: math.unit(1200, "lb"),
  7081. name: "Stretching",
  7082. image: {
  7083. source: "./media/characters/teal/stretching.svg",
  7084. extra: 1276 / 1244,
  7085. bottom: 0 / 1276
  7086. }
  7087. },
  7088. legged: {
  7089. height: math.unit(1.3, "meters"),
  7090. weight: math.unit(100, "lb"),
  7091. name: "Legged",
  7092. image: {
  7093. source: "./media/characters/teal/legged.svg",
  7094. extra: 462 / 437,
  7095. bottom: 24 / 486
  7096. }
  7097. },
  7098. naga: {
  7099. height: math.unit(5.4, "meters"),
  7100. weight: math.unit(4000, "lb"),
  7101. name: "Naga",
  7102. image: {
  7103. source: "./media/characters/teal/naga.svg",
  7104. extra: 1902 / 1858,
  7105. bottom: 0 / 1902
  7106. }
  7107. },
  7108. hand: {
  7109. height: math.unit(0.52, "meters"),
  7110. name: "Hand",
  7111. image: {
  7112. source: "./media/characters/teal/hand.svg"
  7113. }
  7114. },
  7115. maw: {
  7116. height: math.unit(0.43, "meters"),
  7117. name: "Maw",
  7118. image: {
  7119. source: "./media/characters/teal/maw.svg"
  7120. }
  7121. },
  7122. slit: {
  7123. height: math.unit(0.25, "meters"),
  7124. name: "Slit",
  7125. image: {
  7126. source: "./media/characters/teal/slit.svg"
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(2.75, "meters"),
  7134. default: true
  7135. },
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(300, "feet")
  7139. },
  7140. {
  7141. name: "Macro+",
  7142. height: math.unit(2000, "feet")
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7148. {
  7149. frontCat: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(180, "lbs"),
  7152. name: "Front (Cat)",
  7153. image: {
  7154. source: "./media/characters/ravin-amulet/front-cat.svg"
  7155. }
  7156. },
  7157. frontCatAlt: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(180, "lbs"),
  7160. name: "Front (Alt, Cat)",
  7161. image: {
  7162. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7163. }
  7164. },
  7165. frontWerewolf: {
  7166. height: math.unit(6 * 1.2, "feet"),
  7167. weight: math.unit(225, "lbs"),
  7168. name: "Front (Werewolf)",
  7169. image: {
  7170. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7171. }
  7172. },
  7173. backWerewolf: {
  7174. height: math.unit(6 * 1.2, "feet"),
  7175. weight: math.unit(225, "lbs"),
  7176. name: "Back (Werewolf)",
  7177. image: {
  7178. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7179. }
  7180. },
  7181. },
  7182. [
  7183. {
  7184. name: "Nano",
  7185. height: math.unit(1, "micrometer")
  7186. },
  7187. {
  7188. name: "Micro",
  7189. height: math.unit(1, "inch")
  7190. },
  7191. {
  7192. name: "Normal",
  7193. height: math.unit(6, "feet"),
  7194. default: true
  7195. },
  7196. {
  7197. name: "Macro",
  7198. height: math.unit(60, "feet")
  7199. }
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(165, "lbs"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/fluoresce/front.svg"
  7211. }
  7212. }
  7213. },
  7214. [
  7215. {
  7216. name: "Micro",
  7217. height: math.unit(6, "cm")
  7218. },
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(5 + 7 / 12, "feet"),
  7222. default: true
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(56, "feet")
  7227. },
  7228. {
  7229. name: "Megamacro",
  7230. height: math.unit(1.9, "miles")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(9 + 6 / 12, "feet"),
  7239. weight: math.unit(523, "lbs"),
  7240. name: "Side",
  7241. image: {
  7242. source: "./media/characters/aurora/side.svg"
  7243. }
  7244. }
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(9 + 6 / 12, "feet")
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(96, "feet"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Macro+",
  7258. height: math.unit(243, "feet")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(194, "cm"),
  7267. weight: math.unit(90, "kg"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/ranek/front.svg"
  7271. }
  7272. },
  7273. side: {
  7274. height: math.unit(194, "cm"),
  7275. weight: math.unit(90, "kg"),
  7276. name: "Side",
  7277. image: {
  7278. source: "./media/characters/ranek/side.svg"
  7279. }
  7280. },
  7281. back: {
  7282. height: math.unit(194, "cm"),
  7283. weight: math.unit(90, "kg"),
  7284. name: "Back",
  7285. image: {
  7286. source: "./media/characters/ranek/back.svg"
  7287. }
  7288. },
  7289. feral: {
  7290. height: math.unit(30, "cm"),
  7291. weight: math.unit(1.6, "lbs"),
  7292. name: "Feral",
  7293. image: {
  7294. source: "./media/characters/ranek/feral.svg"
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(194, "cm"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Macro",
  7306. height: math.unit(100, "meters")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(5 + 6 / 12, "feet"),
  7315. weight: math.unit(153, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/andrew-cooper/front.svg"
  7319. }
  7320. },
  7321. },
  7322. [
  7323. {
  7324. name: "Nano",
  7325. height: math.unit(1, "mm")
  7326. },
  7327. {
  7328. name: "Micro",
  7329. height: math.unit(2, "inches")
  7330. },
  7331. {
  7332. name: "Normal",
  7333. height: math.unit(5 + 6 / 12, "feet"),
  7334. default: true
  7335. }
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(180, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/akane-sato/front.svg",
  7347. extra: 1219 / 1140
  7348. }
  7349. },
  7350. back: {
  7351. height: math.unit(6, "feet"),
  7352. weight: math.unit(180, "lbs"),
  7353. name: "Back",
  7354. image: {
  7355. source: "./media/characters/akane-sato/back.svg",
  7356. extra: 1219 / 1170
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(2.5, "meters")
  7364. },
  7365. {
  7366. name: "Macro",
  7367. height: math.unit(250, "meters"),
  7368. default: true
  7369. },
  7370. {
  7371. name: "Megamacro",
  7372. height: math.unit(25, "km")
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7378. {
  7379. front: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(65, "kg"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/rook/front.svg",
  7385. extra: 960 / 950
  7386. }
  7387. }
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(8.8, "feet")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(88, "feet"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(8, "miles")
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(12 + 2 / 12, "feet"),
  7410. weight: math.unit(808, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/prodigy/front.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Normal",
  7420. height: math.unit(12 + 2 / 12, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Macro",
  7425. height: math.unit(143, "feet")
  7426. },
  7427. {
  7428. name: "Macro+",
  7429. height: math.unit(400, "feet")
  7430. },
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(6, "feet"),
  7438. weight: math.unit(225, "lbs"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/daniel/front.svg"
  7442. }
  7443. },
  7444. leaning: {
  7445. height: math.unit(6, "feet"),
  7446. weight: math.unit(225, "lbs"),
  7447. name: "Leaning",
  7448. image: {
  7449. source: "./media/characters/daniel/leaning.svg"
  7450. }
  7451. },
  7452. },
  7453. [
  7454. {
  7455. name: "Macro",
  7456. height: math.unit(1000, "feet"),
  7457. default: true
  7458. },
  7459. ]
  7460. ))
  7461. characterMakers.push(() => makeCharacter(
  7462. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7463. {
  7464. front: {
  7465. height: math.unit(6, "feet"),
  7466. weight: math.unit(88, "lbs"),
  7467. name: "Front",
  7468. image: {
  7469. source: "./media/characters/chiros/front.svg",
  7470. extra: 306 / 226
  7471. }
  7472. },
  7473. side: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(88, "lbs"),
  7476. name: "Side",
  7477. image: {
  7478. source: "./media/characters/chiros/side.svg",
  7479. extra: 306 / 226
  7480. }
  7481. },
  7482. },
  7483. [
  7484. {
  7485. name: "Normal",
  7486. height: math.unit(6, "cm"),
  7487. default: true
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(100, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/selka/front.svg",
  7500. extra: 947 / 887
  7501. }
  7502. }
  7503. },
  7504. [
  7505. {
  7506. name: "Normal",
  7507. height: math.unit(5, "cm"),
  7508. default: true
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(8 + 3 / 12, "feet"),
  7517. weight: math.unit(424, "lbs"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/verin/front.svg",
  7521. extra: 1845 / 1550
  7522. }
  7523. },
  7524. frontArmored: {
  7525. height: math.unit(8 + 3 / 12, "feet"),
  7526. weight: math.unit(424, "lbs"),
  7527. name: "Front (Armored)",
  7528. image: {
  7529. source: "./media/characters/verin/front-armor.svg",
  7530. extra: 1845 / 1550,
  7531. bottom: 0.01
  7532. }
  7533. },
  7534. back: {
  7535. height: math.unit(8 + 3 / 12, "feet"),
  7536. weight: math.unit(424, "lbs"),
  7537. name: "Back",
  7538. image: {
  7539. source: "./media/characters/verin/back.svg",
  7540. bottom: 0.1,
  7541. extra: 1
  7542. }
  7543. },
  7544. foot: {
  7545. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7546. name: "Foot",
  7547. image: {
  7548. source: "./media/characters/verin/foot.svg"
  7549. }
  7550. },
  7551. },
  7552. [
  7553. {
  7554. name: "Normal",
  7555. height: math.unit(8 + 3 / 12, "feet")
  7556. },
  7557. {
  7558. name: "Minimacro",
  7559. height: math.unit(21, "feet"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(626, "feet")
  7565. },
  7566. ]
  7567. ))
  7568. characterMakers.push(() => makeCharacter(
  7569. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7570. {
  7571. front: {
  7572. height: math.unit(2.718, "meters"),
  7573. weight: math.unit(150, "lbs"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/sovrim-terraquian/front.svg"
  7577. }
  7578. },
  7579. back: {
  7580. height: math.unit(2.718, "meters"),
  7581. weight: math.unit(150, "lbs"),
  7582. name: "Back",
  7583. image: {
  7584. source: "./media/characters/sovrim-terraquian/back.svg"
  7585. }
  7586. }
  7587. },
  7588. [
  7589. {
  7590. name: "Micro",
  7591. height: math.unit(2, "inches")
  7592. },
  7593. {
  7594. name: "Small",
  7595. height: math.unit(1, "meter")
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(Math.E, "meters"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(20, "meters")
  7605. },
  7606. {
  7607. name: "Macro+",
  7608. height: math.unit(400, "meters")
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(7, "feet"),
  7617. weight: math.unit(489, "lbs"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/reece-silvermane/front.svg",
  7621. bottom: 0.02,
  7622. extra: 1
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(1.5, "miles"),
  7630. default: true
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(78, "kg"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/kane/front.svg",
  7643. extra: 978 / 899
  7644. }
  7645. },
  7646. },
  7647. [
  7648. {
  7649. name: "Normal",
  7650. height: math.unit(2.1, "m"),
  7651. },
  7652. {
  7653. name: "Macro",
  7654. height: math.unit(1, "km"),
  7655. default: true
  7656. },
  7657. ]
  7658. ))
  7659. characterMakers.push(() => makeCharacter(
  7660. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7661. {
  7662. front: {
  7663. height: math.unit(6, "feet"),
  7664. weight: math.unit(200, "kg"),
  7665. name: "Front",
  7666. image: {
  7667. source: "./media/characters/tegon/front.svg",
  7668. bottom: 0.01,
  7669. extra: 1
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Micro",
  7676. height: math.unit(1, "inch")
  7677. },
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(6 + 3 / 12, "feet"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(300, "feet")
  7686. },
  7687. {
  7688. name: "Megamacro",
  7689. height: math.unit(69, "miles")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7695. {
  7696. side: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(2304, "lbs"),
  7699. name: "Side",
  7700. image: {
  7701. source: "./media/characters/arcturax/side.svg",
  7702. extra: 790 / 376,
  7703. bottom: 0.01
  7704. }
  7705. },
  7706. },
  7707. [
  7708. {
  7709. name: "Micro",
  7710. height: math.unit(2, "inch")
  7711. },
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(6, "feet")
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(39, "feet"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Megamacro",
  7723. height: math.unit(7, "miles")
  7724. },
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(6, "feet"),
  7732. weight: math.unit(50, "lbs"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/sentri/front.svg",
  7736. extra: 1750 / 1570,
  7737. bottom: 0.025
  7738. }
  7739. },
  7740. frontAlt: {
  7741. height: math.unit(6, "feet"),
  7742. weight: math.unit(50, "lbs"),
  7743. name: "Front (Alt)",
  7744. image: {
  7745. source: "./media/characters/sentri/front-alt.svg",
  7746. extra: 1750 / 1570,
  7747. bottom: 0.025
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(15, "feet"),
  7755. default: true
  7756. },
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(2500, "feet")
  7760. }
  7761. ]
  7762. ))
  7763. characterMakers.push(() => makeCharacter(
  7764. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7765. {
  7766. front: {
  7767. height: math.unit(5 + 8 / 12, "feet"),
  7768. weight: math.unit(130, "lbs"),
  7769. name: "Front",
  7770. image: {
  7771. source: "./media/characters/corvin/front.svg",
  7772. extra: 1803 / 1629
  7773. }
  7774. },
  7775. frontShirt: {
  7776. height: math.unit(5 + 8 / 12, "feet"),
  7777. weight: math.unit(130, "lbs"),
  7778. name: "Front (Shirt)",
  7779. image: {
  7780. source: "./media/characters/corvin/front-shirt.svg",
  7781. extra: 1803 / 1629
  7782. }
  7783. },
  7784. frontPoncho: {
  7785. height: math.unit(5 + 8 / 12, "feet"),
  7786. weight: math.unit(130, "lbs"),
  7787. name: "Front (Poncho)",
  7788. image: {
  7789. source: "./media/characters/corvin/front-poncho.svg",
  7790. extra: 1803 / 1629
  7791. }
  7792. },
  7793. side: {
  7794. height: math.unit(5 + 8 / 12, "feet"),
  7795. weight: math.unit(130, "lbs"),
  7796. name: "Side",
  7797. image: {
  7798. source: "./media/characters/corvin/side.svg",
  7799. extra: 1012 / 945
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(5 + 8 / 12, "feet"),
  7804. weight: math.unit(130, "lbs"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/corvin/back.svg",
  7808. extra: 1803 / 1629
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(3, "inches")
  7816. },
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(5 + 8 / 12, "feet")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(300, "feet"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Megamacro",
  7828. height: math.unit(500, "miles")
  7829. }
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(135, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/q/front.svg",
  7841. extra: 854 / 752,
  7842. bottom: 0.005
  7843. }
  7844. },
  7845. back: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(130, "lbs"),
  7848. name: "Back",
  7849. image: {
  7850. source: "./media/characters/q/back.svg",
  7851. extra: 854 / 752
  7852. }
  7853. },
  7854. },
  7855. [
  7856. {
  7857. name: "Macro",
  7858. height: math.unit(90, "feet"),
  7859. default: true
  7860. },
  7861. {
  7862. name: "Extra Macro",
  7863. height: math.unit(300, "feet"),
  7864. },
  7865. {
  7866. name: "BIG WALF",
  7867. height: math.unit(750, "feet"),
  7868. },
  7869. ]
  7870. ))
  7871. characterMakers.push(() => makeCharacter(
  7872. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7873. {
  7874. front: {
  7875. height: math.unit(6, "feet"),
  7876. weight: math.unit(150, "lbs"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/carley/front.svg",
  7880. extra: 3927 / 3540,
  7881. bottom: 29.2 / 735
  7882. }
  7883. }
  7884. },
  7885. [
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(6 + 3 / 12, "feet")
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(185, "feet"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Megamacro",
  7897. height: math.unit(8, "miles"),
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(3, "feet"),
  7906. weight: math.unit(28, "lbs"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/citrine/front.svg"
  7910. }
  7911. }
  7912. },
  7913. [
  7914. {
  7915. name: "Normal",
  7916. height: math.unit(3, "feet"),
  7917. default: true
  7918. }
  7919. ]
  7920. ))
  7921. characterMakers.push(() => makeCharacter(
  7922. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7923. {
  7924. front: {
  7925. height: math.unit(14, "feet"),
  7926. weight: math.unit(1450, "kg"),
  7927. capacity: math.unit(15, "people"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/aura-starwind/front.svg",
  7931. extra: 1455 / 1335
  7932. }
  7933. },
  7934. side: {
  7935. height: math.unit(14, "feet"),
  7936. weight: math.unit(1450, "kg"),
  7937. capacity: math.unit(15, "people"),
  7938. name: "Side",
  7939. image: {
  7940. source: "./media/characters/aura-starwind/side.svg",
  7941. extra: 1654 / 1497
  7942. }
  7943. },
  7944. taur: {
  7945. height: math.unit(18, "feet"),
  7946. weight: math.unit(5500, "kg"),
  7947. capacity: math.unit(50, "people"),
  7948. name: "Taur",
  7949. image: {
  7950. source: "./media/characters/aura-starwind/taur.svg",
  7951. extra: 1760 / 1650
  7952. }
  7953. },
  7954. feral: {
  7955. height: math.unit(46, "feet"),
  7956. weight: math.unit(25000, "kg"),
  7957. capacity: math.unit(120, "people"),
  7958. name: "Feral",
  7959. image: {
  7960. source: "./media/characters/aura-starwind/feral.svg"
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Normal",
  7967. height: math.unit(14, "feet"),
  7968. default: true
  7969. },
  7970. {
  7971. name: "Macro",
  7972. height: math.unit(50, "meters")
  7973. },
  7974. {
  7975. name: "Megamacro",
  7976. height: math.unit(5000, "meters")
  7977. },
  7978. {
  7979. name: "Gigamacro",
  7980. height: math.unit(100000, "kilometers")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(2 + 7 / 12, "feet"),
  7989. weight: math.unit(32, "lbs"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/rivet/front.svg",
  7993. extra: 1716 / 1658,
  7994. bottom: 0.03
  7995. }
  7996. },
  7997. foot: {
  7998. height: math.unit(0.551, "feet"),
  7999. name: "Rivet's Foot",
  8000. image: {
  8001. source: "./media/characters/rivet/foot.svg"
  8002. },
  8003. rename: true
  8004. }
  8005. },
  8006. [
  8007. {
  8008. name: "Micro",
  8009. height: math.unit(1.5, "inches"),
  8010. },
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(2 + 7 / 12, "feet"),
  8014. default: true
  8015. },
  8016. {
  8017. name: "Macro",
  8018. height: math.unit(85, "feet")
  8019. },
  8020. {
  8021. name: "Megamacro",
  8022. height: math.unit(2.2, "km")
  8023. }
  8024. ]
  8025. ))
  8026. characterMakers.push(() => makeCharacter(
  8027. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8028. {
  8029. front: {
  8030. height: math.unit(5 + 9 / 12, "feet"),
  8031. weight: math.unit(150, "lbs"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/coffee/front.svg",
  8035. extra: 3666 / 3032,
  8036. bottom: 0.04
  8037. }
  8038. },
  8039. foot: {
  8040. height: math.unit(1.29, "feet"),
  8041. name: "Foot",
  8042. image: {
  8043. source: "./media/characters/coffee/foot.svg"
  8044. }
  8045. },
  8046. },
  8047. [
  8048. {
  8049. name: "Micro",
  8050. height: math.unit(2, "inches"),
  8051. },
  8052. {
  8053. name: "Normal",
  8054. height: math.unit(5 + 9 / 12, "feet"),
  8055. default: true
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(800, "feet")
  8060. },
  8061. {
  8062. name: "Megamacro",
  8063. height: math.unit(25, "miles")
  8064. }
  8065. ]
  8066. ))
  8067. characterMakers.push(() => makeCharacter(
  8068. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8069. {
  8070. front: {
  8071. height: math.unit(6, "feet"),
  8072. weight: math.unit(200, "lbs"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/chari-gal/front.svg",
  8076. extra: 1568 / 1385,
  8077. bottom: 0.047
  8078. }
  8079. },
  8080. gigantamax: {
  8081. height: math.unit(6 * 16, "feet"),
  8082. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8083. name: "Gigantamax",
  8084. image: {
  8085. source: "./media/characters/chari-gal/gigantamax.svg",
  8086. extra: 1124 / 888,
  8087. bottom: 0.03
  8088. }
  8089. },
  8090. },
  8091. [
  8092. {
  8093. name: "Normal",
  8094. height: math.unit(5 + 7 / 12, "feet")
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(200, "feet"),
  8099. default: true
  8100. }
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8105. {
  8106. front: {
  8107. height: math.unit(6, "feet"),
  8108. weight: math.unit(150, "lbs"),
  8109. name: "Front",
  8110. image: {
  8111. source: "./media/characters/nova/front.svg",
  8112. extra: 5000 / 4722,
  8113. bottom: 0.02
  8114. }
  8115. }
  8116. },
  8117. [
  8118. {
  8119. name: "Micro-",
  8120. height: math.unit(0.8, "inches")
  8121. },
  8122. {
  8123. name: "Micro",
  8124. height: math.unit(2, "inches"),
  8125. default: true
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(3 + 1 / 12, "feet"),
  8134. weight: math.unit(21.7, "lbs"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/argent/front.svg",
  8138. extra: 1471 / 1331,
  8139. bottom: 100.8 / 1575.5
  8140. }
  8141. }
  8142. },
  8143. [
  8144. {
  8145. name: "Micro",
  8146. height: math.unit(2, "inches")
  8147. },
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(3 + 1 / 12, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(120, "feet")
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8161. {
  8162. lamp: {
  8163. height: math.unit(7 * 1559 / 989, "feet"),
  8164. name: "Magic Lamp",
  8165. image: {
  8166. source: "./media/characters/mira-al-cul/lamp.svg",
  8167. extra: 1617 / 1559
  8168. }
  8169. },
  8170. front: {
  8171. height: math.unit(7, "feet"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/mira-al-cul/front.svg",
  8175. extra: 1044 / 990
  8176. }
  8177. },
  8178. },
  8179. [
  8180. {
  8181. name: "Heavily Restricted",
  8182. height: math.unit(7 * 1559 / 989, "feet")
  8183. },
  8184. {
  8185. name: "Freshly Freed",
  8186. height: math.unit(50 * 1559 / 989, "feet")
  8187. },
  8188. {
  8189. name: "World Encompassing",
  8190. height: math.unit(10000 * 1559 / 989, "miles")
  8191. },
  8192. {
  8193. name: "Galactic",
  8194. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8195. },
  8196. {
  8197. name: "Palmed Universe",
  8198. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Multiversal Matriarch",
  8203. height: math.unit(8.87e10, "yottameters")
  8204. },
  8205. {
  8206. name: "Void Mother",
  8207. height: math.unit(3.14e110, "yottaparsecs")
  8208. },
  8209. {
  8210. name: "Toying with Transcendence",
  8211. height: math.unit(1e307, "meters")
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8217. {
  8218. front: {
  8219. height: math.unit(17 + 1 / 12, "feet"),
  8220. weight: math.unit(476.2 * 5, "lbs"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/kuro-shi-uchū/front.svg",
  8224. extra: 2329 / 1835,
  8225. bottom: 0.02
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Micro",
  8232. height: math.unit(2, "inches")
  8233. },
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(12, "meters")
  8237. },
  8238. {
  8239. name: "Planetary",
  8240. height: math.unit(0.00929, "AU"),
  8241. default: true
  8242. },
  8243. {
  8244. name: "Universal",
  8245. height: math.unit(20, "gigaparsecs")
  8246. },
  8247. ]
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(5 + 2 / 12, "feet"),
  8254. weight: math.unit(120, "lbs"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/katherine/front.svg",
  8258. extra: 2075 / 1969
  8259. }
  8260. },
  8261. dress: {
  8262. height: math.unit(5 + 2 / 12, "feet"),
  8263. weight: math.unit(120, "lbs"),
  8264. name: "Dress",
  8265. image: {
  8266. source: "./media/characters/katherine/dress.svg",
  8267. extra: 2258 / 2064
  8268. }
  8269. },
  8270. },
  8271. [
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(1, "inches"),
  8275. default: true
  8276. },
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(5 + 2 / 12, "feet")
  8280. },
  8281. {
  8282. name: "Macro",
  8283. height: math.unit(100, "meters")
  8284. },
  8285. {
  8286. name: "Megamacro",
  8287. height: math.unit(80, "miles")
  8288. },
  8289. ]
  8290. ))
  8291. characterMakers.push(() => makeCharacter(
  8292. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8293. {
  8294. front: {
  8295. height: math.unit(7 + 8 / 12, "feet"),
  8296. weight: math.unit(250, "lbs"),
  8297. name: "Front",
  8298. image: {
  8299. source: "./media/characters/yevis/front.svg",
  8300. extra: 1938 / 1755
  8301. }
  8302. }
  8303. },
  8304. [
  8305. {
  8306. name: "Mortal",
  8307. height: math.unit(7 + 8 / 12, "feet")
  8308. },
  8309. {
  8310. name: "Battle",
  8311. height: math.unit(25 + 11 / 12, "feet")
  8312. },
  8313. {
  8314. name: "Wrath",
  8315. height: math.unit(1654 + 11 / 12, "feet")
  8316. },
  8317. {
  8318. name: "Planet Destroyer",
  8319. height: math.unit(12000, "miles")
  8320. },
  8321. {
  8322. name: "Galaxy Conqueror",
  8323. height: math.unit(1.45, "zettameters"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Universal War",
  8328. height: math.unit(184, "gigaparsecs")
  8329. },
  8330. {
  8331. name: "Eternity War",
  8332. height: math.unit(1.98e55, "yottaparsecs")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(5 + 8 / 12, "feet"),
  8341. weight: math.unit(63, "kg"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/xavier/front.svg",
  8345. extra: 944 / 883
  8346. }
  8347. },
  8348. frontStretch: {
  8349. height: math.unit(5 + 8 / 12, "feet"),
  8350. weight: math.unit(63, "kg"),
  8351. name: "Stretching",
  8352. image: {
  8353. source: "./media/characters/xavier/front-stretch.svg",
  8354. extra: 962 / 820
  8355. }
  8356. },
  8357. },
  8358. [
  8359. {
  8360. name: "Normal",
  8361. height: math.unit(5 + 8 / 12, "feet")
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(100, "meters"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "McLargeHuge",
  8370. height: math.unit(10, "miles")
  8371. },
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(5 + 5 / 12, "feet"),
  8379. weight: math.unit(150, "lb"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/joshii/front.svg",
  8383. extra: 765 / 653,
  8384. bottom: 51 / 816
  8385. }
  8386. },
  8387. foot: {
  8388. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8389. name: "Foot",
  8390. image: {
  8391. source: "./media/characters/joshii/foot.svg"
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Micro",
  8398. height: math.unit(2, "inches"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Normal",
  8403. height: math.unit(5 + 5 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(785, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(24.5, "miles")
  8412. },
  8413. ]
  8414. ))
  8415. characterMakers.push(() => makeCharacter(
  8416. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8417. {
  8418. front: {
  8419. height: math.unit(6, "feet"),
  8420. weight: math.unit(150, "lb"),
  8421. name: "Front",
  8422. image: {
  8423. source: "./media/characters/goddess-elizabeth/front.svg",
  8424. extra: 1800 / 1525,
  8425. bottom: 0.005
  8426. }
  8427. },
  8428. foot: {
  8429. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8430. name: "Foot",
  8431. image: {
  8432. source: "./media/characters/goddess-elizabeth/foot.svg"
  8433. }
  8434. },
  8435. mouth: {
  8436. height: math.unit(6, "feet"),
  8437. name: "Mouth",
  8438. image: {
  8439. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Micro",
  8446. height: math.unit(12, "feet")
  8447. },
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(80, "miles"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(15000, "parsecs")
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(5 + 9 / 12, "feet"),
  8464. weight: math.unit(144, "lb"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/kara/front.svg"
  8468. }
  8469. },
  8470. feet: {
  8471. height: math.unit(6 / 6.765, "feet"),
  8472. name: "Kara's Feet",
  8473. rename: true,
  8474. image: {
  8475. source: "./media/characters/kara/feet.svg"
  8476. }
  8477. },
  8478. },
  8479. [
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(5 + 9 / 12, "feet")
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(174, "feet"),
  8487. default: true
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(18, "feet"),
  8496. weight: math.unit(4050, "lb"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/tyrone/front.svg",
  8500. extra: 2405 / 2270,
  8501. bottom: 182 / 2587
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Normal",
  8508. height: math.unit(18, "feet"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(300, "feet")
  8514. },
  8515. {
  8516. name: "Megamacro",
  8517. height: math.unit(15, "km")
  8518. },
  8519. {
  8520. name: "Gigamacro",
  8521. height: math.unit(500, "km")
  8522. },
  8523. {
  8524. name: "Teramacro",
  8525. height: math.unit(0.5, "gigameters")
  8526. },
  8527. {
  8528. name: "Omnimacro",
  8529. height: math.unit(1e252, "yottauniverse")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(7 + 8 / 12, "feet"),
  8538. weight: math.unit(120, "lb"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/danny/front.svg",
  8542. extra: 1490 / 1350
  8543. }
  8544. },
  8545. back: {
  8546. height: math.unit(7 + 8 / 12, "feet"),
  8547. weight: math.unit(120, "lb"),
  8548. name: "Back",
  8549. image: {
  8550. source: "./media/characters/danny/back.svg",
  8551. extra: 1490 / 1350
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Normal",
  8558. height: math.unit(7 + 8 / 12, "feet"),
  8559. default: true
  8560. },
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8565. {
  8566. front: {
  8567. height: math.unit(3.5, "inches"),
  8568. weight: math.unit(19, "grams"),
  8569. name: "Front",
  8570. image: {
  8571. source: "./media/characters/mallow/front.svg",
  8572. extra: 471 / 431
  8573. }
  8574. },
  8575. back: {
  8576. height: math.unit(3.5, "inches"),
  8577. weight: math.unit(19, "grams"),
  8578. name: "Back",
  8579. image: {
  8580. source: "./media/characters/mallow/back.svg",
  8581. extra: 471 / 431
  8582. }
  8583. },
  8584. },
  8585. [
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(3.5, "inches"),
  8589. default: true
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(9, "feet"),
  8598. weight: math.unit(230, "kg"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/starry-aqua/front.svg"
  8602. }
  8603. },
  8604. back: {
  8605. height: math.unit(9, "feet"),
  8606. weight: math.unit(230, "kg"),
  8607. name: "Back",
  8608. image: {
  8609. source: "./media/characters/starry-aqua/back.svg"
  8610. }
  8611. },
  8612. hand: {
  8613. height: math.unit(9 * 0.1168, "feet"),
  8614. name: "Hand",
  8615. image: {
  8616. source: "./media/characters/starry-aqua/hand.svg"
  8617. }
  8618. },
  8619. foot: {
  8620. height: math.unit(9 * 0.18, "feet"),
  8621. name: "Foot",
  8622. image: {
  8623. source: "./media/characters/starry-aqua/foot.svg"
  8624. }
  8625. }
  8626. },
  8627. [
  8628. {
  8629. name: "Micro",
  8630. height: math.unit(3, "inches")
  8631. },
  8632. {
  8633. name: "Normal",
  8634. height: math.unit(9, "feet")
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(300, "feet"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Megamacro",
  8643. height: math.unit(3200, "feet")
  8644. }
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8649. {
  8650. front: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(230, "lb"),
  8653. name: "Front",
  8654. image: {
  8655. source: "./media/characters/luka/front.svg",
  8656. extra: 1,
  8657. bottom: 0.025
  8658. }
  8659. },
  8660. },
  8661. [
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(12 + 8 / 12, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Minimacro",
  8669. height: math.unit(20, "feet")
  8670. },
  8671. {
  8672. name: "Macro",
  8673. height: math.unit(250, "feet")
  8674. },
  8675. {
  8676. name: "Megamacro",
  8677. height: math.unit(5, "miles")
  8678. },
  8679. {
  8680. name: "Gigamacro",
  8681. height: math.unit(8000, "miles")
  8682. },
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8687. {
  8688. front: {
  8689. height: math.unit(6, "feet"),
  8690. weight: math.unit(150, "lb"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/natalie-nightring/front.svg",
  8694. extra: 1,
  8695. bottom: 0.06
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Uh Oh",
  8702. height: math.unit(0.1, "mm")
  8703. },
  8704. {
  8705. name: "Small",
  8706. height: math.unit(3, "inches")
  8707. },
  8708. {
  8709. name: "Human Scale",
  8710. height: math.unit(6, "feet")
  8711. },
  8712. {
  8713. name: "Librarian",
  8714. height: math.unit(50, "feet"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Immense",
  8719. height: math.unit(200, "miles")
  8720. },
  8721. ]
  8722. ))
  8723. characterMakers.push(() => makeCharacter(
  8724. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8725. {
  8726. front: {
  8727. height: math.unit(6, "feet"),
  8728. weight: math.unit(180, "lbs"),
  8729. name: "Front",
  8730. image: {
  8731. source: "./media/characters/danni-rosie/front.svg",
  8732. extra: 1260 / 1128,
  8733. bottom: 0.022
  8734. }
  8735. },
  8736. },
  8737. [
  8738. {
  8739. name: "Micro",
  8740. height: math.unit(2, "inches"),
  8741. default: true
  8742. },
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8747. {
  8748. front: {
  8749. height: math.unit(5 + 9 / 12, "feet"),
  8750. weight: math.unit(220, "lb"),
  8751. name: "Front",
  8752. image: {
  8753. source: "./media/characters/samantha-kruse/front.svg",
  8754. extra: (985 / 935),
  8755. bottom: 0.03
  8756. }
  8757. },
  8758. frontUndressed: {
  8759. height: math.unit(5 + 9 / 12, "feet"),
  8760. weight: math.unit(220, "lb"),
  8761. name: "Front (Undressed)",
  8762. image: {
  8763. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8764. extra: (973 / 923),
  8765. bottom: 0.025
  8766. }
  8767. },
  8768. fat: {
  8769. height: math.unit(5 + 9 / 12, "feet"),
  8770. weight: math.unit(900, "lb"),
  8771. name: "Front (Fat)",
  8772. image: {
  8773. source: "./media/characters/samantha-kruse/fat.svg",
  8774. extra: 2688 / 2561
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(5 + 9 / 12, "feet"),
  8782. default: true
  8783. }
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8788. {
  8789. back: {
  8790. height: math.unit(5 + 4 / 12, "feet"),
  8791. weight: math.unit(4963, "lb"),
  8792. name: "Back",
  8793. image: {
  8794. source: "./media/characters/amelia-rosie/back.svg",
  8795. extra: 1113 / 963,
  8796. bottom: 0.01
  8797. }
  8798. },
  8799. },
  8800. [
  8801. {
  8802. name: "Level 0",
  8803. height: math.unit(5 + 4 / 12, "feet")
  8804. },
  8805. {
  8806. name: "Level 1",
  8807. height: math.unit(164597, "feet"),
  8808. default: true
  8809. },
  8810. {
  8811. name: "Level 2",
  8812. height: math.unit(956243, "miles")
  8813. },
  8814. {
  8815. name: "Level 3",
  8816. height: math.unit(29421709423, "miles")
  8817. },
  8818. {
  8819. name: "Level 4",
  8820. height: math.unit(154, "lightyears")
  8821. },
  8822. {
  8823. name: "Level 5",
  8824. height: math.unit(4738272, "lightyears")
  8825. },
  8826. {
  8827. name: "Level 6",
  8828. height: math.unit(145787152896, "lightyears")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(5 + 11 / 12, "feet"),
  8837. weight: math.unit(65, "kg"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/rook-kitara/front.svg",
  8841. extra: 1347 / 1274,
  8842. bottom: 0.005
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Totally Unfair",
  8849. height: math.unit(1.8, "mm")
  8850. },
  8851. {
  8852. name: "Lap Rookie",
  8853. height: math.unit(1.4, "feet")
  8854. },
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(5 + 11 / 12, "feet"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "How Did This Happen",
  8862. height: math.unit(80, "miles")
  8863. }
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8868. {
  8869. front: {
  8870. height: math.unit(7, "feet"),
  8871. weight: math.unit(300, "lb"),
  8872. name: "Front",
  8873. image: {
  8874. source: "./media/characters/pisces/front.svg",
  8875. extra: 2255 / 2115,
  8876. bottom: 0.03
  8877. }
  8878. },
  8879. back: {
  8880. height: math.unit(7, "feet"),
  8881. weight: math.unit(300, "lb"),
  8882. name: "Back",
  8883. image: {
  8884. source: "./media/characters/pisces/back.svg",
  8885. extra: 2146 / 2055,
  8886. bottom: 0.04
  8887. }
  8888. },
  8889. },
  8890. [
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(7, "feet"),
  8894. default: true
  8895. },
  8896. {
  8897. name: "Swimming Pool",
  8898. height: math.unit(12.2, "meters")
  8899. },
  8900. {
  8901. name: "Olympic Swimming Pool",
  8902. height: math.unit(56.3, "meters")
  8903. },
  8904. {
  8905. name: "Lake Superior",
  8906. height: math.unit(93900, "meters")
  8907. },
  8908. {
  8909. name: "Mediterranean Sea",
  8910. height: math.unit(644457, "meters")
  8911. },
  8912. {
  8913. name: "World's Oceans",
  8914. height: math.unit(4567491, "meters")
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(2.3, "meters"),
  8923. weight: math.unit(120, "kg"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/zelas/front.svg"
  8927. }
  8928. },
  8929. side: {
  8930. height: math.unit(2.3, "meters"),
  8931. weight: math.unit(120, "kg"),
  8932. name: "Side",
  8933. image: {
  8934. source: "./media/characters/zelas/side.svg"
  8935. }
  8936. },
  8937. back: {
  8938. height: math.unit(2.3, "meters"),
  8939. weight: math.unit(120, "kg"),
  8940. name: "Back",
  8941. image: {
  8942. source: "./media/characters/zelas/back.svg"
  8943. }
  8944. },
  8945. foot: {
  8946. height: math.unit(1.116, "feet"),
  8947. name: "Foot",
  8948. image: {
  8949. source: "./media/characters/zelas/foot.svg"
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Normal",
  8956. height: math.unit(2.3, "meters")
  8957. },
  8958. {
  8959. name: "Macro",
  8960. height: math.unit(30, "meters"),
  8961. default: true
  8962. },
  8963. ]
  8964. ))
  8965. characterMakers.push(() => makeCharacter(
  8966. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8967. {
  8968. front: {
  8969. height: math.unit(1, "inch"),
  8970. weight: math.unit(0.21, "grams"),
  8971. name: "Front",
  8972. image: {
  8973. source: "./media/characters/talbot/front.svg",
  8974. extra: 594 / 544
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Micro",
  8981. height: math.unit(1, "inch"),
  8982. default: true
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8988. {
  8989. front: {
  8990. height: math.unit(3 + 3 / 12, "feet"),
  8991. weight: math.unit(51.8, "lb"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/fliss/front.svg",
  8995. extra: 840 / 640
  8996. }
  8997. },
  8998. },
  8999. [
  9000. {
  9001. name: "Teeny Tiny",
  9002. height: math.unit(1, "mm")
  9003. },
  9004. {
  9005. name: "Small",
  9006. height: math.unit(1, "inch"),
  9007. default: true
  9008. },
  9009. {
  9010. name: "Standard Sylveon",
  9011. height: math.unit(3 + 3 / 12, "feet")
  9012. },
  9013. {
  9014. name: "Large Nuisance",
  9015. height: math.unit(33, "feet")
  9016. },
  9017. {
  9018. name: "City Filler",
  9019. height: math.unit(3000, "feet")
  9020. },
  9021. {
  9022. name: "New Horizon",
  9023. height: math.unit(6000, "miles")
  9024. },
  9025. ]
  9026. ))
  9027. characterMakers.push(() => makeCharacter(
  9028. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9029. {
  9030. front: {
  9031. height: math.unit(5, "cm"),
  9032. weight: math.unit(1.94, "g"),
  9033. name: "Front",
  9034. image: {
  9035. source: "./media/characters/fleta/front.svg",
  9036. extra: 835 / 803
  9037. }
  9038. },
  9039. back: {
  9040. height: math.unit(5, "cm"),
  9041. weight: math.unit(1.94, "g"),
  9042. name: "Back",
  9043. image: {
  9044. source: "./media/characters/fleta/back.svg",
  9045. extra: 835 / 803
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Micro",
  9052. height: math.unit(5, "cm"),
  9053. default: true
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9059. {
  9060. front: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(225, "lb"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/dominic/front.svg",
  9066. extra: 1770 / 1620,
  9067. bottom: 0.025
  9068. }
  9069. },
  9070. back: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(225, "lb"),
  9073. name: "Back",
  9074. image: {
  9075. source: "./media/characters/dominic/back.svg",
  9076. extra: 1745 / 1620,
  9077. bottom: 0.065
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Nano",
  9084. height: math.unit(0.1, "mm")
  9085. },
  9086. {
  9087. name: "Micro-",
  9088. height: math.unit(1, "mm")
  9089. },
  9090. {
  9091. name: "Micro",
  9092. height: math.unit(4, "inches")
  9093. },
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(6 + 4 / 12, "feet"),
  9097. default: true
  9098. },
  9099. {
  9100. name: "Macro",
  9101. height: math.unit(115, "feet")
  9102. },
  9103. {
  9104. name: "Macro+",
  9105. height: math.unit(955, "feet")
  9106. },
  9107. {
  9108. name: "Megamacro",
  9109. height: math.unit(8990, "feet")
  9110. },
  9111. {
  9112. name: "Gigmacro",
  9113. height: math.unit(9310, "miles")
  9114. },
  9115. {
  9116. name: "Teramacro",
  9117. height: math.unit(1567005010, "miles")
  9118. },
  9119. {
  9120. name: "Examacro",
  9121. height: math.unit(1425, "parsecs")
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(400, "feet"),
  9130. weight: math.unit(44444444, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/major-colonel/front.svg"
  9134. }
  9135. },
  9136. back: {
  9137. height: math.unit(400, "feet"),
  9138. weight: math.unit(44444444, "lb"),
  9139. name: "Back",
  9140. image: {
  9141. source: "./media/characters/major-colonel/back.svg"
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Macro",
  9148. height: math.unit(400, "feet"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9155. {
  9156. catFront: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(120, "lb"),
  9159. name: "Front (Cat Side)",
  9160. image: {
  9161. source: "./media/characters/axel-lycan/cat-front.svg",
  9162. extra: 430 / 402,
  9163. bottom: 43 / 472.35
  9164. }
  9165. },
  9166. catBack: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(120, "lb"),
  9169. name: "Back (Cat Side)",
  9170. image: {
  9171. source: "./media/characters/axel-lycan/cat-back.svg",
  9172. extra: 447 / 419,
  9173. bottom: 23.3 / 469
  9174. }
  9175. },
  9176. wolfFront: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(120, "lb"),
  9179. name: "Front (Wolf Side)",
  9180. image: {
  9181. source: "./media/characters/axel-lycan/wolf-front.svg",
  9182. extra: 485 / 456,
  9183. bottom: 19 / 504
  9184. }
  9185. },
  9186. wolfBack: {
  9187. height: math.unit(6, "feet"),
  9188. weight: math.unit(120, "lb"),
  9189. name: "Back (Wolf Side)",
  9190. image: {
  9191. source: "./media/characters/axel-lycan/wolf-back.svg",
  9192. extra: 475 / 438,
  9193. bottom: 39.2 / 514
  9194. }
  9195. },
  9196. },
  9197. [
  9198. {
  9199. name: "Macro",
  9200. height: math.unit(1, "km"),
  9201. default: true
  9202. },
  9203. ]
  9204. ))
  9205. characterMakers.push(() => makeCharacter(
  9206. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9207. {
  9208. front: {
  9209. height: math.unit(5 + 9 / 12, "feet"),
  9210. weight: math.unit(175, "lb"),
  9211. name: "Front",
  9212. image: {
  9213. source: "./media/characters/vanrel-hyena/front.svg",
  9214. extra: 1086 / 1010,
  9215. bottom: 0.04
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Normal",
  9222. height: math.unit(5 + 9 / 12, "feet"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(103, "lb"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/abbott-absol/front.svg",
  9236. extra: 2010 / 1842
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Megamicro",
  9243. height: math.unit(0.1, "mm")
  9244. },
  9245. {
  9246. name: "Micro",
  9247. height: math.unit(1, "inch")
  9248. },
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(6, "feet"),
  9252. default: true
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(6, "feet"),
  9261. weight: math.unit(264, "lb"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/hector/front.svg",
  9265. extra: 2280 / 2130,
  9266. bottom: 0.07
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(12.25, "foot"),
  9274. default: true
  9275. },
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(160, "feet")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(6, "feet"),
  9287. weight: math.unit(150, "lb"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/sal/front.svg",
  9291. extra: 1846 / 1699,
  9292. bottom: 0.04
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Megamacro",
  9299. height: math.unit(10, "miles"),
  9300. default: true
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9306. {
  9307. front: {
  9308. height: math.unit(3, "meters"),
  9309. weight: math.unit(450, "kg"),
  9310. name: "front",
  9311. image: {
  9312. source: "./media/characters/ranger/front.svg",
  9313. extra: 2401 / 2243,
  9314. bottom: 0.05
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(3, "meters"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(14, "feet"),
  9331. weight: math.unit(800, "kg"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/theresa/front.svg",
  9335. extra: 3575 / 3346,
  9336. bottom: 0.03
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(14, "feet"),
  9344. default: true
  9345. },
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9350. {
  9351. front: {
  9352. height: math.unit(6, "feet"),
  9353. weight: math.unit(3, "kg"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/ine/front.svg",
  9357. extra: 678 / 539,
  9358. bottom: 0.023
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(2.265, "feet"),
  9366. default: true
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9372. {
  9373. front: {
  9374. height: math.unit(5, "feet"),
  9375. weight: math.unit(30, "kg"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/vial/front.svg",
  9379. extra: 1365 / 1277,
  9380. bottom: 0.04
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Normal",
  9387. height: math.unit(5, "feet"),
  9388. default: true
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9394. {
  9395. side: {
  9396. height: math.unit(3.4, "meters"),
  9397. weight: math.unit(1000, "lb"),
  9398. name: "Side",
  9399. image: {
  9400. source: "./media/characters/rovoska/side.svg",
  9401. extra: 4403 / 1515
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(3.4, "meters"),
  9409. default: true
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(8, "feet"),
  9418. weight: math.unit(315, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/gunner-rotthbauer/front.svg"
  9422. }
  9423. },
  9424. back: {
  9425. height: math.unit(8, "feet"),
  9426. weight: math.unit(315, "lb"),
  9427. name: "Back",
  9428. image: {
  9429. source: "./media/characters/gunner-rotthbauer/back.svg"
  9430. }
  9431. },
  9432. },
  9433. [
  9434. {
  9435. name: "Micro",
  9436. height: math.unit(3.5, "inches")
  9437. },
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(8, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(250, "feet")
  9446. },
  9447. {
  9448. name: "Megamacro",
  9449. height: math.unit(1, "AU")
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(5 + 5 / 12, "feet"),
  9458. weight: math.unit(140, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/allatia/front.svg",
  9462. extra: 1227 / 1180,
  9463. bottom: 0.027
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(5 + 5 / 12, "feet")
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(250, "feet"),
  9475. default: true
  9476. },
  9477. {
  9478. name: "Megamacro",
  9479. height: math.unit(8, "miles")
  9480. }
  9481. ]
  9482. ))
  9483. characterMakers.push(() => makeCharacter(
  9484. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9485. {
  9486. front: {
  9487. height: math.unit(6, "feet"),
  9488. weight: math.unit(120, "lb"),
  9489. name: "Front",
  9490. image: {
  9491. source: "./media/characters/tene/front.svg",
  9492. extra: 1728 / 1578,
  9493. bottom: 0.022
  9494. }
  9495. },
  9496. stomping: {
  9497. height: math.unit(2.025, "meters"),
  9498. weight: math.unit(120, "lb"),
  9499. name: "Stomping",
  9500. image: {
  9501. source: "./media/characters/tene/stomping.svg",
  9502. extra: 938 / 873,
  9503. bottom: 0.01
  9504. }
  9505. },
  9506. sitting: {
  9507. height: math.unit(1, "meter"),
  9508. weight: math.unit(120, "lb"),
  9509. name: "Sitting",
  9510. image: {
  9511. source: "./media/characters/tene/sitting.svg",
  9512. extra: 437 / 415,
  9513. bottom: 0.1
  9514. }
  9515. },
  9516. feral: {
  9517. height: math.unit(3.9, "feet"),
  9518. weight: math.unit(250, "lb"),
  9519. name: "Feral",
  9520. image: {
  9521. source: "./media/characters/tene/feral.svg",
  9522. extra: 717 / 458,
  9523. bottom: 0.179
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Normal",
  9530. height: math.unit(6, "feet")
  9531. },
  9532. {
  9533. name: "Macro",
  9534. height: math.unit(300, "feet"),
  9535. default: true
  9536. },
  9537. {
  9538. name: "Megamacro",
  9539. height: math.unit(5, "miles")
  9540. },
  9541. ]
  9542. ))
  9543. characterMakers.push(() => makeCharacter(
  9544. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9545. {
  9546. side: {
  9547. height: math.unit(6, "feet"),
  9548. name: "Side",
  9549. image: {
  9550. source: "./media/characters/evander/side.svg",
  9551. extra: 877 / 477
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(0.83, "meters"),
  9559. default: true
  9560. },
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9565. {
  9566. front: {
  9567. height: math.unit(12, "feet"),
  9568. weight: math.unit(1000, "lb"),
  9569. name: "Front",
  9570. image: {
  9571. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9572. extra: 1762 / 1611
  9573. }
  9574. },
  9575. back: {
  9576. height: math.unit(12, "feet"),
  9577. weight: math.unit(1000, "lb"),
  9578. name: "Back",
  9579. image: {
  9580. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9581. extra: 1762 / 1611
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(12, "feet"),
  9589. default: true
  9590. },
  9591. {
  9592. name: "Kaiju",
  9593. height: math.unit(150, "feet")
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9599. {
  9600. front: {
  9601. height: math.unit(6, "feet"),
  9602. weight: math.unit(150, "lb"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/zero-alurus/front.svg"
  9606. }
  9607. },
  9608. back: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(150, "lb"),
  9611. name: "Back",
  9612. image: {
  9613. source: "./media/characters/zero-alurus/back.svg"
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Normal",
  9620. height: math.unit(5 + 10 / 12, "feet")
  9621. },
  9622. {
  9623. name: "Macro",
  9624. height: math.unit(60, "feet"),
  9625. default: true
  9626. },
  9627. {
  9628. name: "Macro+",
  9629. height: math.unit(450, "feet")
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(6, "feet"),
  9638. weight: math.unit(200, "lb"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/mega-shi/front.svg",
  9642. extra: 1279 / 1250,
  9643. bottom: 0.02
  9644. }
  9645. },
  9646. back: {
  9647. height: math.unit(6, "feet"),
  9648. weight: math.unit(200, "lb"),
  9649. name: "Back",
  9650. image: {
  9651. source: "./media/characters/mega-shi/back.svg",
  9652. extra: 1279 / 1250,
  9653. bottom: 0.02
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Micro",
  9660. height: math.unit(16 + 6 / 12, "feet")
  9661. },
  9662. {
  9663. name: "Third Dimension",
  9664. height: math.unit(40, "meters")
  9665. },
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(660, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(10, "miles")
  9674. },
  9675. {
  9676. name: "Planetary Launch",
  9677. height: math.unit(500, "miles")
  9678. },
  9679. {
  9680. name: "Interstellar",
  9681. height: math.unit(1e9, "miles")
  9682. },
  9683. {
  9684. name: "Leaving the Universe",
  9685. height: math.unit(1, "gigaparsec")
  9686. },
  9687. {
  9688. name: "Travelling Universes",
  9689. height: math.unit(30e15, "parsecs")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(150, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/odyssey/front.svg",
  9702. extra: 1782 / 1582,
  9703. bottom: 0.01
  9704. }
  9705. },
  9706. side: {
  9707. height: math.unit(5.7, "feet"),
  9708. weight: math.unit(140, "lb"),
  9709. name: "Side",
  9710. image: {
  9711. source: "./media/characters/odyssey/side.svg",
  9712. extra: 6462 / 5700
  9713. }
  9714. },
  9715. },
  9716. [
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(5 + 4 / 12, "feet")
  9720. },
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(1, "km")
  9724. },
  9725. {
  9726. name: "Megamacro",
  9727. height: math.unit(3000, "km")
  9728. },
  9729. {
  9730. name: "Gigamacro",
  9731. height: math.unit(1, "AU"),
  9732. default: true
  9733. },
  9734. {
  9735. name: "Omniversal",
  9736. height: math.unit(100e14, "lightyears")
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9742. {
  9743. front: {
  9744. height: math.unit(6, "feet"),
  9745. weight: math.unit(300, "lb"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/mekuto/front.svg",
  9749. extra: 921 / 832,
  9750. bottom: 0.03
  9751. }
  9752. },
  9753. hand: {
  9754. height: math.unit(6 / 10.24, "feet"),
  9755. name: "Hand",
  9756. image: {
  9757. source: "./media/characters/mekuto/hand.svg"
  9758. }
  9759. },
  9760. foot: {
  9761. height: math.unit(6 / 5.05, "feet"),
  9762. name: "Foot",
  9763. image: {
  9764. source: "./media/characters/mekuto/foot.svg"
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Minimicro",
  9771. height: math.unit(0.2, "inches")
  9772. },
  9773. {
  9774. name: "Micro",
  9775. height: math.unit(1.5, "inches")
  9776. },
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(5 + 11 / 12, "feet"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Minimacro",
  9784. height: math.unit(17 + 9 / 12, "feet")
  9785. },
  9786. {
  9787. name: "Macro",
  9788. height: math.unit(177.5, "feet")
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(152, "miles")
  9793. },
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9798. {
  9799. front: {
  9800. height: math.unit(6.5, "inches"),
  9801. weight: math.unit(13, "oz"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/dafydd-tomos/front.svg",
  9805. extra: 2990 / 2603,
  9806. bottom: 0.03
  9807. }
  9808. },
  9809. },
  9810. [
  9811. {
  9812. name: "Micro",
  9813. height: math.unit(6.5, "inches"),
  9814. default: true
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(150, "lb"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/splinter/front.svg",
  9827. extra: 2990 / 2882,
  9828. bottom: 0.04
  9829. }
  9830. },
  9831. back: {
  9832. height: math.unit(6, "feet"),
  9833. weight: math.unit(150, "lb"),
  9834. name: "Back",
  9835. image: {
  9836. source: "./media/characters/splinter/back.svg",
  9837. extra: 2990 / 2882,
  9838. bottom: 0.04
  9839. }
  9840. },
  9841. },
  9842. [
  9843. {
  9844. name: "Normal",
  9845. height: math.unit(6, "feet")
  9846. },
  9847. {
  9848. name: "Macro",
  9849. height: math.unit(230, "meters"),
  9850. default: true
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(4 + 10 / 12, "feet"),
  9859. weight: math.unit(480, "lb"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/snow-gabumon/front.svg",
  9863. extra: 1140 / 963,
  9864. bottom: 0.058
  9865. }
  9866. },
  9867. back: {
  9868. height: math.unit(4 + 10 / 12, "feet"),
  9869. weight: math.unit(480, "lb"),
  9870. name: "Back",
  9871. image: {
  9872. source: "./media/characters/snow-gabumon/back.svg",
  9873. extra: 1115 / 962,
  9874. bottom: 0.041
  9875. }
  9876. },
  9877. frontUndresed: {
  9878. height: math.unit(4 + 10 / 12, "feet"),
  9879. weight: math.unit(480, "lb"),
  9880. name: "Front (Undressed)",
  9881. image: {
  9882. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9883. extra: 1061 / 960,
  9884. bottom: 0.045
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Micro",
  9891. height: math.unit(1, "inch")
  9892. },
  9893. {
  9894. name: "Normal",
  9895. height: math.unit(4 + 10 / 12, "feet"),
  9896. default: true
  9897. },
  9898. {
  9899. name: "Macro",
  9900. height: math.unit(200, "feet")
  9901. },
  9902. {
  9903. name: "Megamacro",
  9904. height: math.unit(120, "miles")
  9905. },
  9906. {
  9907. name: "Gigamacro",
  9908. height: math.unit(9800, "miles")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(1.7, "meters"),
  9917. weight: math.unit(140, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/moody/front.svg",
  9921. extra: 3226 / 3007,
  9922. bottom: 0.087
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(1, "mm")
  9930. },
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(1.7, "meters"),
  9934. default: true
  9935. },
  9936. {
  9937. name: "Macro",
  9938. height: math.unit(80, "meters")
  9939. },
  9940. {
  9941. name: "Macro+",
  9942. height: math.unit(500, "meters")
  9943. },
  9944. ]
  9945. ))
  9946. characterMakers.push(() => makeCharacter(
  9947. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9948. {
  9949. front: {
  9950. height: math.unit(6, "feet"),
  9951. weight: math.unit(150, "lb"),
  9952. name: "Front",
  9953. image: {
  9954. source: "./media/characters/zyas/front.svg",
  9955. extra: 1180 / 1120,
  9956. bottom: 0.045
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(10, "feet"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Macro",
  9968. height: math.unit(500, "feet")
  9969. },
  9970. {
  9971. name: "Megamacro",
  9972. height: math.unit(5, "miles")
  9973. },
  9974. {
  9975. name: "Teramacro",
  9976. height: math.unit(150000, "miles")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(6, "feet"),
  9985. weight: math.unit(150, "lb"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/cuon/front.svg",
  9989. extra: 1390 / 1320,
  9990. bottom: 0.008
  9991. }
  9992. },
  9993. },
  9994. [
  9995. {
  9996. name: "Micro",
  9997. height: math.unit(3, "inches")
  9998. },
  9999. {
  10000. name: "Normal",
  10001. height: math.unit(18 + 9 / 12, "feet"),
  10002. default: true
  10003. },
  10004. {
  10005. name: "Macro",
  10006. height: math.unit(360, "feet")
  10007. },
  10008. {
  10009. name: "Megamacro",
  10010. height: math.unit(360, "miles")
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10016. {
  10017. front: {
  10018. height: math.unit(2.4, "meters"),
  10019. weight: math.unit(70, "kg"),
  10020. name: "Front",
  10021. image: {
  10022. source: "./media/characters/nyanuxk/front.svg",
  10023. extra: 1172 / 1084,
  10024. bottom: 0.065
  10025. }
  10026. },
  10027. side: {
  10028. height: math.unit(2.4, "meters"),
  10029. weight: math.unit(70, "kg"),
  10030. name: "Side",
  10031. image: {
  10032. source: "./media/characters/nyanuxk/side.svg",
  10033. extra: 1190 / 1132,
  10034. bottom: 0.007
  10035. }
  10036. },
  10037. back: {
  10038. height: math.unit(2.4, "meters"),
  10039. weight: math.unit(70, "kg"),
  10040. name: "Back",
  10041. image: {
  10042. source: "./media/characters/nyanuxk/back.svg",
  10043. extra: 1200 / 1141,
  10044. bottom: 0.015
  10045. }
  10046. },
  10047. foot: {
  10048. height: math.unit(0.52, "meters"),
  10049. name: "Foot",
  10050. image: {
  10051. source: "./media/characters/nyanuxk/foot.svg"
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Micro",
  10058. height: math.unit(2, "cm")
  10059. },
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(2.4, "meters"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Smaller Macro",
  10067. height: math.unit(120, "meters")
  10068. },
  10069. {
  10070. name: "Bigger Macro",
  10071. height: math.unit(1.2, "km")
  10072. },
  10073. {
  10074. name: "Megamacro",
  10075. height: math.unit(15, "kilometers")
  10076. },
  10077. {
  10078. name: "Gigamacro",
  10079. height: math.unit(2000, "km")
  10080. },
  10081. {
  10082. name: "Teramacro",
  10083. height: math.unit(500000, "km")
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10089. {
  10090. side: {
  10091. height: math.unit(6, "feet"),
  10092. name: "Side",
  10093. image: {
  10094. source: "./media/characters/ailbhe/side.svg",
  10095. extra: 757 / 464,
  10096. bottom: 0.041
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(1.07, "meters"),
  10104. default: true
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(6, "feet"),
  10113. weight: math.unit(120, "kg"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/zevulfius/front.svg",
  10117. extra: 965 / 903
  10118. }
  10119. },
  10120. side: {
  10121. height: math.unit(6, "feet"),
  10122. weight: math.unit(120, "kg"),
  10123. name: "Side",
  10124. image: {
  10125. source: "./media/characters/zevulfius/side.svg",
  10126. extra: 939 / 900
  10127. }
  10128. },
  10129. back: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(120, "kg"),
  10132. name: "Back",
  10133. image: {
  10134. source: "./media/characters/zevulfius/back.svg",
  10135. extra: 918 / 854,
  10136. bottom: 0.005
  10137. }
  10138. },
  10139. foot: {
  10140. height: math.unit(6 / 3.72, "feet"),
  10141. name: "Foot",
  10142. image: {
  10143. source: "./media/characters/zevulfius/foot.svg"
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Macro",
  10150. height: math.unit(750, "meters")
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(20, "km"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Gigamacro",
  10159. height: math.unit(2000, "km")
  10160. },
  10161. {
  10162. name: "Teramacro",
  10163. height: math.unit(250000, "km")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(100, "feet"),
  10172. weight: math.unit(350, "kg"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/rikes/front.svg",
  10176. extra: 1565 / 1483,
  10177. bottom: 0.017
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Macro",
  10184. height: math.unit(100, "feet"),
  10185. default: true
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10191. {
  10192. anthro: {
  10193. height: math.unit(8, "feet"),
  10194. weight: math.unit(120, "kg"),
  10195. name: "Anthro",
  10196. image: {
  10197. source: "./media/characters/adam-silver-mane/anthro.svg",
  10198. extra: 5743 / 5339,
  10199. bottom: 0.07
  10200. }
  10201. },
  10202. taur: {
  10203. height: math.unit(16, "feet"),
  10204. weight: math.unit(1500, "kg"),
  10205. name: "Taur",
  10206. image: {
  10207. source: "./media/characters/adam-silver-mane/taur.svg",
  10208. extra: 1713 / 1571,
  10209. bottom: 0.01
  10210. }
  10211. },
  10212. },
  10213. [
  10214. {
  10215. name: "Normal",
  10216. height: math.unit(8, "feet")
  10217. },
  10218. {
  10219. name: "Minimacro",
  10220. height: math.unit(80, "feet")
  10221. },
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(800, "feet"),
  10225. default: true
  10226. },
  10227. {
  10228. name: "Megamacro",
  10229. height: math.unit(8000, "feet")
  10230. },
  10231. {
  10232. name: "Gigamacro",
  10233. height: math.unit(800, "miles")
  10234. },
  10235. {
  10236. name: "Teramacro",
  10237. height: math.unit(80000, "miles")
  10238. },
  10239. {
  10240. name: "Celestial",
  10241. height: math.unit(8e6, "miles")
  10242. },
  10243. {
  10244. name: "Star Dragon",
  10245. height: math.unit(800000, "parsecs")
  10246. },
  10247. {
  10248. name: "Godly",
  10249. height: math.unit(800, "teraparsecs")
  10250. },
  10251. ]
  10252. ))
  10253. characterMakers.push(() => makeCharacter(
  10254. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10255. {
  10256. front: {
  10257. height: math.unit(6, "feet"),
  10258. weight: math.unit(150, "lb"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/ky'owin/front.svg",
  10262. extra: 3888 / 3068,
  10263. bottom: 0.015
  10264. }
  10265. },
  10266. },
  10267. [
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(6 + 8 / 12, "feet")
  10271. },
  10272. {
  10273. name: "Large",
  10274. height: math.unit(68, "feet")
  10275. },
  10276. {
  10277. name: "Macro",
  10278. height: math.unit(132, "feet")
  10279. },
  10280. {
  10281. name: "Macro+",
  10282. height: math.unit(340, "feet")
  10283. },
  10284. {
  10285. name: "Macro++",
  10286. height: math.unit(680, "feet"),
  10287. default: true
  10288. },
  10289. {
  10290. name: "Megamacro",
  10291. height: math.unit(1, "mile")
  10292. },
  10293. {
  10294. name: "Megamacro+",
  10295. height: math.unit(10, "miles")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(4, "feet"),
  10304. weight: math.unit(50, "lb"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/mal/front.svg",
  10308. extra: 785 / 724,
  10309. bottom: 0.07
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Micro",
  10316. height: math.unit(4, "inches")
  10317. },
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(4, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Macro",
  10325. height: math.unit(200, "feet")
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(150, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/jordan-deware/front.svg",
  10338. extra: 1191 / 1012
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Nano",
  10345. height: math.unit(0.01, "mm")
  10346. },
  10347. {
  10348. name: "Minimicro",
  10349. height: math.unit(1, "mm")
  10350. },
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(0.5, "inches")
  10354. },
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(4, "feet"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Minimacro",
  10362. height: math.unit(40, "meters")
  10363. },
  10364. {
  10365. name: "Small Macro",
  10366. height: math.unit(400, "meters")
  10367. },
  10368. {
  10369. name: "Macro",
  10370. height: math.unit(4, "miles")
  10371. },
  10372. {
  10373. name: "Megamacro",
  10374. height: math.unit(40, "miles")
  10375. },
  10376. {
  10377. name: "Megamacro+",
  10378. height: math.unit(400, "miles")
  10379. },
  10380. {
  10381. name: "Gigamacro",
  10382. height: math.unit(400000, "miles")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10388. {
  10389. side: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(150, "lb"),
  10392. name: "Side",
  10393. image: {
  10394. source: "./media/characters/kimiko/side.svg",
  10395. extra: 600 / 358
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Normal",
  10402. height: math.unit(15, "feet"),
  10403. default: true
  10404. },
  10405. {
  10406. name: "Macro",
  10407. height: math.unit(220, "feet")
  10408. },
  10409. {
  10410. name: "Macro+",
  10411. height: math.unit(1450, "feet")
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(11500, "feet")
  10416. },
  10417. {
  10418. name: "Gigamacro",
  10419. height: math.unit(9500, "miles")
  10420. },
  10421. {
  10422. name: "Teramacro",
  10423. height: math.unit(2208005005, "miles")
  10424. },
  10425. {
  10426. name: "Examacro",
  10427. height: math.unit(2750, "parsecs")
  10428. },
  10429. {
  10430. name: "Zettamacro",
  10431. height: math.unit(101500, "parsecs")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(70, "kg"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/andrew-sleepy/front.svg"
  10444. }
  10445. },
  10446. side: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(70, "kg"),
  10449. name: "Side",
  10450. image: {
  10451. source: "./media/characters/andrew-sleepy/side.svg"
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Micro",
  10458. height: math.unit(1, "mm"),
  10459. default: true
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10465. {
  10466. front: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(150, "lb"),
  10469. name: "Front",
  10470. image: {
  10471. source: "./media/characters/judio/front.svg",
  10472. extra: 1258 / 1110
  10473. }
  10474. },
  10475. },
  10476. [
  10477. {
  10478. name: "Normal",
  10479. height: math.unit(5 + 6 / 12, "feet")
  10480. },
  10481. {
  10482. name: "Macro",
  10483. height: math.unit(1000, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Megamacro",
  10488. height: math.unit(10, "miles")
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(6, "feet"),
  10497. weight: math.unit(68, "kg"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/nomaxice/front.svg",
  10501. extra: 1498 / 1073,
  10502. bottom: 0.075
  10503. }
  10504. },
  10505. foot: {
  10506. height: math.unit(1.1, "feet"),
  10507. name: "Foot",
  10508. image: {
  10509. source: "./media/characters/nomaxice/foot.svg"
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Micro",
  10516. height: math.unit(8, "cm")
  10517. },
  10518. {
  10519. name: "Norm",
  10520. height: math.unit(1.82, "m")
  10521. },
  10522. {
  10523. name: "Norm+",
  10524. height: math.unit(8.8, "feet")
  10525. },
  10526. {
  10527. name: "Big",
  10528. height: math.unit(8, "meters"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(18, "meters")
  10534. },
  10535. {
  10536. name: "Macro+",
  10537. height: math.unit(88, "meters")
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(12, "feet"),
  10546. weight: math.unit(1.5, "tons"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/dydros/front.svg",
  10550. extra: 863 / 800,
  10551. bottom: 0.015
  10552. }
  10553. },
  10554. back: {
  10555. height: math.unit(12, "feet"),
  10556. weight: math.unit(1.5, "tons"),
  10557. name: "Back",
  10558. image: {
  10559. source: "./media/characters/dydros/back.svg",
  10560. extra: 900 / 843,
  10561. bottom: 0.005
  10562. }
  10563. },
  10564. },
  10565. [
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(12, "feet"),
  10569. default: true
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10575. {
  10576. front: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(100, "kg"),
  10579. name: "Front",
  10580. image: {
  10581. source: "./media/characters/riggi/front.svg",
  10582. extra: 5787 / 5303
  10583. }
  10584. },
  10585. hyper: {
  10586. height: math.unit(6 * 5 / 3, "feet"),
  10587. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10588. name: "Hyper",
  10589. image: {
  10590. source: "./media/characters/riggi/hyper.svg",
  10591. extra: 3595 / 3485
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Small Macro",
  10598. height: math.unit(50, "feet")
  10599. },
  10600. {
  10601. name: "Default",
  10602. height: math.unit(200, "feet"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Loom",
  10607. height: math.unit(10000, "feet")
  10608. },
  10609. {
  10610. name: "Cruising Altitude",
  10611. height: math.unit(30000, "feet")
  10612. },
  10613. {
  10614. name: "Megamacro",
  10615. height: math.unit(100, "miles")
  10616. },
  10617. {
  10618. name: "Continent Sized",
  10619. height: math.unit(2800, "miles")
  10620. },
  10621. {
  10622. name: "Earth Sized",
  10623. height: math.unit(8000, "miles")
  10624. },
  10625. ]
  10626. ))
  10627. characterMakers.push(() => makeCharacter(
  10628. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10629. {
  10630. front: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(250, "lb"),
  10633. name: "Front",
  10634. image: {
  10635. source: "./media/characters/alexi/front.svg",
  10636. extra: 3483 / 3291,
  10637. bottom: 0.04
  10638. }
  10639. },
  10640. back: {
  10641. height: math.unit(6, "feet"),
  10642. weight: math.unit(250, "lb"),
  10643. name: "Back",
  10644. image: {
  10645. source: "./media/characters/alexi/back.svg",
  10646. extra: 3533 / 3356,
  10647. bottom: 0.021
  10648. }
  10649. },
  10650. frontTransforming: {
  10651. height: math.unit(8.58, "feet"),
  10652. weight: math.unit(1300, "lb"),
  10653. name: "Transforming",
  10654. image: {
  10655. source: "./media/characters/alexi/front-transforming.svg",
  10656. extra: 437 / 409,
  10657. bottom: 19 / 458.66
  10658. }
  10659. },
  10660. frontTransformed: {
  10661. height: math.unit(12.5, "feet"),
  10662. weight: math.unit(4000, "lb"),
  10663. name: "Transformed",
  10664. image: {
  10665. source: "./media/characters/alexi/front-transformed.svg",
  10666. extra: 639 / 614,
  10667. bottom: 30.55 / 671
  10668. }
  10669. },
  10670. },
  10671. [
  10672. {
  10673. name: "Normal",
  10674. height: math.unit(14, "feet"),
  10675. default: true
  10676. },
  10677. {
  10678. name: "Minimacro",
  10679. height: math.unit(30, "meters")
  10680. },
  10681. {
  10682. name: "Macro",
  10683. height: math.unit(500, "meters")
  10684. },
  10685. {
  10686. name: "Megamacro",
  10687. height: math.unit(9000, "km")
  10688. },
  10689. {
  10690. name: "Teramacro",
  10691. height: math.unit(384000, "km")
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(150, "lb"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/kayroo/front.svg",
  10704. extra: 1153 / 1038,
  10705. bottom: 0.06
  10706. }
  10707. },
  10708. foot: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(150, "lb"),
  10711. name: "Foot",
  10712. image: {
  10713. source: "./media/characters/kayroo/foot.svg"
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(8, "feet"),
  10721. default: true
  10722. },
  10723. {
  10724. name: "Minimacro",
  10725. height: math.unit(250, "feet")
  10726. },
  10727. {
  10728. name: "Macro",
  10729. height: math.unit(2800, "feet")
  10730. },
  10731. {
  10732. name: "Megamacro",
  10733. height: math.unit(5200, "feet")
  10734. },
  10735. {
  10736. name: "Gigamacro",
  10737. height: math.unit(27000, "feet")
  10738. },
  10739. {
  10740. name: "Omega",
  10741. height: math.unit(45000, "feet")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(18, "feet"),
  10750. weight: math.unit(5800, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/rhys/front.svg",
  10754. extra: 3386 / 3090,
  10755. bottom: 0.07
  10756. }
  10757. },
  10758. },
  10759. [
  10760. {
  10761. name: "Normal",
  10762. height: math.unit(18, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Working Size",
  10767. height: math.unit(200, "feet")
  10768. },
  10769. {
  10770. name: "Demolition Size",
  10771. height: math.unit(2000, "feet")
  10772. },
  10773. {
  10774. name: "Maximum Licensed Size",
  10775. height: math.unit(5, "miles")
  10776. },
  10777. {
  10778. name: "Maximum Observed Size",
  10779. height: math.unit(10, "yottameters")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(250, "lb"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/toto/front.svg",
  10792. extra: 527 / 479,
  10793. bottom: 0.05
  10794. }
  10795. },
  10796. },
  10797. [
  10798. {
  10799. name: "Micro",
  10800. height: math.unit(3, "feet")
  10801. },
  10802. {
  10803. name: "Normal",
  10804. height: math.unit(10, "feet")
  10805. },
  10806. {
  10807. name: "Macro",
  10808. height: math.unit(150, "feet"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Megamacro",
  10813. height: math.unit(1200, "feet")
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "King", species: ["lion"], tags: ["anthro"] },
  10819. {
  10820. back: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Back",
  10824. image: {
  10825. source: "./media/characters/king/back.svg"
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Micro",
  10832. height: math.unit(2, "inches")
  10833. },
  10834. {
  10835. name: "Normal",
  10836. height: math.unit(8, "feet")
  10837. },
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(200, "feet"),
  10841. default: true
  10842. },
  10843. {
  10844. name: "Megamacro",
  10845. height: math.unit(50, "miles")
  10846. },
  10847. ]
  10848. ))
  10849. characterMakers.push(() => makeCharacter(
  10850. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10851. {
  10852. anthro: {
  10853. height: math.unit(6 + 5 / 12, "feet"),
  10854. weight: math.unit(280, "lb"),
  10855. name: "Anthro",
  10856. image: {
  10857. source: "./media/characters/cordite/anthro.svg",
  10858. extra: 1986 / 1905,
  10859. bottom: 0.025
  10860. }
  10861. },
  10862. feral: {
  10863. height: math.unit(2, "feet"),
  10864. weight: math.unit(90, "lb"),
  10865. name: "Feral",
  10866. image: {
  10867. source: "./media/characters/cordite/feral.svg",
  10868. extra: 1260 / 755,
  10869. bottom: 0.05
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(6 + 5 / 12, "feet"),
  10877. default: true
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(6, "feet"),
  10886. weight: math.unit(150, "lb"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/pianostrong/front.svg",
  10890. extra: 6577 / 6254,
  10891. bottom: 0.02
  10892. }
  10893. },
  10894. side: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(150, "lb"),
  10897. name: "Side",
  10898. image: {
  10899. source: "./media/characters/pianostrong/side.svg",
  10900. extra: 6106 / 5730
  10901. }
  10902. },
  10903. back: {
  10904. height: math.unit(6, "feet"),
  10905. weight: math.unit(150, "lb"),
  10906. name: "Back",
  10907. image: {
  10908. source: "./media/characters/pianostrong/back.svg",
  10909. extra: 6085 / 5733,
  10910. bottom: 0.01
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Macro",
  10917. height: math.unit(100, "feet")
  10918. },
  10919. {
  10920. name: "Macro+",
  10921. height: math.unit(300, "feet"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Macro++",
  10926. height: math.unit(1000, "feet")
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10932. {
  10933. front: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(150, "lb"),
  10936. name: "Front",
  10937. image: {
  10938. source: "./media/characters/kona/front.svg",
  10939. extra: 2960 / 2629,
  10940. bottom: 0.005
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(11 + 8 / 12, "feet")
  10948. },
  10949. {
  10950. name: "Macro",
  10951. height: math.unit(850, "feet"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Macro+",
  10956. height: math.unit(1.5, "km"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Megamacro",
  10961. height: math.unit(80, "miles")
  10962. },
  10963. {
  10964. name: "Gigamacro",
  10965. height: math.unit(3500, "miles")
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10971. {
  10972. side: {
  10973. height: math.unit(1.9, "meters"),
  10974. weight: math.unit(326, "kg"),
  10975. name: "Side",
  10976. image: {
  10977. source: "./media/characters/levi/side.svg",
  10978. extra: 1704 / 1334,
  10979. bottom: 0.02
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Normal",
  10986. height: math.unit(1.9, "meters"),
  10987. default: true
  10988. },
  10989. {
  10990. name: "Macro",
  10991. height: math.unit(20, "meters")
  10992. },
  10993. {
  10994. name: "Macro+",
  10995. height: math.unit(200, "meters")
  10996. },
  10997. {
  10998. name: "Megamacro",
  10999. height: math.unit(2, "km")
  11000. },
  11001. {
  11002. name: "Megamacro+",
  11003. height: math.unit(20, "km")
  11004. },
  11005. {
  11006. name: "Gigamacro",
  11007. height: math.unit(2500, "km")
  11008. },
  11009. {
  11010. name: "Gigamacro+",
  11011. height: math.unit(120000, "km")
  11012. },
  11013. {
  11014. name: "Teramacro",
  11015. height: math.unit(7.77e6, "km")
  11016. },
  11017. ]
  11018. ))
  11019. characterMakers.push(() => makeCharacter(
  11020. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11021. {
  11022. front: {
  11023. height: math.unit(6 + 4 / 12, "feet"),
  11024. weight: math.unit(188, "lb"),
  11025. name: "Front",
  11026. image: {
  11027. source: "./media/characters/bmc/front.svg",
  11028. extra: 1067 / 1022,
  11029. bottom: 0.047
  11030. }
  11031. },
  11032. },
  11033. [
  11034. {
  11035. name: "Human-sized",
  11036. height: math.unit(6 + 4 / 12, "feet")
  11037. },
  11038. {
  11039. name: "Small",
  11040. height: math.unit(250, "feet")
  11041. },
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(1250, "feet"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Good Day",
  11049. height: math.unit(88, "miles")
  11050. },
  11051. {
  11052. name: "Largest Measured Size",
  11053. height: math.unit(11.2e6, "lightyears")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(20, "feet"),
  11062. weight: math.unit(2016, "kg"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/sven-the-kaiju/front.svg",
  11066. extra: 1479 / 1449,
  11067. bottom: 0.05
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Fairy",
  11074. height: math.unit(6, "inches")
  11075. },
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(20, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Rampage",
  11083. height: math.unit(200, "feet")
  11084. },
  11085. {
  11086. name: "Archfey Forest Guardian",
  11087. height: math.unit(1, "mile")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11093. {
  11094. front: {
  11095. height: math.unit(4, "meters"),
  11096. weight: math.unit(2, "tons"),
  11097. name: "Front",
  11098. image: {
  11099. source: "./media/characters/marik/front.svg",
  11100. extra: 1057 / 1003,
  11101. bottom: 0.08
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Normal",
  11108. height: math.unit(4, "meters"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(20, "meters")
  11114. },
  11115. {
  11116. name: "Megamacro",
  11117. height: math.unit(50, "km")
  11118. },
  11119. {
  11120. name: "Gigamacro",
  11121. height: math.unit(100, "km")
  11122. },
  11123. {
  11124. name: "Alpha Macro",
  11125. height: math.unit(7.88e7, "yottameters")
  11126. },
  11127. ]
  11128. ))
  11129. characterMakers.push(() => makeCharacter(
  11130. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11131. {
  11132. front: {
  11133. height: math.unit(6, "feet"),
  11134. weight: math.unit(110, "lb"),
  11135. name: "Front",
  11136. image: {
  11137. source: "./media/characters/mel/front.svg",
  11138. extra: 736 / 617,
  11139. bottom: 0.017
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Pico",
  11146. height: math.unit(3, "pm")
  11147. },
  11148. {
  11149. name: "Nano",
  11150. height: math.unit(3, "nm")
  11151. },
  11152. {
  11153. name: "Micro",
  11154. height: math.unit(0.3, "mm"),
  11155. default: true
  11156. },
  11157. {
  11158. name: "Micro+",
  11159. height: math.unit(3, "mm")
  11160. },
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(5 + 10.5 / 12, "feet")
  11164. },
  11165. ]
  11166. ))
  11167. characterMakers.push(() => makeCharacter(
  11168. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11169. {
  11170. kaiju: {
  11171. height: math.unit(1.75, "meters"),
  11172. weight: math.unit(55, "kg"),
  11173. name: "Kaiju",
  11174. image: {
  11175. source: "./media/characters/lykonous/kaiju.svg",
  11176. extra: 1055 / 946,
  11177. bottom: 0.135
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(2.5, "meters"),
  11185. default: true
  11186. },
  11187. {
  11188. name: "Kaiju Dragon",
  11189. height: math.unit(60, "meters")
  11190. },
  11191. {
  11192. name: "Mega Kaiju",
  11193. height: math.unit(120, "km")
  11194. },
  11195. {
  11196. name: "Giga Kaiju",
  11197. height: math.unit(200, "megameters")
  11198. },
  11199. {
  11200. name: "Terra Kaiju",
  11201. height: math.unit(400, "gigameters")
  11202. },
  11203. {
  11204. name: "Kaiju Dragon God",
  11205. height: math.unit(13000, "exaparsecs")
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11211. {
  11212. front: {
  11213. height: math.unit(6, "feet"),
  11214. weight: math.unit(150, "lb"),
  11215. name: "Front",
  11216. image: {
  11217. source: "./media/characters/blü/front.svg",
  11218. extra: 1883 / 1564,
  11219. bottom: 0.031
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Normal",
  11226. height: math.unit(13, "feet"),
  11227. default: true
  11228. },
  11229. {
  11230. name: "Big Boi",
  11231. height: math.unit(150, "meters")
  11232. },
  11233. {
  11234. name: "Mini Stomper",
  11235. height: math.unit(300, "meters")
  11236. },
  11237. {
  11238. name: "Macro",
  11239. height: math.unit(1000, "meters")
  11240. },
  11241. {
  11242. name: "Megamacro",
  11243. height: math.unit(11000, "meters")
  11244. },
  11245. {
  11246. name: "Gigamacro",
  11247. height: math.unit(11000, "km")
  11248. },
  11249. {
  11250. name: "Teramacro",
  11251. height: math.unit(420000, "km")
  11252. },
  11253. {
  11254. name: "Examacro",
  11255. height: math.unit(120, "parsecs")
  11256. },
  11257. {
  11258. name: "God Tho",
  11259. height: math.unit(98000000000, "parsecs")
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11265. {
  11266. taurFront: {
  11267. height: math.unit(6, "feet"),
  11268. weight: math.unit(200, "lb"),
  11269. name: "Taur (Front)",
  11270. image: {
  11271. source: "./media/characters/scales/taur-front.svg",
  11272. extra: 1,
  11273. bottom: 0.05
  11274. }
  11275. },
  11276. taurBack: {
  11277. height: math.unit(6, "feet"),
  11278. weight: math.unit(200, "lb"),
  11279. name: "Taur (Back)",
  11280. image: {
  11281. source: "./media/characters/scales/taur-back.svg",
  11282. extra: 1,
  11283. bottom: 0.08
  11284. }
  11285. },
  11286. anthro: {
  11287. height: math.unit(6 * 7 / 12, "feet"),
  11288. weight: math.unit(100, "lb"),
  11289. name: "Anthro",
  11290. image: {
  11291. source: "./media/characters/scales/anthro.svg",
  11292. extra: 1,
  11293. bottom: 0.06
  11294. }
  11295. },
  11296. },
  11297. [
  11298. {
  11299. name: "Normal",
  11300. height: math.unit(12, "feet"),
  11301. default: true
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11307. {
  11308. front: {
  11309. height: math.unit(6, "feet"),
  11310. weight: math.unit(150, "lb"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/koragos/front.svg",
  11314. extra: 841 / 794,
  11315. bottom: 0.035
  11316. }
  11317. },
  11318. back: {
  11319. height: math.unit(6, "feet"),
  11320. weight: math.unit(150, "lb"),
  11321. name: "Back",
  11322. image: {
  11323. source: "./media/characters/koragos/back.svg",
  11324. extra: 841 / 810,
  11325. bottom: 0.022
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Normal",
  11332. height: math.unit(6 + 11 / 12, "feet"),
  11333. default: true
  11334. },
  11335. {
  11336. name: "Macro",
  11337. height: math.unit(490, "feet")
  11338. },
  11339. {
  11340. name: "Megamacro",
  11341. height: math.unit(10, "miles")
  11342. },
  11343. {
  11344. name: "Gigamacro",
  11345. height: math.unit(50, "miles")
  11346. },
  11347. ]
  11348. ))
  11349. characterMakers.push(() => makeCharacter(
  11350. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11351. {
  11352. front: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(250, "lb"),
  11355. name: "Front",
  11356. image: {
  11357. source: "./media/characters/xylrem/front.svg",
  11358. extra: 3323 / 3050,
  11359. bottom: 0.065
  11360. }
  11361. },
  11362. },
  11363. [
  11364. {
  11365. name: "Micro",
  11366. height: math.unit(4, "feet")
  11367. },
  11368. {
  11369. name: "Normal",
  11370. height: math.unit(16, "feet"),
  11371. default: true
  11372. },
  11373. {
  11374. name: "Macro",
  11375. height: math.unit(2720, "feet")
  11376. },
  11377. {
  11378. name: "Megamacro",
  11379. height: math.unit(25000, "miles")
  11380. },
  11381. ]
  11382. ))
  11383. characterMakers.push(() => makeCharacter(
  11384. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11385. {
  11386. front: {
  11387. height: math.unit(8, "feet"),
  11388. weight: math.unit(250, "kg"),
  11389. name: "Front",
  11390. image: {
  11391. source: "./media/characters/ikideru/front.svg",
  11392. extra: 930 / 870,
  11393. bottom: 0.087
  11394. }
  11395. },
  11396. back: {
  11397. height: math.unit(8, "feet"),
  11398. weight: math.unit(250, "kg"),
  11399. name: "Back",
  11400. image: {
  11401. source: "./media/characters/ikideru/back.svg",
  11402. extra: 919 / 852,
  11403. bottom: 0.055
  11404. }
  11405. },
  11406. },
  11407. [
  11408. {
  11409. name: "Rare",
  11410. height: math.unit(8, "feet"),
  11411. default: true
  11412. },
  11413. {
  11414. name: "Playful Loom",
  11415. height: math.unit(80, "feet")
  11416. },
  11417. {
  11418. name: "City Leaner",
  11419. height: math.unit(230, "feet")
  11420. },
  11421. {
  11422. name: "Megamacro",
  11423. height: math.unit(2500, "feet")
  11424. },
  11425. {
  11426. name: "Gigamacro",
  11427. height: math.unit(26400, "feet")
  11428. },
  11429. {
  11430. name: "Tectonic Shifter",
  11431. height: math.unit(1.7, "megameters")
  11432. },
  11433. {
  11434. name: "Planet Carer",
  11435. height: math.unit(21, "megameters")
  11436. },
  11437. {
  11438. name: "God",
  11439. height: math.unit(11157.22, "parsecs")
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(6, "feet"),
  11448. weight: math.unit(120, "lb"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/neo/front.svg"
  11452. }
  11453. },
  11454. },
  11455. [
  11456. {
  11457. name: "Micro",
  11458. height: math.unit(2, "inches"),
  11459. default: true
  11460. },
  11461. {
  11462. name: "Human Size",
  11463. height: math.unit(5 + 8 / 12, "feet")
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(13 + 10 / 12, "feet"),
  11472. weight: math.unit(5320, "lb"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/chauncey-chantz/front.svg",
  11476. extra: 1587 / 1435,
  11477. bottom: 0.02
  11478. }
  11479. },
  11480. },
  11481. [
  11482. {
  11483. name: "Normal",
  11484. height: math.unit(13 + 10 / 12, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(45, "feet")
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(250, "miles")
  11494. },
  11495. {
  11496. name: "Planetary",
  11497. height: math.unit(10000, "miles")
  11498. },
  11499. {
  11500. name: "Galactic",
  11501. height: math.unit(40000, "parsecs")
  11502. },
  11503. {
  11504. name: "Universal",
  11505. height: math.unit(1, "yottameter")
  11506. },
  11507. ]
  11508. ))
  11509. characterMakers.push(() => makeCharacter(
  11510. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11511. {
  11512. front: {
  11513. height: math.unit(6, "feet"),
  11514. weight: math.unit(150, "lb"),
  11515. name: "Front",
  11516. image: {
  11517. source: "./media/characters/epifox/front.svg",
  11518. extra: 1,
  11519. bottom: 0.075
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Micro",
  11526. height: math.unit(6, "inches")
  11527. },
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(12, "feet"),
  11531. default: true
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(3810, "feet")
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(500, "miles")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11545. {
  11546. front: {
  11547. height: math.unit(1.8796, "m"),
  11548. weight: math.unit(230, "lb"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/colin-t/front.svg",
  11552. extra: 1272 / 1193,
  11553. bottom: 0.07
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Micro",
  11560. height: math.unit(0.571, "meters")
  11561. },
  11562. {
  11563. name: "Normal",
  11564. height: math.unit(1.8796, "meters"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Tall",
  11569. height: math.unit(4, "meters")
  11570. },
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(67.241, "meters")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(371.856, "meters")
  11578. },
  11579. {
  11580. name: "Planetary",
  11581. height: math.unit(12631.5689, "km")
  11582. },
  11583. ]
  11584. ))
  11585. characterMakers.push(() => makeCharacter(
  11586. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11587. {
  11588. front: {
  11589. height: math.unit(1.85, "meters"),
  11590. weight: math.unit(80, "kg"),
  11591. name: "Front",
  11592. image: {
  11593. source: "./media/characters/matvei/front.svg",
  11594. extra: 614 / 594,
  11595. bottom: 0.01
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(1.85, "meters"),
  11603. default: true
  11604. },
  11605. ]
  11606. ))
  11607. characterMakers.push(() => makeCharacter(
  11608. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11609. {
  11610. front: {
  11611. height: math.unit(5 + 9 / 12, "feet"),
  11612. weight: math.unit(70, "lb"),
  11613. name: "Front",
  11614. image: {
  11615. source: "./media/characters/quincy/front.svg",
  11616. extra: 3041 / 2751
  11617. }
  11618. },
  11619. back: {
  11620. height: math.unit(5 + 9 / 12, "feet"),
  11621. weight: math.unit(70, "lb"),
  11622. name: "Back",
  11623. image: {
  11624. source: "./media/characters/quincy/back.svg",
  11625. extra: 3041 / 2751
  11626. }
  11627. },
  11628. flying: {
  11629. height: math.unit(5 + 4 / 12, "feet"),
  11630. weight: math.unit(70, "lb"),
  11631. name: "Flying",
  11632. image: {
  11633. source: "./media/characters/quincy/flying.svg",
  11634. extra: 1044 / 930
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Micro",
  11641. height: math.unit(3, "cm")
  11642. },
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(5 + 9 / 12, "feet")
  11646. },
  11647. {
  11648. name: "Macro",
  11649. height: math.unit(200, "meters"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(1000, "meters")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11660. {
  11661. front: {
  11662. height: math.unit(4 + 7 / 12, "feet"),
  11663. weight: math.unit(50, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/vanrel/front.svg",
  11667. extra: 1,
  11668. bottom: 0.02
  11669. }
  11670. },
  11671. frontAlt: {
  11672. height: math.unit(4 + 7 / 12, "feet"),
  11673. weight: math.unit(50, "lb"),
  11674. name: "Front-alt",
  11675. image: {
  11676. source: "./media/characters/vanrel/front-alt.svg",
  11677. extra: 1,
  11678. bottom: 15 / 1511
  11679. }
  11680. },
  11681. elemental: {
  11682. height: math.unit(3, "feet"),
  11683. weight: math.unit(50, "lb"),
  11684. name: "Elemental",
  11685. image: {
  11686. source: "./media/characters/vanrel/elemental.svg",
  11687. extra: 192.3 / 162.8,
  11688. bottom: 1.79 / 194.17
  11689. }
  11690. },
  11691. side: {
  11692. height: math.unit(4 + 7 / 12, "feet"),
  11693. weight: math.unit(50, "lb"),
  11694. name: "Side",
  11695. image: {
  11696. source: "./media/characters/vanrel/side.svg",
  11697. extra: 1,
  11698. bottom: 0.025
  11699. }
  11700. },
  11701. tome: {
  11702. height: math.unit(1.35, "feet"),
  11703. weight: math.unit(10, "lb"),
  11704. name: "Vanrel's Tome",
  11705. rename: true,
  11706. image: {
  11707. source: "./media/characters/vanrel/tome.svg"
  11708. }
  11709. },
  11710. beans: {
  11711. height: math.unit(0.89, "feet"),
  11712. name: "Beans",
  11713. image: {
  11714. source: "./media/characters/vanrel/beans.svg"
  11715. }
  11716. },
  11717. },
  11718. [
  11719. {
  11720. name: "Normal",
  11721. height: math.unit(4 + 7 / 12, "feet"),
  11722. default: true
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(7 + 5 / 12, "feet"),
  11731. weight: math.unit(150, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/kuiper-vanrel/front.svg",
  11735. extra: 1118 / 1068,
  11736. bottom: 0.09
  11737. }
  11738. },
  11739. foot: {
  11740. height: math.unit(0.55, "meters"),
  11741. name: "Foot",
  11742. image: {
  11743. source: "./media/characters/kuiper-vanrel/foot.svg",
  11744. }
  11745. },
  11746. battle: {
  11747. height: math.unit(6.824, "feet"),
  11748. weight: math.unit(150, "lb"),
  11749. name: "Battle",
  11750. image: {
  11751. source: "./media/characters/kuiper-vanrel/battle.svg",
  11752. extra: 1466 / 1327,
  11753. bottom: 29 / 1492.5
  11754. }
  11755. },
  11756. battleAlt: {
  11757. height: math.unit(6.824, "feet"),
  11758. weight: math.unit(150, "lb"),
  11759. name: "Battle (Alt)",
  11760. image: {
  11761. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11762. extra: 2081 / 1965,
  11763. bottom: 40 / 2121
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(7 + 5 / 12, "feet"),
  11771. default: true
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11777. {
  11778. front: {
  11779. height: math.unit(8 + 5 / 12, "feet"),
  11780. weight: math.unit(150, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/keset-vanrel/front.svg",
  11784. extra: 1150 / 1084,
  11785. bottom: 0.05
  11786. }
  11787. },
  11788. hand: {
  11789. height: math.unit(0.6, "meters"),
  11790. name: "Hand",
  11791. image: {
  11792. source: "./media/characters/keset-vanrel/hand.svg"
  11793. }
  11794. },
  11795. foot: {
  11796. height: math.unit(0.94978, "meters"),
  11797. name: "Foot",
  11798. image: {
  11799. source: "./media/characters/keset-vanrel/foot.svg"
  11800. }
  11801. },
  11802. battle: {
  11803. height: math.unit(7.408, "feet"),
  11804. weight: math.unit(150, "lb"),
  11805. name: "Battle",
  11806. image: {
  11807. source: "./media/characters/keset-vanrel/battle.svg",
  11808. extra: 1890 / 1386,
  11809. bottom: 73.28 / 1970
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(8 + 5 / 12, "feet"),
  11817. default: true
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(150, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/neos/front.svg",
  11830. extra: 1696 / 992,
  11831. bottom: 0.14
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(54, "cm"),
  11839. default: true
  11840. },
  11841. {
  11842. name: "Macro",
  11843. height: math.unit(100, "m")
  11844. },
  11845. {
  11846. name: "Megamacro",
  11847. height: math.unit(10, "km")
  11848. },
  11849. {
  11850. name: "Megamacro+",
  11851. height: math.unit(100, "km")
  11852. },
  11853. {
  11854. name: "Gigamacro",
  11855. height: math.unit(100, "Mm")
  11856. },
  11857. {
  11858. name: "Teramacro",
  11859. height: math.unit(100, "Gm")
  11860. },
  11861. {
  11862. name: "Examacro",
  11863. height: math.unit(100, "Em")
  11864. },
  11865. {
  11866. name: "Godly",
  11867. height: math.unit(10000, "Ym")
  11868. },
  11869. {
  11870. name: "Beyond Godly",
  11871. height: math.unit(25, "multiverses")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11877. {
  11878. feminine: {
  11879. height: math.unit(5, "feet"),
  11880. weight: math.unit(100, "lb"),
  11881. name: "Feminine",
  11882. image: {
  11883. source: "./media/characters/sammy-mouse/feminine.svg",
  11884. extra: 2526 / 2425,
  11885. bottom: 0.123
  11886. }
  11887. },
  11888. masculine: {
  11889. height: math.unit(5, "feet"),
  11890. weight: math.unit(100, "lb"),
  11891. name: "Masculine",
  11892. image: {
  11893. source: "./media/characters/sammy-mouse/masculine.svg",
  11894. extra: 2526 / 2425,
  11895. bottom: 0.123
  11896. }
  11897. },
  11898. },
  11899. [
  11900. {
  11901. name: "Micro",
  11902. height: math.unit(5, "inches")
  11903. },
  11904. {
  11905. name: "Normal",
  11906. height: math.unit(5, "feet"),
  11907. default: true
  11908. },
  11909. {
  11910. name: "Macro",
  11911. height: math.unit(60, "feet")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(4, "feet"),
  11920. weight: math.unit(50, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/kole/front.svg",
  11924. extra: 1423 / 1303,
  11925. bottom: 0.025
  11926. }
  11927. },
  11928. back: {
  11929. height: math.unit(4, "feet"),
  11930. weight: math.unit(50, "lb"),
  11931. name: "Back",
  11932. image: {
  11933. source: "./media/characters/kole/back.svg",
  11934. extra: 1426 / 1280,
  11935. bottom: 0.02
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(4, "feet"),
  11943. default: true
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(2 + 6 / 12, "feet"),
  11952. weight: math.unit(20, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/rufran/front.svg",
  11956. extra: 2041 / 1839,
  11957. bottom: 0.055
  11958. }
  11959. },
  11960. back: {
  11961. height: math.unit(2 + 6 / 12, "feet"),
  11962. weight: math.unit(20, "lb"),
  11963. name: "Back",
  11964. image: {
  11965. source: "./media/characters/rufran/back.svg",
  11966. extra: 2054 / 1839,
  11967. bottom: 0.01
  11968. }
  11969. },
  11970. hand: {
  11971. height: math.unit(0.2166, "meters"),
  11972. name: "Hand",
  11973. image: {
  11974. source: "./media/characters/rufran/hand.svg"
  11975. }
  11976. },
  11977. foot: {
  11978. height: math.unit(0.185, "meters"),
  11979. name: "Foot",
  11980. image: {
  11981. source: "./media/characters/rufran/foot.svg"
  11982. }
  11983. },
  11984. },
  11985. [
  11986. {
  11987. name: "Micro",
  11988. height: math.unit(1, "inch")
  11989. },
  11990. {
  11991. name: "Normal",
  11992. height: math.unit(2 + 6 / 12, "feet"),
  11993. default: true
  11994. },
  11995. {
  11996. name: "Big",
  11997. height: math.unit(60, "feet")
  11998. },
  11999. {
  12000. name: "Macro",
  12001. height: math.unit(325, "feet")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(0.3, "meters"),
  12010. weight: math.unit(3.5, "kg"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/chip/front.svg",
  12014. extra: 748 / 674
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Micro",
  12021. height: math.unit(1, "inch"),
  12022. default: true
  12023. },
  12024. ]
  12025. ))
  12026. characterMakers.push(() => makeCharacter(
  12027. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12028. {
  12029. side: {
  12030. height: math.unit(2.3, "meters"),
  12031. weight: math.unit(3500, "lb"),
  12032. name: "Side",
  12033. image: {
  12034. source: "./media/characters/torvid/side.svg",
  12035. extra: 1972 / 722,
  12036. bottom: 0.035
  12037. }
  12038. },
  12039. },
  12040. [
  12041. {
  12042. name: "Normal",
  12043. height: math.unit(2.3, "meters"),
  12044. default: true
  12045. },
  12046. ]
  12047. ))
  12048. characterMakers.push(() => makeCharacter(
  12049. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12050. {
  12051. front: {
  12052. height: math.unit(2, "meters"),
  12053. weight: math.unit(150.5, "kg"),
  12054. name: "Front",
  12055. image: {
  12056. source: "./media/characters/susan/front.svg",
  12057. extra: 693 / 635,
  12058. bottom: 0.05
  12059. }
  12060. },
  12061. },
  12062. [
  12063. {
  12064. name: "Megamacro",
  12065. height: math.unit(505, "miles"),
  12066. default: true
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(6, "feet"),
  12075. weight: math.unit(150, "lb"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/raindrops/front.svg",
  12079. extra: 2655 / 2461,
  12080. bottom: 49 / 2705
  12081. }
  12082. },
  12083. back: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(150, "lb"),
  12086. name: "Back",
  12087. image: {
  12088. source: "./media/characters/raindrops/back.svg",
  12089. extra: 2574 / 2400,
  12090. bottom: 65 / 2634
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Micro",
  12097. height: math.unit(6, "inches")
  12098. },
  12099. {
  12100. name: "Normal",
  12101. height: math.unit(6 + 2 / 12, "feet")
  12102. },
  12103. {
  12104. name: "Macro",
  12105. height: math.unit(131, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Megamacro",
  12110. height: math.unit(15, "miles")
  12111. },
  12112. {
  12113. name: "Gigamacro",
  12114. height: math.unit(4000, "miles")
  12115. },
  12116. {
  12117. name: "Teramacro",
  12118. height: math.unit(315000, "miles")
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(2.794, "meters"),
  12127. weight: math.unit(325, "kg"),
  12128. name: "Front",
  12129. image: {
  12130. source: "./media/characters/tezwa/front.svg",
  12131. extra: 2083 / 1906,
  12132. bottom: 0.031
  12133. }
  12134. },
  12135. foot: {
  12136. height: math.unit(0.687, "meters"),
  12137. name: "Foot",
  12138. image: {
  12139. source: "./media/characters/tezwa/foot.svg"
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Normal",
  12146. height: math.unit(9 + 2 / 12, "feet"),
  12147. default: true
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(58, "feet"),
  12156. weight: math.unit(89000, "lb"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/typhus/front.svg",
  12160. extra: 816 / 800,
  12161. bottom: 0.065
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Macro",
  12168. height: math.unit(58, "feet"),
  12169. default: true
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(12, "feet"),
  12178. weight: math.unit(6, "tonnes"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/lyra-von-wulf/front.svg",
  12182. extra: 1,
  12183. bottom: 0.10
  12184. }
  12185. },
  12186. frontMecha: {
  12187. height: math.unit(12, "feet"),
  12188. weight: math.unit(12, "tonnes"),
  12189. name: "Front (Mecha)",
  12190. image: {
  12191. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12192. extra: 1,
  12193. bottom: 0.042
  12194. }
  12195. },
  12196. maw: {
  12197. height: math.unit(2.2, "feet"),
  12198. name: "Maw",
  12199. image: {
  12200. source: "./media/characters/lyra-von-wulf/maw.svg"
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Normal",
  12207. height: math.unit(12, "feet"),
  12208. default: true
  12209. },
  12210. {
  12211. name: "Classic",
  12212. height: math.unit(50, "feet")
  12213. },
  12214. {
  12215. name: "Macro",
  12216. height: math.unit(500, "feet")
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(1, "mile")
  12221. },
  12222. {
  12223. name: "Gigamacro",
  12224. height: math.unit(400, "miles")
  12225. },
  12226. {
  12227. name: "Teramacro",
  12228. height: math.unit(22000, "miles")
  12229. },
  12230. {
  12231. name: "Solarmacro",
  12232. height: math.unit(8600000, "miles")
  12233. },
  12234. {
  12235. name: "Galactic",
  12236. height: math.unit(1057000, "lightyears")
  12237. },
  12238. ]
  12239. ))
  12240. characterMakers.push(() => makeCharacter(
  12241. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12242. {
  12243. front: {
  12244. height: math.unit(6 + 10 / 12, "feet"),
  12245. weight: math.unit(150, "lb"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/dixon/front.svg",
  12249. extra: 3361 / 3209,
  12250. bottom: 0.01
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(6 + 10 / 12, "feet"),
  12258. default: true
  12259. },
  12260. {
  12261. name: "Big",
  12262. height: math.unit(12, "meters")
  12263. },
  12264. {
  12265. name: "Macro",
  12266. height: math.unit(500, "meters")
  12267. },
  12268. {
  12269. name: "Megamacro",
  12270. height: math.unit(2, "km")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(185, "cm"),
  12279. weight: math.unit(68, "kg"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/kauko/front.svg",
  12283. extra: 1455 / 1421,
  12284. bottom: 0.03
  12285. }
  12286. },
  12287. back: {
  12288. height: math.unit(185, "cm"),
  12289. weight: math.unit(68, "kg"),
  12290. name: "Back",
  12291. image: {
  12292. source: "./media/characters/kauko/back.svg",
  12293. extra: 1455 / 1421,
  12294. bottom: 0.004
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(185, "cm"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(6, "feet"),
  12311. weight: math.unit(150, "kg"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/varg/front.svg",
  12315. extra: 1108 / 1018,
  12316. bottom: 0.0375
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(5, "meters")
  12324. },
  12325. {
  12326. name: "Macro",
  12327. height: math.unit(200, "meters")
  12328. },
  12329. {
  12330. name: "Megamacro",
  12331. height: math.unit(20, "kilometers")
  12332. },
  12333. {
  12334. name: "True Size",
  12335. height: math.unit(211, "km"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Gigamacro",
  12340. height: math.unit(1000, "km")
  12341. },
  12342. {
  12343. name: "Gigamacro+",
  12344. height: math.unit(8000, "km")
  12345. },
  12346. {
  12347. name: "Teramacro",
  12348. height: math.unit(1000000, "km")
  12349. },
  12350. ]
  12351. ))
  12352. characterMakers.push(() => makeCharacter(
  12353. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12354. {
  12355. front: {
  12356. height: math.unit(7 + 7 / 12, "feet"),
  12357. weight: math.unit(267, "lb"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/dayza/front.svg",
  12361. extra: 1262 / 1200,
  12362. bottom: 0.035
  12363. }
  12364. },
  12365. side: {
  12366. height: math.unit(7 + 7 / 12, "feet"),
  12367. weight: math.unit(267, "lb"),
  12368. name: "Side",
  12369. image: {
  12370. source: "./media/characters/dayza/side.svg",
  12371. extra: 1295 / 1245,
  12372. bottom: 0.05
  12373. }
  12374. },
  12375. back: {
  12376. height: math.unit(7 + 7 / 12, "feet"),
  12377. weight: math.unit(267, "lb"),
  12378. name: "Back",
  12379. image: {
  12380. source: "./media/characters/dayza/back.svg",
  12381. extra: 1241 / 1170
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(7 + 7 / 12, "feet"),
  12389. default: true
  12390. },
  12391. {
  12392. name: "Macro",
  12393. height: math.unit(155, "feet")
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(6 + 5 / 12, "feet"),
  12402. weight: math.unit(160, "lb"),
  12403. name: "Front",
  12404. image: {
  12405. source: "./media/characters/xanthos/front.svg",
  12406. extra: 1,
  12407. bottom: 0.04
  12408. }
  12409. },
  12410. back: {
  12411. height: math.unit(6 + 5 / 12, "feet"),
  12412. weight: math.unit(160, "lb"),
  12413. name: "Back",
  12414. image: {
  12415. source: "./media/characters/xanthos/back.svg",
  12416. extra: 1,
  12417. bottom: 0.03
  12418. }
  12419. },
  12420. hand: {
  12421. height: math.unit(0.928, "feet"),
  12422. name: "Hand",
  12423. image: {
  12424. source: "./media/characters/xanthos/hand.svg"
  12425. }
  12426. },
  12427. foot: {
  12428. height: math.unit(1.286, "feet"),
  12429. name: "Foot",
  12430. image: {
  12431. source: "./media/characters/xanthos/foot.svg"
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(6 + 5 / 12, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Normal+",
  12443. height: math.unit(6, "meters")
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(40, "feet")
  12448. },
  12449. {
  12450. name: "Macro+",
  12451. height: math.unit(200, "meters")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(20, "km")
  12456. },
  12457. {
  12458. name: "Megamacro+",
  12459. height: math.unit(100, "km")
  12460. },
  12461. ]
  12462. ))
  12463. characterMakers.push(() => makeCharacter(
  12464. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12465. {
  12466. front: {
  12467. height: math.unit(6 + 3 / 12, "feet"),
  12468. weight: math.unit(215, "lb"),
  12469. name: "Front",
  12470. image: {
  12471. source: "./media/characters/grynn/front.svg",
  12472. extra: 4627 / 4209,
  12473. bottom: 0.047
  12474. }
  12475. },
  12476. },
  12477. [
  12478. {
  12479. name: "Micro",
  12480. height: math.unit(6, "inches")
  12481. },
  12482. {
  12483. name: "Normal",
  12484. height: math.unit(6 + 3 / 12, "feet"),
  12485. default: true
  12486. },
  12487. {
  12488. name: "Big",
  12489. height: math.unit(104, "feet")
  12490. },
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(944, "feet")
  12494. },
  12495. {
  12496. name: "Macro+",
  12497. height: math.unit(9480, "feet")
  12498. },
  12499. {
  12500. name: "Megamacro",
  12501. height: math.unit(78752, "feet")
  12502. },
  12503. {
  12504. name: "Megamacro+",
  12505. height: math.unit(630128, "feet")
  12506. },
  12507. {
  12508. name: "Megamacro++",
  12509. height: math.unit(3150695, "feet")
  12510. },
  12511. ]
  12512. ))
  12513. characterMakers.push(() => makeCharacter(
  12514. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12515. {
  12516. front: {
  12517. height: math.unit(7 + 5 / 12, "feet"),
  12518. weight: math.unit(450, "lb"),
  12519. name: "Front",
  12520. image: {
  12521. source: "./media/characters/mocha-aura/front.svg",
  12522. extra: 1907 / 1817,
  12523. bottom: 0.04
  12524. }
  12525. },
  12526. back: {
  12527. height: math.unit(7 + 5 / 12, "feet"),
  12528. weight: math.unit(450, "lb"),
  12529. name: "Back",
  12530. image: {
  12531. source: "./media/characters/mocha-aura/back.svg",
  12532. extra: 1900 / 1825,
  12533. bottom: 0.045
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Nano",
  12540. height: math.unit(1, "nm")
  12541. },
  12542. {
  12543. name: "Megamicro",
  12544. height: math.unit(1, "mm")
  12545. },
  12546. {
  12547. name: "Micro",
  12548. height: math.unit(3, "inches")
  12549. },
  12550. {
  12551. name: "Normal",
  12552. height: math.unit(7 + 5 / 12, "feet"),
  12553. default: true
  12554. },
  12555. {
  12556. name: "Macro",
  12557. height: math.unit(30, "feet")
  12558. },
  12559. {
  12560. name: "Megamacro",
  12561. height: math.unit(3500, "feet")
  12562. },
  12563. {
  12564. name: "Teramacro",
  12565. height: math.unit(500000, "miles")
  12566. },
  12567. {
  12568. name: "Petamacro",
  12569. height: math.unit(50000000000000000, "parsecs")
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(6, "feet"),
  12578. weight: math.unit(150, "lb"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/ilisha-devya/front.svg",
  12582. extra: 1,
  12583. bottom: 0.175
  12584. }
  12585. },
  12586. back: {
  12587. height: math.unit(6, "feet"),
  12588. weight: math.unit(150, "lb"),
  12589. name: "Back",
  12590. image: {
  12591. source: "./media/characters/ilisha-devya/back.svg",
  12592. extra: 1,
  12593. bottom: 0.015
  12594. }
  12595. },
  12596. },
  12597. [
  12598. {
  12599. name: "Macro",
  12600. height: math.unit(500, "feet"),
  12601. default: true
  12602. },
  12603. {
  12604. name: "Megamacro",
  12605. height: math.unit(10, "miles")
  12606. },
  12607. {
  12608. name: "Gigamacro",
  12609. height: math.unit(100000, "miles")
  12610. },
  12611. {
  12612. name: "Examacro",
  12613. height: math.unit(1e9, "lightyears")
  12614. },
  12615. {
  12616. name: "Omniversal",
  12617. height: math.unit(1e33, "lightyears")
  12618. },
  12619. {
  12620. name: "Beyond Infinite",
  12621. height: math.unit(1e100, "lightyears")
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12627. {
  12628. Side: {
  12629. height: math.unit(6, "feet"),
  12630. weight: math.unit(150, "lb"),
  12631. name: "Side",
  12632. image: {
  12633. source: "./media/characters/mira/side.svg",
  12634. extra: 900 / 799,
  12635. bottom: 0.02
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Human Size",
  12642. height: math.unit(6, "feet")
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(100, "feet"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Megamacro",
  12651. height: math.unit(10, "miles")
  12652. },
  12653. {
  12654. name: "Gigamacro",
  12655. height: math.unit(25000, "miles")
  12656. },
  12657. {
  12658. name: "Teramacro",
  12659. height: math.unit(300, "AU")
  12660. },
  12661. {
  12662. name: "Full Size",
  12663. height: math.unit(4.5e10, "lightyears")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(150, "lb"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/holly/front.svg",
  12676. extra: 639 / 606
  12677. }
  12678. },
  12679. back: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Back",
  12683. image: {
  12684. source: "./media/characters/holly/back.svg",
  12685. extra: 623 / 598
  12686. }
  12687. },
  12688. frontWorking: {
  12689. height: math.unit(6, "feet"),
  12690. weight: math.unit(150, "lb"),
  12691. name: "Front (Working)",
  12692. image: {
  12693. source: "./media/characters/holly/front-working.svg",
  12694. extra: 607 / 577,
  12695. bottom: 0.048
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(12 + 3 / 12, "feet"),
  12703. default: true
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(6, "feet"),
  12712. weight: math.unit(150, "lb"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/porter/front.svg",
  12716. extra: 1,
  12717. bottom: 0.01
  12718. }
  12719. },
  12720. frontRobes: {
  12721. height: math.unit(6, "feet"),
  12722. weight: math.unit(150, "lb"),
  12723. name: "Front (Robes)",
  12724. image: {
  12725. source: "./media/characters/porter/front-robes.svg",
  12726. extra: 1.01,
  12727. bottom: 0.01
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(11 + 9 / 12, "feet"),
  12735. default: true
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12741. {
  12742. legendary: {
  12743. height: math.unit(6, "feet"),
  12744. weight: math.unit(150, "lb"),
  12745. name: "Legendary",
  12746. image: {
  12747. source: "./media/characters/lucy/legendary.svg",
  12748. extra: 1355 / 1100,
  12749. bottom: 0.045
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Legendary",
  12756. height: math.unit(86882 * 2, "miles"),
  12757. default: true
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12763. {
  12764. front: {
  12765. height: math.unit(6, "feet"),
  12766. weight: math.unit(150, "lb"),
  12767. name: "Front",
  12768. image: {
  12769. source: "./media/characters/drusilla/front.svg",
  12770. extra: 678 / 635,
  12771. bottom: 0.03
  12772. }
  12773. },
  12774. back: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(150, "lb"),
  12777. name: "Back",
  12778. image: {
  12779. source: "./media/characters/drusilla/back.svg",
  12780. extra: 678 / 635,
  12781. bottom: 0.005
  12782. }
  12783. },
  12784. },
  12785. [
  12786. {
  12787. name: "Macro",
  12788. height: math.unit(100, "feet")
  12789. },
  12790. {
  12791. name: "Canon Height",
  12792. height: math.unit(2000, "feet"),
  12793. default: true
  12794. },
  12795. ]
  12796. ))
  12797. characterMakers.push(() => makeCharacter(
  12798. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12799. {
  12800. front: {
  12801. height: math.unit(6, "feet"),
  12802. weight: math.unit(180, "lb"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/renard-thatch/front.svg",
  12806. extra: 2411 / 2275,
  12807. bottom: 0.01
  12808. }
  12809. },
  12810. frontPosing: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(180, "lb"),
  12813. name: "Front (Posing)",
  12814. image: {
  12815. source: "./media/characters/renard-thatch/front-posing.svg",
  12816. extra: 2381 / 2261,
  12817. bottom: 0.01
  12818. }
  12819. },
  12820. back: {
  12821. height: math.unit(6, "feet"),
  12822. weight: math.unit(180, "lb"),
  12823. name: "Back",
  12824. image: {
  12825. source: "./media/characters/renard-thatch/back.svg",
  12826. extra: 2428 / 2288
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Micro",
  12833. height: math.unit(3, "inches")
  12834. },
  12835. {
  12836. name: "Default",
  12837. height: math.unit(6, "feet"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Macro",
  12842. height: math.unit(75, "feet")
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(1450, "feet"),
  12851. weight: math.unit(1.21e6, "tons"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/sekvra/front.svg",
  12855. extra: 1,
  12856. bottom: 0.03
  12857. }
  12858. },
  12859. frontClothed: {
  12860. height: math.unit(1450, "feet"),
  12861. weight: math.unit(1.21e6, "tons"),
  12862. name: "Front (Clothed)",
  12863. image: {
  12864. source: "./media/characters/sekvra/front-clothed.svg",
  12865. extra: 1,
  12866. bottom: 0.03
  12867. }
  12868. },
  12869. side: {
  12870. height: math.unit(1450, "feet"),
  12871. weight: math.unit(1.21e6, "tons"),
  12872. name: "Side",
  12873. image: {
  12874. source: "./media/characters/sekvra/side.svg",
  12875. extra: 1,
  12876. bottom: 0.025
  12877. }
  12878. },
  12879. back: {
  12880. height: math.unit(1450, "feet"),
  12881. weight: math.unit(1.21e6, "tons"),
  12882. name: "Back",
  12883. image: {
  12884. source: "./media/characters/sekvra/back.svg",
  12885. extra: 1,
  12886. bottom: 0.005
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Macro",
  12893. height: math.unit(1450, "feet"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Megamacro",
  12898. height: math.unit(15000, "feet")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(150, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/carmine/front.svg",
  12911. extra: 1,
  12912. bottom: 0.035
  12913. }
  12914. },
  12915. frontArmor: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(150, "lb"),
  12918. name: "Front (Armor)",
  12919. image: {
  12920. source: "./media/characters/carmine/front-armor.svg",
  12921. extra: 1,
  12922. bottom: 0.035
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Large",
  12929. height: math.unit(1, "mile")
  12930. },
  12931. {
  12932. name: "Huge",
  12933. height: math.unit(40, "miles"),
  12934. default: true
  12935. },
  12936. {
  12937. name: "Colossal",
  12938. height: math.unit(2500, "miles")
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12944. {
  12945. front: {
  12946. height: math.unit(6, "feet"),
  12947. weight: math.unit(150, "lb"),
  12948. name: "Front",
  12949. image: {
  12950. source: "./media/characters/elyssia/front.svg",
  12951. extra: 2201 / 2035,
  12952. bottom: 0.05
  12953. }
  12954. },
  12955. frontClothed: {
  12956. height: math.unit(6, "feet"),
  12957. weight: math.unit(150, "lb"),
  12958. name: "Front (Clothed)",
  12959. image: {
  12960. source: "./media/characters/elyssia/front-clothed.svg",
  12961. extra: 2201 / 2035,
  12962. bottom: 0.05
  12963. }
  12964. },
  12965. back: {
  12966. height: math.unit(6, "feet"),
  12967. weight: math.unit(150, "lb"),
  12968. name: "Back",
  12969. image: {
  12970. source: "./media/characters/elyssia/back.svg",
  12971. extra: 2201 / 2035,
  12972. bottom: 0.013
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Smaller",
  12979. height: math.unit(150, "feet")
  12980. },
  12981. {
  12982. name: "Standard",
  12983. height: math.unit(1400, "feet"),
  12984. default: true
  12985. },
  12986. {
  12987. name: "Distracted",
  12988. height: math.unit(15000, "feet")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(7 + 4 / 12, "feet"),
  12997. weight: math.unit(500, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/geno-maxwell/front.svg",
  13001. extra: 2207 / 2040,
  13002. bottom: 0.015
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Micro",
  13009. height: math.unit(3, "inches")
  13010. },
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(7 + 4 / 12, "feet"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(220, "feet")
  13019. },
  13020. {
  13021. name: "Megamacro",
  13022. height: math.unit(11, "miles")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(7 + 4 / 12, "feet"),
  13031. weight: math.unit(500, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/regena-maxwell/front.svg",
  13035. extra: 3115 / 2770,
  13036. bottom: 0.02
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Normal",
  13043. height: math.unit(7 + 4 / 12, "feet"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Macro",
  13048. height: math.unit(220, "feet")
  13049. },
  13050. {
  13051. name: "Megamacro",
  13052. height: math.unit(11, "miles")
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13058. {
  13059. front: {
  13060. height: math.unit(6, "feet"),
  13061. weight: math.unit(150, "lb"),
  13062. name: "Front",
  13063. image: {
  13064. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13065. extra: 860 / 690,
  13066. bottom: 0.03
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Normal",
  13073. height: math.unit(1.7, "meters"),
  13074. default: true
  13075. },
  13076. ]
  13077. ))
  13078. characterMakers.push(() => makeCharacter(
  13079. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13080. {
  13081. front: {
  13082. height: math.unit(6, "feet"),
  13083. weight: math.unit(150, "lb"),
  13084. name: "Front",
  13085. image: {
  13086. source: "./media/characters/quilly/front.svg",
  13087. extra: 890 / 776
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Gigamacro",
  13094. height: math.unit(404090, "miles"),
  13095. default: true
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13101. {
  13102. front: {
  13103. height: math.unit(7 + 8 / 12, "feet"),
  13104. weight: math.unit(350, "lb"),
  13105. name: "Front",
  13106. image: {
  13107. source: "./media/characters/tempest/front.svg",
  13108. extra: 1175 / 1086,
  13109. bottom: 0.02
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(7 + 8 / 12, "feet"),
  13117. default: true
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13123. {
  13124. side: {
  13125. height: math.unit(4 + 5 / 12, "feet"),
  13126. weight: math.unit(80, "lb"),
  13127. name: "Side",
  13128. image: {
  13129. source: "./media/characters/rodger/side.svg",
  13130. extra: 1235 / 1118
  13131. }
  13132. },
  13133. },
  13134. [
  13135. {
  13136. name: "Micro",
  13137. height: math.unit(1, "inch")
  13138. },
  13139. {
  13140. name: "Normal",
  13141. height: math.unit(4 + 5 / 12, "feet"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Macro",
  13146. height: math.unit(120, "feet")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/danyel/front.svg",
  13159. extra: 1185 / 1123,
  13160. bottom: 0.05
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Shrunken",
  13167. height: math.unit(0.5, "mm")
  13168. },
  13169. {
  13170. name: "Micro",
  13171. height: math.unit(1, "mm"),
  13172. default: true
  13173. },
  13174. {
  13175. name: "Upsized",
  13176. height: math.unit(5 + 5 / 12, "feet")
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(5 + 6 / 12, "feet"),
  13185. weight: math.unit(200, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/vivian-bijoux/front.svg",
  13189. extra: 1,
  13190. bottom: 0.072
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(5 + 6 / 12, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Bad Dream",
  13202. height: math.unit(500, "feet")
  13203. },
  13204. {
  13205. name: "Nightmare",
  13206. height: math.unit(500, "miles")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6 + 1 / 12, "feet"),
  13215. weight: math.unit(260, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/zeta/front.svg",
  13219. extra: 1968 / 1889,
  13220. bottom: 0.06
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(6 + 1 / 12, "feet"),
  13225. weight: math.unit(260, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/zeta/back.svg",
  13229. extra: 1944 / 1858,
  13230. bottom: 0.03
  13231. }
  13232. },
  13233. hand: {
  13234. height: math.unit(1.112, "feet"),
  13235. name: "Hand",
  13236. image: {
  13237. source: "./media/characters/zeta/hand.svg"
  13238. }
  13239. },
  13240. foot: {
  13241. height: math.unit(1.48, "feet"),
  13242. name: "Foot",
  13243. image: {
  13244. source: "./media/characters/zeta/foot.svg"
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Micro",
  13251. height: math.unit(6, "inches")
  13252. },
  13253. {
  13254. name: "Normal",
  13255. height: math.unit(6 + 1 / 12, "feet"),
  13256. default: true
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(20, "feet")
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/jamie-larsen/front.svg",
  13273. extra: 962 / 933,
  13274. bottom: 0.02
  13275. }
  13276. },
  13277. back: {
  13278. height: math.unit(6, "feet"),
  13279. weight: math.unit(150, "lb"),
  13280. name: "Back",
  13281. image: {
  13282. source: "./media/characters/jamie-larsen/back.svg",
  13283. extra: 997 / 946
  13284. }
  13285. },
  13286. },
  13287. [
  13288. {
  13289. name: "Macro",
  13290. height: math.unit(28 + 7 / 12, "feet"),
  13291. default: true
  13292. },
  13293. {
  13294. name: "Macro+",
  13295. height: math.unit(180, "feet")
  13296. },
  13297. {
  13298. name: "Megamacro",
  13299. height: math.unit(10, "miles")
  13300. },
  13301. {
  13302. name: "Gigamacro",
  13303. height: math.unit(200000, "miles")
  13304. },
  13305. ]
  13306. ))
  13307. characterMakers.push(() => makeCharacter(
  13308. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13309. {
  13310. front: {
  13311. height: math.unit(6, "feet"),
  13312. weight: math.unit(120, "lb"),
  13313. name: "Front",
  13314. image: {
  13315. source: "./media/characters/vance/front.svg",
  13316. extra: 1980 / 1890,
  13317. bottom: 0.09
  13318. }
  13319. },
  13320. back: {
  13321. height: math.unit(6, "feet"),
  13322. weight: math.unit(120, "lb"),
  13323. name: "Back",
  13324. image: {
  13325. source: "./media/characters/vance/back.svg",
  13326. extra: 2081 / 1994,
  13327. bottom: 0.014
  13328. }
  13329. },
  13330. hand: {
  13331. height: math.unit(0.88, "feet"),
  13332. name: "Hand",
  13333. image: {
  13334. source: "./media/characters/vance/hand.svg"
  13335. }
  13336. },
  13337. foot: {
  13338. height: math.unit(0.64, "feet"),
  13339. name: "Foot",
  13340. image: {
  13341. source: "./media/characters/vance/foot.svg"
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Small",
  13348. height: math.unit(90, "feet"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(100, "meters")
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(15, "miles")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13363. {
  13364. front: {
  13365. height: math.unit(6, "feet"),
  13366. weight: math.unit(180, "lb"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/xochitl/front.svg",
  13370. extra: 2297 / 2261,
  13371. bottom: 0.065
  13372. }
  13373. },
  13374. back: {
  13375. height: math.unit(6, "feet"),
  13376. weight: math.unit(180, "lb"),
  13377. name: "Back",
  13378. image: {
  13379. source: "./media/characters/xochitl/back.svg",
  13380. extra: 2386 / 2354,
  13381. bottom: 0.01
  13382. }
  13383. },
  13384. foot: {
  13385. height: math.unit(6 / 5 * 1.15, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Foot",
  13388. image: {
  13389. source: "./media/characters/xochitl/foot.svg"
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Macro",
  13396. height: math.unit(80, "feet")
  13397. },
  13398. {
  13399. name: "Macro+",
  13400. height: math.unit(400, "feet"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Gigamacro",
  13405. height: math.unit(80000, "miles")
  13406. },
  13407. {
  13408. name: "Gigamacro+",
  13409. height: math.unit(400000, "miles")
  13410. },
  13411. {
  13412. name: "Teramacro",
  13413. height: math.unit(300, "AU")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/vincent/front.svg",
  13426. extra: 1130 / 1080,
  13427. bottom: 0.055
  13428. }
  13429. },
  13430. beak: {
  13431. height: math.unit(6 * 0.1, "feet"),
  13432. name: "Beak",
  13433. image: {
  13434. source: "./media/characters/vincent/beak.svg"
  13435. }
  13436. },
  13437. hand: {
  13438. height: math.unit(6 * 0.85, "feet"),
  13439. weight: math.unit(150, "lb"),
  13440. name: "Hand",
  13441. image: {
  13442. source: "./media/characters/vincent/hand.svg"
  13443. }
  13444. },
  13445. foot: {
  13446. height: math.unit(6 * 0.19, "feet"),
  13447. weight: math.unit(150, "lb"),
  13448. name: "Foot",
  13449. image: {
  13450. source: "./media/characters/vincent/foot.svg"
  13451. }
  13452. },
  13453. },
  13454. [
  13455. {
  13456. name: "Base",
  13457. height: math.unit(6 + 5 / 12, "feet"),
  13458. default: true
  13459. },
  13460. {
  13461. name: "Macro",
  13462. height: math.unit(300, "feet")
  13463. },
  13464. {
  13465. name: "Megamacro",
  13466. height: math.unit(2, "miles")
  13467. },
  13468. {
  13469. name: "Gigamacro",
  13470. height: math.unit(1000, "miles")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(2, "meters"),
  13479. weight: math.unit(500, "kg"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/coatl/front.svg",
  13483. extra: 3948 / 3500,
  13484. bottom: 0.082
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Normal",
  13491. height: math.unit(4, "meters")
  13492. },
  13493. {
  13494. name: "Macro",
  13495. height: math.unit(100, "meters"),
  13496. default: true
  13497. },
  13498. {
  13499. name: "Macro+",
  13500. height: math.unit(300, "meters")
  13501. },
  13502. {
  13503. name: "Megamacro",
  13504. height: math.unit(3, "gigameters")
  13505. },
  13506. {
  13507. name: "Megamacro+",
  13508. height: math.unit(300, "terameters")
  13509. },
  13510. {
  13511. name: "Megamacro++",
  13512. height: math.unit(3, "lightyears")
  13513. },
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13518. {
  13519. front: {
  13520. height: math.unit(6, "feet"),
  13521. weight: math.unit(50, "kg"),
  13522. name: "front",
  13523. image: {
  13524. source: "./media/characters/shiroryu/front.svg",
  13525. extra: 1990 / 1935
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Mortal Mingling",
  13532. height: math.unit(3, "meters")
  13533. },
  13534. {
  13535. name: "Kaiju-ish",
  13536. height: math.unit(250, "meters")
  13537. },
  13538. {
  13539. name: "Somewhat Godly",
  13540. height: math.unit(400, "km"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Planetary",
  13545. height: math.unit(300, "megameters")
  13546. },
  13547. {
  13548. name: "Galaxy-dwarfing",
  13549. height: math.unit(450, "kiloparsecs")
  13550. },
  13551. {
  13552. name: "Universe Eater",
  13553. height: math.unit(150, "gigaparsecs")
  13554. },
  13555. {
  13556. name: "Almost Immeasurable",
  13557. height: math.unit(1.3e266, "yottaparsecs")
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13563. {
  13564. front: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(150, "lb"),
  13567. name: "Front",
  13568. image: {
  13569. source: "./media/characters/umeko/front.svg",
  13570. extra: 1,
  13571. bottom: 0.019
  13572. }
  13573. },
  13574. frontArmored: {
  13575. height: math.unit(6, "feet"),
  13576. weight: math.unit(150, "lb"),
  13577. name: "Front (Armored)",
  13578. image: {
  13579. source: "./media/characters/umeko/front-armored.svg",
  13580. extra: 1,
  13581. bottom: 0.021
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Macro",
  13588. height: math.unit(220, "feet"),
  13589. default: true
  13590. },
  13591. {
  13592. name: "Guardian Dragon",
  13593. height: math.unit(50, "miles")
  13594. },
  13595. {
  13596. name: "Cosmic",
  13597. height: math.unit(800000, "miles")
  13598. },
  13599. ]
  13600. ))
  13601. characterMakers.push(() => makeCharacter(
  13602. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13603. {
  13604. front: {
  13605. height: math.unit(6, "feet"),
  13606. weight: math.unit(150, "lb"),
  13607. name: "Front",
  13608. image: {
  13609. source: "./media/characters/cassidy/front.svg",
  13610. extra: 1,
  13611. bottom: 0.043
  13612. }
  13613. },
  13614. },
  13615. [
  13616. {
  13617. name: "Canon Height",
  13618. height: math.unit(120, "feet"),
  13619. default: true
  13620. },
  13621. {
  13622. name: "Macro+",
  13623. height: math.unit(400, "feet")
  13624. },
  13625. {
  13626. name: "Macro++",
  13627. height: math.unit(4000, "feet")
  13628. },
  13629. {
  13630. name: "Megamacro",
  13631. height: math.unit(3, "miles")
  13632. },
  13633. ]
  13634. ))
  13635. characterMakers.push(() => makeCharacter(
  13636. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13637. {
  13638. front: {
  13639. height: math.unit(6, "feet"),
  13640. weight: math.unit(150, "lb"),
  13641. name: "Front",
  13642. image: {
  13643. source: "./media/characters/isaac/front.svg",
  13644. extra: 896 / 815,
  13645. bottom: 0.11
  13646. }
  13647. },
  13648. },
  13649. [
  13650. {
  13651. name: "Human Size",
  13652. height: math.unit(8, "feet"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(400, "feet")
  13658. },
  13659. {
  13660. name: "Megamacro",
  13661. height: math.unit(50, "miles")
  13662. },
  13663. {
  13664. name: "Canon Height",
  13665. height: math.unit(200, "AU")
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13671. {
  13672. front: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(72, "kg"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/sleekit/front.svg",
  13678. extra: 4693 / 4487,
  13679. bottom: 0.012
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Minimum Height",
  13686. height: math.unit(10, "meters")
  13687. },
  13688. {
  13689. name: "Smaller",
  13690. height: math.unit(25, "meters")
  13691. },
  13692. {
  13693. name: "Larger",
  13694. height: math.unit(38, "meters"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Maximum height",
  13699. height: math.unit(100, "meters")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(150, "lb"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/nillia/front.svg",
  13712. extra: 2195 / 2037,
  13713. bottom: 0.005
  13714. }
  13715. },
  13716. back: {
  13717. height: math.unit(6, "feet"),
  13718. weight: math.unit(150, "lb"),
  13719. name: "Back",
  13720. image: {
  13721. source: "./media/characters/nillia/back.svg",
  13722. extra: 2195 / 2037,
  13723. bottom: 0.005
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Canon Height",
  13730. height: math.unit(489, "feet"),
  13731. default: true
  13732. }
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/mesmyriza/front.svg",
  13744. extra: 2067 / 1784,
  13745. bottom: 0.035
  13746. }
  13747. },
  13748. foot: {
  13749. height: math.unit(6 / (250 / 35), "feet"),
  13750. name: "Foot",
  13751. image: {
  13752. source: "./media/characters/mesmyriza/foot.svg"
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(457, "meters"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Megamacro",
  13764. height: math.unit(8, "megameters")
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(6, "feet"),
  13773. weight: math.unit(250, "lb"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/saudade/front.svg",
  13777. extra: 1172 / 1139,
  13778. bottom: 0.035
  13779. }
  13780. },
  13781. },
  13782. [
  13783. {
  13784. name: "Micro",
  13785. height: math.unit(3, "inches")
  13786. },
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(6, "feet"),
  13790. default: true
  13791. },
  13792. {
  13793. name: "Macro",
  13794. height: math.unit(50, "feet")
  13795. },
  13796. {
  13797. name: "Megamacro",
  13798. height: math.unit(2800, "feet")
  13799. },
  13800. ]
  13801. ))
  13802. characterMakers.push(() => makeCharacter(
  13803. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13804. {
  13805. front: {
  13806. height: math.unit(5 + 4 / 12, "feet"),
  13807. weight: math.unit(100, "lb"),
  13808. name: "Front",
  13809. image: {
  13810. source: "./media/characters/keireer/front.svg",
  13811. extra: 716 / 666,
  13812. bottom: 0.05
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(5 + 4 / 12, "feet"),
  13820. default: true
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(90, "kg"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/mirja/front.svg",
  13833. extra: 1789 / 1683,
  13834. bottom: 0.05
  13835. }
  13836. },
  13837. frontDressed: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(90, "lb"),
  13840. name: "Front (Dressed)",
  13841. image: {
  13842. source: "./media/characters/mirja/front-dressed.svg",
  13843. extra: 1789 / 1683,
  13844. bottom: 0.05
  13845. }
  13846. },
  13847. back: {
  13848. height: math.unit(6, "feet"),
  13849. weight: math.unit(90, "lb"),
  13850. name: "Back",
  13851. image: {
  13852. source: "./media/characters/mirja/back.svg",
  13853. extra: 953 / 917,
  13854. bottom: 0.017
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "\"Incognito\"",
  13861. height: math.unit(3, "meters")
  13862. },
  13863. {
  13864. name: "Strolling Size",
  13865. height: math.unit(15, "km")
  13866. },
  13867. {
  13868. name: "Larger Strolling Size",
  13869. height: math.unit(400, "km")
  13870. },
  13871. {
  13872. name: "Preferred Size",
  13873. height: math.unit(5000, "km")
  13874. },
  13875. {
  13876. name: "True Size",
  13877. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13878. default: true
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(15, "feet"),
  13887. weight: math.unit(880, "kg"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/nightraver/front.svg",
  13891. extra: 2444 / 2160,
  13892. bottom: 0.027
  13893. }
  13894. },
  13895. back: {
  13896. height: math.unit(15, "feet"),
  13897. weight: math.unit(880, "kg"),
  13898. name: "Back",
  13899. image: {
  13900. source: "./media/characters/nightraver/back.svg",
  13901. extra: 2309 / 2180,
  13902. bottom: 0.005
  13903. }
  13904. },
  13905. sole: {
  13906. height: math.unit(2.878, "feet"),
  13907. name: "Sole",
  13908. image: {
  13909. source: "./media/characters/nightraver/sole.svg"
  13910. }
  13911. },
  13912. foot: {
  13913. height: math.unit(2.285, "feet"),
  13914. name: "Foot",
  13915. image: {
  13916. source: "./media/characters/nightraver/foot.svg"
  13917. }
  13918. },
  13919. maw: {
  13920. height: math.unit(2.67, "feet"),
  13921. name: "Maw",
  13922. image: {
  13923. source: "./media/characters/nightraver/maw.svg"
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Micro",
  13930. height: math.unit(1, "cm")
  13931. },
  13932. {
  13933. name: "Normal",
  13934. height: math.unit(15, "feet"),
  13935. default: true
  13936. },
  13937. {
  13938. name: "Macro",
  13939. height: math.unit(300, "feet")
  13940. },
  13941. {
  13942. name: "Megamacro",
  13943. height: math.unit(300, "miles")
  13944. },
  13945. {
  13946. name: "Gigamacro",
  13947. height: math.unit(10000, "miles")
  13948. },
  13949. ]
  13950. ))
  13951. characterMakers.push(() => makeCharacter(
  13952. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13953. {
  13954. side: {
  13955. height: math.unit(2, "inches"),
  13956. weight: math.unit(5, "grams"),
  13957. name: "Side",
  13958. image: {
  13959. source: "./media/characters/arc/side.svg"
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Micro",
  13966. height: math.unit(2, "inches"),
  13967. default: true
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(1.1938, "meters"),
  13976. weight: math.unit(54, "kg"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/nebula-shahar/front.svg",
  13980. extra: 1642 / 1436,
  13981. bottom: 0.06
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Megamicro",
  13988. height: math.unit(0.3, "mm")
  13989. },
  13990. {
  13991. name: "Micro",
  13992. height: math.unit(3, "cm")
  13993. },
  13994. {
  13995. name: "Normal",
  13996. height: math.unit(138, "cm"),
  13997. default: true
  13998. },
  13999. {
  14000. name: "Macro",
  14001. height: math.unit(30, "m")
  14002. },
  14003. ]
  14004. ))
  14005. characterMakers.push(() => makeCharacter(
  14006. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14007. {
  14008. front: {
  14009. height: math.unit(5.24, "feet"),
  14010. weight: math.unit(150, "lb"),
  14011. name: "Front",
  14012. image: {
  14013. source: "./media/characters/shayla/front.svg",
  14014. extra: 1512 / 1414,
  14015. bottom: 0.01
  14016. }
  14017. },
  14018. back: {
  14019. height: math.unit(5.24, "feet"),
  14020. weight: math.unit(150, "lb"),
  14021. name: "Back",
  14022. image: {
  14023. source: "./media/characters/shayla/back.svg",
  14024. extra: 1512 / 1414
  14025. }
  14026. },
  14027. hand: {
  14028. height: math.unit(0.7781496062992126, "feet"),
  14029. name: "Hand",
  14030. image: {
  14031. source: "./media/characters/shayla/hand.svg"
  14032. }
  14033. },
  14034. foot: {
  14035. height: math.unit(1.4206036745406823, "feet"),
  14036. name: "Foot",
  14037. image: {
  14038. source: "./media/characters/shayla/foot.svg"
  14039. }
  14040. },
  14041. },
  14042. [
  14043. {
  14044. name: "Micro",
  14045. height: math.unit(0.32, "feet")
  14046. },
  14047. {
  14048. name: "Normal",
  14049. height: math.unit(5.24, "feet"),
  14050. default: true
  14051. },
  14052. {
  14053. name: "Macro",
  14054. height: math.unit(492.12, "feet")
  14055. },
  14056. {
  14057. name: "Megamacro",
  14058. height: math.unit(186.41, "miles")
  14059. },
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14064. {
  14065. front: {
  14066. height: math.unit(2.2, "m"),
  14067. weight: math.unit(120, "kg"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/pia-jr/front.svg",
  14071. extra: 1000 / 970,
  14072. bottom: 0.035
  14073. }
  14074. },
  14075. hand: {
  14076. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14077. name: "Hand",
  14078. image: {
  14079. source: "./media/characters/pia-jr/hand.svg"
  14080. }
  14081. },
  14082. paw: {
  14083. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14084. name: "Paw",
  14085. image: {
  14086. source: "./media/characters/pia-jr/paw.svg"
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Micro",
  14093. height: math.unit(1.2, "cm")
  14094. },
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(2.2, "m"),
  14098. default: true
  14099. },
  14100. {
  14101. name: "Macro",
  14102. height: math.unit(180, "m")
  14103. },
  14104. {
  14105. name: "Megamacro",
  14106. height: math.unit(420, "km")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(2, "m"),
  14115. weight: math.unit(115, "kg"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/pia-sr/front.svg",
  14119. extra: 760 / 730,
  14120. bottom: 0.015
  14121. }
  14122. },
  14123. back: {
  14124. height: math.unit(2, "m"),
  14125. weight: math.unit(115, "kg"),
  14126. name: "Back",
  14127. image: {
  14128. source: "./media/characters/pia-sr/back.svg",
  14129. extra: 760 / 730,
  14130. bottom: 0.01
  14131. }
  14132. },
  14133. hand: {
  14134. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14135. name: "Hand",
  14136. image: {
  14137. source: "./media/characters/pia-sr/hand.svg"
  14138. }
  14139. },
  14140. foot: {
  14141. height: math.unit(1.83, "feet"),
  14142. name: "Foot",
  14143. image: {
  14144. source: "./media/characters/pia-sr/foot.svg"
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Micro",
  14151. height: math.unit(88, "mm")
  14152. },
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(2, "m"),
  14156. default: true
  14157. },
  14158. {
  14159. name: "Macro",
  14160. height: math.unit(200, "m")
  14161. },
  14162. {
  14163. name: "Megamacro",
  14164. height: math.unit(420, "km")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(8 + 2 / 12, "feet"),
  14173. weight: math.unit(300, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/kibibyte/front.svg",
  14177. extra: 2221 / 2098,
  14178. bottom: 0.04
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Normal",
  14185. height: math.unit(8 + 2 / 12, "feet"),
  14186. default: true
  14187. },
  14188. {
  14189. name: "Socialable Macro",
  14190. height: math.unit(50, "feet")
  14191. },
  14192. {
  14193. name: "Macro",
  14194. height: math.unit(300, "feet")
  14195. },
  14196. {
  14197. name: "Megamacro",
  14198. height: math.unit(500, "miles")
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(6, "feet"),
  14207. weight: math.unit(150, "lb"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/felix/front.svg",
  14211. extra: 762 / 722,
  14212. bottom: 0.02
  14213. }
  14214. },
  14215. frontClothed: {
  14216. height: math.unit(6, "feet"),
  14217. weight: math.unit(150, "lb"),
  14218. name: "Front (Clothed)",
  14219. image: {
  14220. source: "./media/characters/felix/front-clothed.svg",
  14221. extra: 762 / 722,
  14222. bottom: 0.02
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(6 + 8 / 12, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(2600, "feet")
  14235. },
  14236. {
  14237. name: "Megamacro",
  14238. height: math.unit(450, "miles")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14244. {
  14245. front: {
  14246. height: math.unit(6 + 1 / 12, "feet"),
  14247. weight: math.unit(250, "lb"),
  14248. name: "Front",
  14249. image: {
  14250. source: "./media/characters/tobo/front.svg",
  14251. extra: 608 / 586,
  14252. bottom: 0.023
  14253. }
  14254. },
  14255. back: {
  14256. height: math.unit(6 + 1 / 12, "feet"),
  14257. weight: math.unit(250, "lb"),
  14258. name: "Back",
  14259. image: {
  14260. source: "./media/characters/tobo/back.svg",
  14261. extra: 608 / 586
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Nano",
  14268. height: math.unit(2, "nm")
  14269. },
  14270. {
  14271. name: "Megamicro",
  14272. height: math.unit(0.1, "mm")
  14273. },
  14274. {
  14275. name: "Micro",
  14276. height: math.unit(1, "inch"),
  14277. default: true
  14278. },
  14279. {
  14280. name: "Human-sized",
  14281. height: math.unit(6 + 1 / 12, "feet")
  14282. },
  14283. {
  14284. name: "Macro",
  14285. height: math.unit(250, "feet")
  14286. },
  14287. {
  14288. name: "Megamacro",
  14289. height: math.unit(75, "miles")
  14290. },
  14291. {
  14292. name: "Texas-sized",
  14293. height: math.unit(750, "miles")
  14294. },
  14295. {
  14296. name: "Teramacro",
  14297. height: math.unit(50000, "miles")
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14303. {
  14304. front: {
  14305. height: math.unit(6, "feet"),
  14306. weight: math.unit(269, "lb"),
  14307. name: "Front",
  14308. image: {
  14309. source: "./media/characters/danny-kapowsky/front.svg",
  14310. extra: 766 / 736,
  14311. bottom: 0.044
  14312. }
  14313. },
  14314. back: {
  14315. height: math.unit(6, "feet"),
  14316. weight: math.unit(269, "lb"),
  14317. name: "Back",
  14318. image: {
  14319. source: "./media/characters/danny-kapowsky/back.svg",
  14320. extra: 797 / 760,
  14321. bottom: 0.025
  14322. }
  14323. },
  14324. },
  14325. [
  14326. {
  14327. name: "Macro",
  14328. height: math.unit(150, "feet"),
  14329. default: true
  14330. },
  14331. {
  14332. name: "Macro+",
  14333. height: math.unit(200, "feet")
  14334. },
  14335. {
  14336. name: "Macro++",
  14337. height: math.unit(300, "feet")
  14338. },
  14339. {
  14340. name: "Macro+++",
  14341. height: math.unit(400, "feet")
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14347. {
  14348. side: {
  14349. height: math.unit(6, "feet"),
  14350. weight: math.unit(170, "lb"),
  14351. name: "Side",
  14352. image: {
  14353. source: "./media/characters/finn/side.svg",
  14354. extra: 1953 / 1807,
  14355. bottom: 0.057
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Megamacro",
  14362. height: math.unit(14445, "feet"),
  14363. default: true
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14369. {
  14370. front: {
  14371. height: math.unit(5 + 6 / 12, "feet"),
  14372. weight: math.unit(125, "lb"),
  14373. name: "Front",
  14374. image: {
  14375. source: "./media/characters/roy/front.svg",
  14376. extra: 1,
  14377. bottom: 0.11
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Micro",
  14384. height: math.unit(3, "inches"),
  14385. default: true
  14386. },
  14387. {
  14388. name: "Normal",
  14389. height: math.unit(5 + 6 / 12, "feet")
  14390. },
  14391. {
  14392. name: "Lesser Macro",
  14393. height: math.unit(60, "feet")
  14394. },
  14395. {
  14396. name: "Greater Macro",
  14397. height: math.unit(120, "feet")
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14403. {
  14404. front: {
  14405. height: math.unit(6, "feet"),
  14406. weight: math.unit(100, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/aevsivs/front.svg",
  14410. extra: 1,
  14411. bottom: 0.03
  14412. }
  14413. },
  14414. back: {
  14415. height: math.unit(6, "feet"),
  14416. weight: math.unit(100, "lb"),
  14417. name: "Back",
  14418. image: {
  14419. source: "./media/characters/aevsivs/back.svg"
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Micro",
  14426. height: math.unit(2, "inches"),
  14427. default: true
  14428. },
  14429. {
  14430. name: "Normal",
  14431. height: math.unit(5, "feet")
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14437. {
  14438. front: {
  14439. height: math.unit(5 + 7 / 12, "feet"),
  14440. weight: math.unit(159, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/hildegard/front.svg",
  14444. extra: 289 / 269,
  14445. bottom: 7.63 / 297.8
  14446. }
  14447. },
  14448. back: {
  14449. height: math.unit(5 + 7 / 12, "feet"),
  14450. weight: math.unit(159, "lb"),
  14451. name: "Back",
  14452. image: {
  14453. source: "./media/characters/hildegard/back.svg",
  14454. extra: 280 / 260,
  14455. bottom: 2.3 / 282
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(5 + 7 / 12, "feet"),
  14463. default: true
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14469. {
  14470. bernard: {
  14471. height: math.unit(2 + 7 / 12, "feet"),
  14472. weight: math.unit(66, "lb"),
  14473. name: "Bernard",
  14474. rename: true,
  14475. image: {
  14476. source: "./media/characters/bernard-wilder/bernard.svg",
  14477. extra: 192 / 128,
  14478. bottom: 0.05
  14479. }
  14480. },
  14481. wilder: {
  14482. height: math.unit(5 + 8 / 12, "feet"),
  14483. weight: math.unit(143, "lb"),
  14484. name: "Wilder",
  14485. rename: true,
  14486. image: {
  14487. source: "./media/characters/bernard-wilder/wilder.svg",
  14488. extra: 361 / 312,
  14489. bottom: 0.02
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(2 + 7 / 12, "feet"),
  14497. default: true
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14503. {
  14504. anthro: {
  14505. height: math.unit(6 + 1 / 12, "feet"),
  14506. weight: math.unit(155, "lb"),
  14507. name: "Anthro",
  14508. image: {
  14509. source: "./media/characters/hearth/anthro.svg",
  14510. extra: 260 / 250,
  14511. bottom: 0.02
  14512. }
  14513. },
  14514. feral: {
  14515. height: math.unit(3.78, "feet"),
  14516. weight: math.unit(35, "kg"),
  14517. name: "Feral",
  14518. image: {
  14519. source: "./media/characters/hearth/feral.svg",
  14520. extra: 153 / 135,
  14521. bottom: 0.03
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(6 + 1 / 12, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(182, "lb"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/ingrid/front.svg",
  14542. extra: 294 / 268,
  14543. bottom: 0.027
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(6, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14557. {
  14558. eevee: {
  14559. height: math.unit(2 + 10 / 12, "feet"),
  14560. weight: math.unit(86, "lb"),
  14561. name: "Malgam",
  14562. image: {
  14563. source: "./media/characters/malgam/eevee.svg",
  14564. extra: 218 / 180,
  14565. bottom: 0.2
  14566. }
  14567. },
  14568. sylveon: {
  14569. height: math.unit(4, "feet"),
  14570. weight: math.unit(101, "lb"),
  14571. name: "Future Malgam",
  14572. rename: true,
  14573. image: {
  14574. source: "./media/characters/malgam/sylveon.svg",
  14575. extra: 371 / 325,
  14576. bottom: 0.015
  14577. }
  14578. },
  14579. gigantamax: {
  14580. height: math.unit(50, "feet"),
  14581. name: "Gigantamax Malgam",
  14582. rename: true,
  14583. image: {
  14584. source: "./media/characters/malgam/gigantamax.svg"
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(2 + 10 / 12, "feet"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(5 + 11 / 12, "feet"),
  14601. weight: math.unit(188, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/fleur/front.svg",
  14605. extra: 309 / 283,
  14606. bottom: 0.007
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(5 + 11 / 12, "feet"),
  14614. default: true
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(5 + 4 / 12, "feet"),
  14623. weight: math.unit(122, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/jude/front.svg",
  14627. extra: 288 / 273,
  14628. bottom: 0.03
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(5 + 4 / 12, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(5 + 11 / 12, "feet"),
  14645. weight: math.unit(190, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/seara/front.svg",
  14649. extra: 1,
  14650. bottom: 0.05
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(5 + 11 / 12, "feet"),
  14658. default: true
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(16 + 5 / 12, "feet"),
  14667. weight: math.unit(524, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/caspian/front.svg",
  14671. extra: 1,
  14672. bottom: 0.04
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Normal",
  14679. height: math.unit(16 + 5 / 12, "feet"),
  14680. default: true
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(5 + 7 / 12, "feet"),
  14689. weight: math.unit(170, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/mika/front.svg",
  14693. extra: 1,
  14694. bottom: 0.016
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(5 + 7 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(6 + 2 / 12, "feet"),
  14711. weight: math.unit(268, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/sol/front.svg",
  14715. extra: 247 / 231,
  14716. bottom: 0.05
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(6 + 2 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14730. {
  14731. buizel: {
  14732. height: math.unit(2 + 5 / 12, "feet"),
  14733. weight: math.unit(87, "lb"),
  14734. name: "Buizel",
  14735. image: {
  14736. source: "./media/characters/umiko/buizel.svg",
  14737. extra: 172 / 157,
  14738. bottom: 0.01
  14739. }
  14740. },
  14741. floatzel: {
  14742. height: math.unit(5 + 9 / 12, "feet"),
  14743. weight: math.unit(250, "lb"),
  14744. name: "Floatzel",
  14745. image: {
  14746. source: "./media/characters/umiko/floatzel.svg",
  14747. extra: 262 / 248
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(2 + 5 / 12, "feet"),
  14755. default: true
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6 + 2 / 12, "feet"),
  14764. weight: math.unit(146, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/iliac/front.svg",
  14768. extra: 389 / 365,
  14769. bottom: 0.035
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(6 + 2 / 12, "feet"),
  14777. default: true
  14778. },
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14783. {
  14784. front: {
  14785. height: math.unit(6, "feet"),
  14786. weight: math.unit(170, "lb"),
  14787. name: "Front",
  14788. image: {
  14789. source: "./media/characters/topaz/front.svg",
  14790. extra: 317 / 303,
  14791. bottom: 0.055
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Normal",
  14798. height: math.unit(6, "feet"),
  14799. default: true
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(5 + 11 / 12, "feet"),
  14808. weight: math.unit(144, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/gabriel/front.svg",
  14812. extra: 285 / 262,
  14813. bottom: 0.004
  14814. }
  14815. },
  14816. },
  14817. [
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(5 + 11 / 12, "feet"),
  14821. default: true
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14827. {
  14828. side: {
  14829. height: math.unit(6 + 5 / 12, "feet"),
  14830. weight: math.unit(300, "lb"),
  14831. name: "Side",
  14832. image: {
  14833. source: "./media/characters/tempest-suicune/side.svg",
  14834. extra: 195 / 154,
  14835. bottom: 0.04
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(6 + 5 / 12, "feet"),
  14843. default: true
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(7 + 2 / 12, "feet"),
  14852. weight: math.unit(322, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/vulcan/front.svg",
  14856. extra: 154 / 147,
  14857. bottom: 0.04
  14858. }
  14859. },
  14860. },
  14861. [
  14862. {
  14863. name: "Normal",
  14864. height: math.unit(7 + 2 / 12, "feet"),
  14865. default: true
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14871. {
  14872. front: {
  14873. height: math.unit(5 + 10 / 12, "feet"),
  14874. weight: math.unit(264, "lb"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/gault/front.svg",
  14878. extra: 161 / 140,
  14879. bottom: 0.028
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(5 + 10 / 12, "feet"),
  14887. default: true
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(6, "feet"),
  14896. weight: math.unit(150, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/shard/front.svg",
  14900. extra: 273 / 238,
  14901. bottom: 0.02
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(3 + 6 / 12, "feet"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(5 + 11 / 12, "feet"),
  14918. weight: math.unit(146, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/ashe/front.svg",
  14922. extra: 400 / 373,
  14923. bottom: 0.01
  14924. }
  14925. },
  14926. },
  14927. [
  14928. {
  14929. name: "Normal",
  14930. height: math.unit(5 + 11 / 12, "feet"),
  14931. default: true
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14937. {
  14938. front: {
  14939. height: math.unit(5 + 5 / 12, "feet"),
  14940. weight: math.unit(135, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/beatrix/front.svg",
  14944. extra: 392 / 379,
  14945. bottom: 0.01
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(6, "feet"),
  14953. default: true
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/ignatius/front.svg",
  14966. extra: 245 / 222,
  14967. bottom: 0.01
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(5 + 5 / 12, "feet"),
  14975. default: true
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(6 + 2 / 12, "feet"),
  14984. weight: math.unit(138, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/mei-li/front.svg",
  14988. extra: 237 / 229,
  14989. bottom: 0.03
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(6 + 2 / 12, "feet"),
  14997. default: true
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(2 + 4 / 12, "feet"),
  15006. weight: math.unit(62, "lb"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/puru/front.svg",
  15010. extra: 206 / 149,
  15011. bottom: 0.06
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Normal",
  15018. height: math.unit(2 + 4 / 12, "feet"),
  15019. default: true
  15020. },
  15021. ]
  15022. ))
  15023. characterMakers.push(() => makeCharacter(
  15024. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15025. {
  15026. anthro: {
  15027. height: math.unit(5 + 8/12, "feet"),
  15028. weight: math.unit(200, "lb"),
  15029. energyNeed: math.unit(2000, "kcal"),
  15030. name: "Anthro",
  15031. image: {
  15032. source: "./media/characters/kee/anthro.svg",
  15033. extra: 3251/3184,
  15034. bottom: 250/3501
  15035. }
  15036. },
  15037. taur: {
  15038. height: math.unit(11, "feet"),
  15039. weight: math.unit(500, "lb"),
  15040. energyNeed: math.unit(5000, "kcal"),
  15041. name: "Taur",
  15042. image: {
  15043. source: "./media/characters/kee/taur.svg",
  15044. extra: 1362/1320,
  15045. bottom: 83/1445
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(5 + 8/12, "feet"),
  15053. default: true
  15054. },
  15055. {
  15056. name: "Macro",
  15057. height: math.unit(35, "feet")
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15063. {
  15064. anthro: {
  15065. height: math.unit(7, "feet"),
  15066. weight: math.unit(190, "lb"),
  15067. name: "Anthro",
  15068. image: {
  15069. source: "./media/characters/cobalt-dracha/anthro.svg",
  15070. extra: 231 / 225,
  15071. bottom: 0.04
  15072. }
  15073. },
  15074. feral: {
  15075. height: math.unit(9 + 7 / 12, "feet"),
  15076. weight: math.unit(294, "lb"),
  15077. name: "Feral",
  15078. image: {
  15079. source: "./media/characters/cobalt-dracha/feral.svg",
  15080. extra: 692 / 633,
  15081. bottom: 0.05
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Normal",
  15088. height: math.unit(7, "feet"),
  15089. default: true
  15090. },
  15091. ]
  15092. ))
  15093. characterMakers.push(() => makeCharacter(
  15094. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15095. {
  15096. fallen: {
  15097. height: math.unit(11 + 8 / 12, "feet"),
  15098. weight: math.unit(485, "lb"),
  15099. name: "Java (Fallen)",
  15100. rename: true,
  15101. image: {
  15102. source: "./media/characters/java/fallen.svg",
  15103. extra: 226 / 208,
  15104. bottom: 0.005
  15105. }
  15106. },
  15107. godkin: {
  15108. height: math.unit(10 + 6 / 12, "feet"),
  15109. weight: math.unit(328, "lb"),
  15110. name: "Java (Godkin)",
  15111. rename: true,
  15112. image: {
  15113. source: "./media/characters/java/godkin.svg",
  15114. extra: 270 / 262,
  15115. bottom: 0.02
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Normal",
  15122. height: math.unit(11 + 8 / 12, "feet"),
  15123. default: true
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(7 + 8 / 12, "feet"),
  15132. weight: math.unit(320, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/skoll/front.svg",
  15136. extra: 232 / 220,
  15137. bottom: 0.02
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(7 + 8 / 12, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(5 + 9 / 12, "feet"),
  15154. weight: math.unit(170, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/purna/front.svg",
  15158. extra: 239 / 229,
  15159. bottom: 0.01
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(5 + 9 / 12, "feet"),
  15167. default: true
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(5 + 9 / 12, "feet"),
  15176. weight: math.unit(142, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/kuva/front.svg",
  15180. extra: 281 / 271,
  15181. bottom: 0.006
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(5 + 9 / 12, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15195. {
  15196. anthro: {
  15197. height: math.unit(9 + 2 / 12, "feet"),
  15198. weight: math.unit(270, "lb"),
  15199. name: "Anthro",
  15200. image: {
  15201. source: "./media/characters/embra/anthro.svg",
  15202. extra: 200 / 187,
  15203. bottom: 0.02
  15204. }
  15205. },
  15206. feral: {
  15207. height: math.unit(18 + 8 / 12, "feet"),
  15208. weight: math.unit(576, "lb"),
  15209. name: "Feral",
  15210. image: {
  15211. source: "./media/characters/embra/feral.svg",
  15212. extra: 152 / 137,
  15213. bottom: 0.037
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(9 + 2 / 12, "feet"),
  15221. default: true
  15222. },
  15223. ]
  15224. ))
  15225. characterMakers.push(() => makeCharacter(
  15226. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15227. {
  15228. anthro: {
  15229. height: math.unit(10 + 9 / 12, "feet"),
  15230. weight: math.unit(224, "lb"),
  15231. name: "Anthro",
  15232. image: {
  15233. source: "./media/characters/grottos/anthro.svg",
  15234. extra: 350 / 332,
  15235. bottom: 0.045
  15236. }
  15237. },
  15238. feral: {
  15239. height: math.unit(20 + 7 / 12, "feet"),
  15240. weight: math.unit(629, "lb"),
  15241. name: "Feral",
  15242. image: {
  15243. source: "./media/characters/grottos/feral.svg",
  15244. extra: 207 / 190,
  15245. bottom: 0.05
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(10 + 9 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15259. {
  15260. anthro: {
  15261. height: math.unit(9 + 6 / 12, "feet"),
  15262. weight: math.unit(298, "lb"),
  15263. name: "Anthro",
  15264. image: {
  15265. source: "./media/characters/frifna/anthro.svg",
  15266. extra: 282 / 269,
  15267. bottom: 0.015
  15268. }
  15269. },
  15270. feral: {
  15271. height: math.unit(16 + 2 / 12, "feet"),
  15272. weight: math.unit(624, "lb"),
  15273. name: "Feral",
  15274. image: {
  15275. source: "./media/characters/frifna/feral.svg"
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(9 + 6 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(6 + 2 / 12, "feet"),
  15292. weight: math.unit(168, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/elise/front.svg",
  15296. extra: 276 / 271
  15297. }
  15298. },
  15299. },
  15300. [
  15301. {
  15302. name: "Normal",
  15303. height: math.unit(6 + 2 / 12, "feet"),
  15304. default: true
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(5 + 10 / 12, "feet"),
  15313. weight: math.unit(210, "lb"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/glade/front.svg",
  15317. extra: 258 / 247,
  15318. bottom: 0.008
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "Normal",
  15325. height: math.unit(5 + 10 / 12, "feet"),
  15326. default: true
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15332. {
  15333. front: {
  15334. height: math.unit(5 + 10 / 12, "feet"),
  15335. weight: math.unit(129, "lb"),
  15336. name: "Front",
  15337. image: {
  15338. source: "./media/characters/rina/front.svg",
  15339. extra: 266 / 255,
  15340. bottom: 0.005
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(5 + 10 / 12, "feet"),
  15348. default: true
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(6 + 1 / 12, "feet"),
  15357. weight: math.unit(192, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/veronica/front.svg",
  15361. extra: 319 / 309,
  15362. bottom: 0.005
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(6 + 1 / 12, "feet"),
  15370. default: true
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15376. {
  15377. front: {
  15378. height: math.unit(9 + 3 / 12, "feet"),
  15379. weight: math.unit(1100, "lb"),
  15380. name: "Front",
  15381. image: {
  15382. source: "./media/characters/braxton/front.svg",
  15383. extra: 1057 / 984,
  15384. bottom: 0.05
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Normal",
  15391. height: math.unit(9 + 3 / 12, "feet")
  15392. },
  15393. {
  15394. name: "Giant",
  15395. height: math.unit(300, "feet"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Macro",
  15400. height: math.unit(700, "feet")
  15401. },
  15402. {
  15403. name: "Megamacro",
  15404. height: math.unit(6000, "feet")
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(6 + 7 / 12, "feet"),
  15413. weight: math.unit(150, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/blue-feyonics/front.svg",
  15417. extra: 1403 / 1306,
  15418. bottom: 0.047
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(6 + 7 / 12, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(1.8, "meters"),
  15435. weight: math.unit(60, "kg"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/maxwell/front.svg",
  15439. extra: 2060 / 1873
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Micro",
  15446. height: math.unit(1, "mm")
  15447. },
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(1.8, "meter"),
  15451. default: true
  15452. },
  15453. {
  15454. name: "Macro",
  15455. height: math.unit(30, "meters")
  15456. },
  15457. {
  15458. name: "Megamacro",
  15459. height: math.unit(10, "km")
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15465. {
  15466. front: {
  15467. height: math.unit(6, "feet"),
  15468. weight: math.unit(150, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/jack/front.svg",
  15472. extra: 1754 / 1640,
  15473. bottom: 0.01
  15474. }
  15475. },
  15476. },
  15477. [
  15478. {
  15479. name: "Normal",
  15480. height: math.unit(80000, "feet"),
  15481. default: true
  15482. },
  15483. {
  15484. name: "Max size",
  15485. height: math.unit(10, "lightyears")
  15486. },
  15487. ]
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15491. {
  15492. upright: {
  15493. height: math.unit(7, "feet"),
  15494. weight: math.unit(170, "lb"),
  15495. name: "Upright",
  15496. image: {
  15497. source: "./media/characters/cafat/upright.svg",
  15498. bottom: 0.01
  15499. }
  15500. },
  15501. uprightFull: {
  15502. height: math.unit(7, "feet"),
  15503. weight: math.unit(170, "lb"),
  15504. name: "Upright (Full)",
  15505. image: {
  15506. source: "./media/characters/cafat/upright-full.svg",
  15507. bottom: 0.01
  15508. }
  15509. },
  15510. side: {
  15511. height: math.unit(5, "feet"),
  15512. weight: math.unit(150, "lb"),
  15513. name: "Side",
  15514. image: {
  15515. source: "./media/characters/cafat/side.svg"
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Small",
  15522. height: math.unit(7, "feet"),
  15523. default: true
  15524. },
  15525. {
  15526. name: "Large",
  15527. height: math.unit(15.5, "feet")
  15528. },
  15529. ]
  15530. ))
  15531. characterMakers.push(() => makeCharacter(
  15532. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15533. {
  15534. front: {
  15535. height: math.unit(6, "feet"),
  15536. weight: math.unit(150, "lb"),
  15537. name: "Front",
  15538. image: {
  15539. source: "./media/characters/verin-raharra/front.svg",
  15540. extra: 5019 / 4835,
  15541. bottom: 0.023
  15542. }
  15543. },
  15544. },
  15545. [
  15546. {
  15547. name: "Normal",
  15548. height: math.unit(7 + 5 / 12, "feet"),
  15549. default: true
  15550. },
  15551. {
  15552. name: "Upsized",
  15553. height: math.unit(20, "feet")
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15559. {
  15560. front: {
  15561. height: math.unit(7, "feet"),
  15562. weight: math.unit(230, "lb"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/nakata/front.svg",
  15566. extra: 1.005,
  15567. bottom: 0.01
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Normal",
  15574. height: math.unit(7, "feet"),
  15575. default: true
  15576. },
  15577. {
  15578. name: "Big",
  15579. height: math.unit(14, "feet")
  15580. },
  15581. {
  15582. name: "Macro",
  15583. height: math.unit(400, "feet")
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15589. {
  15590. front: {
  15591. height: math.unit(4.91, "feet"),
  15592. weight: math.unit(100, "lb"),
  15593. name: "Front",
  15594. image: {
  15595. source: "./media/characters/lily/front.svg",
  15596. extra: 1585 / 1415,
  15597. bottom: 0.02
  15598. }
  15599. },
  15600. },
  15601. [
  15602. {
  15603. name: "Normal",
  15604. height: math.unit(4.91, "feet"),
  15605. default: true
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15611. {
  15612. laying: {
  15613. height: math.unit(4 + 4 / 12, "feet"),
  15614. weight: math.unit(600, "lb"),
  15615. name: "Laying",
  15616. image: {
  15617. source: "./media/characters/sheila/laying.svg",
  15618. extra: 1333 / 1265,
  15619. bottom: 0.16
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(4 + 4 / 12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(190, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/sax/front.svg",
  15640. extra: 1187 / 973,
  15641. bottom: 0.042
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Micro",
  15648. height: math.unit(4, "inches"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(6, "feet"),
  15658. weight: math.unit(150, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/pandora/front.svg",
  15662. extra: 2720 / 2556,
  15663. bottom: 0.015
  15664. }
  15665. },
  15666. back: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(150, "lb"),
  15669. name: "Back",
  15670. image: {
  15671. source: "./media/characters/pandora/back.svg",
  15672. extra: 2720 / 2556,
  15673. bottom: 0.01
  15674. }
  15675. },
  15676. beans: {
  15677. height: math.unit(6 / 8, "feet"),
  15678. name: "Beans",
  15679. image: {
  15680. source: "./media/characters/pandora/beans.svg"
  15681. }
  15682. },
  15683. skirt: {
  15684. height: math.unit(6, "feet"),
  15685. weight: math.unit(150, "lb"),
  15686. name: "Skirt",
  15687. image: {
  15688. source: "./media/characters/pandora/skirt.svg",
  15689. extra: 1622 / 1525,
  15690. bottom: 0.015
  15691. }
  15692. },
  15693. hoodie: {
  15694. height: math.unit(6, "feet"),
  15695. weight: math.unit(150, "lb"),
  15696. name: "Hoodie",
  15697. image: {
  15698. source: "./media/characters/pandora/hoodie.svg",
  15699. extra: 1622 / 1525,
  15700. bottom: 0.015
  15701. }
  15702. },
  15703. casual: {
  15704. height: math.unit(6, "feet"),
  15705. weight: math.unit(150, "lb"),
  15706. name: "Casual",
  15707. image: {
  15708. source: "./media/characters/pandora/casual.svg",
  15709. extra: 1622 / 1525,
  15710. bottom: 0.015
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(6, "feet")
  15718. },
  15719. {
  15720. name: "Big Steppy",
  15721. height: math.unit(1, "km"),
  15722. default: true
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15728. {
  15729. side: {
  15730. height: math.unit(10, "feet"),
  15731. weight: math.unit(800, "kg"),
  15732. name: "Side",
  15733. image: {
  15734. source: "./media/characters/venio-darcony/side.svg",
  15735. extra: 1373 / 1003,
  15736. bottom: 0.037
  15737. }
  15738. },
  15739. front: {
  15740. height: math.unit(19, "feet"),
  15741. weight: math.unit(800, "kg"),
  15742. name: "Front",
  15743. image: {
  15744. source: "./media/characters/venio-darcony/front.svg"
  15745. }
  15746. },
  15747. back: {
  15748. height: math.unit(19, "feet"),
  15749. weight: math.unit(800, "kg"),
  15750. name: "Back",
  15751. image: {
  15752. source: "./media/characters/venio-darcony/back.svg"
  15753. }
  15754. },
  15755. sideNsfw: {
  15756. height: math.unit(10, "feet"),
  15757. weight: math.unit(800, "kg"),
  15758. name: "Side (NSFW)",
  15759. image: {
  15760. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15761. extra: 1373 / 1003,
  15762. bottom: 0.037
  15763. }
  15764. },
  15765. frontNsfw: {
  15766. height: math.unit(19, "feet"),
  15767. weight: math.unit(800, "kg"),
  15768. name: "Front (NSFW)",
  15769. image: {
  15770. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15771. }
  15772. },
  15773. backNsfw: {
  15774. height: math.unit(19, "feet"),
  15775. weight: math.unit(800, "kg"),
  15776. name: "Back (NSFW)",
  15777. image: {
  15778. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15779. }
  15780. },
  15781. sideArmored: {
  15782. height: math.unit(10, "feet"),
  15783. weight: math.unit(800, "kg"),
  15784. name: "Side (Armored)",
  15785. image: {
  15786. source: "./media/characters/venio-darcony/side-armored.svg",
  15787. extra: 1373 / 1003,
  15788. bottom: 0.037
  15789. }
  15790. },
  15791. frontArmored: {
  15792. height: math.unit(19, "feet"),
  15793. weight: math.unit(900, "kg"),
  15794. name: "Front (Armored)",
  15795. image: {
  15796. source: "./media/characters/venio-darcony/front-armored.svg"
  15797. }
  15798. },
  15799. backArmored: {
  15800. height: math.unit(19, "feet"),
  15801. weight: math.unit(900, "kg"),
  15802. name: "Back (Armored)",
  15803. image: {
  15804. source: "./media/characters/venio-darcony/back-armored.svg"
  15805. }
  15806. },
  15807. sword: {
  15808. height: math.unit(10, "feet"),
  15809. weight: math.unit(50, "lb"),
  15810. name: "Sword",
  15811. image: {
  15812. source: "./media/characters/venio-darcony/sword.svg"
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(10, "feet")
  15820. },
  15821. {
  15822. name: "Macro",
  15823. height: math.unit(130, "feet"),
  15824. default: true
  15825. },
  15826. {
  15827. name: "Macro+",
  15828. height: math.unit(240, "feet")
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(6, "feet"),
  15837. weight: math.unit(150, "lb"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/veski/front.svg",
  15841. extra: 1299 / 1225,
  15842. bottom: 0.04
  15843. }
  15844. },
  15845. back: {
  15846. height: math.unit(6, "feet"),
  15847. weight: math.unit(150, "lb"),
  15848. name: "Back",
  15849. image: {
  15850. source: "./media/characters/veski/back.svg",
  15851. extra: 1299 / 1225,
  15852. bottom: 0.008
  15853. }
  15854. },
  15855. maw: {
  15856. height: math.unit(1.5 * 1.21, "feet"),
  15857. name: "Maw",
  15858. image: {
  15859. source: "./media/characters/veski/maw.svg"
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Macro",
  15866. height: math.unit(2, "km"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(5 + 7 / 12, "feet"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/isabelle/front.svg",
  15879. extra: 2130 / 1976,
  15880. bottom: 0.05
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Supermicro",
  15887. height: math.unit(10, "micrometers")
  15888. },
  15889. {
  15890. name: "Micro",
  15891. height: math.unit(1, "inch")
  15892. },
  15893. {
  15894. name: "Tiny",
  15895. height: math.unit(5, "inches")
  15896. },
  15897. {
  15898. name: "Standard",
  15899. height: math.unit(5 + 7 / 12, "inches")
  15900. },
  15901. {
  15902. name: "Macro",
  15903. height: math.unit(80, "meters"),
  15904. default: true
  15905. },
  15906. {
  15907. name: "Megamacro",
  15908. height: math.unit(250, "meters")
  15909. },
  15910. {
  15911. name: "Gigamacro",
  15912. height: math.unit(5, "km")
  15913. },
  15914. {
  15915. name: "Cosmic",
  15916. height: math.unit(2.5e6, "miles")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/hanzo/front.svg",
  15929. extra: 374 / 344,
  15930. bottom: 0.02
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Normal",
  15937. height: math.unit(8, "feet"),
  15938. default: true
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15944. {
  15945. front: {
  15946. height: math.unit(7, "feet"),
  15947. weight: math.unit(130, "lb"),
  15948. name: "Front",
  15949. image: {
  15950. source: "./media/characters/anna/front.svg",
  15951. extra: 169 / 145,
  15952. bottom: 0.06
  15953. }
  15954. },
  15955. full: {
  15956. height: math.unit(4.96, "feet"),
  15957. weight: math.unit(220, "lb"),
  15958. name: "Full",
  15959. image: {
  15960. source: "./media/characters/anna/full.svg",
  15961. extra: 138 / 114,
  15962. bottom: 0.15
  15963. }
  15964. },
  15965. tongue: {
  15966. height: math.unit(2.53, "feet"),
  15967. name: "Tongue",
  15968. image: {
  15969. source: "./media/characters/anna/tongue.svg"
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(7, "feet"),
  15977. default: true
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(7, "feet"),
  15986. weight: math.unit(150, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/ian-corvid/front.svg",
  15990. extra: 150 / 142,
  15991. bottom: 0.02
  15992. }
  15993. },
  15994. back: {
  15995. height: math.unit(7, "feet"),
  15996. weight: math.unit(150, "lb"),
  15997. name: "Back",
  15998. image: {
  15999. source: "./media/characters/ian-corvid/back.svg",
  16000. extra: 150 / 143,
  16001. bottom: 0.01
  16002. }
  16003. },
  16004. stomping: {
  16005. height: math.unit(7, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Stomping",
  16008. image: {
  16009. source: "./media/characters/ian-corvid/stomping.svg",
  16010. extra: 76 / 72
  16011. }
  16012. },
  16013. sitting: {
  16014. height: math.unit(7 / 1.8, "feet"),
  16015. weight: math.unit(150, "lb"),
  16016. name: "Sitting",
  16017. image: {
  16018. source: "./media/characters/ian-corvid/sitting.svg",
  16019. extra: 1400 / 1269,
  16020. bottom: 0.15
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Tiny Microw",
  16027. height: math.unit(1, "inch")
  16028. },
  16029. {
  16030. name: "Microw",
  16031. height: math.unit(6, "inches")
  16032. },
  16033. {
  16034. name: "Crow",
  16035. height: math.unit(7 + 1 / 12, "feet"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Macrow",
  16040. height: math.unit(176, "feet")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(5 + 7 / 12, "feet"),
  16049. weight: math.unit(147, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/natalie-kellon/front.svg",
  16053. extra: 1214 / 1141,
  16054. bottom: 0.02
  16055. }
  16056. },
  16057. },
  16058. [
  16059. {
  16060. name: "Micro",
  16061. height: math.unit(1 / 16, "inch")
  16062. },
  16063. {
  16064. name: "Tiny",
  16065. height: math.unit(4, "inches")
  16066. },
  16067. {
  16068. name: "Normal",
  16069. height: math.unit(5 + 7 / 12, "feet"),
  16070. default: true
  16071. },
  16072. {
  16073. name: "Amazon",
  16074. height: math.unit(12, "feet")
  16075. },
  16076. {
  16077. name: "Giantess",
  16078. height: math.unit(160, "meters")
  16079. },
  16080. {
  16081. name: "Titaness",
  16082. height: math.unit(800, "meters")
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16088. {
  16089. front: {
  16090. height: math.unit(6, "feet"),
  16091. weight: math.unit(150, "lb"),
  16092. name: "Front",
  16093. image: {
  16094. source: "./media/characters/alluria/front.svg",
  16095. extra: 806 / 738,
  16096. bottom: 0.01
  16097. }
  16098. },
  16099. side: {
  16100. height: math.unit(6, "feet"),
  16101. weight: math.unit(150, "lb"),
  16102. name: "Side",
  16103. image: {
  16104. source: "./media/characters/alluria/side.svg",
  16105. extra: 800 / 750,
  16106. }
  16107. },
  16108. back: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Back",
  16112. image: {
  16113. source: "./media/characters/alluria/back.svg",
  16114. extra: 806 / 738,
  16115. }
  16116. },
  16117. frontMaid: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(150, "lb"),
  16120. name: "Front (Maid)",
  16121. image: {
  16122. source: "./media/characters/alluria/front-maid.svg",
  16123. extra: 806 / 738,
  16124. bottom: 0.01
  16125. }
  16126. },
  16127. sideMaid: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Side (Maid)",
  16131. image: {
  16132. source: "./media/characters/alluria/side-maid.svg",
  16133. extra: 800 / 750,
  16134. bottom: 0.005
  16135. }
  16136. },
  16137. backMaid: {
  16138. height: math.unit(6, "feet"),
  16139. weight: math.unit(150, "lb"),
  16140. name: "Back (Maid)",
  16141. image: {
  16142. source: "./media/characters/alluria/back-maid.svg",
  16143. extra: 806 / 738,
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Micro",
  16150. height: math.unit(6, "inches"),
  16151. default: true
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(6, "feet"),
  16160. weight: math.unit(150, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/kyle/front.svg",
  16164. extra: 1069 / 962,
  16165. bottom: 77.228 / 1727.45
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Macro",
  16172. height: math.unit(150, "feet"),
  16173. default: true
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16179. {
  16180. front: {
  16181. height: math.unit(6, "feet"),
  16182. weight: math.unit(300, "lb"),
  16183. name: "Front",
  16184. image: {
  16185. source: "./media/characters/duncan/front.svg",
  16186. extra: 1650 / 1482,
  16187. bottom: 0.05
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Macro",
  16194. height: math.unit(100, "feet"),
  16195. default: true
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16201. {
  16202. front: {
  16203. height: math.unit(5 + 4 / 12, "feet"),
  16204. weight: math.unit(220, "lb"),
  16205. name: "Front",
  16206. image: {
  16207. source: "./media/characters/memory/front.svg",
  16208. extra: 3641 / 3545,
  16209. bottom: 0.03
  16210. }
  16211. },
  16212. back: {
  16213. height: math.unit(5 + 4 / 12, "feet"),
  16214. weight: math.unit(220, "lb"),
  16215. name: "Back",
  16216. image: {
  16217. source: "./media/characters/memory/back.svg",
  16218. extra: 3641 / 3545,
  16219. bottom: 0.025
  16220. }
  16221. },
  16222. frontSkirt: {
  16223. height: math.unit(5 + 4 / 12, "feet"),
  16224. weight: math.unit(220, "lb"),
  16225. name: "Front (Skirt)",
  16226. image: {
  16227. source: "./media/characters/memory/front-skirt.svg",
  16228. extra: 3641 / 3545,
  16229. bottom: 0.03
  16230. }
  16231. },
  16232. frontDress: {
  16233. height: math.unit(5 + 4 / 12, "feet"),
  16234. weight: math.unit(220, "lb"),
  16235. name: "Front (Dress)",
  16236. image: {
  16237. source: "./media/characters/memory/front-dress.svg",
  16238. extra: 3641 / 3545,
  16239. bottom: 0.03
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Micro",
  16246. height: math.unit(6, "inches"),
  16247. default: true
  16248. },
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(5 + 4 / 12, "feet")
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16257. {
  16258. front: {
  16259. height: math.unit(4 + 11 / 12, "feet"),
  16260. weight: math.unit(100, "lb"),
  16261. name: "Front",
  16262. image: {
  16263. source: "./media/characters/luno/front.svg",
  16264. extra: 1535 / 1487,
  16265. bottom: 0.03
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Micro",
  16272. height: math.unit(3, "inches")
  16273. },
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(4 + 11 / 12, "feet"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Macro",
  16281. height: math.unit(300, "feet")
  16282. },
  16283. {
  16284. name: "Megamacro",
  16285. height: math.unit(700, "miles")
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(6 + 2 / 12, "feet"),
  16294. weight: math.unit(170, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/jamesy/front.svg",
  16298. extra: 440 / 382,
  16299. bottom: 0.005
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Micro",
  16306. height: math.unit(3, "inches")
  16307. },
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(6 + 2 / 12, "feet"),
  16311. default: true
  16312. },
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(300, "feet")
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(700, "miles")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16325. {
  16326. front: {
  16327. height: math.unit(6, "feet"),
  16328. weight: math.unit(160, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/mark/front.svg",
  16332. extra: 3300 / 3100,
  16333. bottom: 136.42 / 3440.47
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Macro",
  16340. height: math.unit(120, "meters")
  16341. },
  16342. {
  16343. name: "Bigger Macro",
  16344. height: math.unit(350, "meters")
  16345. },
  16346. {
  16347. name: "Megamacro",
  16348. height: math.unit(8, "km"),
  16349. default: true
  16350. },
  16351. {
  16352. name: "Continental",
  16353. height: math.unit(4550, "km")
  16354. },
  16355. {
  16356. name: "Planetary",
  16357. height: math.unit(65000, "km")
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16363. {
  16364. front: {
  16365. height: math.unit(6, "feet"),
  16366. weight: math.unit(400, "lb"),
  16367. name: "Front",
  16368. image: {
  16369. source: "./media/characters/mac/front.svg",
  16370. extra: 1048 / 987.7,
  16371. bottom: 60 / 1107.6,
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Macro",
  16378. height: math.unit(500, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(5 + 2 / 12, "feet"),
  16388. weight: math.unit(190, "lb"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/bari/front.svg",
  16392. extra: 3156 / 2880,
  16393. bottom: 0.03
  16394. }
  16395. },
  16396. back: {
  16397. height: math.unit(5 + 2 / 12, "feet"),
  16398. weight: math.unit(190, "lb"),
  16399. name: "Back",
  16400. image: {
  16401. source: "./media/characters/bari/back.svg",
  16402. extra: 3260 / 2834,
  16403. bottom: 0.025
  16404. }
  16405. },
  16406. frontPlush: {
  16407. height: math.unit(5 + 2 / 12, "feet"),
  16408. weight: math.unit(190, "lb"),
  16409. name: "Front (Plush)",
  16410. image: {
  16411. source: "./media/characters/bari/front-plush.svg",
  16412. extra: 1112 / 1061,
  16413. bottom: 0.002
  16414. }
  16415. },
  16416. },
  16417. [
  16418. {
  16419. name: "Micro",
  16420. height: math.unit(3, "inches")
  16421. },
  16422. {
  16423. name: "Normal",
  16424. height: math.unit(5 + 2 / 12, "feet"),
  16425. default: true
  16426. },
  16427. {
  16428. name: "Macro",
  16429. height: math.unit(20, "feet")
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16435. {
  16436. front: {
  16437. height: math.unit(6 + 1 / 12, "feet"),
  16438. weight: math.unit(275, "lb"),
  16439. name: "Front",
  16440. image: {
  16441. source: "./media/characters/hunter-misha-raven/front.svg"
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Mortal",
  16448. height: math.unit(6 + 1 / 12, "feet")
  16449. },
  16450. {
  16451. name: "Divine",
  16452. height: math.unit(1.12134e34, "parsecs"),
  16453. default: true
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(6 + 3 / 12, "feet"),
  16462. weight: math.unit(220, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/max-calore/front.svg",
  16466. extra: 1700 / 1648,
  16467. bottom: 0.01
  16468. }
  16469. },
  16470. back: {
  16471. height: math.unit(6 + 3 / 12, "feet"),
  16472. weight: math.unit(220, "lb"),
  16473. name: "Back",
  16474. image: {
  16475. source: "./media/characters/max-calore/back.svg",
  16476. extra: 1700 / 1648,
  16477. bottom: 0.01
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(6 + 3 / 12, "feet"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16491. {
  16492. side: {
  16493. height: math.unit(2 + 8 / 12, "feet"),
  16494. weight: math.unit(99, "lb"),
  16495. name: "Side",
  16496. image: {
  16497. source: "./media/characters/aspen/side.svg",
  16498. extra: 152 / 138,
  16499. bottom: 0.032
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(2 + 8 / 12, "feet"),
  16507. default: true
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16513. {
  16514. side: {
  16515. height: math.unit(3 + 2 / 12, "feet"),
  16516. weight: math.unit(224, "lb"),
  16517. name: "Side",
  16518. image: {
  16519. source: "./media/characters/sheila-feral-wolf/side.svg",
  16520. extra: 179 / 166,
  16521. bottom: 0.03
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(3 + 2 / 12, "feet"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16535. {
  16536. side: {
  16537. height: math.unit(1 + 9 / 12, "feet"),
  16538. weight: math.unit(38, "lb"),
  16539. name: "Side",
  16540. image: {
  16541. source: "./media/characters/michelle/side.svg",
  16542. extra: 147 / 136.7,
  16543. bottom: 0.03
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(1 + 9 / 12, "feet"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(1 + 1 / 12, "feet"),
  16560. weight: math.unit(18, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/nino/front.svg"
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(1 + 1 / 12, "feet"),
  16571. default: true
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(1, "feet"),
  16580. weight: math.unit(16, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/viola/front.svg"
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Normal",
  16590. height: math.unit(1, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6 + 5 / 12, "feet"),
  16600. weight: math.unit(580, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/atlas/front.svg",
  16604. extra: 298.5 / 290,
  16605. bottom: 0.015
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(6 + 5 / 12, "feet"),
  16613. default: true
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16619. {
  16620. side: {
  16621. height: math.unit(1 + 10 / 12, "feet"),
  16622. weight: math.unit(25, "lb"),
  16623. name: "Side",
  16624. image: {
  16625. source: "./media/characters/davy/side.svg",
  16626. extra: 200 / 170,
  16627. bottom: 0.01
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(1 + 10 / 12, "feet"),
  16635. default: true
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16641. {
  16642. side: {
  16643. height: math.unit(4 + 8 / 12, "feet"),
  16644. weight: math.unit(166, "lb"),
  16645. name: "Side",
  16646. image: {
  16647. source: "./media/characters/fiona/side.svg",
  16648. extra: 232 / 220,
  16649. bottom: 0.03
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(4 + 8 / 12, "feet"),
  16657. default: true
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16663. {
  16664. front: {
  16665. height: math.unit(2, "feet"),
  16666. weight: math.unit(62, "lb"),
  16667. name: "Front",
  16668. image: {
  16669. source: "./media/characters/lyla/front.svg",
  16670. bottom: 0.1
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(2, "feet"),
  16678. default: true
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16684. {
  16685. side: {
  16686. height: math.unit(1.8, "feet"),
  16687. weight: math.unit(44, "lb"),
  16688. name: "Side",
  16689. image: {
  16690. source: "./media/characters/perseus/side.svg",
  16691. bottom: 0.21
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(1.8, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16705. {
  16706. side: {
  16707. height: math.unit(4 + 2 / 12, "feet"),
  16708. weight: math.unit(20, "lb"),
  16709. name: "Side",
  16710. image: {
  16711. source: "./media/characters/remus/side.svg"
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(4 + 2 / 12, "feet"),
  16719. default: true
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(4 + 11 / 12, "feet"),
  16728. weight: math.unit(114, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/raf/front.svg",
  16732. bottom: 20.5 / 1863
  16733. }
  16734. },
  16735. side: {
  16736. height: math.unit(4 + 11 / 12, "feet"),
  16737. weight: math.unit(114, "lb"),
  16738. name: "Side",
  16739. image: {
  16740. source: "./media/characters/raf/side.svg",
  16741. bottom: 22 / 1822
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Micro",
  16748. height: math.unit(2, "inches")
  16749. },
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(4 + 11 / 12, "feet"),
  16753. default: true
  16754. },
  16755. {
  16756. name: "Macro",
  16757. height: math.unit(70, "feet")
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(1.5, "meters"),
  16766. weight: math.unit(68, "kg"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/liam-einarr/front.svg",
  16770. extra: 2822 / 2666
  16771. }
  16772. },
  16773. back: {
  16774. height: math.unit(1.5, "meters"),
  16775. weight: math.unit(68, "kg"),
  16776. name: "Back",
  16777. image: {
  16778. source: "./media/characters/liam-einarr/back.svg",
  16779. extra: 2822 / 2666,
  16780. bottom: 0.015
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(1.5, "meters"),
  16788. default: true
  16789. },
  16790. {
  16791. name: "Macro",
  16792. height: math.unit(150, "meters")
  16793. },
  16794. {
  16795. name: "Megamacro",
  16796. height: math.unit(35, "km")
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(6, "feet"),
  16805. weight: math.unit(75, "kg"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/linda/front.svg",
  16809. extra: 930 / 874,
  16810. bottom: 0.004
  16811. }
  16812. },
  16813. },
  16814. [
  16815. {
  16816. name: "Normal",
  16817. height: math.unit(6, "feet"),
  16818. default: true
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16824. {
  16825. front: {
  16826. height: math.unit(6 + 8 / 12, "feet"),
  16827. weight: math.unit(220, "lb"),
  16828. name: "Front",
  16829. image: {
  16830. source: "./media/characters/caylex/front.svg",
  16831. extra: 821 / 772,
  16832. bottom: 0.07
  16833. }
  16834. },
  16835. back: {
  16836. height: math.unit(6 + 8 / 12, "feet"),
  16837. weight: math.unit(220, "lb"),
  16838. name: "Back",
  16839. image: {
  16840. source: "./media/characters/caylex/back.svg",
  16841. extra: 821 / 772,
  16842. bottom: 0.022
  16843. }
  16844. },
  16845. hand: {
  16846. height: math.unit(1.25, "feet"),
  16847. name: "Hand",
  16848. image: {
  16849. source: "./media/characters/caylex/hand.svg"
  16850. }
  16851. },
  16852. foot: {
  16853. height: math.unit(1.6, "feet"),
  16854. name: "Foot",
  16855. image: {
  16856. source: "./media/characters/caylex/foot.svg"
  16857. }
  16858. },
  16859. armored: {
  16860. height: math.unit(6 + 8 / 12, "feet"),
  16861. weight: math.unit(250, "lb"),
  16862. name: "Armored",
  16863. image: {
  16864. source: "./media/characters/caylex/armored.svg",
  16865. extra: 1420 / 1310,
  16866. bottom: 0.045
  16867. }
  16868. },
  16869. },
  16870. [
  16871. {
  16872. name: "Normal",
  16873. height: math.unit(6 + 8 / 12, "feet"),
  16874. default: true
  16875. },
  16876. {
  16877. name: "Normal+",
  16878. height: math.unit(12, "feet")
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(7 + 6 / 12, "feet"),
  16887. weight: math.unit(288, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/alana/front.svg",
  16891. extra: 679 / 653,
  16892. bottom: 22.5 / 701
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(7 + 6 / 12, "feet")
  16900. },
  16901. {
  16902. name: "Large",
  16903. height: math.unit(50, "feet")
  16904. },
  16905. {
  16906. name: "Macro",
  16907. height: math.unit(100, "feet"),
  16908. default: true
  16909. },
  16910. {
  16911. name: "Macro+",
  16912. height: math.unit(200, "feet")
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6 + 1 / 12, "feet"),
  16921. weight: math.unit(210, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/hasani/front.svg",
  16925. extra: 244 / 232,
  16926. bottom: 0.01
  16927. }
  16928. },
  16929. back: {
  16930. height: math.unit(6 + 1 / 12, "feet"),
  16931. weight: math.unit(210, "lb"),
  16932. name: "Back",
  16933. image: {
  16934. source: "./media/characters/hasani/back.svg",
  16935. extra: 244 / 232,
  16936. bottom: 0.01
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(6 + 1 / 12, "feet")
  16944. },
  16945. {
  16946. name: "Macro",
  16947. height: math.unit(175, "feet"),
  16948. default: true
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16954. {
  16955. front: {
  16956. height: math.unit(1.82, "meters"),
  16957. weight: math.unit(140, "lb"),
  16958. name: "Front",
  16959. image: {
  16960. source: "./media/characters/nita/front.svg",
  16961. extra: 2473 / 2363,
  16962. bottom: 0.01
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(1.82, "m")
  16970. },
  16971. {
  16972. name: "Macro",
  16973. height: math.unit(300, "m")
  16974. },
  16975. {
  16976. name: "Mistake Canon",
  16977. height: math.unit(0.5, "miles"),
  16978. default: true
  16979. },
  16980. {
  16981. name: "Big Mistake",
  16982. height: math.unit(13, "miles")
  16983. },
  16984. {
  16985. name: "Playing God",
  16986. height: math.unit(2450, "miles")
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16992. {
  16993. front: {
  16994. height: math.unit(4, "feet"),
  16995. weight: math.unit(120, "lb"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/shiriko/front.svg",
  16999. extra: 195 / 188
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(4, "feet"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(6, "feet"),
  17016. name: "front",
  17017. image: {
  17018. source: "./media/characters/deja/front.svg",
  17019. extra: 926 / 840,
  17020. bottom: 0.07
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Planck Length",
  17027. height: math.unit(1.6e-35, "meters")
  17028. },
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(30.48, "meters"),
  17032. default: true
  17033. },
  17034. {
  17035. name: "Universal",
  17036. height: math.unit(8.8e26, "meters")
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17042. {
  17043. side: {
  17044. height: math.unit(8, "feet"),
  17045. weight: math.unit(6300, "lb"),
  17046. name: "Side",
  17047. image: {
  17048. source: "./media/characters/anima/side.svg",
  17049. bottom: 0.035
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(8, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(8, "feet"),
  17066. weight: math.unit(350, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/bianca/front.svg",
  17070. extra: 234 / 225,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(8, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(6, "feet"),
  17088. weight: math.unit(150, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/adinia/front.svg",
  17092. extra: 1845 / 1672,
  17093. bottom: 0.02
  17094. }
  17095. },
  17096. back: {
  17097. height: math.unit(6, "feet"),
  17098. weight: math.unit(150, "lb"),
  17099. name: "Back",
  17100. image: {
  17101. source: "./media/characters/adinia/back.svg",
  17102. extra: 1845 / 1672,
  17103. bottom: 0.002
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(11 + 5 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(3, "meters"),
  17120. weight: math.unit(200, "kg"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/lykasa/front.svg",
  17124. extra: 1076 / 976,
  17125. bottom: 0.06
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(3, "meters")
  17133. },
  17134. {
  17135. name: "Kaiju",
  17136. height: math.unit(120, "meters"),
  17137. default: true
  17138. },
  17139. {
  17140. name: "Mega Kaiju",
  17141. height: math.unit(240, "km")
  17142. },
  17143. {
  17144. name: "Giga Kaiju",
  17145. height: math.unit(400, "megameters")
  17146. },
  17147. {
  17148. name: "Tera Kaiju",
  17149. height: math.unit(800, "gigameters")
  17150. },
  17151. {
  17152. name: "Kaiju Dragon Goddess",
  17153. height: math.unit(26, "zettaparsecs")
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17159. {
  17160. side: {
  17161. height: math.unit(283 / 124 * 6, "feet"),
  17162. weight: math.unit(35000, "lb"),
  17163. name: "Side",
  17164. image: {
  17165. source: "./media/characters/malfaren/side.svg",
  17166. extra: 2500 / 1010,
  17167. bottom: 0.01
  17168. }
  17169. },
  17170. front: {
  17171. height: math.unit(22.36, "feet"),
  17172. weight: math.unit(35000, "lb"),
  17173. name: "Front",
  17174. image: {
  17175. source: "./media/characters/malfaren/front.svg",
  17176. extra: 1631 / 1476,
  17177. bottom: 0.01
  17178. }
  17179. },
  17180. maw: {
  17181. height: math.unit(6.9, "feet"),
  17182. name: "Maw",
  17183. image: {
  17184. source: "./media/characters/malfaren/maw.svg"
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Big",
  17191. height: math.unit(283 / 162 * 6, "feet"),
  17192. },
  17193. {
  17194. name: "Bigger",
  17195. height: math.unit(283 / 124 * 6, "feet")
  17196. },
  17197. {
  17198. name: "Massive",
  17199. height: math.unit(283 / 92 * 6, "feet"),
  17200. default: true
  17201. },
  17202. {
  17203. name: "👀💦",
  17204. height: math.unit(283 / 73 * 6, "feet"),
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(1.7, "m"),
  17213. weight: math.unit(70, "kg"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/kernel/front.svg",
  17217. extra: 222 / 210,
  17218. bottom: 0.007
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Nano",
  17225. height: math.unit(17, "micrometers")
  17226. },
  17227. {
  17228. name: "Micro",
  17229. height: math.unit(1.7, "mm")
  17230. },
  17231. {
  17232. name: "Small",
  17233. height: math.unit(1.7, "cm")
  17234. },
  17235. {
  17236. name: "Normal",
  17237. height: math.unit(1.7, "m"),
  17238. default: true
  17239. },
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17244. {
  17245. front: {
  17246. height: math.unit(1.75, "meters"),
  17247. weight: math.unit(65, "kg"),
  17248. name: "Front",
  17249. image: {
  17250. source: "./media/characters/jayne-folest/front.svg",
  17251. extra: 2115 / 2007,
  17252. bottom: 0.02
  17253. }
  17254. },
  17255. back: {
  17256. height: math.unit(1.75, "meters"),
  17257. weight: math.unit(65, "kg"),
  17258. name: "Back",
  17259. image: {
  17260. source: "./media/characters/jayne-folest/back.svg",
  17261. extra: 2115 / 2007,
  17262. bottom: 0.005
  17263. }
  17264. },
  17265. frontClothed: {
  17266. height: math.unit(1.75, "meters"),
  17267. weight: math.unit(65, "kg"),
  17268. name: "Front (Clothed)",
  17269. image: {
  17270. source: "./media/characters/jayne-folest/front-clothed.svg",
  17271. extra: 2115 / 2007,
  17272. bottom: 0.035
  17273. }
  17274. },
  17275. hand: {
  17276. height: math.unit(1 / 1.260, "feet"),
  17277. name: "Hand",
  17278. image: {
  17279. source: "./media/characters/jayne-folest/hand.svg"
  17280. }
  17281. },
  17282. foot: {
  17283. height: math.unit(1 / 0.918, "feet"),
  17284. name: "Foot",
  17285. image: {
  17286. source: "./media/characters/jayne-folest/foot.svg"
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Micro",
  17293. height: math.unit(4, "cm")
  17294. },
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(1.75, "meters")
  17298. },
  17299. {
  17300. name: "Macro",
  17301. height: math.unit(47.5, "meters"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(180, "cm"),
  17311. weight: math.unit(70, "kg"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/algier/front.svg",
  17315. extra: 596 / 572,
  17316. bottom: 0.04
  17317. }
  17318. },
  17319. back: {
  17320. height: math.unit(180, "cm"),
  17321. weight: math.unit(70, "kg"),
  17322. name: "Back",
  17323. image: {
  17324. source: "./media/characters/algier/back.svg",
  17325. extra: 596 / 572,
  17326. bottom: 0.025
  17327. }
  17328. },
  17329. frontdressed: {
  17330. height: math.unit(180, "cm"),
  17331. weight: math.unit(150, "kg"),
  17332. name: "Front-dressed",
  17333. image: {
  17334. source: "./media/characters/algier/front-dressed.svg",
  17335. extra: 596 / 572,
  17336. bottom: 0.038
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Micro",
  17343. height: math.unit(5, "cm")
  17344. },
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(180, "cm"),
  17348. default: true
  17349. },
  17350. {
  17351. name: "Macro",
  17352. height: math.unit(64, "m")
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17358. {
  17359. upright: {
  17360. height: math.unit(7, "feet"),
  17361. weight: math.unit(300, "lb"),
  17362. name: "Upright",
  17363. image: {
  17364. source: "./media/characters/pretzel/upright.svg",
  17365. extra: 534 / 522,
  17366. bottom: 0.065
  17367. }
  17368. },
  17369. sprawling: {
  17370. height: math.unit(3.75, "feet"),
  17371. weight: math.unit(300, "lb"),
  17372. name: "Sprawling",
  17373. image: {
  17374. source: "./media/characters/pretzel/sprawling.svg",
  17375. extra: 314 / 281,
  17376. bottom: 0.1
  17377. }
  17378. },
  17379. tongue: {
  17380. height: math.unit(2, "feet"),
  17381. name: "Tongue",
  17382. image: {
  17383. source: "./media/characters/pretzel/tongue.svg"
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(7, "feet"),
  17391. default: true
  17392. },
  17393. {
  17394. name: "Oversized",
  17395. height: math.unit(15, "feet")
  17396. },
  17397. {
  17398. name: "Huge",
  17399. height: math.unit(30, "feet")
  17400. },
  17401. {
  17402. name: "Macro",
  17403. height: math.unit(250, "feet")
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17409. {
  17410. sideFront: {
  17411. height: math.unit(5 + 2 / 12, "feet"),
  17412. weight: math.unit(120, "lb"),
  17413. name: "Front Side",
  17414. image: {
  17415. source: "./media/characters/roxi/side-front.svg",
  17416. extra: 2924 / 2717,
  17417. bottom: 0.08
  17418. }
  17419. },
  17420. sideBack: {
  17421. height: math.unit(5 + 2 / 12, "feet"),
  17422. weight: math.unit(120, "lb"),
  17423. name: "Back Side",
  17424. image: {
  17425. source: "./media/characters/roxi/side-back.svg",
  17426. extra: 2904 / 2693,
  17427. bottom: 0.06
  17428. }
  17429. },
  17430. front: {
  17431. height: math.unit(5 + 2 / 12, "feet"),
  17432. weight: math.unit(120, "lb"),
  17433. name: "Front",
  17434. image: {
  17435. source: "./media/characters/roxi/front.svg",
  17436. extra: 2028 / 1907,
  17437. bottom: 0.01
  17438. }
  17439. },
  17440. frontAlt: {
  17441. height: math.unit(5 + 2 / 12, "feet"),
  17442. weight: math.unit(120, "lb"),
  17443. name: "Front (Alt)",
  17444. image: {
  17445. source: "./media/characters/roxi/front-alt.svg",
  17446. extra: 1828 / 1798,
  17447. bottom: 0.01
  17448. }
  17449. },
  17450. sitting: {
  17451. height: math.unit(2.8, "feet"),
  17452. weight: math.unit(120, "lb"),
  17453. name: "Sitting",
  17454. image: {
  17455. source: "./media/characters/roxi/sitting.svg",
  17456. extra: 2660 / 2462,
  17457. bottom: 0.1
  17458. }
  17459. },
  17460. },
  17461. [
  17462. {
  17463. name: "Normal",
  17464. height: math.unit(5 + 2 / 12, "feet"),
  17465. default: true
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17471. {
  17472. side: {
  17473. height: math.unit(55, "feet"),
  17474. weight: math.unit(153, "tons"),
  17475. name: "Side",
  17476. image: {
  17477. source: "./media/characters/shadow/side.svg",
  17478. extra: 701 / 628,
  17479. bottom: 0.02
  17480. }
  17481. },
  17482. flying: {
  17483. height: math.unit(145, "feet"),
  17484. weight: math.unit(153, "tons"),
  17485. name: "Flying",
  17486. image: {
  17487. source: "./media/characters/shadow/flying.svg"
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(55, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(6, "feet"),
  17504. weight: math.unit(200, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/marcie/front.svg",
  17508. extra: 960 / 876,
  17509. bottom: 58 / 1017.87
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Macro",
  17516. height: math.unit(1, "mile"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(7, "feet"),
  17526. weight: math.unit(200, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/kachina/front.svg",
  17530. extra: 1290.68 / 1119,
  17531. bottom: 36.5 / 1327.18
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(7, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17545. {
  17546. looking: {
  17547. height: math.unit(2, "meters"),
  17548. weight: math.unit(300, "kg"),
  17549. name: "Looking",
  17550. image: {
  17551. source: "./media/characters/kash/looking.svg",
  17552. extra: 474 / 344,
  17553. bottom: 0.03
  17554. }
  17555. },
  17556. side: {
  17557. height: math.unit(2, "meters"),
  17558. weight: math.unit(300, "kg"),
  17559. name: "Side",
  17560. image: {
  17561. source: "./media/characters/kash/side.svg",
  17562. extra: 302 / 251,
  17563. bottom: 0.03
  17564. }
  17565. },
  17566. front: {
  17567. height: math.unit(2, "meters"),
  17568. weight: math.unit(300, "kg"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/kash/front.svg",
  17572. extra: 495 / 360,
  17573. bottom: 0.015
  17574. }
  17575. },
  17576. },
  17577. [
  17578. {
  17579. name: "Normal",
  17580. height: math.unit(2, "meters"),
  17581. default: true
  17582. },
  17583. {
  17584. name: "Big",
  17585. height: math.unit(3, "meters")
  17586. },
  17587. {
  17588. name: "Large",
  17589. height: math.unit(5, "meters")
  17590. },
  17591. ]
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17595. {
  17596. feeding: {
  17597. height: math.unit(6.7, "feet"),
  17598. weight: math.unit(350, "lb"),
  17599. name: "Feeding",
  17600. image: {
  17601. source: "./media/characters/lalim/feeding.svg",
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(6.7, "feet"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(9.5, "feet"),
  17618. weight: math.unit(600, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/de'vout/front.svg",
  17622. extra: 1443 / 1328,
  17623. bottom: 0.025
  17624. }
  17625. },
  17626. back: {
  17627. height: math.unit(9.5, "feet"),
  17628. weight: math.unit(600, "lb"),
  17629. name: "Back",
  17630. image: {
  17631. source: "./media/characters/de'vout/back.svg",
  17632. extra: 1443 / 1328
  17633. }
  17634. },
  17635. frontDressed: {
  17636. height: math.unit(9.5, "feet"),
  17637. weight: math.unit(600, "lb"),
  17638. name: "Front (Dressed",
  17639. image: {
  17640. source: "./media/characters/de'vout/front-dressed.svg",
  17641. extra: 1443 / 1328,
  17642. bottom: 0.025
  17643. }
  17644. },
  17645. backDressed: {
  17646. height: math.unit(9.5, "feet"),
  17647. weight: math.unit(600, "lb"),
  17648. name: "Back (Dressed",
  17649. image: {
  17650. source: "./media/characters/de'vout/back-dressed.svg",
  17651. extra: 1443 / 1328
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(9.5, "feet"),
  17659. default: true
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17665. {
  17666. front: {
  17667. height: math.unit(8, "feet"),
  17668. weight: math.unit(225, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/talana/front.svg",
  17672. extra: 1410 / 1300,
  17673. bottom: 0.015
  17674. }
  17675. },
  17676. frontDressed: {
  17677. height: math.unit(8, "feet"),
  17678. weight: math.unit(225, "lb"),
  17679. name: "Front (Dressed",
  17680. image: {
  17681. source: "./media/characters/talana/front-dressed.svg",
  17682. extra: 1410 / 1300,
  17683. bottom: 0.015
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(8, "feet"),
  17691. default: true
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17697. {
  17698. side: {
  17699. height: math.unit(7.2, "feet"),
  17700. weight: math.unit(150, "lb"),
  17701. name: "Side",
  17702. image: {
  17703. source: "./media/characters/xeauvok/side.svg",
  17704. extra: 1975 / 1523,
  17705. bottom: 0.07
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(7.2, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17719. {
  17720. side: {
  17721. height: math.unit(10, "feet"),
  17722. weight: math.unit(900, "kg"),
  17723. name: "Side",
  17724. image: {
  17725. source: "./media/characters/zara/side.svg",
  17726. extra: 504 / 498
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(10, "feet"),
  17734. default: true
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17740. {
  17741. side: {
  17742. height: math.unit(6, "feet"),
  17743. weight: math.unit(150, "lb"),
  17744. name: "Side",
  17745. image: {
  17746. source: "./media/characters/richard-dragon/side.svg",
  17747. extra: 845 / 340,
  17748. bottom: 0.017
  17749. }
  17750. },
  17751. maw: {
  17752. height: math.unit(2.97, "feet"),
  17753. name: "Maw",
  17754. image: {
  17755. source: "./media/characters/richard-dragon/maw.svg"
  17756. }
  17757. },
  17758. },
  17759. [
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17764. {
  17765. front: {
  17766. height: math.unit(4, "feet"),
  17767. weight: math.unit(100, "lb"),
  17768. name: "Front",
  17769. image: {
  17770. source: "./media/characters/richard-smeargle/front.svg",
  17771. extra: 2952 / 2820,
  17772. bottom: 0.028
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(4, "feet"),
  17780. default: true
  17781. },
  17782. {
  17783. name: "Dynamax",
  17784. height: math.unit(20, "meters")
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(6, "feet"),
  17793. weight: math.unit(110, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/klay/front.svg",
  17797. extra: 962 / 883,
  17798. bottom: 0.04
  17799. }
  17800. },
  17801. back: {
  17802. height: math.unit(6, "feet"),
  17803. weight: math.unit(110, "lb"),
  17804. name: "Back",
  17805. image: {
  17806. source: "./media/characters/klay/back.svg",
  17807. extra: 962 / 883
  17808. }
  17809. },
  17810. beans: {
  17811. height: math.unit(1.15, "feet"),
  17812. name: "Beans",
  17813. image: {
  17814. source: "./media/characters/klay/beans.svg"
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Micro",
  17821. height: math.unit(6, "inches")
  17822. },
  17823. {
  17824. name: "Mini",
  17825. height: math.unit(3, "feet")
  17826. },
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(6, "feet"),
  17830. default: true
  17831. },
  17832. {
  17833. name: "Big",
  17834. height: math.unit(25, "feet")
  17835. },
  17836. {
  17837. name: "Macro",
  17838. height: math.unit(100, "feet")
  17839. },
  17840. {
  17841. name: "Megamacro",
  17842. height: math.unit(400, "feet")
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(6, "feet"),
  17851. weight: math.unit(160, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/marcus/front.svg",
  17855. extra: 734 / 676,
  17856. bottom: 0.03
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Little",
  17863. height: math.unit(6, "feet")
  17864. },
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(110, "feet"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Macro",
  17872. height: math.unit(250, "feet")
  17873. },
  17874. {
  17875. name: "Megamacro",
  17876. height: math.unit(1000, "feet")
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(7, "feet"),
  17885. weight: math.unit(275, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/claude-delroute/front.svg",
  17889. extra: 230 / 214,
  17890. bottom: 0.007
  17891. }
  17892. },
  17893. side: {
  17894. height: math.unit(7, "feet"),
  17895. weight: math.unit(275, "lb"),
  17896. name: "Side",
  17897. image: {
  17898. source: "./media/characters/claude-delroute/side.svg",
  17899. extra: 222 / 214,
  17900. bottom: 0.01
  17901. }
  17902. },
  17903. back: {
  17904. height: math.unit(7, "feet"),
  17905. weight: math.unit(275, "lb"),
  17906. name: "Back",
  17907. image: {
  17908. source: "./media/characters/claude-delroute/back.svg",
  17909. extra: 230 / 214,
  17910. bottom: 0.015
  17911. }
  17912. },
  17913. maw: {
  17914. height: math.unit(0.6407, "meters"),
  17915. name: "Maw",
  17916. image: {
  17917. source: "./media/characters/claude-delroute/maw.svg"
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(7, "feet"),
  17925. default: true
  17926. },
  17927. {
  17928. name: "Lorge",
  17929. height: math.unit(20, "feet")
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(8 + 4 / 12, "feet"),
  17938. weight: math.unit(600, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/dragonien/front.svg",
  17942. extra: 100 / 94,
  17943. bottom: 3.3 / 103.3445
  17944. }
  17945. },
  17946. back: {
  17947. height: math.unit(8 + 4 / 12, "feet"),
  17948. weight: math.unit(600, "lb"),
  17949. name: "Back",
  17950. image: {
  17951. source: "./media/characters/dragonien/back.svg",
  17952. extra: 776 / 746,
  17953. bottom: 6.4 / 782.0616
  17954. }
  17955. },
  17956. foot: {
  17957. height: math.unit(1.54, "feet"),
  17958. name: "Foot",
  17959. image: {
  17960. source: "./media/characters/dragonien/foot.svg",
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(8 + 4 / 12, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(200, "feet")
  17973. },
  17974. {
  17975. name: "Megamacro",
  17976. height: math.unit(1, "mile")
  17977. },
  17978. {
  17979. name: "Gigamacro",
  17980. height: math.unit(1000, "miles")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(5 + 2 / 12, "feet"),
  17989. weight: math.unit(110, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/desta/front.svg",
  17993. extra: 767 / 726,
  17994. bottom: 11.7 / 779
  17995. }
  17996. },
  17997. back: {
  17998. height: math.unit(5 + 2 / 12, "feet"),
  17999. weight: math.unit(110, "lb"),
  18000. name: "Back",
  18001. image: {
  18002. source: "./media/characters/desta/back.svg",
  18003. extra: 777 / 728,
  18004. bottom: 6 / 784
  18005. }
  18006. },
  18007. frontAlt: {
  18008. height: math.unit(5 + 2 / 12, "feet"),
  18009. weight: math.unit(110, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/desta/front-alt.svg",
  18013. extra: 1482 / 1417
  18014. }
  18015. },
  18016. side: {
  18017. height: math.unit(5 + 2 / 12, "feet"),
  18018. weight: math.unit(110, "lb"),
  18019. name: "Side",
  18020. image: {
  18021. source: "./media/characters/desta/side.svg",
  18022. extra: 2579 / 2491,
  18023. bottom: 0.053
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Micro",
  18030. height: math.unit(6, "inches")
  18031. },
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(5 + 2 / 12, "feet"),
  18035. default: true
  18036. },
  18037. {
  18038. name: "Macro",
  18039. height: math.unit(62, "feet")
  18040. },
  18041. {
  18042. name: "Megamacro",
  18043. height: math.unit(1800, "feet")
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(10, "feet"),
  18052. weight: math.unit(700, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/storm-alystar/front.svg",
  18056. extra: 2112 / 1898,
  18057. bottom: 0.034
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Micro",
  18064. height: math.unit(3.5, "inches")
  18065. },
  18066. {
  18067. name: "Normal",
  18068. height: math.unit(10, "feet"),
  18069. default: true
  18070. },
  18071. {
  18072. name: "Macro",
  18073. height: math.unit(400, "feet")
  18074. },
  18075. {
  18076. name: "Deific",
  18077. height: math.unit(60, "miles")
  18078. },
  18079. ]
  18080. ))
  18081. characterMakers.push(() => makeCharacter(
  18082. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18083. {
  18084. front: {
  18085. height: math.unit(2.35, "meters"),
  18086. weight: math.unit(119, "kg"),
  18087. name: "Front",
  18088. image: {
  18089. source: "./media/characters/ilia/front.svg",
  18090. extra: 1285 / 1255,
  18091. bottom: 0.06
  18092. }
  18093. },
  18094. },
  18095. [
  18096. {
  18097. name: "Normal",
  18098. height: math.unit(2.35, "meters")
  18099. },
  18100. {
  18101. name: "Macro",
  18102. height: math.unit(140, "meters"),
  18103. default: true
  18104. },
  18105. {
  18106. name: "Megamacro",
  18107. height: math.unit(100, "miles")
  18108. },
  18109. ]
  18110. ))
  18111. characterMakers.push(() => makeCharacter(
  18112. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18113. {
  18114. front: {
  18115. height: math.unit(6 + 5 / 12, "feet"),
  18116. weight: math.unit(190, "lb"),
  18117. name: "Front",
  18118. image: {
  18119. source: "./media/characters/kingdead/front.svg",
  18120. extra: 1228 / 1177
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Micro",
  18127. height: math.unit(7, "inches")
  18128. },
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(6 + 5 / 12, "feet")
  18132. },
  18133. {
  18134. name: "Macro",
  18135. height: math.unit(150, "feet"),
  18136. default: true
  18137. },
  18138. {
  18139. name: "Megamacro",
  18140. height: math.unit(200, "miles")
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18146. {
  18147. front: {
  18148. height: math.unit(8, "feet"),
  18149. weight: math.unit(600, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/kyrehx/front.svg",
  18153. extra: 1195 / 1095,
  18154. bottom: 0.034
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Micro",
  18161. height: math.unit(2, "inches")
  18162. },
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(8, "feet"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Macro",
  18170. height: math.unit(255, "feet")
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18179. weight: math.unit(184, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/xang/front.svg",
  18183. extra: 845 / 755
  18184. }
  18185. },
  18186. },
  18187. [
  18188. {
  18189. name: "Normal",
  18190. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18191. default: true
  18192. },
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(0.935 * 146, "feet")
  18196. },
  18197. {
  18198. name: "Megamacro",
  18199. height: math.unit(0.935 * 3, "miles")
  18200. },
  18201. ]
  18202. ))
  18203. characterMakers.push(() => makeCharacter(
  18204. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18205. {
  18206. frontDressed: {
  18207. height: math.unit(5 + 7 / 12, "feet"),
  18208. weight: math.unit(140, "lb"),
  18209. name: "Front (Dressed)",
  18210. image: {
  18211. source: "./media/characters/doc-weardno/front-dressed.svg",
  18212. extra: 263 / 234
  18213. }
  18214. },
  18215. backDressed: {
  18216. height: math.unit(5 + 7 / 12, "feet"),
  18217. weight: math.unit(140, "lb"),
  18218. name: "Back (Dressed)",
  18219. image: {
  18220. source: "./media/characters/doc-weardno/back-dressed.svg",
  18221. extra: 266 / 238
  18222. }
  18223. },
  18224. front: {
  18225. height: math.unit(5 + 7 / 12, "feet"),
  18226. weight: math.unit(140, "lb"),
  18227. name: "Front",
  18228. image: {
  18229. source: "./media/characters/doc-weardno/front.svg",
  18230. extra: 254 / 233
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Micro",
  18237. height: math.unit(3, "inches")
  18238. },
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(5 + 7 / 12, "feet"),
  18242. default: true
  18243. },
  18244. {
  18245. name: "Macro",
  18246. height: math.unit(25, "feet")
  18247. },
  18248. {
  18249. name: "Megamacro",
  18250. height: math.unit(2, "miles")
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(6 + 2 / 12, "feet"),
  18259. weight: math.unit(153, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/seth-whilst/front.svg",
  18263. bottom: 0.07
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Micro",
  18270. height: math.unit(5, "inches")
  18271. },
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(6 + 2 / 12, "feet"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18281. {
  18282. front: {
  18283. height: math.unit(3, "inches"),
  18284. weight: math.unit(8, "grams"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/pocket-jabari/front.svg",
  18288. extra: 1024 / 974,
  18289. bottom: 0.039
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Minimicro",
  18296. height: math.unit(8, "mm")
  18297. },
  18298. {
  18299. name: "Micro",
  18300. height: math.unit(3, "inches"),
  18301. default: true
  18302. },
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(3, "feet")
  18306. },
  18307. ]
  18308. ))
  18309. characterMakers.push(() => makeCharacter(
  18310. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18311. {
  18312. front: {
  18313. height: math.unit(15, "feet"),
  18314. weight: math.unit(3280, "lb"),
  18315. name: "Front",
  18316. image: {
  18317. source: "./media/characters/sapphy/front.svg",
  18318. extra: 671 / 577,
  18319. bottom: 0.085
  18320. }
  18321. },
  18322. back: {
  18323. height: math.unit(15, "feet"),
  18324. weight: math.unit(3280, "lb"),
  18325. name: "Back",
  18326. image: {
  18327. source: "./media/characters/sapphy/back.svg",
  18328. extra: 631 / 607,
  18329. bottom: 0.045
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Normal",
  18336. height: math.unit(15, "feet")
  18337. },
  18338. {
  18339. name: "Casual Macro",
  18340. height: math.unit(120, "feet")
  18341. },
  18342. {
  18343. name: "Macro",
  18344. height: math.unit(2150, "feet"),
  18345. default: true
  18346. },
  18347. {
  18348. name: "Megamacro",
  18349. height: math.unit(8, "miles")
  18350. },
  18351. {
  18352. name: "Galaxy Mom",
  18353. height: math.unit(6, "megalightyears")
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18359. {
  18360. front: {
  18361. height: math.unit(6, "feet"),
  18362. weight: math.unit(170, "lb"),
  18363. name: "Front",
  18364. image: {
  18365. source: "./media/characters/kiro/front.svg",
  18366. extra: 1064 / 1012,
  18367. bottom: 0.052
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Micro",
  18374. height: math.unit(6, "inches")
  18375. },
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(6, "feet"),
  18379. default: true
  18380. },
  18381. {
  18382. name: "Macro",
  18383. height: math.unit(72, "feet")
  18384. },
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18389. {
  18390. front: {
  18391. height: math.unit(5 + 9 / 12, "feet"),
  18392. weight: math.unit(175, "lb"),
  18393. name: "Front",
  18394. image: {
  18395. source: "./media/characters/irishfox/front.svg",
  18396. extra: 1912 / 1680,
  18397. bottom: 0.02
  18398. }
  18399. },
  18400. },
  18401. [
  18402. {
  18403. name: "Nano",
  18404. height: math.unit(1, "mm")
  18405. },
  18406. {
  18407. name: "Micro",
  18408. height: math.unit(2, "inches")
  18409. },
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(5 + 9 / 12, "feet"),
  18413. default: true
  18414. },
  18415. {
  18416. name: "Macro",
  18417. height: math.unit(45, "feet")
  18418. },
  18419. ]
  18420. ))
  18421. characterMakers.push(() => makeCharacter(
  18422. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18423. {
  18424. front: {
  18425. height: math.unit(6 + 1 / 12, "feet"),
  18426. weight: math.unit(75, "lb"),
  18427. name: "Front",
  18428. image: {
  18429. source: "./media/characters/aronai-sieyes/front.svg",
  18430. extra: 1556 / 1480,
  18431. bottom: 0.015
  18432. }
  18433. },
  18434. side: {
  18435. height: math.unit(6 + 1 / 12, "feet"),
  18436. weight: math.unit(75, "lb"),
  18437. name: "Side",
  18438. image: {
  18439. source: "./media/characters/aronai-sieyes/side.svg",
  18440. extra: 1433 / 1390,
  18441. bottom: 0.0393
  18442. }
  18443. },
  18444. back: {
  18445. height: math.unit(6 + 1 / 12, "feet"),
  18446. weight: math.unit(75, "lb"),
  18447. name: "Back",
  18448. image: {
  18449. source: "./media/characters/aronai-sieyes/back.svg",
  18450. extra: 1544 / 1494,
  18451. bottom: 0.02
  18452. }
  18453. },
  18454. frontClothed: {
  18455. height: math.unit(6 + 1 / 12, "feet"),
  18456. weight: math.unit(75, "lb"),
  18457. name: "Front (Clothed)",
  18458. image: {
  18459. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18460. extra: 1582 / 1527
  18461. }
  18462. },
  18463. feral: {
  18464. height: math.unit(18, "feet"),
  18465. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18466. name: "Feral",
  18467. image: {
  18468. source: "./media/characters/aronai-sieyes/feral.svg",
  18469. extra: 1530 / 1240,
  18470. bottom: 0.035
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Micro",
  18477. height: math.unit(2, "inches")
  18478. },
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(6 + 1 / 12, "feet"),
  18482. default: true
  18483. }
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(12, "feet"),
  18491. weight: math.unit(410, "kg"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/xuna/front.svg",
  18495. extra: 2184 / 1980
  18496. }
  18497. },
  18498. side: {
  18499. height: math.unit(12, "feet"),
  18500. weight: math.unit(410, "kg"),
  18501. name: "Side",
  18502. image: {
  18503. source: "./media/characters/xuna/side.svg",
  18504. extra: 2184 / 1980
  18505. }
  18506. },
  18507. back: {
  18508. height: math.unit(12, "feet"),
  18509. weight: math.unit(410, "kg"),
  18510. name: "Back",
  18511. image: {
  18512. source: "./media/characters/xuna/back.svg",
  18513. extra: 2184 / 1980
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Nano glow",
  18520. height: math.unit(10, "nm")
  18521. },
  18522. {
  18523. name: "Micro floof",
  18524. height: math.unit(0.3, "m")
  18525. },
  18526. {
  18527. name: "Huggable softy boi",
  18528. height: math.unit(3.6576, "m"),
  18529. default: true
  18530. },
  18531. {
  18532. name: "Admirable floof",
  18533. height: math.unit(80, "meters")
  18534. },
  18535. {
  18536. name: "Gentle macro",
  18537. height: math.unit(300, "meters")
  18538. },
  18539. {
  18540. name: "Very careful floof",
  18541. height: math.unit(3200, "meters")
  18542. },
  18543. {
  18544. name: "The mega floof",
  18545. height: math.unit(36000, "meters")
  18546. },
  18547. {
  18548. name: "Giga-fur-Wicker",
  18549. height: math.unit(4800000, "meters")
  18550. },
  18551. {
  18552. name: "Licky world",
  18553. height: math.unit(20000000, "meters")
  18554. },
  18555. {
  18556. name: "Floofy cyan sun",
  18557. height: math.unit(1500000000, "meters")
  18558. },
  18559. {
  18560. name: "Milky Wicker",
  18561. height: math.unit(1000000000000000000000, "meters")
  18562. },
  18563. {
  18564. name: "The observing Wicker",
  18565. height: math.unit(999999999999999999999999999, "meters")
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(5 + 9 / 12, "feet"),
  18574. weight: math.unit(150, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/arokha-sieyes/front.svg",
  18578. extra: 1425 / 1284,
  18579. bottom: 0.05
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(5 + 9 / 12, "feet")
  18587. },
  18588. {
  18589. name: "Macro",
  18590. height: math.unit(30, "meters"),
  18591. default: true
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18597. {
  18598. front: {
  18599. height: math.unit(6, "feet"),
  18600. weight: math.unit(180, "lb"),
  18601. name: "Front",
  18602. image: {
  18603. source: "./media/characters/arokh-sieyes/front.svg",
  18604. extra: 1830 / 1769,
  18605. bottom: 0.01
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(6, "feet")
  18613. },
  18614. {
  18615. name: "Macro",
  18616. height: math.unit(30, "meters"),
  18617. default: true
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18623. {
  18624. side: {
  18625. height: math.unit(13 + 1 / 12, "feet"),
  18626. weight: math.unit(8.5, "tonnes"),
  18627. name: "Side",
  18628. image: {
  18629. source: "./media/characters/goldeneye/side.svg",
  18630. extra: 1182 / 778,
  18631. bottom: 0.067
  18632. }
  18633. },
  18634. paw: {
  18635. height: math.unit(3.4, "feet"),
  18636. name: "Paw",
  18637. image: {
  18638. source: "./media/characters/goldeneye/paw.svg"
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Normal",
  18645. height: math.unit(13 + 1 / 12, "feet"),
  18646. default: true
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18652. {
  18653. front: {
  18654. height: math.unit(6 + 1 / 12, "feet"),
  18655. weight: math.unit(210, "lb"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/leonardo-lycheborne/front.svg",
  18659. extra: 390 / 365,
  18660. bottom: 0.032
  18661. }
  18662. },
  18663. side: {
  18664. height: math.unit(6 + 1 / 12, "feet"),
  18665. weight: math.unit(210, "lb"),
  18666. name: "Side",
  18667. image: {
  18668. source: "./media/characters/leonardo-lycheborne/side.svg",
  18669. extra: 390 / 365,
  18670. bottom: 0.005
  18671. }
  18672. },
  18673. back: {
  18674. height: math.unit(6 + 1 / 12, "feet"),
  18675. weight: math.unit(210, "lb"),
  18676. name: "Back",
  18677. image: {
  18678. source: "./media/characters/leonardo-lycheborne/back.svg",
  18679. extra: 392 / 366,
  18680. bottom: 0.01
  18681. }
  18682. },
  18683. hand: {
  18684. height: math.unit(1.08, "feet"),
  18685. name: "Hand",
  18686. image: {
  18687. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18688. }
  18689. },
  18690. foot: {
  18691. height: math.unit(1.32, "feet"),
  18692. name: "Foot",
  18693. image: {
  18694. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18695. }
  18696. },
  18697. were: {
  18698. height: math.unit(20, "feet"),
  18699. weight: math.unit(7800, "lb"),
  18700. name: "Were",
  18701. image: {
  18702. source: "./media/characters/leonardo-lycheborne/were.svg",
  18703. extra: 308 / 294,
  18704. bottom: 0.048
  18705. }
  18706. },
  18707. feral: {
  18708. height: math.unit(7.5, "feet"),
  18709. weight: math.unit(600, "lb"),
  18710. name: "Feral",
  18711. image: {
  18712. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18713. extra: 210 / 186,
  18714. bottom: 0.108
  18715. }
  18716. },
  18717. taur: {
  18718. height: math.unit(11, "feet"),
  18719. weight: math.unit(3300, "lb"),
  18720. name: "Taur",
  18721. image: {
  18722. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18723. extra: 320 / 303,
  18724. bottom: 0.025
  18725. }
  18726. },
  18727. barghest: {
  18728. height: math.unit(11, "feet"),
  18729. weight: math.unit(1300, "lb"),
  18730. name: "Barghest",
  18731. image: {
  18732. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18733. extra: 323 / 302,
  18734. bottom: 0.027
  18735. }
  18736. },
  18737. dick: {
  18738. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18739. name: "Dick",
  18740. image: {
  18741. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18742. }
  18743. },
  18744. dickWere: {
  18745. height: math.unit((20) / 3.8, "feet"),
  18746. name: "Dick (Were)",
  18747. image: {
  18748. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18749. }
  18750. },
  18751. },
  18752. [
  18753. {
  18754. name: "Normal",
  18755. height: math.unit(6 + 1 / 12, "feet"),
  18756. default: true
  18757. },
  18758. ]
  18759. ))
  18760. characterMakers.push(() => makeCharacter(
  18761. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18762. {
  18763. front: {
  18764. height: math.unit(10, "feet"),
  18765. weight: math.unit(350, "lb"),
  18766. name: "Front",
  18767. image: {
  18768. source: "./media/characters/jet/front.svg",
  18769. extra: 2050 / 1980,
  18770. bottom: 0.013
  18771. }
  18772. },
  18773. back: {
  18774. height: math.unit(10, "feet"),
  18775. weight: math.unit(350, "lb"),
  18776. name: "Back",
  18777. image: {
  18778. source: "./media/characters/jet/back.svg",
  18779. extra: 2050 / 1980,
  18780. bottom: 0.013
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Micro",
  18787. height: math.unit(6, "inches")
  18788. },
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(10, "feet"),
  18792. default: true
  18793. },
  18794. {
  18795. name: "Macro",
  18796. height: math.unit(100, "feet")
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18802. {
  18803. front: {
  18804. height: math.unit(15, "feet"),
  18805. weight: math.unit(2800, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/tanarath/front.svg",
  18809. extra: 2392 / 2220,
  18810. bottom: 0.03
  18811. }
  18812. },
  18813. back: {
  18814. height: math.unit(15, "feet"),
  18815. weight: math.unit(2800, "lb"),
  18816. name: "Back",
  18817. image: {
  18818. source: "./media/characters/tanarath/back.svg",
  18819. extra: 2392 / 2220,
  18820. bottom: 0.03
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Normal",
  18827. height: math.unit(15, "feet"),
  18828. default: true
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18834. {
  18835. front: {
  18836. height: math.unit(7 + 1 / 12, "feet"),
  18837. weight: math.unit(175, "lb"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/patty-cattybatty/front.svg",
  18841. extra: 908 / 874,
  18842. bottom: 0.025
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Micro",
  18849. height: math.unit(1, "inch")
  18850. },
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(7 + 1 / 12, "feet")
  18854. },
  18855. {
  18856. name: "Mini Macro",
  18857. height: math.unit(155, "feet")
  18858. },
  18859. {
  18860. name: "Macro",
  18861. height: math.unit(1077, "feet")
  18862. },
  18863. {
  18864. name: "Mega Macro",
  18865. height: math.unit(47650, "feet"),
  18866. default: true
  18867. },
  18868. {
  18869. name: "Giga Macro",
  18870. height: math.unit(440, "miles")
  18871. },
  18872. {
  18873. name: "Tera Macro",
  18874. height: math.unit(8700, "miles")
  18875. },
  18876. {
  18877. name: "Planetary Macro",
  18878. height: math.unit(32700, "miles")
  18879. },
  18880. {
  18881. name: "Solar Macro",
  18882. height: math.unit(550000, "miles")
  18883. },
  18884. {
  18885. name: "Celestial Macro",
  18886. height: math.unit(2.5, "AU")
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18892. {
  18893. front: {
  18894. height: math.unit(4 + 5 / 12, "feet"),
  18895. weight: math.unit(90, "lb"),
  18896. name: "Front",
  18897. image: {
  18898. source: "./media/characters/cappu/front.svg",
  18899. extra: 1247 / 1152,
  18900. bottom: 0.012
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(4 + 5 / 12, "feet"),
  18908. default: true
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18914. {
  18915. frontDressed: {
  18916. height: math.unit(70, "cm"),
  18917. weight: math.unit(6, "kg"),
  18918. name: "Front (Dressed)",
  18919. image: {
  18920. source: "./media/characters/sebi/front-dressed.svg",
  18921. extra: 713.5 / 686.5,
  18922. bottom: 0.003
  18923. }
  18924. },
  18925. front: {
  18926. height: math.unit(70, "cm"),
  18927. weight: math.unit(5, "kg"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/sebi/front.svg",
  18931. extra: 713.5 / 686.5,
  18932. bottom: 0.003
  18933. }
  18934. }
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(70, "cm"),
  18940. default: true
  18941. },
  18942. {
  18943. name: "Macro",
  18944. height: math.unit(8, "meters")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(6, "feet"),
  18953. weight: math.unit(150, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/typhek/front.svg",
  18957. extra: 1948 / 1929,
  18958. bottom: 0.025
  18959. }
  18960. },
  18961. side: {
  18962. height: math.unit(6, "feet"),
  18963. weight: math.unit(150, "lb"),
  18964. name: "Side",
  18965. image: {
  18966. source: "./media/characters/typhek/side.svg",
  18967. extra: 2034 / 2010,
  18968. bottom: 0.003
  18969. }
  18970. },
  18971. back: {
  18972. height: math.unit(6, "feet"),
  18973. weight: math.unit(150, "lb"),
  18974. name: "Back",
  18975. image: {
  18976. source: "./media/characters/typhek/back.svg",
  18977. extra: 2005 / 1978,
  18978. bottom: 0.004
  18979. }
  18980. },
  18981. palm: {
  18982. height: math.unit(1.2, "feet"),
  18983. name: "Palm",
  18984. image: {
  18985. source: "./media/characters/typhek/palm.svg"
  18986. }
  18987. },
  18988. fist: {
  18989. height: math.unit(1.1, "feet"),
  18990. name: "Fist",
  18991. image: {
  18992. source: "./media/characters/typhek/fist.svg"
  18993. }
  18994. },
  18995. foot: {
  18996. height: math.unit(1.57, "feet"),
  18997. name: "Foot",
  18998. image: {
  18999. source: "./media/characters/typhek/foot.svg"
  19000. }
  19001. },
  19002. sole: {
  19003. height: math.unit(2.05, "feet"),
  19004. name: "Sole",
  19005. image: {
  19006. source: "./media/characters/typhek/sole.svg"
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Macro",
  19013. height: math.unit(40, "stories"),
  19014. default: true
  19015. },
  19016. {
  19017. name: "Megamacro",
  19018. height: math.unit(1, "mile")
  19019. },
  19020. {
  19021. name: "Gigamacro",
  19022. height: math.unit(4000, "solarradii")
  19023. },
  19024. {
  19025. name: "Universal",
  19026. height: math.unit(1.1, "universes")
  19027. }
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19032. {
  19033. side: {
  19034. height: math.unit(5 + 7 / 12, "feet"),
  19035. weight: math.unit(150, "lb"),
  19036. name: "Side",
  19037. image: {
  19038. source: "./media/characters/kassy/side.svg",
  19039. extra: 1280 / 1225,
  19040. bottom: 0.002
  19041. }
  19042. },
  19043. front: {
  19044. height: math.unit(5 + 7 / 12, "feet"),
  19045. weight: math.unit(150, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/kassy/front.svg",
  19049. extra: 1280 / 1225,
  19050. bottom: 0.025
  19051. }
  19052. },
  19053. back: {
  19054. height: math.unit(5 + 7 / 12, "feet"),
  19055. weight: math.unit(150, "lb"),
  19056. name: "Back",
  19057. image: {
  19058. source: "./media/characters/kassy/back.svg",
  19059. extra: 1280 / 1225,
  19060. bottom: 0.002
  19061. }
  19062. },
  19063. foot: {
  19064. height: math.unit(1.266, "feet"),
  19065. name: "Foot",
  19066. image: {
  19067. source: "./media/characters/kassy/foot.svg"
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(5 + 7 / 12, "feet")
  19075. },
  19076. {
  19077. name: "Macro",
  19078. height: math.unit(137, "feet"),
  19079. default: true
  19080. },
  19081. {
  19082. name: "Megamacro",
  19083. height: math.unit(1, "mile")
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19089. {
  19090. front: {
  19091. height: math.unit(6 + 1 / 12, "feet"),
  19092. weight: math.unit(200, "lb"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/neil/front.svg",
  19096. extra: 1326 / 1250,
  19097. bottom: 0.023
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(6 + 1 / 12, "feet"),
  19105. default: true
  19106. },
  19107. {
  19108. name: "Macro",
  19109. height: math.unit(200, "feet")
  19110. },
  19111. ]
  19112. ))
  19113. characterMakers.push(() => makeCharacter(
  19114. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19115. {
  19116. front: {
  19117. height: math.unit(5 + 9 / 12, "feet"),
  19118. weight: math.unit(190, "lb"),
  19119. name: "Front",
  19120. image: {
  19121. source: "./media/characters/atticus/front.svg",
  19122. extra: 2934 / 2785,
  19123. bottom: 0.025
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(5 + 9 / 12, "feet"),
  19131. default: true
  19132. },
  19133. {
  19134. name: "Macro",
  19135. height: math.unit(180, "feet")
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19141. {
  19142. side: {
  19143. height: math.unit(9, "feet"),
  19144. weight: math.unit(650, "lb"),
  19145. name: "Side",
  19146. image: {
  19147. source: "./media/characters/milo/side.svg",
  19148. extra: 2644 / 2310,
  19149. bottom: 0.032
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(9, "feet"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "Macro",
  19161. height: math.unit(300, "feet")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19167. {
  19168. side: {
  19169. height: math.unit(8, "meters"),
  19170. weight: math.unit(90000, "kg"),
  19171. name: "Side",
  19172. image: {
  19173. source: "./media/characters/ijzer/side.svg",
  19174. extra: 2756 / 1600,
  19175. bottom: 0.01
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Small",
  19182. height: math.unit(3, "meters")
  19183. },
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(8, "meters"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Normal+",
  19191. height: math.unit(10, "meters")
  19192. },
  19193. {
  19194. name: "Bigger",
  19195. height: math.unit(24, "meters")
  19196. },
  19197. {
  19198. name: "Huge",
  19199. height: math.unit(80, "meters")
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(6 + 2 / 12, "feet"),
  19208. weight: math.unit(153, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/luca-cervicum/front.svg",
  19212. extra: 370 / 327,
  19213. bottom: 0.015
  19214. }
  19215. },
  19216. back: {
  19217. height: math.unit(6 + 2 / 12, "feet"),
  19218. weight: math.unit(153, "lb"),
  19219. name: "Back",
  19220. image: {
  19221. source: "./media/characters/luca-cervicum/back.svg",
  19222. extra: 367 / 333,
  19223. bottom: 0.005
  19224. }
  19225. },
  19226. frontGear: {
  19227. height: math.unit(6 + 2 / 12, "feet"),
  19228. weight: math.unit(173, "lb"),
  19229. name: "Front (Gear)",
  19230. image: {
  19231. source: "./media/characters/luca-cervicum/front-gear.svg",
  19232. extra: 377 / 333,
  19233. bottom: 0.006
  19234. }
  19235. },
  19236. },
  19237. [
  19238. {
  19239. name: "Normal",
  19240. height: math.unit(6 + 2 / 12, "feet"),
  19241. default: true
  19242. },
  19243. ]
  19244. ))
  19245. characterMakers.push(() => makeCharacter(
  19246. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19247. {
  19248. front: {
  19249. height: math.unit(6 + 1 / 12, "feet"),
  19250. weight: math.unit(304, "lb"),
  19251. name: "Front",
  19252. image: {
  19253. source: "./media/characters/oliver/front.svg",
  19254. extra: 157 / 143,
  19255. bottom: 0.08
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(6 + 1 / 12, "feet"),
  19263. default: true
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(5 + 7 / 12, "feet"),
  19272. weight: math.unit(140, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/shane/front.svg",
  19276. extra: 304 / 289,
  19277. bottom: 0.005
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(5 + 7 / 12, "feet"),
  19285. default: true
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(5 + 9 / 12, "feet"),
  19294. weight: math.unit(178, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/shin/front.svg",
  19298. extra: 159 / 151,
  19299. bottom: 0.015
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(5 + 9 / 12, "feet"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(5 + 10 / 12, "feet"),
  19316. weight: math.unit(168, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/xerxes/front.svg",
  19320. extra: 282 / 260,
  19321. bottom: 0.045
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(5 + 10 / 12, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19335. {
  19336. front: {
  19337. height: math.unit(6 + 7 / 12, "feet"),
  19338. weight: math.unit(208, "lb"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/chaska/front.svg",
  19342. extra: 332 / 319,
  19343. bottom: 0.015
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(6 + 7 / 12, "feet"),
  19351. default: true
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19357. {
  19358. front: {
  19359. height: math.unit(5 + 8 / 12, "feet"),
  19360. weight: math.unit(208, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/enuk/front.svg",
  19364. extra: 437 / 406,
  19365. bottom: 0.02
  19366. }
  19367. },
  19368. },
  19369. [
  19370. {
  19371. name: "Normal",
  19372. height: math.unit(5 + 8 / 12, "feet"),
  19373. default: true
  19374. },
  19375. ]
  19376. ))
  19377. characterMakers.push(() => makeCharacter(
  19378. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19379. {
  19380. front: {
  19381. height: math.unit(5 + 10 / 12, "feet"),
  19382. weight: math.unit(252, "lb"),
  19383. name: "Front",
  19384. image: {
  19385. source: "./media/characters/bruun/front.svg",
  19386. extra: 197 / 187,
  19387. bottom: 0.012
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(5 + 10 / 12, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(6 + 10 / 12, "feet"),
  19404. weight: math.unit(255, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/alexeev/front.svg",
  19408. extra: 213 / 200,
  19409. bottom: 0.05
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(6 + 10 / 12, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(2 + 8 / 12, "feet"),
  19426. weight: math.unit(22, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/evelyn/front.svg",
  19430. extra: 208 / 180
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(2 + 8 / 12, "feet"),
  19438. default: true
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19444. {
  19445. front: {
  19446. height: math.unit(5 + 9 / 12, "feet"),
  19447. weight: math.unit(139, "lb"),
  19448. name: "Front",
  19449. image: {
  19450. source: "./media/characters/inca/front.svg",
  19451. extra: 294 / 291,
  19452. bottom: 0.03
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(5 + 9 / 12, "feet"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(5 + 1 / 12, "feet"),
  19469. weight: math.unit(84, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/magdalene/front.svg",
  19473. extra: 293 / 273
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(5 + 1 / 12, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(6 + 3 / 12, "feet"),
  19490. weight: math.unit(185, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/mera/front.svg",
  19494. extra: 291 / 277,
  19495. bottom: 0.03
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(6 + 3 / 12, "feet"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(6 + 7 / 12, "feet"),
  19512. weight: math.unit(160, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/ceres/front.svg",
  19516. extra: 1023 / 950,
  19517. bottom: 0.027
  19518. }
  19519. },
  19520. back: {
  19521. height: math.unit(6 + 7 / 12, "feet"),
  19522. weight: math.unit(160, "lb"),
  19523. name: "Back",
  19524. image: {
  19525. source: "./media/characters/ceres/back.svg",
  19526. extra: 1023 / 950
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(6 + 7 / 12, "feet"),
  19534. default: true
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19540. {
  19541. front: {
  19542. height: math.unit(5 + 10 / 12, "feet"),
  19543. weight: math.unit(150, "lb"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/kris/front.svg",
  19547. extra: 885 / 803,
  19548. bottom: 0.03
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(5 + 10 / 12, "feet"),
  19556. default: true
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(7, "feet"),
  19565. weight: math.unit(120, "kg"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/taluthus/front.svg",
  19569. extra: 903 / 833,
  19570. bottom: 0.015
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(7, "feet"),
  19578. default: true
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(300, "feet")
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(5 + 9 / 12, "feet"),
  19591. weight: math.unit(145, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/dawn/front.svg",
  19595. extra: 2094 / 2016,
  19596. bottom: 0.025
  19597. }
  19598. },
  19599. back: {
  19600. height: math.unit(5 + 9 / 12, "feet"),
  19601. weight: math.unit(160, "lb"),
  19602. name: "Back",
  19603. image: {
  19604. source: "./media/characters/dawn/back.svg",
  19605. extra: 2112 / 2080,
  19606. bottom: 0.005
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(6 + 7 / 12, "feet"),
  19614. default: true
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19620. {
  19621. anthro: {
  19622. height: math.unit(8 + 3 / 12, "feet"),
  19623. weight: math.unit(450, "lb"),
  19624. name: "Anthro",
  19625. image: {
  19626. source: "./media/characters/arador/anthro.svg",
  19627. extra: 1835 / 1718,
  19628. bottom: 0.025
  19629. }
  19630. },
  19631. feral: {
  19632. height: math.unit(4, "feet"),
  19633. weight: math.unit(200, "lb"),
  19634. name: "Feral",
  19635. image: {
  19636. source: "./media/characters/arador/feral.svg",
  19637. extra: 1683 / 1514,
  19638. bottom: 0.07
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(8 + 3 / 12, "feet")
  19646. },
  19647. {
  19648. name: "Macro",
  19649. height: math.unit(82.5, "feet"),
  19650. default: true
  19651. },
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19656. {
  19657. front: {
  19658. height: math.unit(5 + 10 / 12, "feet"),
  19659. weight: math.unit(125, "lb"),
  19660. name: "Front",
  19661. image: {
  19662. source: "./media/characters/dharsi/front.svg",
  19663. extra: 716 / 630,
  19664. bottom: 0.035
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Nano",
  19671. height: math.unit(100, "nm")
  19672. },
  19673. {
  19674. name: "Micro",
  19675. height: math.unit(2, "inches")
  19676. },
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(5 + 10 / 12, "feet"),
  19680. default: true
  19681. },
  19682. {
  19683. name: "Macro",
  19684. height: math.unit(1000, "feet")
  19685. },
  19686. {
  19687. name: "Megamacro",
  19688. height: math.unit(10, "miles")
  19689. },
  19690. {
  19691. name: "Gigamacro",
  19692. height: math.unit(3000, "miles")
  19693. },
  19694. {
  19695. name: "Teramacro",
  19696. height: math.unit(500000, "miles")
  19697. },
  19698. {
  19699. name: "Teramacro+",
  19700. height: math.unit(30, "galaxies")
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19706. {
  19707. front: {
  19708. height: math.unit(6, "feet"),
  19709. weight: math.unit(150, "lb"),
  19710. name: "Front",
  19711. image: {
  19712. source: "./media/characters/deathy/front.svg",
  19713. extra: 1552 / 1463,
  19714. bottom: 0.025
  19715. }
  19716. },
  19717. side: {
  19718. height: math.unit(6, "feet"),
  19719. weight: math.unit(150, "lb"),
  19720. name: "Side",
  19721. image: {
  19722. source: "./media/characters/deathy/side.svg",
  19723. extra: 1604 / 1455,
  19724. bottom: 0.025
  19725. }
  19726. },
  19727. back: {
  19728. height: math.unit(6, "feet"),
  19729. weight: math.unit(150, "lb"),
  19730. name: "Back",
  19731. image: {
  19732. source: "./media/characters/deathy/back.svg",
  19733. extra: 1580 / 1463,
  19734. bottom: 0.005
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Micro",
  19741. height: math.unit(5, "millimeters")
  19742. },
  19743. {
  19744. name: "Normal",
  19745. height: math.unit(6 + 5 / 12, "feet"),
  19746. default: true
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19752. {
  19753. front: {
  19754. height: math.unit(16, "feet"),
  19755. weight: math.unit(4000, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/juniper/front.svg",
  19759. bottom: 0.04
  19760. }
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(16, "feet"),
  19767. default: true
  19768. },
  19769. ]
  19770. ))
  19771. characterMakers.push(() => makeCharacter(
  19772. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19773. {
  19774. front: {
  19775. height: math.unit(6, "feet"),
  19776. weight: math.unit(150, "lb"),
  19777. name: "Front",
  19778. image: {
  19779. source: "./media/characters/hipster/front.svg",
  19780. extra: 1312 / 1209,
  19781. bottom: 0.025
  19782. }
  19783. },
  19784. back: {
  19785. height: math.unit(6, "feet"),
  19786. weight: math.unit(150, "lb"),
  19787. name: "Back",
  19788. image: {
  19789. source: "./media/characters/hipster/back.svg",
  19790. extra: 1281 / 1196,
  19791. bottom: 0.01
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Micro",
  19798. height: math.unit(1, "mm")
  19799. },
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(4, "inches"),
  19803. default: true
  19804. },
  19805. {
  19806. name: "Macro",
  19807. height: math.unit(500, "feet")
  19808. },
  19809. {
  19810. name: "Megamacro",
  19811. height: math.unit(1000, "miles")
  19812. },
  19813. ]
  19814. ))
  19815. characterMakers.push(() => makeCharacter(
  19816. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19817. {
  19818. front: {
  19819. height: math.unit(6, "feet"),
  19820. weight: math.unit(150, "lb"),
  19821. name: "Front",
  19822. image: {
  19823. source: "./media/characters/tendirmuldr/front.svg",
  19824. extra: 1878 / 1772,
  19825. bottom: 0.015
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Megamacro",
  19832. height: math.unit(1500, "miles"),
  19833. default: true
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19839. {
  19840. front: {
  19841. height: math.unit(14, "feet"),
  19842. weight: math.unit(12000, "lb"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/mort/front.svg",
  19846. extra: 365 / 318,
  19847. bottom: 0.01
  19848. }
  19849. },
  19850. side: {
  19851. height: math.unit(14, "feet"),
  19852. weight: math.unit(12000, "lb"),
  19853. name: "Side",
  19854. image: {
  19855. source: "./media/characters/mort/side.svg",
  19856. extra: 365 / 318,
  19857. bottom: 0.052
  19858. },
  19859. default: true
  19860. },
  19861. back: {
  19862. height: math.unit(14, "feet"),
  19863. weight: math.unit(12000, "lb"),
  19864. name: "Back",
  19865. image: {
  19866. source: "./media/characters/mort/back.svg",
  19867. extra: 371 / 332,
  19868. bottom: 0.18
  19869. }
  19870. },
  19871. },
  19872. [
  19873. {
  19874. name: "Normal",
  19875. height: math.unit(14, "feet"),
  19876. default: true
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19882. {
  19883. front: {
  19884. height: math.unit(8, "feet"),
  19885. weight: math.unit(1, "ton"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/lycoa/front.svg",
  19889. extra: 1875 / 1789,
  19890. bottom: 0.022
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(8, "feet"),
  19895. weight: math.unit(1, "ton"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/lycoa/back.svg",
  19899. extra: 1835 / 1781,
  19900. bottom: 0.03
  19901. }
  19902. },
  19903. head: {
  19904. height: math.unit(2.1, "feet"),
  19905. name: "Head",
  19906. image: {
  19907. source: "./media/characters/lycoa/head.svg"
  19908. }
  19909. },
  19910. tailmaw: {
  19911. height: math.unit(1.9, "feet"),
  19912. name: "Tailmaw",
  19913. image: {
  19914. source: "./media/characters/lycoa/tailmaw.svg"
  19915. }
  19916. },
  19917. tentacles: {
  19918. height: math.unit(2.1, "feet"),
  19919. name: "Tentacles",
  19920. image: {
  19921. source: "./media/characters/lycoa/tentacles.svg"
  19922. }
  19923. },
  19924. dick: {
  19925. height: math.unit(1.73, "feet"),
  19926. name: "Dick",
  19927. image: {
  19928. source: "./media/characters/lycoa/dick.svg"
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(8, "feet"),
  19936. default: true
  19937. },
  19938. {
  19939. name: "Macro",
  19940. height: math.unit(30, "feet")
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19946. {
  19947. front: {
  19948. height: math.unit(4 + 2 / 12, "feet"),
  19949. weight: math.unit(70, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/naldara/front.svg",
  19953. extra: 841 / 720,
  19954. bottom: 0.04
  19955. }
  19956. },
  19957. naga: {
  19958. height: math.unit(23, "feet"),
  19959. weight: math.unit(15000, "kg"),
  19960. name: "Naga",
  19961. image: {
  19962. source: "./media/characters/naldara/naga.svg",
  19963. extra: 3290 / 2959,
  19964. bottom: 124 / 3432
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(4 + 2 / 12, "feet"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(13 + 7 / 12, "feet"),
  19981. weight: math.unit(1500, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/briar/front.svg",
  19985. extra: 626 / 596,
  19986. bottom: 0.08
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(13 + 7 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20000. {
  20001. side: {
  20002. height: math.unit(10, "feet"),
  20003. weight: math.unit(500, "lb"),
  20004. name: "Side",
  20005. image: {
  20006. source: "./media/characters/vanguard/side.svg",
  20007. extra: 502 / 425,
  20008. bottom: 0.087
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(10, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(7.5, "feet"),
  20025. weight: math.unit(2, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/artemis/front.svg",
  20029. extra: 1192 / 1075,
  20030. bottom: 0.07
  20031. }
  20032. },
  20033. frontNsfw: {
  20034. height: math.unit(7.5, "feet"),
  20035. weight: math.unit(2, "lb"),
  20036. name: "Front (NSFW)",
  20037. image: {
  20038. source: "./media/characters/artemis/front-nsfw.svg",
  20039. extra: 1192 / 1075,
  20040. bottom: 0.07
  20041. }
  20042. },
  20043. frontNsfwer: {
  20044. height: math.unit(7.5, "feet"),
  20045. weight: math.unit(2, "lb"),
  20046. name: "Front (NSFW-er)",
  20047. image: {
  20048. source: "./media/characters/artemis/front-nsfwer.svg",
  20049. extra: 1192 / 1075,
  20050. bottom: 0.07
  20051. }
  20052. },
  20053. side: {
  20054. height: math.unit(7.5, "feet"),
  20055. weight: math.unit(2, "lb"),
  20056. name: "Side",
  20057. image: {
  20058. source: "./media/characters/artemis/side.svg",
  20059. extra: 1192 / 1075,
  20060. bottom: 0.07
  20061. }
  20062. },
  20063. sideNsfw: {
  20064. height: math.unit(7.5, "feet"),
  20065. weight: math.unit(2, "lb"),
  20066. name: "Side (NSFW)",
  20067. image: {
  20068. source: "./media/characters/artemis/side-nsfw.svg",
  20069. extra: 1192 / 1075,
  20070. bottom: 0.07
  20071. }
  20072. },
  20073. sideNsfwer: {
  20074. height: math.unit(7.5, "feet"),
  20075. weight: math.unit(2, "lb"),
  20076. name: "Side (NSFW-er)",
  20077. image: {
  20078. source: "./media/characters/artemis/side-nsfwer.svg",
  20079. extra: 1192 / 1075,
  20080. bottom: 0.07
  20081. }
  20082. },
  20083. maw: {
  20084. height: math.unit(1.1, "feet"),
  20085. name: "Maw",
  20086. image: {
  20087. source: "./media/characters/artemis/maw.svg"
  20088. }
  20089. },
  20090. stomach: {
  20091. height: math.unit(0.95, "feet"),
  20092. name: "Stomach",
  20093. image: {
  20094. source: "./media/characters/artemis/stomach.svg"
  20095. }
  20096. },
  20097. dickCanine: {
  20098. height: math.unit(1, "feet"),
  20099. name: "Dick (Canine)",
  20100. image: {
  20101. source: "./media/characters/artemis/dick-canine.svg"
  20102. }
  20103. },
  20104. dickEquine: {
  20105. height: math.unit(0.85, "feet"),
  20106. name: "Dick (Equine)",
  20107. image: {
  20108. source: "./media/characters/artemis/dick-equine.svg"
  20109. }
  20110. },
  20111. dickExotic: {
  20112. height: math.unit(0.85, "feet"),
  20113. name: "Dick (Exotic)",
  20114. image: {
  20115. source: "./media/characters/artemis/dick-exotic.svg"
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(7.5, "feet"),
  20123. default: true
  20124. },
  20125. {
  20126. name: "Enlarged",
  20127. height: math.unit(12, "feet")
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20133. {
  20134. front: {
  20135. height: math.unit(5 + 3 / 12, "feet"),
  20136. weight: math.unit(160, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/kira/front.svg",
  20140. extra: 906 / 786,
  20141. bottom: 0.01
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(5 + 3 / 12, "feet"),
  20146. weight: math.unit(160, "lb"),
  20147. name: "Back",
  20148. image: {
  20149. source: "./media/characters/kira/back.svg",
  20150. extra: 882 / 757,
  20151. bottom: 0.005
  20152. }
  20153. },
  20154. frontDressed: {
  20155. height: math.unit(5 + 3 / 12, "feet"),
  20156. weight: math.unit(160, "lb"),
  20157. name: "Front (Dressed)",
  20158. image: {
  20159. source: "./media/characters/kira/front-dressed.svg",
  20160. extra: 906 / 786,
  20161. bottom: 0.01
  20162. }
  20163. },
  20164. beans: {
  20165. height: math.unit(0.92, "feet"),
  20166. name: "Beans",
  20167. image: {
  20168. source: "./media/characters/kira/beans.svg"
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(5 + 3 / 12, "feet"),
  20176. default: true
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20182. {
  20183. front: {
  20184. height: math.unit(5 + 4 / 12, "feet"),
  20185. weight: math.unit(145, "lb"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/scramble/front.svg",
  20189. extra: 763 / 727,
  20190. bottom: 0.05
  20191. }
  20192. },
  20193. back: {
  20194. height: math.unit(5 + 4 / 12, "feet"),
  20195. weight: math.unit(145, "lb"),
  20196. name: "Back",
  20197. image: {
  20198. source: "./media/characters/scramble/back.svg",
  20199. extra: 826 / 737,
  20200. bottom: 0.002
  20201. }
  20202. },
  20203. },
  20204. [
  20205. {
  20206. name: "Normal",
  20207. height: math.unit(5 + 4 / 12, "feet"),
  20208. default: true
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20214. {
  20215. side: {
  20216. height: math.unit(6 + 2 / 12, "feet"),
  20217. weight: math.unit(190, "lb"),
  20218. name: "Side",
  20219. image: {
  20220. source: "./media/characters/biscuit/side.svg",
  20221. extra: 858 / 791,
  20222. bottom: 0.044
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(6 + 2 / 12, "feet"),
  20230. default: true
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20236. {
  20237. front: {
  20238. height: math.unit(5 + 2 / 12, "feet"),
  20239. weight: math.unit(120, "lb"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/poffin/front.svg",
  20243. extra: 786 / 680,
  20244. bottom: 0.005
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(5 + 2 / 12, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(6 + 3 / 12, "feet"),
  20261. weight: math.unit(519, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/dhari/front.svg",
  20265. extra: 1048 / 946,
  20266. bottom: 0.015
  20267. }
  20268. },
  20269. back: {
  20270. height: math.unit(6 + 3 / 12, "feet"),
  20271. weight: math.unit(519, "lb"),
  20272. name: "Back",
  20273. image: {
  20274. source: "./media/characters/dhari/back.svg",
  20275. extra: 1048 / 931,
  20276. bottom: 0.005
  20277. }
  20278. },
  20279. frontDressed: {
  20280. height: math.unit(6 + 3 / 12, "feet"),
  20281. weight: math.unit(519, "lb"),
  20282. name: "Front (Dressed)",
  20283. image: {
  20284. source: "./media/characters/dhari/front-dressed.svg",
  20285. extra: 1713 / 1546,
  20286. bottom: 0.02
  20287. }
  20288. },
  20289. backDressed: {
  20290. height: math.unit(6 + 3 / 12, "feet"),
  20291. weight: math.unit(519, "lb"),
  20292. name: "Back (Dressed)",
  20293. image: {
  20294. source: "./media/characters/dhari/back-dressed.svg",
  20295. extra: 1699 / 1537,
  20296. bottom: 0.01
  20297. }
  20298. },
  20299. maw: {
  20300. height: math.unit(0.95, "feet"),
  20301. name: "Maw",
  20302. image: {
  20303. source: "./media/characters/dhari/maw.svg"
  20304. }
  20305. },
  20306. wereFront: {
  20307. height: math.unit(12 + 8 / 12, "feet"),
  20308. weight: math.unit(4000, "lb"),
  20309. name: "Front (Were)",
  20310. image: {
  20311. source: "./media/characters/dhari/were-front.svg",
  20312. extra: 1065 / 969,
  20313. bottom: 0.015
  20314. }
  20315. },
  20316. wereBack: {
  20317. height: math.unit(12 + 8 / 12, "feet"),
  20318. weight: math.unit(4000, "lb"),
  20319. name: "Back (Were)",
  20320. image: {
  20321. source: "./media/characters/dhari/were-back.svg",
  20322. extra: 1065 / 969,
  20323. bottom: 0.012
  20324. }
  20325. },
  20326. wereMaw: {
  20327. height: math.unit(0.625, "meters"),
  20328. name: "Maw (Were)",
  20329. image: {
  20330. source: "./media/characters/dhari/were-maw.svg"
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(6 + 3 / 12, "feet"),
  20338. default: true
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20344. {
  20345. anthro: {
  20346. height: math.unit(5 + 7 / 12, "feet"),
  20347. weight: math.unit(175, "lb"),
  20348. name: "Anthro",
  20349. image: {
  20350. source: "./media/characters/rena-dyne/anthro.svg",
  20351. extra: 1849 / 1785,
  20352. bottom: 0.005
  20353. }
  20354. },
  20355. taur: {
  20356. height: math.unit(15 + 6 / 12, "feet"),
  20357. weight: math.unit(8000, "lb"),
  20358. name: "Taur",
  20359. image: {
  20360. source: "./media/characters/rena-dyne/taur.svg",
  20361. extra: 2315 / 2234,
  20362. bottom: 0.033
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Normal",
  20369. height: math.unit(5 + 7 / 12, "feet"),
  20370. default: true
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20376. {
  20377. front: {
  20378. height: math.unit(8, "feet"),
  20379. weight: math.unit(600, "lb"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/weremeep/front.svg",
  20383. extra: 967 / 862,
  20384. bottom: 0.01
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(8, "feet"),
  20392. default: true
  20393. },
  20394. {
  20395. name: "Lorg",
  20396. height: math.unit(12, "feet")
  20397. },
  20398. {
  20399. name: "Oh Lawd She Comin'",
  20400. height: math.unit(20, "feet")
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20406. {
  20407. front: {
  20408. height: math.unit(4, "feet"),
  20409. weight: math.unit(90, "lb"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/reza/front.svg",
  20413. extra: 1183 / 1111,
  20414. bottom: 0.017
  20415. }
  20416. },
  20417. back: {
  20418. height: math.unit(4, "feet"),
  20419. weight: math.unit(90, "lb"),
  20420. name: "Back",
  20421. image: {
  20422. source: "./media/characters/reza/back.svg",
  20423. extra: 1183 / 1111,
  20424. bottom: 0.01
  20425. }
  20426. },
  20427. drake: {
  20428. height: math.unit(30, "feet"),
  20429. weight: math.unit(246960, "lb"),
  20430. name: "Drake",
  20431. image: {
  20432. source: "./media/characters/reza/drake.svg",
  20433. extra: 2350 / 2024,
  20434. bottom: 60.7 / 2403
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(4, "feet"),
  20442. default: true
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20448. {
  20449. side: {
  20450. height: math.unit(15, "feet"),
  20451. weight: math.unit(14, "tons"),
  20452. name: "Side",
  20453. image: {
  20454. source: "./media/characters/athea/side.svg",
  20455. extra: 960 / 540,
  20456. bottom: 0.003
  20457. }
  20458. },
  20459. sitting: {
  20460. height: math.unit(6 * 2.85, "feet"),
  20461. weight: math.unit(14, "tons"),
  20462. name: "Sitting",
  20463. image: {
  20464. source: "./media/characters/athea/sitting.svg",
  20465. extra: 621 / 581,
  20466. bottom: 0.075
  20467. }
  20468. },
  20469. maw: {
  20470. height: math.unit(7.59498031496063, "feet"),
  20471. name: "Maw",
  20472. image: {
  20473. source: "./media/characters/athea/maw.svg"
  20474. }
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Lap Cat",
  20480. height: math.unit(2.5, "feet")
  20481. },
  20482. {
  20483. name: "Minimacro",
  20484. height: math.unit(15, "feet"),
  20485. default: true
  20486. },
  20487. {
  20488. name: "Macro",
  20489. height: math.unit(120, "feet")
  20490. },
  20491. {
  20492. name: "Macro+",
  20493. height: math.unit(640, "feet")
  20494. },
  20495. {
  20496. name: "Colossus",
  20497. height: math.unit(2.2, "miles")
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20503. {
  20504. front: {
  20505. height: math.unit(8 + 8 / 12, "feet"),
  20506. weight: math.unit(130, "kg"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/seroko/front.svg",
  20510. extra: 1385 / 1280,
  20511. bottom: 0.025
  20512. }
  20513. },
  20514. back: {
  20515. height: math.unit(8 + 8 / 12, "feet"),
  20516. weight: math.unit(130, "kg"),
  20517. name: "Back",
  20518. image: {
  20519. source: "./media/characters/seroko/back.svg",
  20520. extra: 1369 / 1238,
  20521. bottom: 0.018
  20522. }
  20523. },
  20524. frontDressed: {
  20525. height: math.unit(8 + 8 / 12, "feet"),
  20526. weight: math.unit(130, "kg"),
  20527. name: "Front (Dressed)",
  20528. image: {
  20529. source: "./media/characters/seroko/front-dressed.svg",
  20530. extra: 1366 / 1275,
  20531. bottom: 0.03
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(8 + 8 / 12, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(5.5, "feet"),
  20548. weight: math.unit(160, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/quatzi/front.svg",
  20552. extra: 2346 / 2242,
  20553. bottom: 0.015
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(5.5, "feet"),
  20561. default: true
  20562. },
  20563. {
  20564. name: "Big",
  20565. height: math.unit(7.7, "feet")
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20571. {
  20572. front: {
  20573. height: math.unit(5 + 11 / 12, "feet"),
  20574. weight: math.unit(180, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/sen/front.svg",
  20578. extra: 1321 / 1254,
  20579. bottom: 0.015
  20580. }
  20581. },
  20582. side: {
  20583. height: math.unit(5 + 11 / 12, "feet"),
  20584. weight: math.unit(180, "lb"),
  20585. name: "Side",
  20586. image: {
  20587. source: "./media/characters/sen/side.svg",
  20588. extra: 1321 / 1254,
  20589. bottom: 0.007
  20590. }
  20591. },
  20592. back: {
  20593. height: math.unit(5 + 11 / 12, "feet"),
  20594. weight: math.unit(180, "lb"),
  20595. name: "Back",
  20596. image: {
  20597. source: "./media/characters/sen/back.svg",
  20598. extra: 1321 / 1254
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(5 + 11 / 12, "feet"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20612. {
  20613. front: {
  20614. height: math.unit(166.6, "cm"),
  20615. weight: math.unit(66.6, "kg"),
  20616. name: "Front",
  20617. image: {
  20618. source: "./media/characters/fruity/front.svg",
  20619. extra: 1510 / 1386,
  20620. bottom: 0.04
  20621. }
  20622. },
  20623. back: {
  20624. height: math.unit(166.6, "cm"),
  20625. weight: math.unit(66.6, "lb"),
  20626. name: "Back",
  20627. image: {
  20628. source: "./media/characters/fruity/back.svg",
  20629. extra: 1563 / 1435,
  20630. bottom: 0.005
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(166.6, "cm"),
  20638. default: true
  20639. },
  20640. {
  20641. name: "Demonic",
  20642. height: math.unit(166.6, "feet")
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20648. {
  20649. side: {
  20650. height: math.unit(10, "feet"),
  20651. weight: math.unit(500, "lb"),
  20652. name: "Side",
  20653. image: {
  20654. source: "./media/characters/zost/side.svg",
  20655. extra: 966 / 880,
  20656. bottom: 0.075
  20657. }
  20658. },
  20659. mawFront: {
  20660. height: math.unit(1.08, "meters"),
  20661. name: "Maw (Front)",
  20662. image: {
  20663. source: "./media/characters/zost/maw-front.svg"
  20664. }
  20665. },
  20666. mawSide: {
  20667. height: math.unit(2.66, "feet"),
  20668. name: "Maw (Side)",
  20669. image: {
  20670. source: "./media/characters/zost/maw-side.svg"
  20671. }
  20672. },
  20673. },
  20674. [
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(10, "feet"),
  20678. default: true
  20679. },
  20680. ]
  20681. ))
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20684. {
  20685. front: {
  20686. height: math.unit(5 + 4 / 12, "feet"),
  20687. weight: math.unit(120, "lb"),
  20688. name: "Front",
  20689. image: {
  20690. source: "./media/characters/luci/front.svg",
  20691. extra: 1985 / 1884,
  20692. bottom: 0.04
  20693. }
  20694. },
  20695. back: {
  20696. height: math.unit(5 + 4 / 12, "feet"),
  20697. weight: math.unit(120, "lb"),
  20698. name: "Back",
  20699. image: {
  20700. source: "./media/characters/luci/back.svg",
  20701. extra: 1892 / 1791,
  20702. bottom: 0.002
  20703. }
  20704. },
  20705. },
  20706. [
  20707. {
  20708. name: "Normal",
  20709. height: math.unit(5 + 4 / 12, "feet"),
  20710. default: true
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20716. {
  20717. front: {
  20718. height: math.unit(1500, "feet"),
  20719. weight: math.unit(3.8e6, "tons"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/2th/front.svg",
  20723. extra: 3489 / 3350,
  20724. bottom: 0.1
  20725. }
  20726. },
  20727. foot: {
  20728. height: math.unit(461, "feet"),
  20729. name: "Foot",
  20730. image: {
  20731. source: "./media/characters/2th/foot.svg"
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "\"Micro\"",
  20738. height: math.unit(15 + 7 / 12, "feet")
  20739. },
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(1500, "feet"),
  20743. default: true
  20744. },
  20745. {
  20746. name: "Macro",
  20747. height: math.unit(5000, "feet")
  20748. },
  20749. {
  20750. name: "Megamacro",
  20751. height: math.unit(15, "miles")
  20752. },
  20753. {
  20754. name: "Gigamacro",
  20755. height: math.unit(4000, "miles")
  20756. },
  20757. {
  20758. name: "Galactic",
  20759. height: math.unit(50, "AU")
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(5 + 6 / 12, "feet"),
  20768. weight: math.unit(220, "lb"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/amethyst/front.svg",
  20772. extra: 2078 / 2040,
  20773. bottom: 0.045
  20774. }
  20775. },
  20776. back: {
  20777. height: math.unit(5 + 6 / 12, "feet"),
  20778. weight: math.unit(220, "lb"),
  20779. name: "Back",
  20780. image: {
  20781. source: "./media/characters/amethyst/back.svg",
  20782. extra: 2021 / 1989,
  20783. bottom: 0.02
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(5 + 6 / 12, "feet"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(4 + 11 / 12, "feet"),
  20800. weight: math.unit(120, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/yumi-akiyama/front.svg",
  20804. extra: 1327 / 1235,
  20805. bottom: 0.02
  20806. }
  20807. },
  20808. back: {
  20809. height: math.unit(4 + 11 / 12, "feet"),
  20810. weight: math.unit(120, "lb"),
  20811. name: "Back",
  20812. image: {
  20813. source: "./media/characters/yumi-akiyama/back.svg",
  20814. extra: 1287 / 1245,
  20815. bottom: 0.002
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Galactic",
  20822. height: math.unit(50, "galaxies"),
  20823. default: true
  20824. },
  20825. {
  20826. name: "Universal",
  20827. height: math.unit(100, "universes")
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20833. {
  20834. front: {
  20835. height: math.unit(8, "feet"),
  20836. weight: math.unit(500, "lb"),
  20837. name: "Front",
  20838. image: {
  20839. source: "./media/characters/rifter-yrmori/front.svg",
  20840. extra: 1180 / 1125,
  20841. bottom: 0.02
  20842. }
  20843. },
  20844. back: {
  20845. height: math.unit(8, "feet"),
  20846. weight: math.unit(500, "lb"),
  20847. name: "Back",
  20848. image: {
  20849. source: "./media/characters/rifter-yrmori/back.svg",
  20850. extra: 1190 / 1145,
  20851. bottom: 0.001
  20852. }
  20853. },
  20854. wings: {
  20855. height: math.unit(7.75, "feet"),
  20856. weight: math.unit(500, "lb"),
  20857. name: "Wings",
  20858. image: {
  20859. source: "./media/characters/rifter-yrmori/wings.svg",
  20860. extra: 1357 / 1285
  20861. }
  20862. },
  20863. maw: {
  20864. height: math.unit(0.8, "feet"),
  20865. name: "Maw",
  20866. image: {
  20867. source: "./media/characters/rifter-yrmori/maw.svg"
  20868. }
  20869. },
  20870. mawfront: {
  20871. height: math.unit(1.45, "feet"),
  20872. name: "Maw (Front)",
  20873. image: {
  20874. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(8, "feet"),
  20882. default: true
  20883. },
  20884. {
  20885. name: "Macro",
  20886. height: math.unit(42, "meters")
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20892. {
  20893. were: {
  20894. height: math.unit(25 + 6 / 12, "feet"),
  20895. weight: math.unit(10000, "lb"),
  20896. name: "Were",
  20897. image: {
  20898. source: "./media/characters/tahajin/were.svg",
  20899. extra: 801 / 770,
  20900. bottom: 0.042
  20901. }
  20902. },
  20903. aquatic: {
  20904. height: math.unit(6 + 4 / 12, "feet"),
  20905. weight: math.unit(160, "lb"),
  20906. name: "Aquatic",
  20907. image: {
  20908. source: "./media/characters/tahajin/aquatic.svg",
  20909. extra: 572 / 542,
  20910. bottom: 0.04
  20911. }
  20912. },
  20913. chow: {
  20914. height: math.unit(8 + 11 / 12, "feet"),
  20915. weight: math.unit(450, "lb"),
  20916. name: "Chow",
  20917. image: {
  20918. source: "./media/characters/tahajin/chow.svg",
  20919. extra: 660 / 640,
  20920. bottom: 0.015
  20921. }
  20922. },
  20923. demiNaga: {
  20924. height: math.unit(6 + 8 / 12, "feet"),
  20925. weight: math.unit(300, "lb"),
  20926. name: "Demi Naga",
  20927. image: {
  20928. source: "./media/characters/tahajin/demi-naga.svg",
  20929. extra: 643 / 615,
  20930. bottom: 0.1
  20931. }
  20932. },
  20933. data: {
  20934. height: math.unit(5, "inches"),
  20935. weight: math.unit(0.1, "lb"),
  20936. name: "Data",
  20937. image: {
  20938. source: "./media/characters/tahajin/data.svg"
  20939. }
  20940. },
  20941. fluu: {
  20942. height: math.unit(5 + 7 / 12, "feet"),
  20943. weight: math.unit(140, "lb"),
  20944. name: "Fluu",
  20945. image: {
  20946. source: "./media/characters/tahajin/fluu.svg",
  20947. extra: 628 / 592,
  20948. bottom: 0.02
  20949. }
  20950. },
  20951. starWarrior: {
  20952. height: math.unit(4 + 5 / 12, "feet"),
  20953. weight: math.unit(50, "lb"),
  20954. name: "Star Warrior",
  20955. image: {
  20956. source: "./media/characters/tahajin/star-warrior.svg"
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(25 + 6 / 12, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20970. {
  20971. front: {
  20972. height: math.unit(8, "feet"),
  20973. weight: math.unit(350, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/gabira/front.svg",
  20977. extra: 608 / 580,
  20978. bottom: 0.03
  20979. }
  20980. },
  20981. back: {
  20982. height: math.unit(8, "feet"),
  20983. weight: math.unit(350, "lb"),
  20984. name: "Back",
  20985. image: {
  20986. source: "./media/characters/gabira/back.svg",
  20987. extra: 608 / 580,
  20988. bottom: 0.03
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(8, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(5 + 3 / 12, "feet"),
  21005. weight: math.unit(137, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/sasha-katraine/front.svg",
  21009. bottom: 0.045
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Micro",
  21016. height: math.unit(5, "inches")
  21017. },
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(5 + 3 / 12, "feet"),
  21021. default: true
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21027. {
  21028. side: {
  21029. height: math.unit(4, "inches"),
  21030. weight: math.unit(200, "grams"),
  21031. name: "Side",
  21032. image: {
  21033. source: "./media/characters/der/side.svg",
  21034. extra: 719 / 400,
  21035. bottom: 30.6 / 749.9187
  21036. }
  21037. },
  21038. },
  21039. [
  21040. {
  21041. name: "Micro",
  21042. height: math.unit(4, "inches"),
  21043. default: true
  21044. },
  21045. ]
  21046. ))
  21047. characterMakers.push(() => makeCharacter(
  21048. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21049. {
  21050. side: {
  21051. height: math.unit(30, "meters"),
  21052. weight: math.unit(700, "tonnes"),
  21053. name: "Side",
  21054. image: {
  21055. source: "./media/characters/fixerdragon/side.svg",
  21056. extra: (1293.0514 - 116.03) / 1106.86,
  21057. bottom: 116.03 / 1293.0514
  21058. }
  21059. },
  21060. },
  21061. [
  21062. {
  21063. name: "Planck",
  21064. height: math.unit(1.6e-35, "meters")
  21065. },
  21066. {
  21067. name: "Micro",
  21068. height: math.unit(0.4, "meters")
  21069. },
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(30, "meters"),
  21073. default: true
  21074. },
  21075. {
  21076. name: "Megamacro",
  21077. height: math.unit(1.2, "megameters")
  21078. },
  21079. {
  21080. name: "Teramacro",
  21081. height: math.unit(130, "terameters")
  21082. },
  21083. {
  21084. name: "Yottamacro",
  21085. height: math.unit(6200, "yottameters")
  21086. },
  21087. ]
  21088. ));
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21091. {
  21092. front: {
  21093. height: math.unit(8, "feet"),
  21094. weight: math.unit(250, "lb"),
  21095. name: "Front",
  21096. image: {
  21097. source: "./media/characters/kite/front.svg",
  21098. extra: 2796 / 2659,
  21099. bottom: 0.002
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(8, "feet"),
  21107. default: true
  21108. },
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(360, "feet")
  21112. },
  21113. {
  21114. name: "Megamacro",
  21115. height: math.unit(1500, "feet")
  21116. },
  21117. ]
  21118. ))
  21119. characterMakers.push(() => makeCharacter(
  21120. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21121. {
  21122. front: {
  21123. height: math.unit(5 + 10 / 12, "feet"),
  21124. weight: math.unit(150, "lb"),
  21125. name: "Front",
  21126. image: {
  21127. source: "./media/characters/poojawa-vynar/front.svg",
  21128. extra: (1506.1547 - 55) / 1356.6,
  21129. bottom: 55 / 1506.1547
  21130. }
  21131. },
  21132. frontTailless: {
  21133. height: math.unit(5 + 10 / 12, "feet"),
  21134. weight: math.unit(150, "lb"),
  21135. name: "Front (Tailless)",
  21136. image: {
  21137. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21138. extra: (1506.1547 - 55) / 1356.6,
  21139. bottom: 55 / 1506.1547
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Normal",
  21146. height: math.unit(5 + 10 / 12, "feet"),
  21147. default: true
  21148. },
  21149. ]
  21150. ))
  21151. characterMakers.push(() => makeCharacter(
  21152. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21153. {
  21154. front: {
  21155. height: math.unit(293, "meters"),
  21156. weight: math.unit(70400, "tons"),
  21157. name: "Front",
  21158. image: {
  21159. source: "./media/characters/violette/front.svg",
  21160. extra: 1227 / 1180,
  21161. bottom: 0.005
  21162. }
  21163. },
  21164. back: {
  21165. height: math.unit(293, "meters"),
  21166. weight: math.unit(70400, "tons"),
  21167. name: "Back",
  21168. image: {
  21169. source: "./media/characters/violette/back.svg",
  21170. extra: 1227 / 1180,
  21171. bottom: 0.005
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Macro",
  21178. height: math.unit(293, "meters"),
  21179. default: true
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(1050, "feet"),
  21188. weight: math.unit(200000, "tons"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/alessandra/front.svg",
  21192. extra: 960 / 912,
  21193. bottom: 0.06
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Macro",
  21200. height: math.unit(1050, "feet")
  21201. },
  21202. {
  21203. name: "Macro+",
  21204. height: math.unit(900, "meters"),
  21205. default: true
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21211. {
  21212. front: {
  21213. height: math.unit(5, "feet"),
  21214. weight: math.unit(187, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/person/front.svg",
  21218. extra: 3087 / 2945,
  21219. bottom: 91 / 3181
  21220. }
  21221. },
  21222. },
  21223. [
  21224. {
  21225. name: "Micro",
  21226. height: math.unit(3, "inches")
  21227. },
  21228. {
  21229. name: "Normal",
  21230. height: math.unit(5, "feet"),
  21231. default: true
  21232. },
  21233. {
  21234. name: "Macro",
  21235. height: math.unit(90, "feet")
  21236. },
  21237. {
  21238. name: "Max Size",
  21239. height: math.unit(280, "feet")
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21245. {
  21246. front: {
  21247. height: math.unit(4.5, "meters"),
  21248. weight: math.unit(3200, "lb"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/ty/front.svg",
  21252. extra: 1038 / 960,
  21253. bottom: 31.156 / 1068
  21254. }
  21255. },
  21256. back: {
  21257. height: math.unit(4.5, "meters"),
  21258. weight: math.unit(3200, "lb"),
  21259. name: "Back",
  21260. image: {
  21261. source: "./media/characters/ty/back.svg",
  21262. extra: 1044 / 966,
  21263. bottom: 7.48 / 1049
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(4.5, "meters"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(5 + 4 / 12, "feet"),
  21280. weight: math.unit(115, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/rocky/front.svg",
  21284. extra: 1012 / 975,
  21285. bottom: 54 / 1066
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(5 + 4 / 12, "feet"),
  21293. default: true
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21299. {
  21300. upright: {
  21301. height: math.unit(6, "meters"),
  21302. weight: math.unit(4000, "kg"),
  21303. name: "Upright",
  21304. image: {
  21305. source: "./media/characters/ruin/upright.svg",
  21306. extra: 668 / 661,
  21307. bottom: 42 / 799.8396
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(6, "meters"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21321. {
  21322. front: {
  21323. height: math.unit(5, "feet"),
  21324. weight: math.unit(106, "lb"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/robin/front.svg",
  21328. extra: 862 / 799,
  21329. bottom: 42.4 / 914.8856
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(5, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21343. {
  21344. side: {
  21345. height: math.unit(3, "feet"),
  21346. weight: math.unit(225, "lb"),
  21347. name: "Side",
  21348. image: {
  21349. source: "./media/characters/saian/side.svg",
  21350. extra: 566 / 356,
  21351. bottom: 79.7 / 643
  21352. }
  21353. },
  21354. maw: {
  21355. height: math.unit(2.85, "feet"),
  21356. name: "Maw",
  21357. image: {
  21358. source: "./media/characters/saian/maw.svg"
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(3, "feet"),
  21366. default: true
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21372. {
  21373. side: {
  21374. height: math.unit(8, "feet"),
  21375. weight: math.unit(300, "lb"),
  21376. name: "Side",
  21377. image: {
  21378. source: "./media/characters/equus-silvermane/side.svg",
  21379. extra: 2176 / 2050,
  21380. bottom: 65.7 / 2245
  21381. }
  21382. },
  21383. front: {
  21384. height: math.unit(8, "feet"),
  21385. weight: math.unit(300, "lb"),
  21386. name: "Front",
  21387. image: {
  21388. source: "./media/characters/equus-silvermane/front.svg",
  21389. extra: 4633 / 4400,
  21390. bottom: 71.3 / 4706.915
  21391. }
  21392. },
  21393. sideStepping: {
  21394. height: math.unit(8, "feet"),
  21395. weight: math.unit(300, "lb"),
  21396. name: "Side (Stepping)",
  21397. image: {
  21398. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21399. extra: 1968 / 1860,
  21400. bottom: 16.4 / 1989
  21401. }
  21402. },
  21403. },
  21404. [
  21405. {
  21406. name: "Normal",
  21407. height: math.unit(8, "feet")
  21408. },
  21409. {
  21410. name: "Minimacro",
  21411. height: math.unit(75, "feet"),
  21412. default: true
  21413. },
  21414. {
  21415. name: "Macro",
  21416. height: math.unit(150, "feet")
  21417. },
  21418. {
  21419. name: "Macro+",
  21420. height: math.unit(1000, "feet")
  21421. },
  21422. {
  21423. name: "Megamacro",
  21424. height: math.unit(1, "mile")
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21430. {
  21431. side: {
  21432. height: math.unit(20, "feet"),
  21433. weight: math.unit(30000, "kg"),
  21434. name: "Side",
  21435. image: {
  21436. source: "./media/characters/windar/side.svg",
  21437. extra: 1491 / 1248,
  21438. bottom: 82.56 / 1568
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(20, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21452. {
  21453. side: {
  21454. height: math.unit(15.66, "feet"),
  21455. weight: math.unit(150, "lb"),
  21456. name: "Side",
  21457. image: {
  21458. source: "./media/characters/melody/side.svg",
  21459. extra: 1097 / 944,
  21460. bottom: 11.8 / 1109
  21461. }
  21462. },
  21463. sideOutfit: {
  21464. height: math.unit(15.66, "feet"),
  21465. weight: math.unit(150, "lb"),
  21466. name: "Side (Outfit)",
  21467. image: {
  21468. source: "./media/characters/melody/side-outfit.svg",
  21469. extra: 1097 / 944,
  21470. bottom: 11.8 / 1109
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(15.66, "feet"),
  21478. default: true
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(8, "feet"),
  21487. weight: math.unit(325, "lb"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/windera/front.svg",
  21491. extra: 3180 / 2845,
  21492. bottom: 178 / 3365
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(8, "feet"),
  21500. default: true
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21506. {
  21507. front: {
  21508. height: math.unit(28.75, "feet"),
  21509. weight: math.unit(2000, "kg"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/sonear/front.svg",
  21513. extra: 1041.1 / 964.9,
  21514. bottom: 53.7 / 1096.6
  21515. }
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(28.75, "feet"),
  21522. default: true
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21528. {
  21529. side: {
  21530. height: math.unit(25.5, "feet"),
  21531. weight: math.unit(23000, "kg"),
  21532. name: "Side",
  21533. image: {
  21534. source: "./media/characters/kanara/side.svg"
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(25.5, "feet"),
  21542. default: true
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21548. {
  21549. side: {
  21550. height: math.unit(10, "feet"),
  21551. weight: math.unit(1000, "kg"),
  21552. name: "Side",
  21553. image: {
  21554. source: "./media/characters/ereus/side.svg",
  21555. extra: 1157 / 959,
  21556. bottom: 153 / 1312.5
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(10, "feet"),
  21564. default: true
  21565. },
  21566. ]
  21567. ))
  21568. characterMakers.push(() => makeCharacter(
  21569. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21570. {
  21571. side: {
  21572. height: math.unit(4.5, "feet"),
  21573. weight: math.unit(500, "lb"),
  21574. name: "Side",
  21575. image: {
  21576. source: "./media/characters/e-ter/side.svg",
  21577. extra: 1550 / 1248,
  21578. bottom: 146 / 1694
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(4.5, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21592. {
  21593. side: {
  21594. height: math.unit(9.7, "feet"),
  21595. weight: math.unit(4000, "kg"),
  21596. name: "Side",
  21597. image: {
  21598. source: "./media/characters/yamie/side.svg"
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(9.7, "feet"),
  21606. default: true
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(50, "feet"),
  21615. weight: math.unit(50000, "kg"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/anders/front.svg",
  21619. extra: 570 / 539,
  21620. bottom: 14.7 / 586.7
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Large",
  21627. height: math.unit(50, "feet")
  21628. },
  21629. {
  21630. name: "Macro",
  21631. height: math.unit(2000, "feet"),
  21632. default: true
  21633. },
  21634. {
  21635. name: "Megamacro",
  21636. height: math.unit(12, "miles")
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21642. {
  21643. front: {
  21644. height: math.unit(7 + 2 / 12, "feet"),
  21645. weight: math.unit(300, "lb"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/reban/front.svg",
  21649. extra: 516 / 487,
  21650. bottom: 42.82 / 558.356
  21651. }
  21652. },
  21653. dick: {
  21654. height: math.unit(7 / 5, "feet"),
  21655. name: "Dick",
  21656. image: {
  21657. source: "./media/characters/reban/dick.svg"
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Natural Height",
  21664. height: math.unit(7 + 2 / 12, "feet")
  21665. },
  21666. {
  21667. name: "Macro",
  21668. height: math.unit(500, "feet"),
  21669. default: true
  21670. },
  21671. {
  21672. name: "Canon Height",
  21673. height: math.unit(50, "AU")
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21679. {
  21680. front: {
  21681. height: math.unit(6, "feet"),
  21682. weight: math.unit(150, "lb"),
  21683. name: "Front",
  21684. image: {
  21685. source: "./media/characters/terrance-keayes/front.svg",
  21686. extra: 1.005,
  21687. bottom: 151 / 1615
  21688. }
  21689. },
  21690. side: {
  21691. height: math.unit(6, "feet"),
  21692. weight: math.unit(150, "lb"),
  21693. name: "Side",
  21694. image: {
  21695. source: "./media/characters/terrance-keayes/side.svg",
  21696. extra: 1.005,
  21697. bottom: 129.4 / 1544
  21698. }
  21699. },
  21700. back: {
  21701. height: math.unit(6, "feet"),
  21702. weight: math.unit(150, "lb"),
  21703. name: "Back",
  21704. image: {
  21705. source: "./media/characters/terrance-keayes/back.svg",
  21706. extra: 1.005,
  21707. bottom: 58.4 / 1557.3
  21708. }
  21709. },
  21710. dick: {
  21711. height: math.unit(6 * 0.208, "feet"),
  21712. name: "Dick",
  21713. image: {
  21714. source: "./media/characters/terrance-keayes/dick.svg"
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Canon Height",
  21721. height: math.unit(35, "miles"),
  21722. default: true
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(6, "feet"),
  21731. weight: math.unit(150, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/ofelia/front.svg",
  21735. extra: 546 / 541,
  21736. bottom: 39 / 583
  21737. }
  21738. },
  21739. back: {
  21740. height: math.unit(6, "feet"),
  21741. weight: math.unit(150, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/ofelia/back.svg",
  21745. extra: 564 / 559.5,
  21746. bottom: 8.69 / 573.02
  21747. }
  21748. },
  21749. maw: {
  21750. height: math.unit(1, "feet"),
  21751. name: "Maw",
  21752. image: {
  21753. source: "./media/characters/ofelia/maw.svg"
  21754. }
  21755. },
  21756. foot: {
  21757. height: math.unit(1.949, "feet"),
  21758. name: "Foot",
  21759. image: {
  21760. source: "./media/characters/ofelia/foot.svg"
  21761. }
  21762. },
  21763. },
  21764. [
  21765. {
  21766. name: "Canon Height",
  21767. height: math.unit(2000, "miles"),
  21768. default: true
  21769. },
  21770. ]
  21771. ))
  21772. characterMakers.push(() => makeCharacter(
  21773. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21774. {
  21775. front: {
  21776. height: math.unit(6, "feet"),
  21777. weight: math.unit(150, "lb"),
  21778. name: "Front",
  21779. image: {
  21780. source: "./media/characters/samuel/front.svg",
  21781. extra: 265 / 258,
  21782. bottom: 2 / 266.1566
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(100, "feet"),
  21790. default: true
  21791. },
  21792. {
  21793. name: "Full Size",
  21794. height: math.unit(1000, "miles")
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(6, "feet"),
  21803. weight: math.unit(300, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/beishir-kiel/front.svg",
  21807. extra: 569 / 547,
  21808. bottom: 41.9 / 609
  21809. }
  21810. },
  21811. maw: {
  21812. height: math.unit(6 * 0.202, "feet"),
  21813. name: "Maw",
  21814. image: {
  21815. source: "./media/characters/beishir-kiel/maw.svg"
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Macro",
  21822. height: math.unit(300, "feet"),
  21823. default: true
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21829. {
  21830. front: {
  21831. height: math.unit(5 + 8 / 12, "feet"),
  21832. weight: math.unit(120, "lb"),
  21833. name: "Front",
  21834. image: {
  21835. source: "./media/characters/logan-grey/front.svg",
  21836. extra: 2539 / 2393,
  21837. bottom: 97.6 / 2636.37
  21838. }
  21839. },
  21840. frontAlt: {
  21841. height: math.unit(5 + 8 / 12, "feet"),
  21842. weight: math.unit(120, "lb"),
  21843. name: "Front (Alt)",
  21844. image: {
  21845. source: "./media/characters/logan-grey/front-alt.svg",
  21846. extra: 958 / 893,
  21847. bottom: 15 / 970.768
  21848. }
  21849. },
  21850. back: {
  21851. height: math.unit(5 + 8 / 12, "feet"),
  21852. weight: math.unit(120, "lb"),
  21853. name: "Back",
  21854. image: {
  21855. source: "./media/characters/logan-grey/back.svg",
  21856. extra: 958 / 893,
  21857. bottom: 2.1881 / 970.9788
  21858. }
  21859. },
  21860. dick: {
  21861. height: math.unit(1.437, "feet"),
  21862. name: "Dick",
  21863. image: {
  21864. source: "./media/characters/logan-grey/dick.svg"
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(5 + 8 / 12, "feet")
  21872. },
  21873. {
  21874. name: "The 500 Foot Femboy",
  21875. height: math.unit(500, "feet"),
  21876. default: true
  21877. },
  21878. {
  21879. name: "Megmacro",
  21880. height: math.unit(20, "miles")
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(8 + 2 / 12, "feet"),
  21889. weight: math.unit(275, "lb"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/draganta/front.svg",
  21893. extra: 1177 / 1135,
  21894. bottom: 33.46 / 1212.1
  21895. }
  21896. },
  21897. },
  21898. [
  21899. {
  21900. name: "Normal",
  21901. height: math.unit(8 + 6 / 12, "feet"),
  21902. default: true
  21903. },
  21904. {
  21905. name: "Macro",
  21906. height: math.unit(150, "feet")
  21907. },
  21908. {
  21909. name: "Megamacro",
  21910. height: math.unit(1000, "miles")
  21911. },
  21912. ]
  21913. ))
  21914. characterMakers.push(() => makeCharacter(
  21915. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21916. {
  21917. front: {
  21918. height: math.unit(1.72, "m"),
  21919. weight: math.unit(80, "lb"),
  21920. name: "Front",
  21921. image: {
  21922. source: "./media/characters/voski/front.svg",
  21923. extra: 2076.22 / 2022.4,
  21924. bottom: 102.7 / 2177.3866
  21925. }
  21926. },
  21927. frontNsfw: {
  21928. height: math.unit(1.72, "m"),
  21929. weight: math.unit(80, "lb"),
  21930. name: "Front (NSFW)",
  21931. image: {
  21932. source: "./media/characters/voski/front-nsfw.svg",
  21933. extra: 2076.22 / 2022.4,
  21934. bottom: 102.7 / 2177.3866
  21935. }
  21936. },
  21937. back: {
  21938. height: math.unit(1.72, "m"),
  21939. weight: math.unit(80, "lb"),
  21940. name: "Back",
  21941. image: {
  21942. source: "./media/characters/voski/back.svg",
  21943. extra: 2104 / 2051,
  21944. bottom: 10.45 / 2113.63
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(1.72, "m")
  21952. },
  21953. {
  21954. name: "Macro",
  21955. height: math.unit(55, "m"),
  21956. default: true
  21957. },
  21958. {
  21959. name: "Macro+",
  21960. height: math.unit(300, "m")
  21961. },
  21962. {
  21963. name: "Macro++",
  21964. height: math.unit(700, "m")
  21965. },
  21966. {
  21967. name: "Macro+++",
  21968. height: math.unit(4500, "m")
  21969. },
  21970. {
  21971. name: "Macro++++",
  21972. height: math.unit(45, "km")
  21973. },
  21974. {
  21975. name: "Macro+++++",
  21976. height: math.unit(1220, "km")
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21982. {
  21983. front: {
  21984. height: math.unit(2.3, "m"),
  21985. weight: math.unit(304, "kg"),
  21986. name: "Front",
  21987. image: {
  21988. source: "./media/characters/icowom-lee/front.svg",
  21989. extra: 985 / 955,
  21990. bottom: 25.4 / 1012
  21991. }
  21992. },
  21993. fronttentacles: {
  21994. height: math.unit(2.3, "m"),
  21995. weight: math.unit(304, "kg"),
  21996. name: "Front-tentacles",
  21997. image: {
  21998. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21999. extra: 985 / 955,
  22000. bottom: 25.4 / 1012
  22001. }
  22002. },
  22003. back: {
  22004. height: math.unit(2.3, "m"),
  22005. weight: math.unit(304, "kg"),
  22006. name: "Back",
  22007. image: {
  22008. source: "./media/characters/icowom-lee/back.svg",
  22009. extra: 975 / 954,
  22010. bottom: 9.5 / 985
  22011. }
  22012. },
  22013. backtentacles: {
  22014. height: math.unit(2.3, "m"),
  22015. weight: math.unit(304, "kg"),
  22016. name: "Back-tentacles",
  22017. image: {
  22018. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22019. extra: 975 / 954,
  22020. bottom: 9.5 / 985
  22021. }
  22022. },
  22023. frontDressed: {
  22024. height: math.unit(2.3, "m"),
  22025. weight: math.unit(304, "kg"),
  22026. name: "Front (Dressed)",
  22027. image: {
  22028. source: "./media/characters/icowom-lee/front-dressed.svg",
  22029. extra: 3076 / 2933,
  22030. bottom: 51.4 / 3125.1889
  22031. }
  22032. },
  22033. rump: {
  22034. height: math.unit(0.776, "meters"),
  22035. name: "Rump",
  22036. image: {
  22037. source: "./media/characters/icowom-lee/rump.svg"
  22038. }
  22039. },
  22040. genitals: {
  22041. height: math.unit(0.78, "meters"),
  22042. name: "Genitals",
  22043. image: {
  22044. source: "./media/characters/icowom-lee/genitals.svg"
  22045. }
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Normal",
  22051. height: math.unit(2.3, "meters"),
  22052. default: true
  22053. },
  22054. {
  22055. name: "Macro",
  22056. height: math.unit(94, "meters"),
  22057. default: true
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(22, "meters"),
  22066. weight: math.unit(21000, "kg"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/shock-diamond/front.svg",
  22070. extra: 2204 / 2053,
  22071. bottom: 65 / 2239.47
  22072. }
  22073. },
  22074. frontNude: {
  22075. height: math.unit(22, "meters"),
  22076. weight: math.unit(21000, "kg"),
  22077. name: "Front (Nude)",
  22078. image: {
  22079. source: "./media/characters/shock-diamond/front-nude.svg",
  22080. extra: 2514 / 2285,
  22081. bottom: 13 / 2527.56
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(3, "meters")
  22089. },
  22090. {
  22091. name: "Macro",
  22092. height: math.unit(22, "meters"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(5 + 4 / 12, "feet"),
  22102. weight: math.unit(120, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/rory/front.svg",
  22106. extra: 589 / 556,
  22107. bottom: 45.7 / 635.76
  22108. }
  22109. },
  22110. frontNude: {
  22111. height: math.unit(5 + 4 / 12, "feet"),
  22112. weight: math.unit(120, "lb"),
  22113. name: "Front (Nude)",
  22114. image: {
  22115. source: "./media/characters/rory/front-nude.svg",
  22116. extra: 589 / 556,
  22117. bottom: 45.7 / 635.76
  22118. }
  22119. },
  22120. side: {
  22121. height: math.unit(5 + 4 / 12, "feet"),
  22122. weight: math.unit(120, "lb"),
  22123. name: "Side",
  22124. image: {
  22125. source: "./media/characters/rory/side.svg",
  22126. extra: 597 / 564,
  22127. bottom: 55 / 653
  22128. }
  22129. },
  22130. back: {
  22131. height: math.unit(5 + 4 / 12, "feet"),
  22132. weight: math.unit(120, "lb"),
  22133. name: "Back",
  22134. image: {
  22135. source: "./media/characters/rory/back.svg",
  22136. extra: 620 / 585,
  22137. bottom: 8.86 / 630.43
  22138. }
  22139. },
  22140. dick: {
  22141. height: math.unit(0.86, "feet"),
  22142. name: "Dick",
  22143. image: {
  22144. source: "./media/characters/rory/dick.svg"
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Normal",
  22151. height: math.unit(5 + 4 / 12, "feet"),
  22152. default: true
  22153. },
  22154. {
  22155. name: "Macro",
  22156. height: math.unit(100, "feet")
  22157. },
  22158. {
  22159. name: "Macro+",
  22160. height: math.unit(140, "feet")
  22161. },
  22162. {
  22163. name: "Macro++",
  22164. height: math.unit(300, "feet")
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22170. {
  22171. front: {
  22172. height: math.unit(5 + 9 / 12, "feet"),
  22173. weight: math.unit(190, "lb"),
  22174. name: "Front",
  22175. image: {
  22176. source: "./media/characters/sprisk/front.svg",
  22177. extra: 1225 / 1180,
  22178. bottom: 42.7 / 1266.4
  22179. }
  22180. },
  22181. frontNsfw: {
  22182. height: math.unit(5 + 9 / 12, "feet"),
  22183. weight: math.unit(190, "lb"),
  22184. name: "Front (NSFW)",
  22185. image: {
  22186. source: "./media/characters/sprisk/front-nsfw.svg",
  22187. extra: 1225 / 1180,
  22188. bottom: 42.7 / 1266.4
  22189. }
  22190. },
  22191. back: {
  22192. height: math.unit(5 + 9 / 12, "feet"),
  22193. weight: math.unit(190, "lb"),
  22194. name: "Back",
  22195. image: {
  22196. source: "./media/characters/sprisk/back.svg",
  22197. extra: 1247 / 1200,
  22198. bottom: 5.6 / 1253.04
  22199. }
  22200. },
  22201. },
  22202. [
  22203. {
  22204. name: "Tiny",
  22205. height: math.unit(2, "inches")
  22206. },
  22207. {
  22208. name: "Normal",
  22209. height: math.unit(5 + 9 / 12, "feet"),
  22210. default: true
  22211. },
  22212. {
  22213. name: "Mini Macro",
  22214. height: math.unit(18, "feet")
  22215. },
  22216. {
  22217. name: "Macro",
  22218. height: math.unit(100, "feet")
  22219. },
  22220. {
  22221. name: "MACRO",
  22222. height: math.unit(50, "miles")
  22223. },
  22224. {
  22225. name: "M A C R O",
  22226. height: math.unit(300, "miles")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22232. {
  22233. side: {
  22234. height: math.unit(15.6, "meters"),
  22235. weight: math.unit(700000, "kg"),
  22236. name: "Side",
  22237. image: {
  22238. source: "./media/characters/bunsen/side.svg",
  22239. extra: 1644 / 358
  22240. }
  22241. },
  22242. foot: {
  22243. height: math.unit(1.611 * 1644 / 358, "meter"),
  22244. name: "Foot",
  22245. image: {
  22246. source: "./media/characters/bunsen/foot.svg"
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Small",
  22253. height: math.unit(10, "feet")
  22254. },
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(15.6, "meters"),
  22258. default: true
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22264. {
  22265. front: {
  22266. height: math.unit(4 + 11 / 12, "feet"),
  22267. weight: math.unit(140, "lb"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/sesh/front.svg",
  22271. extra: 3420 / 3231,
  22272. bottom: 72 / 3949.5
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(4 + 11 / 12, "feet")
  22280. },
  22281. {
  22282. name: "Grown",
  22283. height: math.unit(15, "feet"),
  22284. default: true
  22285. },
  22286. {
  22287. name: "Macro",
  22288. height: math.unit(1500, "feet")
  22289. },
  22290. {
  22291. name: "Megamacro",
  22292. height: math.unit(30, "miles")
  22293. },
  22294. {
  22295. name: "Continental",
  22296. height: math.unit(3000, "miles")
  22297. },
  22298. {
  22299. name: "Gravity Mass",
  22300. height: math.unit(300000, "miles")
  22301. },
  22302. {
  22303. name: "Planet Buster",
  22304. height: math.unit(30000000, "miles")
  22305. },
  22306. {
  22307. name: "Big",
  22308. height: math.unit(3000000000, "miles")
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22314. {
  22315. front: {
  22316. height: math.unit(9, "feet"),
  22317. weight: math.unit(350, "lb"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/pepper/front.svg",
  22321. extra: 1448 / 1312,
  22322. bottom: 9.4 / 1457.88
  22323. }
  22324. },
  22325. back: {
  22326. height: math.unit(9, "feet"),
  22327. weight: math.unit(350, "lb"),
  22328. name: "Back",
  22329. image: {
  22330. source: "./media/characters/pepper/back.svg",
  22331. extra: 1423 / 1300,
  22332. bottom: 4.6 / 1429
  22333. }
  22334. },
  22335. maw: {
  22336. height: math.unit(0.932, "feet"),
  22337. name: "Maw",
  22338. image: {
  22339. source: "./media/characters/pepper/maw.svg"
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(9, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(6, "feet"),
  22356. weight: math.unit(150, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/maelstrom/front.svg",
  22360. extra: 2100 / 1883,
  22361. bottom: 94 / 2196.7
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Less Kaiju",
  22368. height: math.unit(200, "feet")
  22369. },
  22370. {
  22371. name: "Kaiju",
  22372. height: math.unit(400, "feet"),
  22373. default: true
  22374. },
  22375. {
  22376. name: "Kaiju-er",
  22377. height: math.unit(600, "feet")
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22383. {
  22384. front: {
  22385. height: math.unit(6 + 5 / 12, "feet"),
  22386. weight: math.unit(180, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/lexir/front.svg",
  22390. extra: 180 / 172,
  22391. bottom: 12 / 192
  22392. }
  22393. },
  22394. back: {
  22395. height: math.unit(6 + 5 / 12, "feet"),
  22396. weight: math.unit(180, "lb"),
  22397. name: "Back",
  22398. image: {
  22399. source: "./media/characters/lexir/back.svg",
  22400. extra: 183.84 / 175.5,
  22401. bottom: 3.1 / 187
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Very Smal",
  22408. height: math.unit(1, "nm")
  22409. },
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(6 + 5 / 12, "feet"),
  22413. default: true
  22414. },
  22415. {
  22416. name: "Macro",
  22417. height: math.unit(1, "mile")
  22418. },
  22419. {
  22420. name: "Megamacro",
  22421. height: math.unit(50, "miles")
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22427. {
  22428. front: {
  22429. height: math.unit(1.5, "meters"),
  22430. weight: math.unit(100, "lb"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/maksio/front.svg",
  22434. extra: 1549 / 1531,
  22435. bottom: 123.7 / 1674.5429
  22436. }
  22437. },
  22438. back: {
  22439. height: math.unit(1.5, "meters"),
  22440. weight: math.unit(100, "lb"),
  22441. name: "Back",
  22442. image: {
  22443. source: "./media/characters/maksio/back.svg",
  22444. extra: 1541 / 1509,
  22445. bottom: 97 / 1639
  22446. }
  22447. },
  22448. hand: {
  22449. height: math.unit(0.621, "feet"),
  22450. name: "Hand",
  22451. image: {
  22452. source: "./media/characters/maksio/hand.svg"
  22453. }
  22454. },
  22455. foot: {
  22456. height: math.unit(1.611, "feet"),
  22457. name: "Foot",
  22458. image: {
  22459. source: "./media/characters/maksio/foot.svg"
  22460. }
  22461. },
  22462. },
  22463. [
  22464. {
  22465. name: "Shrunken",
  22466. height: math.unit(10, "cm")
  22467. },
  22468. {
  22469. name: "Normal",
  22470. height: math.unit(150, "cm"),
  22471. default: true
  22472. },
  22473. ]
  22474. ))
  22475. characterMakers.push(() => makeCharacter(
  22476. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22477. {
  22478. front: {
  22479. height: math.unit(100, "feet"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/erza-bear/front.svg",
  22483. extra: 2449 / 2390,
  22484. bottom: 46 / 2494
  22485. }
  22486. },
  22487. back: {
  22488. height: math.unit(100, "feet"),
  22489. name: "Back",
  22490. image: {
  22491. source: "./media/characters/erza-bear/back.svg",
  22492. extra: 2489 / 2430,
  22493. bottom: 85.4 / 2480
  22494. }
  22495. },
  22496. tail: {
  22497. height: math.unit(42, "feet"),
  22498. name: "Tail",
  22499. image: {
  22500. source: "./media/characters/erza-bear/tail.svg"
  22501. }
  22502. },
  22503. tongue: {
  22504. height: math.unit(8, "feet"),
  22505. name: "Tongue",
  22506. image: {
  22507. source: "./media/characters/erza-bear/tongue.svg"
  22508. }
  22509. },
  22510. dick: {
  22511. height: math.unit(10.5, "feet"),
  22512. name: "Dick",
  22513. image: {
  22514. source: "./media/characters/erza-bear/dick.svg"
  22515. }
  22516. },
  22517. dickVertical: {
  22518. height: math.unit(16.9, "feet"),
  22519. name: "Dick (Vertical)",
  22520. image: {
  22521. source: "./media/characters/erza-bear/dick-vertical.svg"
  22522. }
  22523. },
  22524. },
  22525. [
  22526. {
  22527. name: "Macro",
  22528. height: math.unit(100, "feet"),
  22529. default: true
  22530. },
  22531. ]
  22532. ))
  22533. characterMakers.push(() => makeCharacter(
  22534. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22535. {
  22536. front: {
  22537. height: math.unit(172, "cm"),
  22538. weight: math.unit(73, "kg"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/violet-flor/front.svg",
  22542. extra: 1530 / 1442,
  22543. bottom: 61.9 / 1588.8
  22544. }
  22545. },
  22546. back: {
  22547. height: math.unit(180, "cm"),
  22548. weight: math.unit(73, "kg"),
  22549. name: "Back",
  22550. image: {
  22551. source: "./media/characters/violet-flor/back.svg",
  22552. extra: 1692 / 1630,
  22553. bottom: 20 / 1712
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(172, "cm"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(6, "feet"),
  22570. weight: math.unit(220, "lb"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/lynn-rhea/front.svg",
  22574. extra: 310 / 273
  22575. }
  22576. },
  22577. back: {
  22578. height: math.unit(6, "feet"),
  22579. weight: math.unit(220, "lb"),
  22580. name: "Back",
  22581. image: {
  22582. source: "./media/characters/lynn-rhea/back.svg",
  22583. extra: 310 / 273
  22584. }
  22585. },
  22586. dicks: {
  22587. height: math.unit(0.9, "feet"),
  22588. name: "Dicks",
  22589. image: {
  22590. source: "./media/characters/lynn-rhea/dicks.svg"
  22591. }
  22592. },
  22593. slit: {
  22594. height: math.unit(0.4, "feet"),
  22595. name: "Slit",
  22596. image: {
  22597. source: "./media/characters/lynn-rhea/slit.svg"
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Micro",
  22604. height: math.unit(1, "inch")
  22605. },
  22606. {
  22607. name: "Macro",
  22608. height: math.unit(60, "feet"),
  22609. default: true
  22610. },
  22611. {
  22612. name: "Megamacro",
  22613. height: math.unit(2, "miles")
  22614. },
  22615. {
  22616. name: "Gigamacro",
  22617. height: math.unit(3, "earths")
  22618. },
  22619. {
  22620. name: "Galactic",
  22621. height: math.unit(0.8, "galaxies")
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22627. {
  22628. front: {
  22629. height: math.unit(1600, "feet"),
  22630. weight: math.unit(85758785169, "kg"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/valathos/front.svg",
  22634. extra: 1451 / 1339
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Macro",
  22641. height: math.unit(1600, "feet"),
  22642. default: true
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(7 + 5 / 12, "feet"),
  22651. weight: math.unit(300, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/azula/front.svg",
  22655. extra: 3208 / 2880,
  22656. bottom: 80.2 / 3277
  22657. }
  22658. },
  22659. back: {
  22660. height: math.unit(7 + 5 / 12, "feet"),
  22661. weight: math.unit(300, "lb"),
  22662. name: "Back",
  22663. image: {
  22664. source: "./media/characters/azula/back.svg",
  22665. extra: 3169 / 2822,
  22666. bottom: 150.6 / 3321
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(7 + 5 / 12, "feet"),
  22674. default: true
  22675. },
  22676. {
  22677. name: "Big",
  22678. height: math.unit(20, "feet")
  22679. },
  22680. ]
  22681. ))
  22682. characterMakers.push(() => makeCharacter(
  22683. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22684. {
  22685. front: {
  22686. height: math.unit(5 + 1 / 12, "feet"),
  22687. weight: math.unit(110, "lb"),
  22688. name: "Front",
  22689. image: {
  22690. source: "./media/characters/rupert/front.svg",
  22691. extra: 1549 / 1495,
  22692. bottom: 54.2 / 1604.4
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(5 + 1 / 12, "feet"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22706. {
  22707. front: {
  22708. height: math.unit(8 + 4 / 12, "feet"),
  22709. weight: math.unit(350, "lb"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/sheera-castellar/front.svg",
  22713. extra: 1957 / 1894,
  22714. bottom: 26.97 / 1975.017
  22715. }
  22716. },
  22717. side: {
  22718. height: math.unit(8 + 4 / 12, "feet"),
  22719. weight: math.unit(350, "lb"),
  22720. name: "Side",
  22721. image: {
  22722. source: "./media/characters/sheera-castellar/side.svg",
  22723. extra: 1957 / 1894
  22724. }
  22725. },
  22726. back: {
  22727. height: math.unit(8 + 4 / 12, "feet"),
  22728. weight: math.unit(350, "lb"),
  22729. name: "Back",
  22730. image: {
  22731. source: "./media/characters/sheera-castellar/back.svg",
  22732. extra: 1957 / 1894
  22733. }
  22734. },
  22735. angled: {
  22736. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22737. weight: math.unit(350, "lb"),
  22738. name: "Angled",
  22739. image: {
  22740. source: "./media/characters/sheera-castellar/angled.svg",
  22741. extra: 1807 / 1707,
  22742. bottom: 68 / 1875
  22743. }
  22744. },
  22745. genitals: {
  22746. height: math.unit(2.2, "feet"),
  22747. name: "Genitals",
  22748. image: {
  22749. source: "./media/characters/sheera-castellar/genitals.svg"
  22750. }
  22751. },
  22752. taur: {
  22753. height: math.unit(10 + 6/12, "feet"),
  22754. name: "Taur",
  22755. image: {
  22756. source: "./media/characters/sheera-castellar/taur.svg",
  22757. extra: 2017/1909,
  22758. bottom: 185/2202
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Normal",
  22765. height: math.unit(8 + 4 / 12, "feet")
  22766. },
  22767. {
  22768. name: "Macro",
  22769. height: math.unit(150, "feet"),
  22770. default: true
  22771. },
  22772. {
  22773. name: "Macro+",
  22774. height: math.unit(800, "feet")
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22780. {
  22781. front: {
  22782. height: math.unit(6, "feet"),
  22783. weight: math.unit(150, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/jaipur/front.svg",
  22787. extra: 3860 / 3731,
  22788. bottom: 287 / 4140
  22789. }
  22790. },
  22791. back: {
  22792. height: math.unit(6, "feet"),
  22793. weight: math.unit(150, "lb"),
  22794. name: "Back",
  22795. image: {
  22796. source: "./media/characters/jaipur/back.svg",
  22797. extra: 4060 / 3930,
  22798. bottom: 151 / 4200
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(1.85, "meters"),
  22806. default: true
  22807. },
  22808. {
  22809. name: "Macro",
  22810. height: math.unit(150, "meters")
  22811. },
  22812. {
  22813. name: "Macro+",
  22814. height: math.unit(0.5, "miles")
  22815. },
  22816. {
  22817. name: "Macro++",
  22818. height: math.unit(2.5, "miles")
  22819. },
  22820. {
  22821. name: "Macro+++",
  22822. height: math.unit(12, "miles")
  22823. },
  22824. {
  22825. name: "Macro++++",
  22826. height: math.unit(120, "miles")
  22827. },
  22828. {
  22829. name: "Macro+++++",
  22830. height: math.unit(1200, "miles")
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22836. {
  22837. front: {
  22838. height: math.unit(6, "feet"),
  22839. weight: math.unit(150, "lb"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/sheila-wolf/front.svg",
  22843. extra: 1931 / 1808,
  22844. bottom: 29.5 / 1960
  22845. }
  22846. },
  22847. dick: {
  22848. height: math.unit(1.464, "feet"),
  22849. name: "Dick",
  22850. image: {
  22851. source: "./media/characters/sheila-wolf/dick.svg"
  22852. }
  22853. },
  22854. muzzle: {
  22855. height: math.unit(0.513, "feet"),
  22856. name: "Muzzle",
  22857. image: {
  22858. source: "./media/characters/sheila-wolf/muzzle.svg"
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Macro",
  22865. height: math.unit(70, "feet"),
  22866. default: true
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(32, "meters"),
  22875. weight: math.unit(300000, "kg"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/almor/front.svg",
  22879. extra: 1408 / 1322,
  22880. bottom: 94.6 / 1506.5
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Macro",
  22887. height: math.unit(32, "meters"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22894. {
  22895. front: {
  22896. height: math.unit(7, "feet"),
  22897. weight: math.unit(200, "lb"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/silver/front.svg",
  22901. extra: 472.1 / 450.5,
  22902. bottom: 26.5 / 499.424
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(7, "feet"),
  22910. default: true
  22911. },
  22912. {
  22913. name: "Macro",
  22914. height: math.unit(800, "feet")
  22915. },
  22916. {
  22917. name: "Megamacro",
  22918. height: math.unit(250, "miles")
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(6, "feet"),
  22927. weight: math.unit(150, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/pliskin/front.svg",
  22931. extra: 1469 / 1359,
  22932. bottom: 70 / 1540
  22933. }
  22934. },
  22935. },
  22936. [
  22937. {
  22938. name: "Micro",
  22939. height: math.unit(3, "inches")
  22940. },
  22941. {
  22942. name: "Normal",
  22943. height: math.unit(5 + 11 / 12, "feet"),
  22944. default: true
  22945. },
  22946. {
  22947. name: "Macro",
  22948. height: math.unit(120, "feet")
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22954. {
  22955. front: {
  22956. height: math.unit(6, "feet"),
  22957. weight: math.unit(150, "lb"),
  22958. name: "Front",
  22959. image: {
  22960. source: "./media/characters/sammy/front.svg",
  22961. extra: 1193 / 1089,
  22962. bottom: 30.5 / 1226
  22963. }
  22964. },
  22965. },
  22966. [
  22967. {
  22968. name: "Macro",
  22969. height: math.unit(1700, "feet"),
  22970. default: true
  22971. },
  22972. {
  22973. name: "Examacro",
  22974. height: math.unit(2.5e9, "lightyears")
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22980. {
  22981. front: {
  22982. height: math.unit(21, "meters"),
  22983. weight: math.unit(12, "tonnes"),
  22984. name: "Front",
  22985. image: {
  22986. source: "./media/characters/kuru/front.svg",
  22987. extra: 4301 / 3785,
  22988. bottom: 371.3 / 4691
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Macro",
  22995. height: math.unit(21, "meters"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(23, "meters"),
  23005. weight: math.unit(12.2, "tonnes"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/rakka/front.svg",
  23009. extra: 4670 / 4169,
  23010. bottom: 301 / 4968.7
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Macro",
  23017. height: math.unit(23, "meters"),
  23018. default: true
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23024. {
  23025. front: {
  23026. height: math.unit(6, "feet"),
  23027. weight: math.unit(150, "lb"),
  23028. name: "Front",
  23029. image: {
  23030. source: "./media/characters/rhys-feline/front.svg",
  23031. extra: 2488 / 2308,
  23032. bottom: 35.67 / 2519.19
  23033. }
  23034. },
  23035. },
  23036. [
  23037. {
  23038. name: "Really Small",
  23039. height: math.unit(1, "nm")
  23040. },
  23041. {
  23042. name: "Micro",
  23043. height: math.unit(4, "inches")
  23044. },
  23045. {
  23046. name: "Normal",
  23047. height: math.unit(4 + 10 / 12, "feet"),
  23048. default: true
  23049. },
  23050. {
  23051. name: "Macro",
  23052. height: math.unit(100, "feet")
  23053. },
  23054. {
  23055. name: "Megamacto",
  23056. height: math.unit(50, "miles")
  23057. },
  23058. ]
  23059. ))
  23060. characterMakers.push(() => makeCharacter(
  23061. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23062. {
  23063. side: {
  23064. height: math.unit(30, "feet"),
  23065. weight: math.unit(35000, "kg"),
  23066. name: "Side",
  23067. image: {
  23068. source: "./media/characters/alydar/side.svg",
  23069. extra: 234 / 222,
  23070. bottom: 6.5 / 241
  23071. }
  23072. },
  23073. front: {
  23074. height: math.unit(30, "feet"),
  23075. weight: math.unit(35000, "kg"),
  23076. name: "Front",
  23077. image: {
  23078. source: "./media/characters/alydar/front.svg",
  23079. extra: 223.37 / 210.2,
  23080. bottom: 22.3 / 246.76
  23081. }
  23082. },
  23083. top: {
  23084. height: math.unit(64.54, "feet"),
  23085. weight: math.unit(35000, "kg"),
  23086. name: "Top",
  23087. image: {
  23088. source: "./media/characters/alydar/top.svg"
  23089. }
  23090. },
  23091. anthro: {
  23092. height: math.unit(30, "feet"),
  23093. weight: math.unit(9000, "kg"),
  23094. name: "Anthro",
  23095. image: {
  23096. source: "./media/characters/alydar/anthro.svg",
  23097. extra: 432 / 421,
  23098. bottom: 7.18 / 440
  23099. }
  23100. },
  23101. maw: {
  23102. height: math.unit(11.693, "feet"),
  23103. name: "Maw",
  23104. image: {
  23105. source: "./media/characters/alydar/maw.svg"
  23106. }
  23107. },
  23108. head: {
  23109. height: math.unit(11.693, "feet"),
  23110. name: "Head",
  23111. image: {
  23112. source: "./media/characters/alydar/head.svg"
  23113. }
  23114. },
  23115. headAlt: {
  23116. height: math.unit(12.861, "feet"),
  23117. name: "Head (Alt)",
  23118. image: {
  23119. source: "./media/characters/alydar/head-alt.svg"
  23120. }
  23121. },
  23122. wing: {
  23123. height: math.unit(20.712, "feet"),
  23124. name: "Wing",
  23125. image: {
  23126. source: "./media/characters/alydar/wing.svg"
  23127. }
  23128. },
  23129. wingFeather: {
  23130. height: math.unit(9.662, "feet"),
  23131. name: "Wing Feather",
  23132. image: {
  23133. source: "./media/characters/alydar/wing-feather.svg"
  23134. }
  23135. },
  23136. countourFeather: {
  23137. height: math.unit(4.154, "feet"),
  23138. name: "Contour Feather",
  23139. image: {
  23140. source: "./media/characters/alydar/contour-feather.svg"
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Diplomatic",
  23147. height: math.unit(13, "feet"),
  23148. default: true
  23149. },
  23150. {
  23151. name: "Small",
  23152. height: math.unit(30, "feet")
  23153. },
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(95, "feet"),
  23157. default: true
  23158. },
  23159. {
  23160. name: "Large",
  23161. height: math.unit(285, "feet")
  23162. },
  23163. {
  23164. name: "Incomprehensible",
  23165. height: math.unit(450, "megameters")
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23171. {
  23172. side: {
  23173. height: math.unit(11, "feet"),
  23174. weight: math.unit(1750, "kg"),
  23175. name: "Side",
  23176. image: {
  23177. source: "./media/characters/selicia/side.svg",
  23178. extra: 440 / 396,
  23179. bottom: 24.8 / 465.979
  23180. }
  23181. },
  23182. maw: {
  23183. height: math.unit(4.665, "feet"),
  23184. name: "Maw",
  23185. image: {
  23186. source: "./media/characters/selicia/maw.svg"
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Normal",
  23193. height: math.unit(11, "feet"),
  23194. default: true
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23200. {
  23201. side: {
  23202. height: math.unit(2 + 6 / 12, "feet"),
  23203. weight: math.unit(30, "lb"),
  23204. name: "Side",
  23205. image: {
  23206. source: "./media/characters/layla/side.svg",
  23207. extra: 244 / 188,
  23208. bottom: 18.2 / 262.1
  23209. }
  23210. },
  23211. back: {
  23212. height: math.unit(2 + 6 / 12, "feet"),
  23213. weight: math.unit(30, "lb"),
  23214. name: "Back",
  23215. image: {
  23216. source: "./media/characters/layla/back.svg",
  23217. extra: 308 / 241.5,
  23218. bottom: 8.9 / 316.8
  23219. }
  23220. },
  23221. cumming: {
  23222. height: math.unit(2 + 6 / 12, "feet"),
  23223. weight: math.unit(30, "lb"),
  23224. name: "Cumming",
  23225. image: {
  23226. source: "./media/characters/layla/cumming.svg",
  23227. extra: 342 / 279,
  23228. bottom: 595 / 938
  23229. }
  23230. },
  23231. dickFlaccid: {
  23232. height: math.unit(2.595, "feet"),
  23233. name: "Flaccid Genitals",
  23234. image: {
  23235. source: "./media/characters/layla/dick-flaccid.svg"
  23236. }
  23237. },
  23238. dickErect: {
  23239. height: math.unit(2.359, "feet"),
  23240. name: "Erect Genitals",
  23241. image: {
  23242. source: "./media/characters/layla/dick-erect.svg"
  23243. }
  23244. },
  23245. dragon: {
  23246. height: math.unit(40, "feet"),
  23247. name: "Dragon",
  23248. image: {
  23249. source: "./media/characters/layla/dragon.svg",
  23250. extra: 610/535,
  23251. bottom: 367/977
  23252. }
  23253. },
  23254. taur: {
  23255. height: math.unit(30, "feet"),
  23256. name: "Taur",
  23257. image: {
  23258. source: "./media/characters/layla/taur.svg",
  23259. extra: 1268/1199,
  23260. bottom: 112/1380
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Micro",
  23267. height: math.unit(1, "inch")
  23268. },
  23269. {
  23270. name: "Small",
  23271. height: math.unit(1, "foot")
  23272. },
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(2 + 6 / 12, "feet"),
  23276. default: true
  23277. },
  23278. {
  23279. name: "Macro",
  23280. height: math.unit(200, "feet")
  23281. },
  23282. {
  23283. name: "Megamacro",
  23284. height: math.unit(1000, "miles")
  23285. },
  23286. {
  23287. name: "Planetary",
  23288. height: math.unit(8000, "miles")
  23289. },
  23290. {
  23291. name: "True Layla",
  23292. height: math.unit(200000 * 7, "multiverses")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23298. {
  23299. back: {
  23300. height: math.unit(10.5, "feet"),
  23301. weight: math.unit(800, "lb"),
  23302. name: "Back",
  23303. image: {
  23304. source: "./media/characters/knox/back.svg",
  23305. extra: 1486 / 1089,
  23306. bottom: 107 / 1601.4
  23307. }
  23308. },
  23309. side: {
  23310. height: math.unit(10.5, "feet"),
  23311. weight: math.unit(800, "lb"),
  23312. name: "Side",
  23313. image: {
  23314. source: "./media/characters/knox/side.svg",
  23315. extra: 244 / 218,
  23316. bottom: 14 / 260
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Compact",
  23323. height: math.unit(10.5, "feet"),
  23324. default: true
  23325. },
  23326. {
  23327. name: "Dynamax",
  23328. height: math.unit(210, "feet")
  23329. },
  23330. {
  23331. name: "Full Macro",
  23332. height: math.unit(850, "feet")
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(6, "feet"),
  23341. weight: math.unit(152, "lb"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/shin-pikachu/front.svg",
  23345. extra: 1854/1602,
  23346. bottom: 166/2020
  23347. }
  23348. },
  23349. hand: {
  23350. height: math.unit(1.055, "feet"),
  23351. name: "Hand",
  23352. image: {
  23353. source: "./media/characters/shin-pikachu/hand.svg"
  23354. }
  23355. },
  23356. foot: {
  23357. height: math.unit(1.1, "feet"),
  23358. name: "Foot",
  23359. image: {
  23360. source: "./media/characters/shin-pikachu/foot.svg"
  23361. }
  23362. },
  23363. collar: {
  23364. height: math.unit(0.386, "feet"),
  23365. name: "Collar",
  23366. image: {
  23367. source: "./media/characters/shin-pikachu/collar.svg"
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Smallest",
  23374. height: math.unit(0.5, "inches")
  23375. },
  23376. {
  23377. name: "Micro",
  23378. height: math.unit(6, "inches")
  23379. },
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(6, "feet"),
  23383. default: true
  23384. },
  23385. {
  23386. name: "Macro",
  23387. height: math.unit(150, "feet")
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(28, "feet"),
  23396. weight: math.unit(10500, "lb"),
  23397. name: "Front",
  23398. image: {
  23399. source: "./media/characters/kayda/front.svg",
  23400. extra: 1536 / 1428,
  23401. bottom: 68.7 / 1603
  23402. }
  23403. },
  23404. back: {
  23405. height: math.unit(28, "feet"),
  23406. weight: math.unit(10500, "lb"),
  23407. name: "Back",
  23408. image: {
  23409. source: "./media/characters/kayda/back.svg",
  23410. extra: 1557 / 1464,
  23411. bottom: 39.5 / 1597.49
  23412. }
  23413. },
  23414. dick: {
  23415. height: math.unit(3.858, "feet"),
  23416. name: "Dick",
  23417. image: {
  23418. source: "./media/characters/kayda/dick.svg"
  23419. }
  23420. },
  23421. },
  23422. [
  23423. {
  23424. name: "Macro",
  23425. height: math.unit(28, "feet"),
  23426. default: true
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(10 + 11 / 12, "feet"),
  23435. weight: math.unit(1400, "lb"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/brian/front.svg",
  23439. extra: 737 / 692,
  23440. bottom: 55.4 / 785
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Normal",
  23447. height: math.unit(10 + 11 / 12, "feet"),
  23448. default: true
  23449. },
  23450. ]
  23451. ))
  23452. characterMakers.push(() => makeCharacter(
  23453. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23454. {
  23455. front: {
  23456. height: math.unit(5 + 8 / 12, "feet"),
  23457. weight: math.unit(140, "lb"),
  23458. name: "Front",
  23459. image: {
  23460. source: "./media/characters/khemri/front.svg",
  23461. extra: 4780 / 4059,
  23462. bottom: 80.1 / 4859.25
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Micro",
  23469. height: math.unit(6, "inches")
  23470. },
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(5 + 8 / 12, "feet"),
  23474. default: true
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23480. {
  23481. front: {
  23482. height: math.unit(13, "feet"),
  23483. weight: math.unit(1700, "lb"),
  23484. name: "Front",
  23485. image: {
  23486. source: "./media/characters/felix-braveheart/front.svg",
  23487. extra: 1222 / 1157,
  23488. bottom: 53.2 / 1280
  23489. }
  23490. },
  23491. back: {
  23492. height: math.unit(13, "feet"),
  23493. weight: math.unit(1700, "lb"),
  23494. name: "Back",
  23495. image: {
  23496. source: "./media/characters/felix-braveheart/back.svg",
  23497. extra: 1277 / 1203,
  23498. bottom: 50.2 / 1327
  23499. }
  23500. },
  23501. feral: {
  23502. height: math.unit(6, "feet"),
  23503. weight: math.unit(400, "lb"),
  23504. name: "Feral",
  23505. image: {
  23506. source: "./media/characters/felix-braveheart/feral.svg",
  23507. extra: 682 / 625,
  23508. bottom: 6.9 / 688
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Normal",
  23515. height: math.unit(13, "feet"),
  23516. default: true
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23522. {
  23523. side: {
  23524. height: math.unit(5 + 11 / 12, "feet"),
  23525. weight: math.unit(1400, "lb"),
  23526. name: "Side",
  23527. image: {
  23528. source: "./media/characters/shadow-blade/side.svg",
  23529. extra: 1726 / 1267,
  23530. bottom: 58.4 / 1785
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Normal",
  23537. height: math.unit(5 + 11 / 12, "feet"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(1 + 6 / 12, "feet"),
  23547. weight: math.unit(25, "lb"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/karla-halldor/front.svg",
  23551. extra: 1459 / 1383,
  23552. bottom: 12 / 1472
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(1 + 6 / 12, "feet"),
  23560. default: true
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23566. {
  23567. front: {
  23568. height: math.unit(6 + 2 / 12, "feet"),
  23569. weight: math.unit(160, "lb"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/ariam/front.svg",
  23573. extra: 714 / 617,
  23574. bottom: 23.4 / 737,
  23575. }
  23576. },
  23577. squatting: {
  23578. height: math.unit(4.1, "feet"),
  23579. weight: math.unit(160, "lb"),
  23580. name: "Squatting",
  23581. image: {
  23582. source: "./media/characters/ariam/squatting.svg",
  23583. extra: 2617 / 2112,
  23584. bottom: 61.2 / 2681,
  23585. }
  23586. },
  23587. },
  23588. [
  23589. {
  23590. name: "Normal",
  23591. height: math.unit(6 + 2 / 12, "feet"),
  23592. default: true
  23593. },
  23594. {
  23595. name: "Normal+",
  23596. height: math.unit(4, "meters")
  23597. },
  23598. {
  23599. name: "Macro",
  23600. height: math.unit(50, "meters")
  23601. },
  23602. {
  23603. name: "Macro+",
  23604. height: math.unit(100, "meters")
  23605. },
  23606. {
  23607. name: "Megamacro",
  23608. height: math.unit(20, "km")
  23609. },
  23610. ]
  23611. ))
  23612. characterMakers.push(() => makeCharacter(
  23613. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23614. {
  23615. front: {
  23616. height: math.unit(1.67, "meters"),
  23617. weight: math.unit(140, "lb"),
  23618. name: "Front",
  23619. image: {
  23620. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23621. extra: 438 / 410,
  23622. bottom: 0.75 / 439
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Shrunken",
  23629. height: math.unit(7.6, "cm")
  23630. },
  23631. {
  23632. name: "Human Scale",
  23633. height: math.unit(1.67, "meters")
  23634. },
  23635. {
  23636. name: "Wolxi Scale",
  23637. height: math.unit(36.7, "meters"),
  23638. default: true
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23644. {
  23645. front: {
  23646. height: math.unit(1.73, "meters"),
  23647. weight: math.unit(240, "lb"),
  23648. name: "Front",
  23649. image: {
  23650. source: "./media/characters/izue-two-mothers/front.svg",
  23651. extra: 469 / 437,
  23652. bottom: 1.24 / 470.6
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Shrunken",
  23659. height: math.unit(7.86, "cm")
  23660. },
  23661. {
  23662. name: "Human Scale",
  23663. height: math.unit(1.73, "meters")
  23664. },
  23665. {
  23666. name: "Wolxi Scale",
  23667. height: math.unit(38, "meters"),
  23668. default: true
  23669. },
  23670. ]
  23671. ))
  23672. characterMakers.push(() => makeCharacter(
  23673. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23674. {
  23675. front: {
  23676. height: math.unit(1.55, "meters"),
  23677. weight: math.unit(120, "lb"),
  23678. name: "Front",
  23679. image: {
  23680. source: "./media/characters/teeku-love-shack/front.svg",
  23681. extra: 387 / 362,
  23682. bottom: 1.51 / 388
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Shrunken",
  23689. height: math.unit(7, "cm")
  23690. },
  23691. {
  23692. name: "Human Scale",
  23693. height: math.unit(1.55, "meters")
  23694. },
  23695. {
  23696. name: "Wolxi Scale",
  23697. height: math.unit(34.1, "meters"),
  23698. default: true
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23704. {
  23705. front: {
  23706. height: math.unit(1.83, "meters"),
  23707. weight: math.unit(135, "lb"),
  23708. name: "Front",
  23709. image: {
  23710. source: "./media/characters/dejma-the-red/front.svg",
  23711. extra: 480 / 458,
  23712. bottom: 1.8 / 482
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Shrunken",
  23719. height: math.unit(8.3, "cm")
  23720. },
  23721. {
  23722. name: "Human Scale",
  23723. height: math.unit(1.83, "meters")
  23724. },
  23725. {
  23726. name: "Wolxi Scale",
  23727. height: math.unit(40, "meters"),
  23728. default: true
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23734. {
  23735. front: {
  23736. height: math.unit(1.78, "meters"),
  23737. weight: math.unit(65, "kg"),
  23738. name: "Front",
  23739. image: {
  23740. source: "./media/characters/aki/front.svg",
  23741. extra: 452 / 415
  23742. }
  23743. },
  23744. frontNsfw: {
  23745. height: math.unit(1.78, "meters"),
  23746. weight: math.unit(65, "kg"),
  23747. name: "Front (NSFW)",
  23748. image: {
  23749. source: "./media/characters/aki/front-nsfw.svg",
  23750. extra: 452 / 415
  23751. }
  23752. },
  23753. back: {
  23754. height: math.unit(1.78, "meters"),
  23755. weight: math.unit(65, "kg"),
  23756. name: "Back",
  23757. image: {
  23758. source: "./media/characters/aki/back.svg",
  23759. extra: 452 / 415
  23760. }
  23761. },
  23762. rump: {
  23763. height: math.unit(2.05, "feet"),
  23764. name: "Rump",
  23765. image: {
  23766. source: "./media/characters/aki/rump.svg"
  23767. }
  23768. },
  23769. dick: {
  23770. height: math.unit(0.95, "feet"),
  23771. name: "Dick",
  23772. image: {
  23773. source: "./media/characters/aki/dick.svg"
  23774. }
  23775. },
  23776. },
  23777. [
  23778. {
  23779. name: "Micro",
  23780. height: math.unit(15, "cm")
  23781. },
  23782. {
  23783. name: "Normal",
  23784. height: math.unit(178, "cm"),
  23785. default: true
  23786. },
  23787. {
  23788. name: "Macro",
  23789. height: math.unit(214, "m")
  23790. },
  23791. {
  23792. name: "Macro+",
  23793. height: math.unit(534, "m")
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23799. {
  23800. front: {
  23801. height: math.unit(5 + 5 / 12, "feet"),
  23802. weight: math.unit(120, "lb"),
  23803. name: "Front",
  23804. image: {
  23805. source: "./media/characters/ari/front.svg",
  23806. extra: 714.5 / 682,
  23807. bottom: 8 / 722.5
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Normal",
  23814. height: math.unit(5 + 5 / 12, "feet")
  23815. },
  23816. {
  23817. name: "Macro",
  23818. height: math.unit(100, "feet"),
  23819. default: true
  23820. },
  23821. {
  23822. name: "Megamacro",
  23823. height: math.unit(100, "miles")
  23824. },
  23825. {
  23826. name: "Gigamacro",
  23827. height: math.unit(80000, "miles")
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23833. {
  23834. side: {
  23835. height: math.unit(9, "feet"),
  23836. weight: math.unit(400, "kg"),
  23837. name: "Side",
  23838. image: {
  23839. source: "./media/characters/bolt/side.svg",
  23840. extra: 1126 / 896,
  23841. bottom: 60 / 1187.3,
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Micro",
  23848. height: math.unit(5, "inches")
  23849. },
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(9, "feet"),
  23853. default: true
  23854. },
  23855. {
  23856. name: "Macro",
  23857. height: math.unit(700, "feet")
  23858. },
  23859. {
  23860. name: "Max Size",
  23861. height: math.unit(1.52e22, "yottameters")
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(4.53, "meters"),
  23870. weight: math.unit(3, "tons"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/draekon-sylviar/front.svg",
  23874. extra: 1228 / 1068,
  23875. bottom: 41 / 1270
  23876. }
  23877. },
  23878. tail: {
  23879. height: math.unit(1.772, "meter"),
  23880. name: "Tail",
  23881. image: {
  23882. source: "./media/characters/draekon-sylviar/tail.svg"
  23883. }
  23884. },
  23885. head: {
  23886. height: math.unit(1.331, "meter"),
  23887. name: "Head",
  23888. image: {
  23889. source: "./media/characters/draekon-sylviar/head.svg"
  23890. }
  23891. },
  23892. hand: {
  23893. height: math.unit(0.564, "meter"),
  23894. name: "Hand",
  23895. image: {
  23896. source: "./media/characters/draekon-sylviar/hand.svg"
  23897. }
  23898. },
  23899. foot: {
  23900. height: math.unit(0.621, "meter"),
  23901. name: "Foot",
  23902. image: {
  23903. source: "./media/characters/draekon-sylviar/foot.svg",
  23904. bottom: 32 / 324
  23905. }
  23906. },
  23907. dick: {
  23908. height: math.unit(61, "cm"),
  23909. name: "Dick",
  23910. image: {
  23911. source: "./media/characters/draekon-sylviar/dick.svg"
  23912. }
  23913. },
  23914. dickseparated: {
  23915. height: math.unit(61, "cm"),
  23916. name: "Dick-separated",
  23917. image: {
  23918. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Small",
  23925. height: math.unit(4.53 / 2, "meters"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Normal",
  23930. height: math.unit(4.53, "meters"),
  23931. default: true
  23932. },
  23933. {
  23934. name: "Large",
  23935. height: math.unit(4.53 * 2, "meters"),
  23936. },
  23937. ]
  23938. ))
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23941. {
  23942. front: {
  23943. height: math.unit(6 + 2 / 12, "feet"),
  23944. weight: math.unit(180, "lb"),
  23945. name: "Front",
  23946. image: {
  23947. source: "./media/characters/brawler/front.svg",
  23948. extra: 3301 / 3027,
  23949. bottom: 138 / 3439
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(6 + 2 / 12, "feet"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(11, "feet"),
  23966. weight: math.unit(1000, "lb"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/alex/front.svg",
  23970. bottom: 44.5 / 620
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Micro",
  23977. height: math.unit(5, "inches")
  23978. },
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(11, "feet"),
  23982. default: true
  23983. },
  23984. {
  23985. name: "Macro",
  23986. height: math.unit(9.5e9, "feet")
  23987. },
  23988. {
  23989. name: "Max Size",
  23990. height: math.unit(1.4e283, "yottameters")
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23996. {
  23997. female: {
  23998. height: math.unit(29.9, "m"),
  23999. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24000. name: "Female",
  24001. image: {
  24002. source: "./media/characters/zenari/female.svg",
  24003. extra: 3281.6 / 3217,
  24004. bottom: 72.2 / 3353
  24005. }
  24006. },
  24007. male: {
  24008. height: math.unit(27.7, "m"),
  24009. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24010. name: "Male",
  24011. image: {
  24012. source: "./media/characters/zenari/male.svg",
  24013. extra: 3008 / 2991,
  24014. bottom: 54.6 / 3069
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Macro",
  24021. height: math.unit(29.7, "meters"),
  24022. default: true
  24023. },
  24024. ]
  24025. ))
  24026. characterMakers.push(() => makeCharacter(
  24027. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24028. {
  24029. female: {
  24030. height: math.unit(23.8, "m"),
  24031. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24032. name: "Female",
  24033. image: {
  24034. source: "./media/characters/mactarian/female.svg",
  24035. extra: 2662 / 2569,
  24036. bottom: 73 / 2736
  24037. }
  24038. },
  24039. male: {
  24040. height: math.unit(23.8, "m"),
  24041. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24042. name: "Male",
  24043. image: {
  24044. source: "./media/characters/mactarian/male.svg",
  24045. extra: 2673 / 2600,
  24046. bottom: 76 / 2750
  24047. }
  24048. },
  24049. },
  24050. [
  24051. {
  24052. name: "Macro",
  24053. height: math.unit(23.8, "meters"),
  24054. default: true
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24060. {
  24061. female: {
  24062. height: math.unit(19.3, "m"),
  24063. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24064. name: "Female",
  24065. image: {
  24066. source: "./media/characters/umok/female.svg",
  24067. extra: 2186 / 2078,
  24068. bottom: 87 / 2277
  24069. }
  24070. },
  24071. male: {
  24072. height: math.unit(19.5, "m"),
  24073. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24074. name: "Male",
  24075. image: {
  24076. source: "./media/characters/umok/male.svg",
  24077. extra: 2233 / 2140,
  24078. bottom: 24.4 / 2258
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Macro",
  24085. height: math.unit(19.3, "meters"),
  24086. default: true
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24092. {
  24093. female: {
  24094. height: math.unit(26.15, "m"),
  24095. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24096. name: "Female",
  24097. image: {
  24098. source: "./media/characters/joraxian/female.svg",
  24099. extra: 2912 / 2824,
  24100. bottom: 36 / 2956
  24101. }
  24102. },
  24103. male: {
  24104. height: math.unit(25.4, "m"),
  24105. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24106. name: "Male",
  24107. image: {
  24108. source: "./media/characters/joraxian/male.svg",
  24109. extra: 2877 / 2721,
  24110. bottom: 82 / 2967
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Macro",
  24117. height: math.unit(26.15, "meters"),
  24118. default: true
  24119. },
  24120. ]
  24121. ))
  24122. characterMakers.push(() => makeCharacter(
  24123. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24124. {
  24125. female: {
  24126. height: math.unit(21.6, "m"),
  24127. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24128. name: "Female",
  24129. image: {
  24130. source: "./media/characters/sthara/female.svg",
  24131. extra: 2516 / 2347,
  24132. bottom: 21.5 / 2537
  24133. }
  24134. },
  24135. male: {
  24136. height: math.unit(24, "m"),
  24137. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24138. name: "Male",
  24139. image: {
  24140. source: "./media/characters/sthara/male.svg",
  24141. extra: 2732 / 2607,
  24142. bottom: 23 / 2732
  24143. }
  24144. },
  24145. },
  24146. [
  24147. {
  24148. name: "Macro",
  24149. height: math.unit(21.6, "meters"),
  24150. default: true
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24156. {
  24157. front: {
  24158. height: math.unit(6 + 4 / 12, "feet"),
  24159. weight: math.unit(175, "lb"),
  24160. name: "Front",
  24161. image: {
  24162. source: "./media/characters/luka-bryzant/front.svg",
  24163. extra: 311 / 289,
  24164. bottom: 4 / 315
  24165. }
  24166. },
  24167. back: {
  24168. height: math.unit(6 + 4 / 12, "feet"),
  24169. weight: math.unit(175, "lb"),
  24170. name: "Back",
  24171. image: {
  24172. source: "./media/characters/luka-bryzant/back.svg",
  24173. extra: 311 / 289,
  24174. bottom: 3.8 / 313.7
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Micro",
  24181. height: math.unit(10, "inches")
  24182. },
  24183. {
  24184. name: "Normal",
  24185. height: math.unit(6 + 4 / 12, "feet"),
  24186. default: true
  24187. },
  24188. {
  24189. name: "Large",
  24190. height: math.unit(12, "feet")
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24196. {
  24197. front: {
  24198. height: math.unit(5 + 7 / 12, "feet"),
  24199. weight: math.unit(185, "lb"),
  24200. name: "Front",
  24201. image: {
  24202. source: "./media/characters/aman-aquila/front.svg",
  24203. extra: 1013 / 976,
  24204. bottom: 45.6 / 1057
  24205. }
  24206. },
  24207. side: {
  24208. height: math.unit(5 + 7 / 12, "feet"),
  24209. weight: math.unit(185, "lb"),
  24210. name: "Side",
  24211. image: {
  24212. source: "./media/characters/aman-aquila/side.svg",
  24213. extra: 1054 / 1011,
  24214. bottom: 15 / 1070
  24215. }
  24216. },
  24217. back: {
  24218. height: math.unit(5 + 7 / 12, "feet"),
  24219. weight: math.unit(185, "lb"),
  24220. name: "Back",
  24221. image: {
  24222. source: "./media/characters/aman-aquila/back.svg",
  24223. extra: 1026 / 970,
  24224. bottom: 12 / 1039
  24225. }
  24226. },
  24227. head: {
  24228. height: math.unit(1.211, "feet"),
  24229. name: "Head",
  24230. image: {
  24231. source: "./media/characters/aman-aquila/head.svg",
  24232. }
  24233. },
  24234. },
  24235. [
  24236. {
  24237. name: "Minimicro",
  24238. height: math.unit(0.057, "inches")
  24239. },
  24240. {
  24241. name: "Micro",
  24242. height: math.unit(7, "inches")
  24243. },
  24244. {
  24245. name: "Mini",
  24246. height: math.unit(3 + 7 / 12, "feet")
  24247. },
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(5 + 7 / 12, "feet"),
  24251. default: true
  24252. },
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(157 + 7 / 12, "feet")
  24256. },
  24257. {
  24258. name: "Megamacro",
  24259. height: math.unit(1557 + 7 / 12, "feet")
  24260. },
  24261. {
  24262. name: "Gigamacro",
  24263. height: math.unit(15557 + 7 / 12, "feet")
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24269. {
  24270. front: {
  24271. height: math.unit(3 + 2 / 12, "inches"),
  24272. weight: math.unit(0.3, "ounces"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/hiphae/front.svg",
  24276. extra: 1931 / 1683,
  24277. bottom: 24 / 1955
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(3 + 1 / 2, "inches"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24291. {
  24292. front: {
  24293. height: math.unit(5 + 10 / 12, "feet"),
  24294. weight: math.unit(165, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/nicky/front.svg",
  24298. extra: 3144 / 2886,
  24299. bottom: 45.6 / 3192
  24300. }
  24301. },
  24302. back: {
  24303. height: math.unit(5 + 10 / 12, "feet"),
  24304. weight: math.unit(165, "lb"),
  24305. name: "Back",
  24306. image: {
  24307. source: "./media/characters/nicky/back.svg",
  24308. extra: 3055 / 2804,
  24309. bottom: 28.4 / 3087
  24310. }
  24311. },
  24312. frontclothed: {
  24313. height: math.unit(5 + 10 / 12, "feet"),
  24314. weight: math.unit(165, "lb"),
  24315. name: "Front-clothed",
  24316. image: {
  24317. source: "./media/characters/nicky/front-clothed.svg",
  24318. extra: 3184.9 / 2926.9,
  24319. bottom: 86.5 / 3239.9
  24320. }
  24321. },
  24322. foot: {
  24323. height: math.unit(1.16, "feet"),
  24324. name: "Foot",
  24325. image: {
  24326. source: "./media/characters/nicky/foot.svg"
  24327. }
  24328. },
  24329. feet: {
  24330. height: math.unit(1.34, "feet"),
  24331. name: "Feet",
  24332. image: {
  24333. source: "./media/characters/nicky/feet.svg"
  24334. }
  24335. },
  24336. maw: {
  24337. height: math.unit(0.9, "feet"),
  24338. name: "Maw",
  24339. image: {
  24340. source: "./media/characters/nicky/maw.svg"
  24341. }
  24342. },
  24343. },
  24344. [
  24345. {
  24346. name: "Normal",
  24347. height: math.unit(5 + 10 / 12, "feet"),
  24348. default: true
  24349. },
  24350. {
  24351. name: "Macro",
  24352. height: math.unit(60, "feet")
  24353. },
  24354. {
  24355. name: "Megamacro",
  24356. height: math.unit(1, "mile")
  24357. },
  24358. ]
  24359. ))
  24360. characterMakers.push(() => makeCharacter(
  24361. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24362. {
  24363. side: {
  24364. height: math.unit(10, "feet"),
  24365. weight: math.unit(600, "lb"),
  24366. name: "Side",
  24367. image: {
  24368. source: "./media/characters/blair/side.svg",
  24369. bottom: 16.6 / 475,
  24370. extra: 458 / 431
  24371. }
  24372. },
  24373. },
  24374. [
  24375. {
  24376. name: "Micro",
  24377. height: math.unit(8, "inches")
  24378. },
  24379. {
  24380. name: "Normal",
  24381. height: math.unit(10, "feet"),
  24382. default: true
  24383. },
  24384. {
  24385. name: "Macro",
  24386. height: math.unit(180, "feet")
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(5 + 4 / 12, "feet"),
  24395. weight: math.unit(125, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/fisher/front.svg",
  24399. extra: 444 / 390,
  24400. bottom: 2 / 444.8
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Micro",
  24407. height: math.unit(4, "inches")
  24408. },
  24409. {
  24410. name: "Normal",
  24411. height: math.unit(5 + 4 / 12, "feet"),
  24412. default: true
  24413. },
  24414. {
  24415. name: "Macro",
  24416. height: math.unit(100, "feet")
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(6.71, "feet"),
  24425. weight: math.unit(200, "lb"),
  24426. capacity: math.unit(1000000, "people"),
  24427. name: "Front",
  24428. image: {
  24429. source: "./media/characters/gliss/front.svg",
  24430. extra: 2347 / 2231,
  24431. bottom: 113 / 2462
  24432. }
  24433. },
  24434. hammerspaceSize: {
  24435. height: math.unit(6.71 * 717, "feet"),
  24436. weight: math.unit(200, "lb"),
  24437. capacity: math.unit(1000000, "people"),
  24438. name: "Hammerspace Size",
  24439. image: {
  24440. source: "./media/characters/gliss/front.svg",
  24441. extra: 2347 / 2231,
  24442. bottom: 113 / 2462
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(6.71, "feet"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24456. {
  24457. side: {
  24458. height: math.unit(1.44, "m"),
  24459. weight: math.unit(80, "kg"),
  24460. name: "Side",
  24461. image: {
  24462. source: "./media/characters/dune-anderson/side.svg",
  24463. bottom: 49 / 1426
  24464. }
  24465. },
  24466. },
  24467. [
  24468. {
  24469. name: "Wolf-sized",
  24470. height: math.unit(1.44, "meters")
  24471. },
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(5.05, "meters"),
  24475. default: true
  24476. },
  24477. {
  24478. name: "Big",
  24479. height: math.unit(14.4, "meters")
  24480. },
  24481. {
  24482. name: "Huge",
  24483. height: math.unit(144, "meters")
  24484. },
  24485. ]
  24486. ))
  24487. characterMakers.push(() => makeCharacter(
  24488. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24489. {
  24490. front: {
  24491. height: math.unit(7, "feet"),
  24492. weight: math.unit(425, "lb"),
  24493. name: "Front",
  24494. image: {
  24495. source: "./media/characters/hind/front.svg",
  24496. extra: 2091 / 1860,
  24497. bottom: 129 / 2220
  24498. }
  24499. },
  24500. back: {
  24501. height: math.unit(7, "feet"),
  24502. weight: math.unit(425, "lb"),
  24503. name: "Back",
  24504. image: {
  24505. source: "./media/characters/hind/back.svg",
  24506. extra: 2091 / 1860,
  24507. bottom: 24.6 / 2309
  24508. }
  24509. },
  24510. tail: {
  24511. height: math.unit(2.8, "feet"),
  24512. name: "Tail",
  24513. image: {
  24514. source: "./media/characters/hind/tail.svg"
  24515. }
  24516. },
  24517. head: {
  24518. height: math.unit(2.55, "feet"),
  24519. name: "Head",
  24520. image: {
  24521. source: "./media/characters/hind/head.svg"
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "XS",
  24528. height: math.unit(0.7, "feet")
  24529. },
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(7, "feet"),
  24533. default: true
  24534. },
  24535. {
  24536. name: "XL",
  24537. height: math.unit(70, "feet")
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(6, "feet"),
  24546. weight: math.unit(150, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/dylan-skaven/front.svg",
  24550. extra: 2318 / 2063,
  24551. bottom: 93.4 / 2410
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Nano",
  24558. height: math.unit(1, "mm")
  24559. },
  24560. {
  24561. name: "Micro",
  24562. height: math.unit(1, "cm")
  24563. },
  24564. {
  24565. name: "Normal",
  24566. height: math.unit(2.1, "meters"),
  24567. default: true
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24573. {
  24574. front: {
  24575. height: math.unit(7 + 5 / 12, "feet"),
  24576. weight: math.unit(357, "lb"),
  24577. name: "Front",
  24578. image: {
  24579. source: "./media/characters/solex-draconov/front.svg",
  24580. extra: 1993 / 1865,
  24581. bottom: 117 / 2111
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Natural Height",
  24588. height: math.unit(7 + 5 / 12, "feet"),
  24589. default: true
  24590. },
  24591. {
  24592. name: "Macro",
  24593. height: math.unit(350, "feet")
  24594. },
  24595. {
  24596. name: "Macro+",
  24597. height: math.unit(1000, "feet")
  24598. },
  24599. {
  24600. name: "Megamacro",
  24601. height: math.unit(20, "km")
  24602. },
  24603. {
  24604. name: "Megamacro+",
  24605. height: math.unit(1000, "km")
  24606. },
  24607. {
  24608. name: "Gigamacro",
  24609. height: math.unit(2.5, "Gm")
  24610. },
  24611. {
  24612. name: "Teramacro",
  24613. height: math.unit(15, "Tm")
  24614. },
  24615. {
  24616. name: "Galactic",
  24617. height: math.unit(30, "Zm")
  24618. },
  24619. {
  24620. name: "Universal",
  24621. height: math.unit(21000, "Ym")
  24622. },
  24623. {
  24624. name: "Omniversal",
  24625. height: math.unit(9.861e50, "Ym")
  24626. },
  24627. {
  24628. name: "Existential",
  24629. height: math.unit(1e300, "meters")
  24630. },
  24631. ]
  24632. ))
  24633. characterMakers.push(() => makeCharacter(
  24634. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24635. {
  24636. side: {
  24637. height: math.unit(25, "feet"),
  24638. weight: math.unit(90000, "lb"),
  24639. name: "Side",
  24640. image: {
  24641. source: "./media/characters/mandarax/side.svg",
  24642. extra: 614 / 332,
  24643. bottom: 55 / 630
  24644. }
  24645. },
  24646. head: {
  24647. height: math.unit(11.4, "feet"),
  24648. name: "Head",
  24649. image: {
  24650. source: "./media/characters/mandarax/head.svg"
  24651. }
  24652. },
  24653. belly: {
  24654. height: math.unit(33, "feet"),
  24655. name: "Belly",
  24656. capacity: math.unit(500, "people"),
  24657. image: {
  24658. source: "./media/characters/mandarax/belly.svg"
  24659. }
  24660. },
  24661. dick: {
  24662. height: math.unit(8.46, "feet"),
  24663. name: "Dick",
  24664. image: {
  24665. source: "./media/characters/mandarax/dick.svg"
  24666. }
  24667. },
  24668. top: {
  24669. height: math.unit(28, "meters"),
  24670. name: "Top",
  24671. image: {
  24672. source: "./media/characters/mandarax/top.svg"
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(25, "feet"),
  24680. default: true
  24681. },
  24682. ]
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24686. {
  24687. front: {
  24688. height: math.unit(5, "feet"),
  24689. weight: math.unit(90, "lb"),
  24690. name: "Front",
  24691. image: {
  24692. source: "./media/characters/pixil/front.svg",
  24693. extra: 2000 / 1618,
  24694. bottom: 12.3 / 2011
  24695. }
  24696. },
  24697. },
  24698. [
  24699. {
  24700. name: "Normal",
  24701. height: math.unit(5, "feet"),
  24702. default: true
  24703. },
  24704. {
  24705. name: "Megamacro",
  24706. height: math.unit(10, "miles"),
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(7 + 2 / 12, "feet"),
  24715. weight: math.unit(200, "lb"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/angel/front.svg",
  24719. extra: 1830 / 1737,
  24720. bottom: 22.6 / 1854,
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(7 + 2 / 12, "feet"),
  24728. default: true
  24729. },
  24730. {
  24731. name: "Macro",
  24732. height: math.unit(1000, "feet")
  24733. },
  24734. {
  24735. name: "Megamacro",
  24736. height: math.unit(2, "miles")
  24737. },
  24738. {
  24739. name: "Gigamacro",
  24740. height: math.unit(20, "earths")
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24746. {
  24747. front: {
  24748. height: math.unit(5, "feet"),
  24749. weight: math.unit(180, "lb"),
  24750. name: "Front",
  24751. image: {
  24752. source: "./media/characters/mekana/front.svg",
  24753. extra: 1671 / 1605,
  24754. bottom: 3.5 / 1691
  24755. }
  24756. },
  24757. side: {
  24758. height: math.unit(5, "feet"),
  24759. weight: math.unit(180, "lb"),
  24760. name: "Side",
  24761. image: {
  24762. source: "./media/characters/mekana/side.svg",
  24763. extra: 1671 / 1605,
  24764. bottom: 3.5 / 1691
  24765. }
  24766. },
  24767. back: {
  24768. height: math.unit(5, "feet"),
  24769. weight: math.unit(180, "lb"),
  24770. name: "Back",
  24771. image: {
  24772. source: "./media/characters/mekana/back.svg",
  24773. extra: 1671 / 1605,
  24774. bottom: 3.5 / 1691
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(5, "feet"),
  24782. default: true
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(4 + 6 / 12, "feet"),
  24791. weight: math.unit(80, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/pixie/front.svg",
  24795. extra: 1924 / 1825,
  24796. bottom: 22.4 / 1946
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(4 + 6 / 12, "feet"),
  24804. default: true
  24805. },
  24806. {
  24807. name: "Macro",
  24808. height: math.unit(40, "feet")
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(2.1, "meters"),
  24817. weight: math.unit(200, "lb"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/the-lascivious/front.svg",
  24821. extra: 1 / 0.893,
  24822. bottom: 3.5 / 573.7
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Human Scale",
  24829. height: math.unit(2.1, "meters")
  24830. },
  24831. {
  24832. name: "Wolxi Scale",
  24833. height: math.unit(46.2, "m"),
  24834. default: true
  24835. },
  24836. {
  24837. name: "Boinker of Buildings",
  24838. height: math.unit(10, "km")
  24839. },
  24840. {
  24841. name: "Shagger of Skyscrapers",
  24842. height: math.unit(40, "km")
  24843. },
  24844. {
  24845. name: "Banger of Boroughs",
  24846. height: math.unit(4000, "km")
  24847. },
  24848. {
  24849. name: "Screwer of States",
  24850. height: math.unit(100000, "km")
  24851. },
  24852. {
  24853. name: "Pounder of Planets",
  24854. height: math.unit(2000000, "km")
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24860. {
  24861. front: {
  24862. height: math.unit(6, "feet"),
  24863. weight: math.unit(150, "lb"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/aj/front.svg",
  24867. extra: 2039 / 1562,
  24868. bottom: 40 / 2079
  24869. }
  24870. },
  24871. },
  24872. [
  24873. {
  24874. name: "Normal",
  24875. height: math.unit(11 + 6 / 12, "feet"),
  24876. default: true
  24877. },
  24878. {
  24879. name: "Megamacro",
  24880. height: math.unit(60, "megameters")
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24886. {
  24887. side: {
  24888. height: math.unit(31 + 8 / 12, "feet"),
  24889. weight: math.unit(75000, "kg"),
  24890. name: "Side",
  24891. image: {
  24892. source: "./media/characters/koros/side.svg",
  24893. extra: 1442 / 1297,
  24894. bottom: 122.7 / 1562
  24895. }
  24896. },
  24897. dicksKingsCrown: {
  24898. height: math.unit(6, "feet"),
  24899. name: "Dicks (King's Crown)",
  24900. image: {
  24901. source: "./media/characters/koros/dicks-kings-crown.svg"
  24902. }
  24903. },
  24904. dicksTailSet: {
  24905. height: math.unit(3, "feet"),
  24906. name: "Dicks (Tail Set)",
  24907. image: {
  24908. source: "./media/characters/koros/dicks-tail-set.svg"
  24909. }
  24910. },
  24911. dickCumming: {
  24912. height: math.unit(7.98, "feet"),
  24913. name: "Dick (Cumming)",
  24914. image: {
  24915. source: "./media/characters/koros/dick-cumming.svg"
  24916. }
  24917. },
  24918. dicksBack: {
  24919. height: math.unit(5.9, "feet"),
  24920. name: "Dicks (Back)",
  24921. image: {
  24922. source: "./media/characters/koros/dicks-back.svg"
  24923. }
  24924. },
  24925. dicksFront: {
  24926. height: math.unit(3.72, "feet"),
  24927. name: "Dicks (Front)",
  24928. image: {
  24929. source: "./media/characters/koros/dicks-front.svg"
  24930. }
  24931. },
  24932. dicksPeeking: {
  24933. height: math.unit(3.0, "feet"),
  24934. name: "Dicks (Peeking)",
  24935. image: {
  24936. source: "./media/characters/koros/dicks-peeking.svg"
  24937. }
  24938. },
  24939. eye: {
  24940. height: math.unit(1.7, "feet"),
  24941. name: "Eye",
  24942. image: {
  24943. source: "./media/characters/koros/eye.svg"
  24944. }
  24945. },
  24946. headFront: {
  24947. height: math.unit(11.69, "feet"),
  24948. name: "Head (Front)",
  24949. image: {
  24950. source: "./media/characters/koros/head-front.svg"
  24951. }
  24952. },
  24953. headSide: {
  24954. height: math.unit(14, "feet"),
  24955. name: "Head (Side)",
  24956. image: {
  24957. source: "./media/characters/koros/head-side.svg"
  24958. }
  24959. },
  24960. leg: {
  24961. height: math.unit(17, "feet"),
  24962. name: "Leg",
  24963. image: {
  24964. source: "./media/characters/koros/leg.svg"
  24965. }
  24966. },
  24967. mawSide: {
  24968. height: math.unit(12.8, "feet"),
  24969. name: "Maw (Side)",
  24970. image: {
  24971. source: "./media/characters/koros/maw-side.svg"
  24972. }
  24973. },
  24974. mawSpitting: {
  24975. height: math.unit(17, "feet"),
  24976. name: "Maw (Spitting)",
  24977. image: {
  24978. source: "./media/characters/koros/maw-spitting.svg"
  24979. }
  24980. },
  24981. slit: {
  24982. height: math.unit(2.8, "feet"),
  24983. name: "Slit",
  24984. image: {
  24985. source: "./media/characters/koros/slit.svg"
  24986. }
  24987. },
  24988. stomach: {
  24989. height: math.unit(6.8, "feet"),
  24990. capacity: math.unit(20, "people"),
  24991. name: "Stomach",
  24992. image: {
  24993. source: "./media/characters/koros/stomach.svg"
  24994. }
  24995. },
  24996. wingspanBottom: {
  24997. height: math.unit(114, "feet"),
  24998. name: "Wingspan (Bottom)",
  24999. image: {
  25000. source: "./media/characters/koros/wingspan-bottom.svg"
  25001. }
  25002. },
  25003. wingspanTop: {
  25004. height: math.unit(104, "feet"),
  25005. name: "Wingspan (Top)",
  25006. image: {
  25007. source: "./media/characters/koros/wingspan-top.svg"
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Normal",
  25014. height: math.unit(31 + 8 / 12, "feet"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25021. {
  25022. front: {
  25023. height: math.unit(18 + 5 / 12, "feet"),
  25024. weight: math.unit(3750, "kg"),
  25025. name: "Front",
  25026. image: {
  25027. source: "./media/characters/vexx/front.svg",
  25028. extra: 426 / 396,
  25029. bottom: 31.5 / 458
  25030. }
  25031. },
  25032. maw: {
  25033. height: math.unit(6, "feet"),
  25034. name: "Maw",
  25035. image: {
  25036. source: "./media/characters/vexx/maw.svg"
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Normal",
  25043. height: math.unit(18 + 5 / 12, "feet"),
  25044. default: true
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25050. {
  25051. front: {
  25052. height: math.unit(17 + 6 / 12, "feet"),
  25053. weight: math.unit(150, "lb"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/baadra/front.svg",
  25057. extra: 3137 / 2890,
  25058. bottom: 168.4 / 3305
  25059. }
  25060. },
  25061. back: {
  25062. height: math.unit(17 + 6 / 12, "feet"),
  25063. weight: math.unit(150, "lb"),
  25064. name: "Back",
  25065. image: {
  25066. source: "./media/characters/baadra/back.svg",
  25067. extra: 3142 / 2890,
  25068. bottom: 220 / 3371
  25069. }
  25070. },
  25071. head: {
  25072. height: math.unit(5.45, "feet"),
  25073. name: "Head",
  25074. image: {
  25075. source: "./media/characters/baadra/head.svg"
  25076. }
  25077. },
  25078. headAngry: {
  25079. height: math.unit(4.95, "feet"),
  25080. name: "Head (Angry)",
  25081. image: {
  25082. source: "./media/characters/baadra/head-angry.svg"
  25083. }
  25084. },
  25085. headOpen: {
  25086. height: math.unit(6, "feet"),
  25087. name: "Head (Open)",
  25088. image: {
  25089. source: "./media/characters/baadra/head-open.svg"
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(17 + 6 / 12, "feet"),
  25097. default: true
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(7 + 3 / 12, "feet"),
  25106. weight: math.unit(180, "lb"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/juri/front.svg",
  25110. extra: 1401 / 1237,
  25111. bottom: 18.5 / 1418
  25112. }
  25113. },
  25114. side: {
  25115. height: math.unit(7 + 3 / 12, "feet"),
  25116. weight: math.unit(180, "lb"),
  25117. name: "Side",
  25118. image: {
  25119. source: "./media/characters/juri/side.svg",
  25120. extra: 1424 / 1242,
  25121. bottom: 18.5 / 1447
  25122. }
  25123. },
  25124. sitting: {
  25125. height: math.unit(6, "feet"),
  25126. weight: math.unit(180, "lb"),
  25127. name: "Sitting",
  25128. image: {
  25129. source: "./media/characters/juri/sitting.svg",
  25130. extra: 1270 / 1143,
  25131. bottom: 100 / 1343
  25132. }
  25133. },
  25134. back: {
  25135. height: math.unit(7 + 3 / 12, "feet"),
  25136. weight: math.unit(180, "lb"),
  25137. name: "Back",
  25138. image: {
  25139. source: "./media/characters/juri/back.svg",
  25140. extra: 1377 / 1240,
  25141. bottom: 23.7 / 1405
  25142. }
  25143. },
  25144. maw: {
  25145. height: math.unit(2.8, "feet"),
  25146. name: "Maw",
  25147. image: {
  25148. source: "./media/characters/juri/maw.svg"
  25149. }
  25150. },
  25151. stomach: {
  25152. height: math.unit(0.89, "feet"),
  25153. capacity: math.unit(4, "liters"),
  25154. name: "Stomach",
  25155. image: {
  25156. source: "./media/characters/juri/stomach.svg"
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(7 + 3 / 12, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25170. {
  25171. fox: {
  25172. height: math.unit(5 + 6 / 12, "feet"),
  25173. weight: math.unit(140, "lb"),
  25174. name: "Fox",
  25175. image: {
  25176. source: "./media/characters/maxene-sita/fox.svg",
  25177. extra: 146 / 138,
  25178. bottom: 2.1 / 148.19
  25179. }
  25180. },
  25181. foxLaying: {
  25182. height: math.unit(1.70, "feet"),
  25183. weight: math.unit(140, "lb"),
  25184. name: "Fox (Laying)",
  25185. image: {
  25186. source: "./media/characters/maxene-sita/fox-laying.svg",
  25187. extra: 910 / 572,
  25188. bottom: 71 / 981
  25189. }
  25190. },
  25191. kitsune: {
  25192. height: math.unit(10, "feet"),
  25193. weight: math.unit(800, "lb"),
  25194. name: "Kitsune",
  25195. image: {
  25196. source: "./media/characters/maxene-sita/kitsune.svg",
  25197. extra: 185 / 176,
  25198. bottom: 4.7 / 189.9
  25199. }
  25200. },
  25201. hellhound: {
  25202. height: math.unit(10, "feet"),
  25203. weight: math.unit(700, "lb"),
  25204. name: "Hellhound",
  25205. image: {
  25206. source: "./media/characters/maxene-sita/hellhound.svg",
  25207. extra: 1600 / 1545,
  25208. bottom: 81 / 1681
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(5 + 6 / 12, "feet"),
  25216. default: true
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25222. {
  25223. front: {
  25224. height: math.unit(3 + 4 / 12, "feet"),
  25225. weight: math.unit(70, "lb"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/maia/front.svg",
  25229. extra: 227 / 219.5,
  25230. bottom: 40 / 267
  25231. }
  25232. },
  25233. back: {
  25234. height: math.unit(3 + 4 / 12, "feet"),
  25235. weight: math.unit(70, "lb"),
  25236. name: "Back",
  25237. image: {
  25238. source: "./media/characters/maia/back.svg",
  25239. extra: 237 / 225
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(3 + 4 / 12, "feet"),
  25247. default: true
  25248. },
  25249. ]
  25250. ))
  25251. characterMakers.push(() => makeCharacter(
  25252. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25253. {
  25254. front: {
  25255. height: math.unit(5 + 10 / 12, "feet"),
  25256. weight: math.unit(197, "lb"),
  25257. name: "Front",
  25258. image: {
  25259. source: "./media/characters/jabaro/front.svg",
  25260. extra: 225 / 216,
  25261. bottom: 5.06 / 230
  25262. }
  25263. },
  25264. back: {
  25265. height: math.unit(5 + 10 / 12, "feet"),
  25266. weight: math.unit(197, "lb"),
  25267. name: "Back",
  25268. image: {
  25269. source: "./media/characters/jabaro/back.svg",
  25270. extra: 225 / 219,
  25271. bottom: 1.9 / 227
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Normal",
  25278. height: math.unit(5 + 10 / 12, "feet"),
  25279. default: true
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25285. {
  25286. front: {
  25287. height: math.unit(5 + 8 / 12, "feet"),
  25288. weight: math.unit(139, "lb"),
  25289. name: "Front",
  25290. image: {
  25291. source: "./media/characters/risa/front.svg",
  25292. extra: 270 / 260,
  25293. bottom: 11.2 / 282
  25294. }
  25295. },
  25296. back: {
  25297. height: math.unit(5 + 8 / 12, "feet"),
  25298. weight: math.unit(139, "lb"),
  25299. name: "Back",
  25300. image: {
  25301. source: "./media/characters/risa/back.svg",
  25302. extra: 264 / 255,
  25303. bottom: 4 / 268
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Normal",
  25310. height: math.unit(5 + 8 / 12, "feet"),
  25311. default: true
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(2 + 11 / 12, "feet"),
  25320. weight: math.unit(30, "lb"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/weatley/front.svg",
  25324. bottom: 10.7 / 414,
  25325. extra: 403.5 / 362
  25326. }
  25327. },
  25328. back: {
  25329. height: math.unit(2 + 11 / 12, "feet"),
  25330. weight: math.unit(30, "lb"),
  25331. name: "Back",
  25332. image: {
  25333. source: "./media/characters/weatley/back.svg",
  25334. bottom: 10.7 / 414,
  25335. extra: 403.5 / 362
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Normal",
  25342. height: math.unit(2 + 11 / 12, "feet"),
  25343. default: true
  25344. },
  25345. ]
  25346. ))
  25347. characterMakers.push(() => makeCharacter(
  25348. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25349. {
  25350. front: {
  25351. height: math.unit(5 + 2 / 12, "feet"),
  25352. weight: math.unit(50, "kg"),
  25353. name: "Front",
  25354. image: {
  25355. source: "./media/characters/mercury-crescent/front.svg",
  25356. extra: 1088 / 1033,
  25357. bottom: 18.9 / 1109
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Normal",
  25364. height: math.unit(5 + 2 / 12, "feet"),
  25365. default: true
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25371. {
  25372. front: {
  25373. height: math.unit(2, "feet"),
  25374. weight: math.unit(15, "kg"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/diamond-jones/front.svg",
  25378. bottom: 16 / 568
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Normal",
  25385. height: math.unit(2, "feet"),
  25386. default: true
  25387. },
  25388. ]
  25389. ))
  25390. characterMakers.push(() => makeCharacter(
  25391. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25392. {
  25393. front: {
  25394. height: math.unit(3, "feet"),
  25395. weight: math.unit(30, "kg"),
  25396. name: "Front",
  25397. image: {
  25398. source: "./media/characters/sweet-bit/front.svg",
  25399. extra: 675 / 567,
  25400. bottom: 27.7 / 703
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(3, "feet"),
  25408. default: true
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25414. {
  25415. side: {
  25416. height: math.unit(9.178, "feet"),
  25417. weight: math.unit(500, "lb"),
  25418. name: "Side",
  25419. image: {
  25420. source: "./media/characters/umbrazen/side.svg",
  25421. extra: 1730 / 1473,
  25422. bottom: 34.6 / 1765
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(9.178, "feet"),
  25430. default: true
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(10, "feet"),
  25439. weight: math.unit(750, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/arlist/front.svg",
  25443. extra: 961 / 778,
  25444. bottom: 6.2 / 986
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(10, "feet"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(5 + 1 / 12, "feet"),
  25461. weight: math.unit(110, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/aradel/front.svg",
  25465. extra: 324 / 303,
  25466. bottom: 3.6 / 329.4
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(5 + 1 / 12, "feet"),
  25474. default: true
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25480. {
  25481. front: {
  25482. height: math.unit(3 + 8 / 12, "feet"),
  25483. weight: math.unit(50, "lb"),
  25484. name: "Front",
  25485. image: {
  25486. source: "./media/characters/serryn/front.svg",
  25487. extra: 1792 / 1656,
  25488. bottom: 43.5 / 1840
  25489. }
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Normal",
  25495. height: math.unit(3 + 8 / 12, "feet"),
  25496. default: true
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Xavier Thyme" },
  25502. {
  25503. front: {
  25504. height: math.unit(7 + 10 / 12, "feet"),
  25505. weight: math.unit(255, "lb"),
  25506. name: "Front",
  25507. image: {
  25508. source: "./media/characters/xavier-thyme/front.svg",
  25509. extra: 3733 / 3642,
  25510. bottom: 131 / 3869
  25511. }
  25512. },
  25513. frontRaven: {
  25514. height: math.unit(7 + 10 / 12, "feet"),
  25515. weight: math.unit(255, "lb"),
  25516. name: "Front (Raven)",
  25517. image: {
  25518. source: "./media/characters/xavier-thyme/front-raven.svg",
  25519. extra: 4385 / 3642,
  25520. bottom: 131 / 4517
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(7 + 10 / 12, "feet"),
  25528. default: true
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(1.6, "m"),
  25537. weight: math.unit(50, "kg"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/kiki/front.svg",
  25541. extra: 4682 / 3610,
  25542. bottom: 115 / 4777
  25543. }
  25544. },
  25545. },
  25546. [
  25547. {
  25548. name: "Normal",
  25549. height: math.unit(1.6, "meters"),
  25550. default: true
  25551. },
  25552. ]
  25553. ))
  25554. characterMakers.push(() => makeCharacter(
  25555. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25556. {
  25557. front: {
  25558. height: math.unit(50, "m"),
  25559. weight: math.unit(500, "tonnes"),
  25560. name: "Front",
  25561. image: {
  25562. source: "./media/characters/ryoko/front.svg",
  25563. extra: 4632 / 3926,
  25564. bottom: 193 / 4823
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(50, "meters"),
  25572. default: true
  25573. },
  25574. ]
  25575. ))
  25576. characterMakers.push(() => makeCharacter(
  25577. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25578. {
  25579. front: {
  25580. height: math.unit(30, "m"),
  25581. weight: math.unit(22, "tonnes"),
  25582. name: "Front",
  25583. image: {
  25584. source: "./media/characters/elio/front.svg",
  25585. extra: 4582 / 3720,
  25586. bottom: 236 / 4828
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(30, "meters"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(6 + 3 / 12, "feet"),
  25603. weight: math.unit(120, "lb"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/azura/front.svg",
  25607. extra: 1149 / 1135,
  25608. bottom: 45 / 1194
  25609. }
  25610. },
  25611. frontClothed: {
  25612. height: math.unit(6 + 3 / 12, "feet"),
  25613. weight: math.unit(120, "lb"),
  25614. name: "Front (Clothed)",
  25615. image: {
  25616. source: "./media/characters/azura/front-clothed.svg",
  25617. extra: 1149 / 1135,
  25618. bottom: 45 / 1194
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(6 + 3 / 12, "feet"),
  25626. default: true
  25627. },
  25628. {
  25629. name: "Macro",
  25630. height: math.unit(20 + 6 / 12, "feet")
  25631. },
  25632. {
  25633. name: "Megamacro",
  25634. height: math.unit(12, "miles")
  25635. },
  25636. {
  25637. name: "Gigamacro",
  25638. height: math.unit(10000, "miles")
  25639. },
  25640. {
  25641. name: "Teramacro",
  25642. height: math.unit(900000, "miles")
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25648. {
  25649. front: {
  25650. height: math.unit(12, "feet"),
  25651. weight: math.unit(1, "ton"),
  25652. capacity: math.unit(660000, "gallons"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/zeus/front.svg",
  25656. extra: 5005 / 4717,
  25657. bottom: 363 / 5388
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(12, "feet")
  25665. },
  25666. {
  25667. name: "Preferred Size",
  25668. height: math.unit(0.5, "miles"),
  25669. default: true
  25670. },
  25671. {
  25672. name: "Giga Horse",
  25673. height: math.unit(300, "miles")
  25674. },
  25675. {
  25676. name: "Riding Planets",
  25677. height: math.unit(30, "megameters")
  25678. },
  25679. {
  25680. name: "Cosmic Giant",
  25681. height: math.unit(3, "zettameters")
  25682. },
  25683. {
  25684. name: "Breeding God",
  25685. height: math.unit(9.92e22, "yottameters")
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25691. {
  25692. side: {
  25693. height: math.unit(9, "feet"),
  25694. weight: math.unit(1500, "kg"),
  25695. name: "Side",
  25696. image: {
  25697. source: "./media/characters/fang/side.svg",
  25698. extra: 924 / 866,
  25699. bottom: 47.5 / 972.3
  25700. }
  25701. },
  25702. },
  25703. [
  25704. {
  25705. name: "Normal",
  25706. height: math.unit(9, "feet"),
  25707. default: true
  25708. },
  25709. {
  25710. name: "Macro",
  25711. height: math.unit(75 + 6 / 12, "feet")
  25712. },
  25713. {
  25714. name: "Teramacro",
  25715. height: math.unit(50000, "miles")
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(10, "feet"),
  25724. weight: math.unit(2, "tons"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/rekhit/front.svg",
  25728. extra: 2796 / 2590,
  25729. bottom: 225 / 3022
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Normal",
  25736. height: math.unit(10, "feet"),
  25737. default: true
  25738. },
  25739. {
  25740. name: "Macro",
  25741. height: math.unit(500, "feet")
  25742. },
  25743. ]
  25744. ))
  25745. characterMakers.push(() => makeCharacter(
  25746. { name: "Dahlia Verrick" },
  25747. {
  25748. front: {
  25749. height: math.unit(7 + 6.451 / 12, "feet"),
  25750. weight: math.unit(310, "lb"),
  25751. name: "Front",
  25752. image: {
  25753. source: "./media/characters/dahlia-verrick/front.svg",
  25754. extra: 1488 / 1365,
  25755. bottom: 6.2 / 1495
  25756. }
  25757. },
  25758. back: {
  25759. height: math.unit(7 + 6.451 / 12, "feet"),
  25760. weight: math.unit(310, "lb"),
  25761. name: "Back",
  25762. image: {
  25763. source: "./media/characters/dahlia-verrick/back.svg",
  25764. extra: 1472 / 1351,
  25765. bottom: 5.28 / 1477
  25766. }
  25767. },
  25768. frontBusiness: {
  25769. height: math.unit(7 + 6.451 / 12, "feet"),
  25770. weight: math.unit(200, "lb"),
  25771. name: "Front (Business)",
  25772. image: {
  25773. source: "./media/characters/dahlia-verrick/front-business.svg",
  25774. extra: 1478 / 1381,
  25775. bottom: 5.5 / 1484
  25776. }
  25777. },
  25778. frontCasual: {
  25779. height: math.unit(7 + 6.451 / 12, "feet"),
  25780. weight: math.unit(200, "lb"),
  25781. name: "Front (Casual)",
  25782. image: {
  25783. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25784. extra: 1478 / 1381,
  25785. bottom: 5.5 / 1484
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Travel-Sized",
  25792. height: math.unit(7.45, "inches")
  25793. },
  25794. {
  25795. name: "Normal",
  25796. height: math.unit(7 + 6.451 / 12, "feet"),
  25797. default: true
  25798. },
  25799. {
  25800. name: "Hitting the Town",
  25801. height: math.unit(37 + 8 / 12, "feet")
  25802. },
  25803. {
  25804. name: "Stomp in the Suburbs",
  25805. height: math.unit(964 + 9.728 / 12, "feet")
  25806. },
  25807. {
  25808. name: "Sit on the City",
  25809. height: math.unit(61747 + 10.592 / 12, "feet")
  25810. },
  25811. {
  25812. name: "Glomp the Globe",
  25813. height: math.unit(252919327 + 4.832 / 12, "feet")
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25819. {
  25820. front: {
  25821. height: math.unit(6 + 4 / 12, "feet"),
  25822. weight: math.unit(320, "lb"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/balina-mahigan/front.svg",
  25826. extra: 447 / 428,
  25827. bottom: 18 / 466
  25828. }
  25829. },
  25830. back: {
  25831. height: math.unit(6 + 4 / 12, "feet"),
  25832. weight: math.unit(320, "lb"),
  25833. name: "Back",
  25834. image: {
  25835. source: "./media/characters/balina-mahigan/back.svg",
  25836. extra: 445 / 428,
  25837. bottom: 4.07 / 448
  25838. }
  25839. },
  25840. arm: {
  25841. height: math.unit(1.88, "feet"),
  25842. name: "Arm",
  25843. image: {
  25844. source: "./media/characters/balina-mahigan/arm.svg"
  25845. }
  25846. },
  25847. backPort: {
  25848. height: math.unit(0.685, "feet"),
  25849. name: "Back Port",
  25850. image: {
  25851. source: "./media/characters/balina-mahigan/back-port.svg"
  25852. }
  25853. },
  25854. hoofpaw: {
  25855. height: math.unit(1.41, "feet"),
  25856. name: "Hoofpaw",
  25857. image: {
  25858. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25859. }
  25860. },
  25861. leftHandBack: {
  25862. height: math.unit(0.938, "feet"),
  25863. name: "Left Hand (Back)",
  25864. image: {
  25865. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25866. }
  25867. },
  25868. leftHandFront: {
  25869. height: math.unit(0.938, "feet"),
  25870. name: "Left Hand (Front)",
  25871. image: {
  25872. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25873. }
  25874. },
  25875. rightHandBack: {
  25876. height: math.unit(0.95, "feet"),
  25877. name: "Right Hand (Back)",
  25878. image: {
  25879. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25880. }
  25881. },
  25882. rightHandFront: {
  25883. height: math.unit(0.95, "feet"),
  25884. name: "Right Hand (Front)",
  25885. image: {
  25886. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25887. }
  25888. },
  25889. },
  25890. [
  25891. {
  25892. name: "Normal",
  25893. height: math.unit(6 + 4 / 12, "feet"),
  25894. default: true
  25895. },
  25896. ]
  25897. ))
  25898. characterMakers.push(() => makeCharacter(
  25899. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25900. {
  25901. front: {
  25902. height: math.unit(6, "feet"),
  25903. weight: math.unit(320, "lb"),
  25904. name: "Front",
  25905. image: {
  25906. source: "./media/characters/balina-mejeri/front.svg",
  25907. extra: 517 / 488,
  25908. bottom: 44.2 / 561
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Normal",
  25915. height: math.unit(6 + 4 / 12, "feet")
  25916. },
  25917. {
  25918. name: "Business",
  25919. height: math.unit(155, "feet"),
  25920. default: true
  25921. },
  25922. ]
  25923. ))
  25924. characterMakers.push(() => makeCharacter(
  25925. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25926. {
  25927. kneeling: {
  25928. height: math.unit(6 + 4 / 12, "feet"),
  25929. weight: math.unit(300 * 20, "lb"),
  25930. name: "Kneeling",
  25931. image: {
  25932. source: "./media/characters/balbarian/kneeling.svg",
  25933. extra: 922 / 862,
  25934. bottom: 42.4 / 965
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Normal",
  25941. height: math.unit(6 + 4 / 12, "feet")
  25942. },
  25943. {
  25944. name: "Treasured",
  25945. height: math.unit(18 + 9 / 12, "feet"),
  25946. default: true
  25947. },
  25948. {
  25949. name: "Macro",
  25950. height: math.unit(900, "feet")
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25956. {
  25957. front: {
  25958. height: math.unit(6 + 4 / 12, "feet"),
  25959. weight: math.unit(325, "lb"),
  25960. name: "Front",
  25961. image: {
  25962. source: "./media/characters/balina-amarini/front.svg",
  25963. extra: 415 / 403,
  25964. bottom: 19 / 433.4
  25965. }
  25966. },
  25967. back: {
  25968. height: math.unit(6 + 4 / 12, "feet"),
  25969. weight: math.unit(325, "lb"),
  25970. name: "Back",
  25971. image: {
  25972. source: "./media/characters/balina-amarini/back.svg",
  25973. extra: 415 / 403,
  25974. bottom: 13.5 / 432
  25975. }
  25976. },
  25977. overdrive: {
  25978. height: math.unit(6 + 4 / 12, "feet"),
  25979. weight: math.unit(400, "lb"),
  25980. name: "Overdrive",
  25981. image: {
  25982. source: "./media/characters/balina-amarini/overdrive.svg",
  25983. extra: 269 / 259,
  25984. bottom: 12 / 282
  25985. }
  25986. },
  25987. },
  25988. [
  25989. {
  25990. name: "Boom",
  25991. height: math.unit(9 + 10 / 12, "feet"),
  25992. default: true
  25993. },
  25994. {
  25995. name: "Macro",
  25996. height: math.unit(280, "feet")
  25997. },
  25998. ]
  25999. ))
  26000. characterMakers.push(() => makeCharacter(
  26001. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26002. {
  26003. goddess: {
  26004. height: math.unit(600, "feet"),
  26005. weight: math.unit(2000000, "tons"),
  26006. name: "Goddess",
  26007. image: {
  26008. source: "./media/characters/lady-kubwa/goddess.svg",
  26009. extra: 1240.5 / 1223,
  26010. bottom: 22 / 1263
  26011. }
  26012. },
  26013. goddesser: {
  26014. height: math.unit(900, "feet"),
  26015. weight: math.unit(20000000, "lb"),
  26016. name: "Goddess-er",
  26017. image: {
  26018. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26019. extra: 899 / 888,
  26020. bottom: 12.6 / 912
  26021. }
  26022. },
  26023. },
  26024. [
  26025. {
  26026. name: "Macro",
  26027. height: math.unit(600, "feet"),
  26028. default: true
  26029. },
  26030. {
  26031. name: "Megamacro",
  26032. height: math.unit(250, "miles")
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(7 + 7 / 12, "feet"),
  26041. weight: math.unit(250, "lb"),
  26042. name: "Front",
  26043. image: {
  26044. source: "./media/characters/tala-grovehorn/front.svg",
  26045. extra: 2636 / 2525,
  26046. bottom: 147 / 2781
  26047. }
  26048. },
  26049. back: {
  26050. height: math.unit(7 + 7 / 12, "feet"),
  26051. weight: math.unit(250, "lb"),
  26052. name: "Back",
  26053. image: {
  26054. source: "./media/characters/tala-grovehorn/back.svg",
  26055. extra: 2635 / 2539,
  26056. bottom: 100 / 2732.8
  26057. }
  26058. },
  26059. mouth: {
  26060. height: math.unit(1.15, "feet"),
  26061. name: "Mouth",
  26062. image: {
  26063. source: "./media/characters/tala-grovehorn/mouth.svg"
  26064. }
  26065. },
  26066. dick: {
  26067. height: math.unit(2.36, "feet"),
  26068. name: "Dick",
  26069. image: {
  26070. source: "./media/characters/tala-grovehorn/dick.svg"
  26071. }
  26072. },
  26073. slit: {
  26074. height: math.unit(0.61, "feet"),
  26075. name: "Slit",
  26076. image: {
  26077. source: "./media/characters/tala-grovehorn/slit.svg"
  26078. }
  26079. },
  26080. },
  26081. [
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26086. {
  26087. front: {
  26088. height: math.unit(7 + 7 / 12, "feet"),
  26089. weight: math.unit(225, "lb"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/epona/front.svg",
  26093. extra: 2445 / 2290,
  26094. bottom: 251 / 2696
  26095. }
  26096. },
  26097. back: {
  26098. height: math.unit(7 + 7 / 12, "feet"),
  26099. weight: math.unit(225, "lb"),
  26100. name: "Back",
  26101. image: {
  26102. source: "./media/characters/epona/back.svg",
  26103. extra: 2546 / 2408,
  26104. bottom: 44 / 2589
  26105. }
  26106. },
  26107. genitals: {
  26108. height: math.unit(1.5, "feet"),
  26109. name: "Genitals",
  26110. image: {
  26111. source: "./media/characters/epona/genitals.svg"
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Normal",
  26118. height: math.unit(7 + 7 / 12, "feet"),
  26119. default: true
  26120. },
  26121. ]
  26122. ))
  26123. characterMakers.push(() => makeCharacter(
  26124. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26125. {
  26126. front: {
  26127. height: math.unit(7, "feet"),
  26128. weight: math.unit(518, "lb"),
  26129. name: "Front",
  26130. image: {
  26131. source: "./media/characters/avia-bloodbourn/front.svg",
  26132. extra: 1466 / 1350,
  26133. bottom: 65 / 1527
  26134. }
  26135. },
  26136. },
  26137. [
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26142. {
  26143. front: {
  26144. height: math.unit(9.35, "feet"),
  26145. weight: math.unit(600, "lb"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/amera/front.svg",
  26149. extra: 891 / 818,
  26150. bottom: 30 / 922.7
  26151. }
  26152. },
  26153. back: {
  26154. height: math.unit(9.35, "feet"),
  26155. weight: math.unit(600, "lb"),
  26156. name: "Back",
  26157. image: {
  26158. source: "./media/characters/amera/back.svg",
  26159. extra: 876 / 824,
  26160. bottom: 6.8 / 884
  26161. }
  26162. },
  26163. dick: {
  26164. height: math.unit(2.14, "feet"),
  26165. name: "Dick",
  26166. image: {
  26167. source: "./media/characters/amera/dick.svg"
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(9.35, "feet"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26181. {
  26182. kneeling: {
  26183. height: math.unit(3 + 4 / 12, "feet"),
  26184. weight: math.unit(90, "lb"),
  26185. name: "Kneeling",
  26186. image: {
  26187. source: "./media/characters/rosewen/kneeling.svg",
  26188. extra: 1835 / 1571,
  26189. bottom: 27.7 / 1862
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(3 + 4 / 12, "feet"),
  26197. default: true
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26203. {
  26204. front: {
  26205. height: math.unit(5 + 10 / 12, "feet"),
  26206. weight: math.unit(200, "lb"),
  26207. name: "Front",
  26208. image: {
  26209. source: "./media/characters/sabah/front.svg",
  26210. extra: 849 / 763,
  26211. bottom: 33.9 / 881
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(5 + 10 / 12, "feet"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26225. {
  26226. front: {
  26227. height: math.unit(3 + 5 / 12, "feet"),
  26228. weight: math.unit(40, "kg"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/purple-flame/front.svg",
  26232. extra: 1577 / 1412,
  26233. bottom: 97 / 1694
  26234. }
  26235. },
  26236. frontDressed: {
  26237. height: math.unit(3 + 5 / 12, "feet"),
  26238. weight: math.unit(40, "kg"),
  26239. name: "Front (Dressed)",
  26240. image: {
  26241. source: "./media/characters/purple-flame/front-dressed.svg",
  26242. extra: 1577 / 1412,
  26243. bottom: 97 / 1694
  26244. }
  26245. },
  26246. headphones: {
  26247. height: math.unit(0.85, "feet"),
  26248. name: "Headphones",
  26249. image: {
  26250. source: "./media/characters/purple-flame/headphones.svg"
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Really Small",
  26257. height: math.unit(5, "cm")
  26258. },
  26259. {
  26260. name: "Micro",
  26261. height: math.unit(1 + 5 / 12, "feet")
  26262. },
  26263. {
  26264. name: "Normal",
  26265. height: math.unit(3 + 5 / 12, "feet"),
  26266. default: true
  26267. },
  26268. {
  26269. name: "Minimacro",
  26270. height: math.unit(125, "feet")
  26271. },
  26272. {
  26273. name: "Macro",
  26274. height: math.unit(0.5, "miles")
  26275. },
  26276. {
  26277. name: "Megamacro",
  26278. height: math.unit(50, "miles")
  26279. },
  26280. {
  26281. name: "Gigantic",
  26282. height: math.unit(750, "miles")
  26283. },
  26284. {
  26285. name: "Planetary",
  26286. height: math.unit(15000, "miles")
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(14, "feet"),
  26295. weight: math.unit(959, "lb"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/arsenal/front.svg",
  26299. extra: 2357 / 2157,
  26300. bottom: 93 / 2458
  26301. }
  26302. },
  26303. },
  26304. [
  26305. {
  26306. name: "Normal",
  26307. height: math.unit(14, "feet"),
  26308. default: true
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26314. {
  26315. front: {
  26316. height: math.unit(6, "feet"),
  26317. weight: math.unit(150, "lb"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/adira/front.svg",
  26321. extra: 1078 / 1029,
  26322. bottom: 87 / 1166
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Micro",
  26329. height: math.unit(4, "inches"),
  26330. default: true
  26331. },
  26332. {
  26333. name: "Macro",
  26334. height: math.unit(50, "feet")
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26340. {
  26341. front: {
  26342. height: math.unit(16, "feet"),
  26343. weight: math.unit(1000, "lb"),
  26344. name: "Front",
  26345. image: {
  26346. source: "./media/characters/grim/front.svg",
  26347. extra: 622 / 614,
  26348. bottom: 18.1 / 642
  26349. }
  26350. },
  26351. back: {
  26352. height: math.unit(16, "feet"),
  26353. weight: math.unit(1000, "lb"),
  26354. name: "Back",
  26355. image: {
  26356. source: "./media/characters/grim/back.svg",
  26357. extra: 610.6 / 602,
  26358. bottom: 40.8 / 652
  26359. }
  26360. },
  26361. hunched: {
  26362. height: math.unit(9.75, "feet"),
  26363. weight: math.unit(1000, "lb"),
  26364. name: "Hunched",
  26365. image: {
  26366. source: "./media/characters/grim/hunched.svg",
  26367. extra: 304 / 297,
  26368. bottom: 35.4 / 394
  26369. }
  26370. },
  26371. },
  26372. [
  26373. {
  26374. name: "Normal",
  26375. height: math.unit(16, "feet"),
  26376. default: true
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26382. {
  26383. front: {
  26384. height: math.unit(2.3, "meters"),
  26385. weight: math.unit(300, "lb"),
  26386. name: "Front",
  26387. image: {
  26388. source: "./media/characters/sinja/front-sfw.svg",
  26389. extra: 1393 / 1294,
  26390. bottom: 70 / 1463
  26391. }
  26392. },
  26393. frontNsfw: {
  26394. height: math.unit(2.3, "meters"),
  26395. weight: math.unit(300, "lb"),
  26396. name: "Front (NSFW)",
  26397. image: {
  26398. source: "./media/characters/sinja/front-nsfw.svg",
  26399. extra: 1393 / 1294,
  26400. bottom: 70 / 1463
  26401. }
  26402. },
  26403. back: {
  26404. height: math.unit(2.3, "meters"),
  26405. weight: math.unit(300, "lb"),
  26406. name: "Back",
  26407. image: {
  26408. source: "./media/characters/sinja/back.svg",
  26409. extra: 1393 / 1294,
  26410. bottom: 70 / 1463
  26411. }
  26412. },
  26413. head: {
  26414. height: math.unit(1.771, "feet"),
  26415. name: "Head",
  26416. image: {
  26417. source: "./media/characters/sinja/head.svg"
  26418. }
  26419. },
  26420. slit: {
  26421. height: math.unit(0.8, "feet"),
  26422. name: "Slit",
  26423. image: {
  26424. source: "./media/characters/sinja/slit.svg"
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(2.3, "meters")
  26432. },
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(91, "meters"),
  26436. default: true
  26437. },
  26438. {
  26439. name: "Megamacro",
  26440. height: math.unit(91440, "meters")
  26441. },
  26442. {
  26443. name: "Gigamacro",
  26444. height: math.unit(60960000, "meters")
  26445. },
  26446. {
  26447. name: "Teramacro",
  26448. height: math.unit(9144000000, "meters")
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26454. {
  26455. front: {
  26456. height: math.unit(1.7, "meters"),
  26457. weight: math.unit(130, "lb"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/kyu/front.svg",
  26461. extra: 415 / 395,
  26462. bottom: 5 / 420
  26463. }
  26464. },
  26465. head: {
  26466. height: math.unit(1.75, "feet"),
  26467. name: "Head",
  26468. image: {
  26469. source: "./media/characters/kyu/head.svg"
  26470. }
  26471. },
  26472. foot: {
  26473. height: math.unit(0.81, "feet"),
  26474. name: "Foot",
  26475. image: {
  26476. source: "./media/characters/kyu/foot.svg"
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Normal",
  26483. height: math.unit(1.7, "meters")
  26484. },
  26485. {
  26486. name: "Macro",
  26487. height: math.unit(131, "feet"),
  26488. default: true
  26489. },
  26490. {
  26491. name: "Megamacro",
  26492. height: math.unit(91440, "meters")
  26493. },
  26494. {
  26495. name: "Gigamacro",
  26496. height: math.unit(60960000, "meters")
  26497. },
  26498. {
  26499. name: "Teramacro",
  26500. height: math.unit(9144000000, "meters")
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26506. {
  26507. front: {
  26508. height: math.unit(7 + 1 / 12, "feet"),
  26509. weight: math.unit(250, "lb"),
  26510. name: "Front",
  26511. image: {
  26512. source: "./media/characters/joey/front.svg",
  26513. extra: 1791 / 1537,
  26514. bottom: 28 / 1816
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Micro",
  26521. height: math.unit(3, "inches")
  26522. },
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(7 + 1 / 12, "feet"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(165, "cm"),
  26535. weight: math.unit(140, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/sam-evans/front.svg",
  26539. extra: 3417 / 3230,
  26540. bottom: 41.3 / 3417
  26541. }
  26542. },
  26543. frontSixTails: {
  26544. height: math.unit(165, "cm"),
  26545. weight: math.unit(140, "lb"),
  26546. name: "Front-six-tails",
  26547. image: {
  26548. source: "./media/characters/sam-evans/front-six-tails.svg",
  26549. extra: 3417 / 3230,
  26550. bottom: 41.3 / 3417
  26551. }
  26552. },
  26553. back: {
  26554. height: math.unit(165, "cm"),
  26555. weight: math.unit(140, "lb"),
  26556. name: "Back",
  26557. image: {
  26558. source: "./media/characters/sam-evans/back.svg",
  26559. extra: 3227 / 3032,
  26560. bottom: 6.8 / 3234
  26561. }
  26562. },
  26563. face: {
  26564. height: math.unit(0.68, "feet"),
  26565. name: "Face",
  26566. image: {
  26567. source: "./media/characters/sam-evans/face.svg"
  26568. }
  26569. },
  26570. },
  26571. [
  26572. {
  26573. name: "Normal",
  26574. height: math.unit(165, "cm"),
  26575. default: true
  26576. },
  26577. {
  26578. name: "Macro",
  26579. height: math.unit(100, "meters")
  26580. },
  26581. {
  26582. name: "Macro+",
  26583. height: math.unit(800, "meters")
  26584. },
  26585. {
  26586. name: "Macro++",
  26587. height: math.unit(3, "km")
  26588. },
  26589. {
  26590. name: "Macro+++",
  26591. height: math.unit(30, "km")
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26597. {
  26598. front: {
  26599. height: math.unit(10, "feet"),
  26600. weight: math.unit(750, "lb"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/juliet-a/front.svg",
  26604. extra: 1766 / 1720,
  26605. bottom: 43 / 1809
  26606. }
  26607. },
  26608. back: {
  26609. height: math.unit(10, "feet"),
  26610. weight: math.unit(750, "lb"),
  26611. name: "Back",
  26612. image: {
  26613. source: "./media/characters/juliet-a/back.svg",
  26614. extra: 1781 / 1734,
  26615. bottom: 35 / 1810,
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(10, "feet"),
  26623. default: true
  26624. },
  26625. {
  26626. name: "Dragon Form",
  26627. height: math.unit(250, "feet")
  26628. },
  26629. {
  26630. name: "Macro",
  26631. height: math.unit(1000, "feet")
  26632. },
  26633. {
  26634. name: "Megamacro",
  26635. height: math.unit(10000, "feet")
  26636. }
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26641. {
  26642. regular: {
  26643. height: math.unit(7 + 3 / 12, "feet"),
  26644. weight: math.unit(260, "lb"),
  26645. name: "Regular",
  26646. image: {
  26647. source: "./media/characters/wild/regular.svg",
  26648. extra: 97.45 / 92,
  26649. bottom: 6.8 / 104.3
  26650. }
  26651. },
  26652. biggums: {
  26653. height: math.unit(8 + 6 / 12, "feet"),
  26654. weight: math.unit(425, "lb"),
  26655. name: "Biggums",
  26656. image: {
  26657. source: "./media/characters/wild/biggums.svg",
  26658. extra: 97.45 / 92,
  26659. bottom: 7.5 / 132.34
  26660. }
  26661. },
  26662. mawRegular: {
  26663. height: math.unit(1.24, "feet"),
  26664. name: "Maw (Regular)",
  26665. image: {
  26666. source: "./media/characters/wild/maw.svg"
  26667. }
  26668. },
  26669. mawBiggums: {
  26670. height: math.unit(1.47, "feet"),
  26671. name: "Maw (Biggums)",
  26672. image: {
  26673. source: "./media/characters/wild/maw.svg"
  26674. }
  26675. },
  26676. },
  26677. [
  26678. {
  26679. name: "Normal",
  26680. height: math.unit(7 + 3 / 12, "feet"),
  26681. default: true
  26682. },
  26683. ]
  26684. ))
  26685. characterMakers.push(() => makeCharacter(
  26686. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26687. {
  26688. front: {
  26689. height: math.unit(2.5, "meters"),
  26690. weight: math.unit(200, "kg"),
  26691. name: "Front",
  26692. image: {
  26693. source: "./media/characters/vidar/front.svg",
  26694. extra: 2994 / 2795,
  26695. bottom: 56 / 3061
  26696. }
  26697. },
  26698. back: {
  26699. height: math.unit(2.5, "meters"),
  26700. weight: math.unit(200, "kg"),
  26701. name: "Back",
  26702. image: {
  26703. source: "./media/characters/vidar/back.svg",
  26704. extra: 3131 / 2928,
  26705. bottom: 13.5 / 3141.5
  26706. }
  26707. },
  26708. feral: {
  26709. height: math.unit(2.5, "meters"),
  26710. weight: math.unit(2000, "kg"),
  26711. name: "Feral",
  26712. image: {
  26713. source: "./media/characters/vidar/feral.svg",
  26714. extra: 2790 / 1765,
  26715. bottom: 6 / 2796
  26716. }
  26717. },
  26718. },
  26719. [
  26720. {
  26721. name: "Normal",
  26722. height: math.unit(2.5, "meters"),
  26723. default: true
  26724. },
  26725. {
  26726. name: "Macro",
  26727. height: math.unit(100, "meters")
  26728. },
  26729. ]
  26730. ))
  26731. characterMakers.push(() => makeCharacter(
  26732. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26733. {
  26734. front: {
  26735. height: math.unit(5 + 9 / 12, "feet"),
  26736. weight: math.unit(120, "lb"),
  26737. name: "Front",
  26738. image: {
  26739. source: "./media/characters/ash/front.svg",
  26740. extra: 2189 / 1961,
  26741. bottom: 5.2 / 2194
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(5 + 9 / 12, "feet"),
  26749. default: true
  26750. },
  26751. ]
  26752. ))
  26753. characterMakers.push(() => makeCharacter(
  26754. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26755. {
  26756. front: {
  26757. height: math.unit(9, "feet"),
  26758. weight: math.unit(10000, "lb"),
  26759. name: "Front",
  26760. image: {
  26761. source: "./media/characters/gygabite/front.svg",
  26762. bottom: 31.7 / 537.8,
  26763. extra: 505 / 370
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Normal",
  26770. height: math.unit(9, "feet"),
  26771. default: true
  26772. },
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26777. {
  26778. front: {
  26779. height: math.unit(12, "feet"),
  26780. weight: math.unit(35000, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/p0tat0/front.svg",
  26784. extra: 1065 / 921,
  26785. bottom: 55.7 / 1121.25
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(12, "feet"),
  26793. default: true
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26799. {
  26800. side: {
  26801. height: math.unit(6.5, "feet"),
  26802. weight: math.unit(800, "lb"),
  26803. name: "Side",
  26804. image: {
  26805. source: "./media/characters/dusk/side.svg",
  26806. extra: 615 / 373,
  26807. bottom: 53 / 664
  26808. }
  26809. },
  26810. sitting: {
  26811. height: math.unit(7, "feet"),
  26812. weight: math.unit(800, "lb"),
  26813. name: "Sitting",
  26814. image: {
  26815. source: "./media/characters/dusk/sitting.svg",
  26816. extra: 753 / 425,
  26817. bottom: 33 / 774
  26818. }
  26819. },
  26820. head: {
  26821. height: math.unit(6.1, "feet"),
  26822. name: "Head",
  26823. image: {
  26824. source: "./media/characters/dusk/head.svg"
  26825. }
  26826. },
  26827. },
  26828. [
  26829. {
  26830. name: "Normal",
  26831. height: math.unit(7, "feet"),
  26832. default: true
  26833. },
  26834. ]
  26835. ))
  26836. characterMakers.push(() => makeCharacter(
  26837. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26838. {
  26839. front: {
  26840. height: math.unit(15, "feet"),
  26841. weight: math.unit(7000, "lb"),
  26842. name: "Front",
  26843. image: {
  26844. source: "./media/characters/jay-direwolf/front.svg",
  26845. extra: 1810 / 1732,
  26846. bottom: 66 / 1892
  26847. }
  26848. },
  26849. },
  26850. [
  26851. {
  26852. name: "Normal",
  26853. height: math.unit(15, "feet"),
  26854. default: true
  26855. },
  26856. ]
  26857. ))
  26858. characterMakers.push(() => makeCharacter(
  26859. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26860. {
  26861. front: {
  26862. height: math.unit(4 + 9 / 12, "feet"),
  26863. weight: math.unit(130, "lb"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/anchovie/front.svg",
  26867. extra: 382 / 350,
  26868. bottom: 25 / 409
  26869. }
  26870. },
  26871. back: {
  26872. height: math.unit(4 + 9 / 12, "feet"),
  26873. weight: math.unit(130, "lb"),
  26874. name: "Back",
  26875. image: {
  26876. source: "./media/characters/anchovie/back.svg",
  26877. extra: 385 / 352,
  26878. bottom: 16.6 / 402
  26879. }
  26880. },
  26881. frontDressed: {
  26882. height: math.unit(4 + 9 / 12, "feet"),
  26883. weight: math.unit(130, "lb"),
  26884. name: "Front (Dressed)",
  26885. image: {
  26886. source: "./media/characters/anchovie/front-dressed.svg",
  26887. extra: 382 / 350,
  26888. bottom: 25 / 409
  26889. }
  26890. },
  26891. backDressed: {
  26892. height: math.unit(4 + 9 / 12, "feet"),
  26893. weight: math.unit(130, "lb"),
  26894. name: "Back (Dressed)",
  26895. image: {
  26896. source: "./media/characters/anchovie/back-dressed.svg",
  26897. extra: 385 / 352,
  26898. bottom: 16.6 / 402
  26899. }
  26900. },
  26901. },
  26902. [
  26903. {
  26904. name: "Micro",
  26905. height: math.unit(6.4, "inches")
  26906. },
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(4 + 9 / 12, "feet"),
  26910. default: true
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26916. {
  26917. front: {
  26918. height: math.unit(2, "meters"),
  26919. weight: math.unit(180, "lb"),
  26920. name: "Front",
  26921. image: {
  26922. source: "./media/characters/acidrenamon/front.svg",
  26923. extra: 987 / 890,
  26924. bottom: 22.8 / 1009
  26925. }
  26926. },
  26927. back: {
  26928. height: math.unit(2, "meters"),
  26929. weight: math.unit(180, "lb"),
  26930. name: "Back",
  26931. image: {
  26932. source: "./media/characters/acidrenamon/back.svg",
  26933. extra: 983 / 891,
  26934. bottom: 8.4 / 992
  26935. }
  26936. },
  26937. head: {
  26938. height: math.unit(1.92, "feet"),
  26939. name: "Head",
  26940. image: {
  26941. source: "./media/characters/acidrenamon/head.svg"
  26942. }
  26943. },
  26944. rump: {
  26945. height: math.unit(1.72, "feet"),
  26946. name: "Rump",
  26947. image: {
  26948. source: "./media/characters/acidrenamon/rump.svg"
  26949. }
  26950. },
  26951. tail: {
  26952. height: math.unit(4.2, "feet"),
  26953. name: "Tail",
  26954. image: {
  26955. source: "./media/characters/acidrenamon/tail.svg"
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(2, "meters"),
  26963. default: true
  26964. },
  26965. {
  26966. name: "Minimacro",
  26967. height: math.unit(7, "meters")
  26968. },
  26969. {
  26970. name: "Macro",
  26971. height: math.unit(200, "meters")
  26972. },
  26973. {
  26974. name: "Gigamacro",
  26975. height: math.unit(0.2, "earths")
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(6, "feet"),
  26984. weight: math.unit(150, "lb"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/kenzie-lee/front.svg",
  26988. extra: 1525 / 1465,
  26989. bottom: 45 / 1570
  26990. }
  26991. },
  26992. side: {
  26993. height: math.unit(6, "feet"),
  26994. weight: math.unit(150, "lb"),
  26995. name: "Side",
  26996. image: {
  26997. source: "./media/characters/kenzie-lee/side.svg",
  26998. extra: 5505 / 5383,
  26999. bottom: 60 / 5573
  27000. }
  27001. },
  27002. paw: {
  27003. height: math.unit(0.57, "feet"),
  27004. name: "Paw",
  27005. image: {
  27006. source: "./media/characters/kenzie-lee/paw.svg"
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "Normal",
  27013. height: math.unit(152, "feet"),
  27014. default: true
  27015. },
  27016. {
  27017. name: "Megamacro",
  27018. height: math.unit(7, "miles")
  27019. },
  27020. {
  27021. name: "Gigamacro",
  27022. height: math.unit(8000, "miles")
  27023. },
  27024. ]
  27025. ))
  27026. characterMakers.push(() => makeCharacter(
  27027. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27028. {
  27029. side: {
  27030. height: math.unit(6, "feet"),
  27031. weight: math.unit(150, "lb"),
  27032. name: "Side",
  27033. image: {
  27034. source: "./media/characters/withers/side.svg",
  27035. extra: 1830 / 1728,
  27036. bottom: 96 / 1927
  27037. }
  27038. },
  27039. front: {
  27040. height: math.unit(6, "feet"),
  27041. weight: math.unit(150, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/withers/front.svg",
  27045. extra: 1514 / 1438,
  27046. bottom: 118 / 1632
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Macro",
  27053. height: math.unit(168, "feet"),
  27054. default: true
  27055. },
  27056. {
  27057. name: "Megamacro",
  27058. height: math.unit(15, "miles")
  27059. }
  27060. ]
  27061. ))
  27062. characterMakers.push(() => makeCharacter(
  27063. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27064. {
  27065. front: {
  27066. height: math.unit(6 + 7 / 12, "feet"),
  27067. weight: math.unit(250, "lb"),
  27068. name: "Front",
  27069. image: {
  27070. source: "./media/characters/nemoskii/front.svg",
  27071. extra: 2270 / 1734,
  27072. bottom: 86 / 2354
  27073. }
  27074. },
  27075. back: {
  27076. height: math.unit(6 + 7 / 12, "feet"),
  27077. weight: math.unit(250, "lb"),
  27078. name: "Back",
  27079. image: {
  27080. source: "./media/characters/nemoskii/back.svg",
  27081. extra: 1845 / 1788,
  27082. bottom: 10.5 / 1852
  27083. }
  27084. },
  27085. head: {
  27086. height: math.unit(1.31, "feet"),
  27087. name: "Head",
  27088. image: {
  27089. source: "./media/characters/nemoskii/head.svg"
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Micro",
  27096. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27097. },
  27098. {
  27099. name: "Normal",
  27100. height: math.unit(6 + 7 / 12, "feet"),
  27101. default: true
  27102. },
  27103. {
  27104. name: "Macro",
  27105. height: math.unit((6 + 7 / 12) * 150, "feet")
  27106. },
  27107. {
  27108. name: "Macro+",
  27109. height: math.unit((6 + 7 / 12) * 500, "feet")
  27110. },
  27111. {
  27112. name: "Megamacro",
  27113. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(1, "mile"),
  27122. weight: math.unit(265261.9, "lb"),
  27123. name: "Front",
  27124. image: {
  27125. source: "./media/characters/shui/front.svg",
  27126. extra: 1633 / 1564,
  27127. bottom: 91.5 / 1726
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Macro",
  27134. height: math.unit(1, "mile"),
  27135. default: true
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27141. {
  27142. front: {
  27143. height: math.unit(12 + 6 / 12, "feet"),
  27144. weight: math.unit(1342, "lb"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/arokh-takakura/front.svg",
  27148. extra: 1089 / 1043,
  27149. bottom: 77.4 / 1176.7
  27150. }
  27151. },
  27152. back: {
  27153. height: math.unit(12 + 6 / 12, "feet"),
  27154. weight: math.unit(1342, "lb"),
  27155. name: "Back",
  27156. image: {
  27157. source: "./media/characters/arokh-takakura/back.svg",
  27158. extra: 1046 / 1019,
  27159. bottom: 102 / 1150
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Big",
  27166. height: math.unit(12 + 6 / 12, "feet"),
  27167. default: true
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27173. {
  27174. front: {
  27175. height: math.unit(5 + 6 / 12, "feet"),
  27176. weight: math.unit(150, "lb"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/theo/front.svg",
  27180. extra: 1184 / 1131,
  27181. bottom: 7.4 / 1191
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Micro",
  27188. height: math.unit(5, "inches")
  27189. },
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(5 + 6 / 12, "feet"),
  27193. default: true
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27199. {
  27200. front: {
  27201. height: math.unit(5 + 9 / 12, "feet"),
  27202. weight: math.unit(130, "lb"),
  27203. name: "Front",
  27204. image: {
  27205. source: "./media/characters/cecelia-swift/front.svg",
  27206. extra: 502 / 484,
  27207. bottom: 23 / 523
  27208. }
  27209. },
  27210. back: {
  27211. height: math.unit(5 + 9 / 12, "feet"),
  27212. weight: math.unit(130, "lb"),
  27213. name: "Back",
  27214. image: {
  27215. source: "./media/characters/cecelia-swift/back.svg",
  27216. extra: 499 / 485,
  27217. bottom: 12 / 511
  27218. }
  27219. },
  27220. head: {
  27221. height: math.unit(0.90, "feet"),
  27222. name: "Head",
  27223. image: {
  27224. source: "./media/characters/cecelia-swift/head.svg"
  27225. }
  27226. },
  27227. rump: {
  27228. height: math.unit(1.75, "feet"),
  27229. name: "Rump",
  27230. image: {
  27231. source: "./media/characters/cecelia-swift/rump.svg"
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(5 + 9 / 12, "feet"),
  27239. default: true
  27240. },
  27241. {
  27242. name: "Big",
  27243. height: math.unit(50, "feet")
  27244. },
  27245. {
  27246. name: "Macro",
  27247. height: math.unit(100, "feet")
  27248. },
  27249. {
  27250. name: "Macro+",
  27251. height: math.unit(500, "feet")
  27252. },
  27253. {
  27254. name: "Macro++",
  27255. height: math.unit(1000, "feet")
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27261. {
  27262. front: {
  27263. height: math.unit(6, "feet"),
  27264. weight: math.unit(150, "lb"),
  27265. name: "Front",
  27266. image: {
  27267. source: "./media/characters/kaunan/front.svg",
  27268. extra: 2890 / 2523,
  27269. bottom: 49 / 2939
  27270. }
  27271. },
  27272. },
  27273. [
  27274. {
  27275. name: "Macro",
  27276. height: math.unit(150, "feet"),
  27277. default: true
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(175, "cm"),
  27286. weight: math.unit(60, "kg"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/fei/front.svg",
  27290. extra: 2581 / 2400,
  27291. bottom: 82.2 / 2663
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Mortal",
  27298. height: math.unit(175, "cm")
  27299. },
  27300. {
  27301. name: "Normal",
  27302. height: math.unit(3500, "m"),
  27303. default: true
  27304. },
  27305. {
  27306. name: "Stroll",
  27307. height: math.unit(17.5, "km")
  27308. },
  27309. {
  27310. name: "Showoff",
  27311. height: math.unit(175, "km")
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27317. {
  27318. front: {
  27319. height: math.unit(7, "feet"),
  27320. weight: math.unit(1000, "kg"),
  27321. name: "Front",
  27322. image: {
  27323. source: "./media/characters/edrax/front.svg",
  27324. extra: 2838 / 2550,
  27325. bottom: 130 / 2968
  27326. }
  27327. },
  27328. },
  27329. [
  27330. {
  27331. name: "Small",
  27332. height: math.unit(7, "feet")
  27333. },
  27334. {
  27335. name: "Normal",
  27336. height: math.unit(1500, "meters")
  27337. },
  27338. {
  27339. name: "Mega",
  27340. height: math.unit(12000000, "km"),
  27341. default: true
  27342. },
  27343. {
  27344. name: "Megamacro",
  27345. height: math.unit(10600000, "lightyears")
  27346. },
  27347. {
  27348. name: "Hypermacro",
  27349. height: math.unit(256, "yottameters")
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27355. {
  27356. front: {
  27357. height: math.unit(10, "feet"),
  27358. weight: math.unit(750, "lb"),
  27359. name: "Front",
  27360. image: {
  27361. source: "./media/characters/clove/front.svg",
  27362. extra: 2031 / 1860,
  27363. bottom: 47.8 / 2080
  27364. }
  27365. },
  27366. back: {
  27367. height: math.unit(10, "feet"),
  27368. weight: math.unit(750, "lb"),
  27369. name: "Back",
  27370. image: {
  27371. source: "./media/characters/clove/back.svg",
  27372. extra: 2025 / 1859,
  27373. bottom: 46 / 2071
  27374. }
  27375. },
  27376. },
  27377. [
  27378. {
  27379. name: "Normal",
  27380. height: math.unit(10, "feet"),
  27381. default: true
  27382. },
  27383. ]
  27384. ))
  27385. characterMakers.push(() => makeCharacter(
  27386. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27387. {
  27388. front: {
  27389. height: math.unit(4, "feet"),
  27390. weight: math.unit(50, "lb"),
  27391. name: "Front",
  27392. image: {
  27393. source: "./media/characters/alex-rabbit/front.svg",
  27394. extra: 507 / 458,
  27395. bottom: 18.5 / 527
  27396. }
  27397. },
  27398. back: {
  27399. height: math.unit(4, "feet"),
  27400. weight: math.unit(50, "lb"),
  27401. name: "Back",
  27402. image: {
  27403. source: "./media/characters/alex-rabbit/back.svg",
  27404. extra: 502 / 460,
  27405. bottom: 18.9 / 521
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(4, "feet"),
  27413. default: true
  27414. },
  27415. ]
  27416. ))
  27417. characterMakers.push(() => makeCharacter(
  27418. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27419. {
  27420. front: {
  27421. height: math.unit(1 + 3 / 12, "feet"),
  27422. weight: math.unit(80, "lb"),
  27423. name: "Front",
  27424. image: {
  27425. source: "./media/characters/zander-rose/front.svg",
  27426. extra: 916 / 797,
  27427. bottom: 17 / 933
  27428. }
  27429. },
  27430. back: {
  27431. height: math.unit(1 + 3 / 12, "feet"),
  27432. weight: math.unit(80, "lb"),
  27433. name: "Back",
  27434. image: {
  27435. source: "./media/characters/zander-rose/back.svg",
  27436. extra: 903 / 779,
  27437. bottom: 31 / 934
  27438. }
  27439. },
  27440. },
  27441. [
  27442. {
  27443. name: "Normal",
  27444. height: math.unit(1 + 3 / 12, "feet"),
  27445. default: true
  27446. },
  27447. ]
  27448. ))
  27449. characterMakers.push(() => makeCharacter(
  27450. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27451. {
  27452. anthro: {
  27453. height: math.unit(6, "feet"),
  27454. weight: math.unit(150, "lb"),
  27455. name: "Anthro",
  27456. image: {
  27457. source: "./media/characters/razz/anthro.svg",
  27458. extra: 1437 / 1343,
  27459. bottom: 48 / 1485
  27460. }
  27461. },
  27462. feral: {
  27463. height: math.unit(6, "feet"),
  27464. weight: math.unit(150, "lb"),
  27465. name: "Feral",
  27466. image: {
  27467. source: "./media/characters/razz/feral.svg",
  27468. extra: 2569 / 1385,
  27469. bottom: 95 / 2664
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(6, "feet"),
  27477. default: true
  27478. },
  27479. ]
  27480. ))
  27481. characterMakers.push(() => makeCharacter(
  27482. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27483. {
  27484. front: {
  27485. height: math.unit(9 + 4 / 12, "feet"),
  27486. weight: math.unit(500, "lb"),
  27487. name: "Front",
  27488. image: {
  27489. source: "./media/characters/morrigan/front.svg",
  27490. extra: 2707 / 2579,
  27491. bottom: 156 / 2863
  27492. }
  27493. },
  27494. },
  27495. [
  27496. {
  27497. name: "Normal",
  27498. height: math.unit(9 + 4 / 12, "feet"),
  27499. default: true
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(5, "stories"),
  27508. weight: math.unit(4000, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/jenene/front.svg",
  27512. extra: 1780 / 1710,
  27513. bottom: 57 / 1837
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(5, "stories"),
  27521. default: true
  27522. },
  27523. ]
  27524. ))
  27525. characterMakers.push(() => makeCharacter(
  27526. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27527. {
  27528. front: {
  27529. height: math.unit(6, "feet"),
  27530. weight: math.unit(150, "lb"),
  27531. name: "Front",
  27532. image: {
  27533. source: "./media/characters/vix-archaser/front.svg",
  27534. extra: 2767 / 2562,
  27535. bottom: 36 / 2803
  27536. }
  27537. },
  27538. },
  27539. [
  27540. {
  27541. name: "Micro",
  27542. height: math.unit(1, "foot")
  27543. },
  27544. {
  27545. name: "Normal",
  27546. height: math.unit(6 + 5 / 12, "feet")
  27547. },
  27548. {
  27549. name: "Minimacro",
  27550. height: math.unit(500, "feet")
  27551. },
  27552. {
  27553. name: "Macro",
  27554. height: math.unit(4, "miles")
  27555. },
  27556. {
  27557. name: "Megamacro",
  27558. height: math.unit(250, "miles"),
  27559. default: true
  27560. },
  27561. {
  27562. name: "Gigamacro",
  27563. height: math.unit(1, "universe")
  27564. },
  27565. {
  27566. name: "Endgame",
  27567. height: math.unit(100, "multiverses")
  27568. }
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27573. {
  27574. taurSfw: {
  27575. height: math.unit(10, "meters"),
  27576. weight: math.unit(17500, "kg"),
  27577. name: "Taur",
  27578. image: {
  27579. source: "./media/characters/faey/taur-sfw.svg",
  27580. extra: 1200 / 968,
  27581. bottom: 41 / 1241
  27582. }
  27583. },
  27584. chestmaw: {
  27585. height: math.unit(2.01, "meters"),
  27586. name: "Chestmaw",
  27587. image: {
  27588. source: "./media/characters/faey/chestmaw.svg"
  27589. }
  27590. },
  27591. foot: {
  27592. height: math.unit(2.43, "meters"),
  27593. name: "Foot",
  27594. image: {
  27595. source: "./media/characters/faey/foot.svg"
  27596. }
  27597. },
  27598. jaws: {
  27599. height: math.unit(1.66, "meters"),
  27600. name: "Jaws",
  27601. image: {
  27602. source: "./media/characters/faey/jaws.svg"
  27603. }
  27604. },
  27605. tongues: {
  27606. height: math.unit(2.01, "meters"),
  27607. name: "Tongues",
  27608. image: {
  27609. source: "./media/characters/faey/tongues.svg"
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Small",
  27616. height: math.unit(10, "meters"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Big",
  27621. height: math.unit(500000, "km")
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(7, "feet"),
  27630. weight: math.unit(275, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/roku/front.svg",
  27634. extra: 903 / 878,
  27635. bottom: 37 / 940
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(7, "feet"),
  27643. default: true
  27644. },
  27645. {
  27646. name: "Macro",
  27647. height: math.unit(500, "feet")
  27648. },
  27649. {
  27650. name: "Megamacro",
  27651. height: math.unit(200, "miles")
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(6 + 2 / 12, "feet"),
  27660. weight: math.unit(150, "lb"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/lira/front.svg",
  27664. extra: 1727 / 1605,
  27665. bottom: 26 / 1753
  27666. }
  27667. },
  27668. back: {
  27669. height: math.unit(6 + 2 / 12, "feet"),
  27670. weight: math.unit(150, "lb"),
  27671. name: "Back",
  27672. image: {
  27673. source: "./media/characters/lira/back.svg",
  27674. extra: 1713/1621,
  27675. bottom: 20/1733
  27676. }
  27677. },
  27678. hand: {
  27679. height: math.unit(0.75, "feet"),
  27680. name: "Hand",
  27681. image: {
  27682. source: "./media/characters/lira/hand.svg"
  27683. }
  27684. },
  27685. maw: {
  27686. height: math.unit(0.65, "feet"),
  27687. name: "Maw",
  27688. image: {
  27689. source: "./media/characters/lira/maw.svg"
  27690. }
  27691. },
  27692. pawDigi: {
  27693. height: math.unit(1.6, "feet"),
  27694. name: "Paw Digi",
  27695. image: {
  27696. source: "./media/characters/lira/paw-digi.svg"
  27697. }
  27698. },
  27699. pawPlanti: {
  27700. height: math.unit(1.4, "feet"),
  27701. name: "Paw Planti",
  27702. image: {
  27703. source: "./media/characters/lira/paw-planti.svg"
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Normal",
  27710. height: math.unit(6 + 2 / 12, "feet"),
  27711. default: true
  27712. },
  27713. {
  27714. name: "Macro",
  27715. height: math.unit(100, "feet")
  27716. },
  27717. {
  27718. name: "Macro²",
  27719. height: math.unit(1600, "feet")
  27720. },
  27721. {
  27722. name: "Planetary",
  27723. height: math.unit(20, "earths")
  27724. },
  27725. ]
  27726. ))
  27727. characterMakers.push(() => makeCharacter(
  27728. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27729. {
  27730. front: {
  27731. height: math.unit(6, "feet"),
  27732. weight: math.unit(150, "lb"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/hadjet/front.svg",
  27736. extra: 1480 / 1346,
  27737. bottom: 26 / 1506
  27738. }
  27739. },
  27740. frontNsfw: {
  27741. height: math.unit(6, "feet"),
  27742. weight: math.unit(150, "lb"),
  27743. name: "Front (NSFW)",
  27744. image: {
  27745. source: "./media/characters/hadjet/front-nsfw.svg",
  27746. extra: 1440 / 1358,
  27747. bottom: 52 / 1492
  27748. }
  27749. },
  27750. },
  27751. [
  27752. {
  27753. name: "Macro",
  27754. height: math.unit(10, "stories"),
  27755. default: true
  27756. },
  27757. {
  27758. name: "Megamacro",
  27759. height: math.unit(1.5, "miles")
  27760. },
  27761. {
  27762. name: "Megamacro+",
  27763. height: math.unit(5, "miles")
  27764. },
  27765. ]
  27766. ))
  27767. characterMakers.push(() => makeCharacter(
  27768. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27769. {
  27770. side: {
  27771. height: math.unit(106, "feet"),
  27772. weight: math.unit(500, "tonnes"),
  27773. name: "Side",
  27774. image: {
  27775. source: "./media/characters/kodran/side.svg",
  27776. extra: 553 / 480,
  27777. bottom: 33 / 586
  27778. }
  27779. },
  27780. front: {
  27781. height: math.unit(132, "feet"),
  27782. weight: math.unit(500, "tonnes"),
  27783. name: "Front",
  27784. image: {
  27785. source: "./media/characters/kodran/front.svg",
  27786. extra: 667 / 643,
  27787. bottom: 42 / 709
  27788. }
  27789. },
  27790. flying: {
  27791. height: math.unit(350, "feet"),
  27792. weight: math.unit(500, "tonnes"),
  27793. name: "Flying",
  27794. image: {
  27795. source: "./media/characters/kodran/flying.svg"
  27796. }
  27797. },
  27798. foot: {
  27799. height: math.unit(33, "feet"),
  27800. name: "Foot",
  27801. image: {
  27802. source: "./media/characters/kodran/foot.svg"
  27803. }
  27804. },
  27805. footFront: {
  27806. height: math.unit(19, "feet"),
  27807. name: "Foot (Front)",
  27808. image: {
  27809. source: "./media/characters/kodran/foot-front.svg",
  27810. extra: 261 / 261,
  27811. bottom: 91 / 352
  27812. }
  27813. },
  27814. headFront: {
  27815. height: math.unit(53, "feet"),
  27816. name: "Head (Front)",
  27817. image: {
  27818. source: "./media/characters/kodran/head-front.svg"
  27819. }
  27820. },
  27821. headSide: {
  27822. height: math.unit(65, "feet"),
  27823. name: "Head (Side)",
  27824. image: {
  27825. source: "./media/characters/kodran/head-side.svg"
  27826. }
  27827. },
  27828. throat: {
  27829. height: math.unit(79, "feet"),
  27830. name: "Throat",
  27831. image: {
  27832. source: "./media/characters/kodran/throat.svg"
  27833. }
  27834. },
  27835. },
  27836. [
  27837. {
  27838. name: "Large",
  27839. height: math.unit(106, "feet"),
  27840. default: true
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27846. {
  27847. side: {
  27848. height: math.unit(11, "feet"),
  27849. weight: math.unit(150, "lb"),
  27850. name: "Side",
  27851. image: {
  27852. source: "./media/characters/pyxaron/side.svg",
  27853. extra: 305 / 195,
  27854. bottom: 17 / 322
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(11, "feet"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27868. {
  27869. front: {
  27870. height: math.unit(6, "feet"),
  27871. weight: math.unit(150, "lb"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/meep/front.svg",
  27875. extra: 88 / 80,
  27876. bottom: 6 / 94
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Fun Sized",
  27883. height: math.unit(2, "inches"),
  27884. default: true
  27885. },
  27886. {
  27887. name: "Friend Sized",
  27888. height: math.unit(8, "inches")
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27894. {
  27895. front: {
  27896. height: math.unit(15, "feet"),
  27897. weight: math.unit(2500, "lb"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/holly-rabbit/front.svg",
  27901. extra: 1433 / 1233,
  27902. bottom: 125 / 1558
  27903. }
  27904. },
  27905. dick: {
  27906. height: math.unit(4.6, "feet"),
  27907. name: "Dick",
  27908. image: {
  27909. source: "./media/characters/holly-rabbit/dick.svg"
  27910. }
  27911. },
  27912. },
  27913. [
  27914. {
  27915. name: "Normal",
  27916. height: math.unit(15, "feet"),
  27917. default: true
  27918. },
  27919. {
  27920. name: "Macro",
  27921. height: math.unit(250, "feet")
  27922. },
  27923. {
  27924. name: "Macro+",
  27925. height: math.unit(2500, "feet")
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(3.02, "meters"),
  27934. weight: math.unit(500, "kg"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/drena/front.svg",
  27938. extra: 282 / 243,
  27939. bottom: 8 / 290
  27940. }
  27941. },
  27942. side: {
  27943. height: math.unit(3.02, "meters"),
  27944. weight: math.unit(500, "kg"),
  27945. name: "Side",
  27946. image: {
  27947. source: "./media/characters/drena/side.svg",
  27948. extra: 280 / 245,
  27949. bottom: 10 / 290
  27950. }
  27951. },
  27952. back: {
  27953. height: math.unit(3.02, "meters"),
  27954. weight: math.unit(500, "kg"),
  27955. name: "Back",
  27956. image: {
  27957. source: "./media/characters/drena/back.svg",
  27958. extra: 278 / 243,
  27959. bottom: 2 / 280
  27960. }
  27961. },
  27962. foot: {
  27963. height: math.unit(0.75, "meters"),
  27964. name: "Foot",
  27965. image: {
  27966. source: "./media/characters/drena/foot.svg"
  27967. }
  27968. },
  27969. maw: {
  27970. height: math.unit(0.82, "meters"),
  27971. name: "Maw",
  27972. image: {
  27973. source: "./media/characters/drena/maw.svg"
  27974. }
  27975. },
  27976. rump: {
  27977. height: math.unit(0.93, "meters"),
  27978. name: "Rump",
  27979. image: {
  27980. source: "./media/characters/drena/rump.svg"
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(3.02, "meters"),
  27988. default: true
  27989. },
  27990. ]
  27991. ))
  27992. characterMakers.push(() => makeCharacter(
  27993. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27994. {
  27995. front: {
  27996. height: math.unit(6 + 4 / 12, "feet"),
  27997. weight: math.unit(250, "lb"),
  27998. name: "Front",
  27999. image: {
  28000. source: "./media/characters/remmyzilla/front.svg",
  28001. extra: 4033 / 3588,
  28002. bottom: 123 / 4156
  28003. }
  28004. },
  28005. back: {
  28006. height: math.unit(6 + 4 / 12, "feet"),
  28007. weight: math.unit(250, "lb"),
  28008. name: "Back",
  28009. image: {
  28010. source: "./media/characters/remmyzilla/back.svg",
  28011. extra: 2687 / 2555,
  28012. bottom: 48 / 2735
  28013. }
  28014. },
  28015. frontFancy: {
  28016. height: math.unit(6 + 4 / 12, "feet"),
  28017. weight: math.unit(250, "lb"),
  28018. name: "Front (Fancy)",
  28019. image: {
  28020. source: "./media/characters/remmyzilla/front-fancy.svg",
  28021. extra: 4119 / 3419,
  28022. bottom: 237 / 4356
  28023. }
  28024. },
  28025. paw: {
  28026. height: math.unit(1.73, "feet"),
  28027. name: "Paw",
  28028. image: {
  28029. source: "./media/characters/remmyzilla/paw.svg"
  28030. }
  28031. },
  28032. maw: {
  28033. height: math.unit(1.73, "feet"),
  28034. name: "Maw",
  28035. image: {
  28036. source: "./media/characters/remmyzilla/maw.svg"
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(6 + 4 / 12, "feet")
  28044. },
  28045. {
  28046. name: "Minimacro",
  28047. height: math.unit(12 + 8 / 12, "feet")
  28048. },
  28049. {
  28050. name: "Normal",
  28051. height: math.unit(640, "feet"),
  28052. default: true
  28053. },
  28054. {
  28055. name: "Megamacro",
  28056. height: math.unit(6400, "feet")
  28057. },
  28058. {
  28059. name: "Gigamacro",
  28060. height: math.unit(64000, "miles")
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(2.5, "meters"),
  28069. weight: math.unit(300, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/lawrence/front.svg",
  28073. extra: 357 / 335,
  28074. bottom: 30 / 387
  28075. }
  28076. },
  28077. back: {
  28078. height: math.unit(2.5, "meters"),
  28079. weight: math.unit(300, "lb"),
  28080. name: "Back",
  28081. image: {
  28082. source: "./media/characters/lawrence/back.svg",
  28083. extra: 357 / 338,
  28084. bottom: 16 / 373
  28085. }
  28086. },
  28087. head: {
  28088. height: math.unit(0.9, "meter"),
  28089. name: "Head",
  28090. image: {
  28091. source: "./media/characters/lawrence/head.svg"
  28092. }
  28093. },
  28094. maw: {
  28095. height: math.unit(0.7, "meter"),
  28096. name: "Maw",
  28097. image: {
  28098. source: "./media/characters/lawrence/maw.svg"
  28099. }
  28100. },
  28101. footBottom: {
  28102. height: math.unit(0.5, "meter"),
  28103. name: "Foot (Bottom)",
  28104. image: {
  28105. source: "./media/characters/lawrence/foot-bottom.svg"
  28106. }
  28107. },
  28108. footTop: {
  28109. height: math.unit(0.5, "meter"),
  28110. name: "Foot (Top)",
  28111. image: {
  28112. source: "./media/characters/lawrence/foot-top.svg"
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(2.5, "meters"),
  28120. default: true
  28121. },
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(95, "meters")
  28125. },
  28126. {
  28127. name: "Megamacro",
  28128. height: math.unit(150, "km")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28134. {
  28135. front: {
  28136. height: math.unit(4.2, "meters"),
  28137. name: "Front",
  28138. image: {
  28139. source: "./media/characters/sydney/front.svg",
  28140. extra: 1323 / 1277,
  28141. bottom: 111 / 1434
  28142. }
  28143. },
  28144. },
  28145. [
  28146. {
  28147. name: "Normal",
  28148. height: math.unit(4.2, "meters"),
  28149. default: true
  28150. },
  28151. ]
  28152. ))
  28153. characterMakers.push(() => makeCharacter(
  28154. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28155. {
  28156. back: {
  28157. height: math.unit(201, "feet"),
  28158. name: "Back",
  28159. image: {
  28160. source: "./media/characters/jessica/back.svg",
  28161. extra: 273 / 259,
  28162. bottom: 7 / 280
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(201, "feet"),
  28170. default: true
  28171. },
  28172. {
  28173. name: "Megamacro",
  28174. height: math.unit(8, "miles")
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28180. {
  28181. side: {
  28182. height: math.unit(320, "cm"),
  28183. name: "Side",
  28184. image: {
  28185. source: "./media/characters/victoria/side.svg",
  28186. extra: 778 / 346,
  28187. bottom: 56 / 834
  28188. }
  28189. },
  28190. maw: {
  28191. height: math.unit(5.9, "feet"),
  28192. name: "Maw",
  28193. image: {
  28194. source: "./media/characters/victoria/maw.svg"
  28195. }
  28196. },
  28197. },
  28198. [
  28199. {
  28200. name: "Normal",
  28201. height: math.unit(320, "cm"),
  28202. default: true
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28208. {
  28209. front: {
  28210. height: math.unit(5 + 6 / 12, "feet"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/cat/front.svg",
  28214. extra: 1374 / 1257,
  28215. bottom: 59 / 1433
  28216. }
  28217. },
  28218. back: {
  28219. height: math.unit(5 + 6 / 12, "feet"),
  28220. name: "Back",
  28221. image: {
  28222. source: "./media/characters/cat/back.svg",
  28223. extra: 1337 / 1226,
  28224. bottom: 34 / 1371
  28225. }
  28226. },
  28227. taur: {
  28228. height: math.unit(7, "feet"),
  28229. name: "Taur",
  28230. image: {
  28231. source: "./media/characters/cat/taur.svg",
  28232. extra: 1345 / 1231,
  28233. bottom: 66 / 1411
  28234. }
  28235. },
  28236. lucario: {
  28237. height: math.unit(4, "feet"),
  28238. name: "Lucario",
  28239. image: {
  28240. source: "./media/characters/cat/lucario.svg",
  28241. extra: 1470 / 1318,
  28242. bottom: 65 / 1535
  28243. }
  28244. },
  28245. megaLucario: {
  28246. height: math.unit(4, "feet"),
  28247. name: "Mega Lucario",
  28248. image: {
  28249. source: "./media/characters/cat/mega-lucario.svg",
  28250. extra: 1515 / 1319,
  28251. bottom: 63 / 1578
  28252. }
  28253. },
  28254. nickit: {
  28255. height: math.unit(2, "feet"),
  28256. name: "Nickit",
  28257. image: {
  28258. source: "./media/characters/cat/nickit.svg",
  28259. extra: 1980 / 1585,
  28260. bottom: 102 / 2082
  28261. }
  28262. },
  28263. lopunnyFront: {
  28264. height: math.unit(5, "feet"),
  28265. name: "Lopunny (Front)",
  28266. image: {
  28267. source: "./media/characters/cat/lopunny-front.svg",
  28268. extra: 1782 / 1469,
  28269. bottom: 38 / 1820
  28270. }
  28271. },
  28272. lopunnyBack: {
  28273. height: math.unit(5, "feet"),
  28274. name: "Lopunny (Back)",
  28275. image: {
  28276. source: "./media/characters/cat/lopunny-back.svg",
  28277. extra: 1660 / 1490,
  28278. bottom: 25 / 1685
  28279. }
  28280. },
  28281. },
  28282. [
  28283. {
  28284. name: "Really small",
  28285. height: math.unit(1, "nm")
  28286. },
  28287. {
  28288. name: "Micro",
  28289. height: math.unit(5, "inches")
  28290. },
  28291. {
  28292. name: "Normal",
  28293. height: math.unit(5 + 6 / 12, "feet"),
  28294. default: true
  28295. },
  28296. {
  28297. name: "Macro",
  28298. height: math.unit(50, "feet")
  28299. },
  28300. {
  28301. name: "Macro+",
  28302. height: math.unit(150, "feet")
  28303. },
  28304. {
  28305. name: "Megamacro",
  28306. height: math.unit(100, "miles")
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(63.4, "meters"),
  28315. weight: math.unit(3.28349e+6, "kilograms"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/kirina-violet/front.svg",
  28319. extra: 2812 / 2725,
  28320. bottom: 0 / 2812
  28321. }
  28322. },
  28323. back: {
  28324. height: math.unit(63.4, "meters"),
  28325. weight: math.unit(3.28349e+6, "kilograms"),
  28326. name: "Back",
  28327. image: {
  28328. source: "./media/characters/kirina-violet/back.svg",
  28329. extra: 2812 / 2725,
  28330. bottom: 0 / 2812
  28331. }
  28332. },
  28333. mouth: {
  28334. height: math.unit(4.35, "meters"),
  28335. name: "Mouth",
  28336. image: {
  28337. source: "./media/characters/kirina-violet/mouth.svg"
  28338. }
  28339. },
  28340. paw: {
  28341. height: math.unit(5.6, "meters"),
  28342. name: "Paw",
  28343. image: {
  28344. source: "./media/characters/kirina-violet/paw.svg"
  28345. }
  28346. },
  28347. tail: {
  28348. height: math.unit(18, "meters"),
  28349. name: "Tail",
  28350. image: {
  28351. source: "./media/characters/kirina-violet/tail.svg"
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Macro",
  28358. height: math.unit(63.4, "meters"),
  28359. default: true
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(75, "feet"),
  28368. name: "Front",
  28369. image: {
  28370. source: "./media/characters/cat-gigachu/front.svg",
  28371. extra: 1239/1027,
  28372. bottom: 32/1271
  28373. }
  28374. },
  28375. back: {
  28376. height: math.unit(75, "feet"),
  28377. name: "Back",
  28378. image: {
  28379. source: "./media/characters/cat-gigachu/back.svg",
  28380. extra: 1229/1030,
  28381. bottom: 9/1238
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Dynamax",
  28388. height: math.unit(75, "feet"),
  28389. default: true
  28390. },
  28391. ]
  28392. ))
  28393. characterMakers.push(() => makeCharacter(
  28394. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28395. {
  28396. front: {
  28397. height: math.unit(6, "feet"),
  28398. weight: math.unit(150, "lb"),
  28399. name: "Front",
  28400. image: {
  28401. source: "./media/characters/sfaiyan/front.svg",
  28402. extra: 999 / 978,
  28403. bottom: 5 / 1004
  28404. }
  28405. },
  28406. },
  28407. [
  28408. {
  28409. name: "Normal",
  28410. height: math.unit(1.82, "meters")
  28411. },
  28412. {
  28413. name: "Giant",
  28414. height: math.unit(2.27, "km"),
  28415. default: true
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28421. {
  28422. front: {
  28423. height: math.unit(179, "cm"),
  28424. weight: math.unit(100, "kg"),
  28425. name: "Front",
  28426. image: {
  28427. source: "./media/characters/raunehkeli/front.svg",
  28428. extra: 1934 / 1926,
  28429. bottom: 0 / 1934
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Normal",
  28436. height: math.unit(179, "cm")
  28437. },
  28438. {
  28439. name: "Maximum",
  28440. height: math.unit(575, "meters"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(6, "feet"),
  28450. weight: math.unit(150, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28454. extra: 2625 / 2518,
  28455. bottom: 60 / 2685
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(6 + 2 / 12, "feet")
  28463. },
  28464. {
  28465. name: "Macro",
  28466. height: math.unit(1180, "feet"),
  28467. default: true
  28468. },
  28469. ]
  28470. ))
  28471. characterMakers.push(() => makeCharacter(
  28472. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28473. {
  28474. front: {
  28475. height: math.unit(5 + 6 / 12, "feet"),
  28476. weight: math.unit(108, "lb"),
  28477. name: "Front",
  28478. image: {
  28479. source: "./media/characters/lilith-zott/front.svg",
  28480. extra: 2510 / 2238,
  28481. bottom: 100 / 2610
  28482. }
  28483. },
  28484. frontDressed: {
  28485. height: math.unit(5 + 6 / 12, "feet"),
  28486. weight: math.unit(108, "lb"),
  28487. name: "Front (Dressed)",
  28488. image: {
  28489. source: "./media/characters/lilith-zott/front-dressed.svg",
  28490. extra: 2510 / 2238,
  28491. bottom: 100 / 2610
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(5 + 6 / 12, "feet")
  28499. },
  28500. {
  28501. name: "Macro",
  28502. height: math.unit(1030, "feet"),
  28503. default: true
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(6, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Front",
  28514. image: {
  28515. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28516. extra: 2567 / 2435,
  28517. bottom: 39 / 2606
  28518. }
  28519. },
  28520. frontSuper: {
  28521. height: math.unit(6, "feet"),
  28522. name: "Front (Super)",
  28523. image: {
  28524. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28525. extra: 2567 / 2435,
  28526. bottom: 39 / 2606
  28527. }
  28528. },
  28529. },
  28530. [
  28531. {
  28532. name: "Normal",
  28533. height: math.unit(5 + 10 / 12, "feet")
  28534. },
  28535. {
  28536. name: "Macro",
  28537. height: math.unit(1100, "feet"),
  28538. default: true
  28539. },
  28540. ]
  28541. ))
  28542. characterMakers.push(() => makeCharacter(
  28543. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28544. {
  28545. front: {
  28546. height: math.unit(100, "miles"),
  28547. name: "Front",
  28548. image: {
  28549. source: "./media/characters/sona/front.svg",
  28550. extra: 2433 / 2201,
  28551. bottom: 53 / 2486
  28552. }
  28553. },
  28554. foot: {
  28555. height: math.unit(16.1, "miles"),
  28556. name: "Foot",
  28557. image: {
  28558. source: "./media/characters/sona/foot.svg"
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Macro",
  28565. height: math.unit(100, "miles"),
  28566. default: true
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28572. {
  28573. front: {
  28574. height: math.unit(6, "feet"),
  28575. weight: math.unit(150, "lb"),
  28576. name: "Front",
  28577. image: {
  28578. source: "./media/characters/bailey/front.svg",
  28579. extra: 1778 / 1724,
  28580. bottom: 30 / 1808
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Micro",
  28587. height: math.unit(4, "inches")
  28588. },
  28589. {
  28590. name: "Normal",
  28591. height: math.unit(5 + 5 / 12, "feet"),
  28592. default: true
  28593. },
  28594. {
  28595. name: "Macro",
  28596. height: math.unit(250, "feet")
  28597. },
  28598. {
  28599. name: "Megamacro",
  28600. height: math.unit(100, "miles")
  28601. },
  28602. ]
  28603. ))
  28604. characterMakers.push(() => makeCharacter(
  28605. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28606. {
  28607. front: {
  28608. height: math.unit(5 + 2 / 12, "feet"),
  28609. weight: math.unit(120, "lb"),
  28610. name: "Front",
  28611. image: {
  28612. source: "./media/characters/snaps/front.svg",
  28613. extra: 2370 / 2177,
  28614. bottom: 48 / 2418
  28615. }
  28616. },
  28617. back: {
  28618. height: math.unit(5 + 2 / 12, "feet"),
  28619. weight: math.unit(120, "lb"),
  28620. name: "Back",
  28621. image: {
  28622. source: "./media/characters/snaps/back.svg",
  28623. extra: 2408 / 2258,
  28624. bottom: 15 / 2423
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Micro",
  28631. height: math.unit(9, "inches")
  28632. },
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(5 + 2 / 12, "feet"),
  28636. default: true
  28637. },
  28638. {
  28639. name: "Mini Macro",
  28640. height: math.unit(10, "feet")
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28646. {
  28647. front: {
  28648. height: math.unit(1.8, "meters"),
  28649. weight: math.unit(85, "kg"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/azteck/front.svg",
  28653. extra: 2815 / 2625,
  28654. bottom: 89 / 2904
  28655. }
  28656. },
  28657. back: {
  28658. height: math.unit(1.8, "meters"),
  28659. weight: math.unit(85, "kg"),
  28660. name: "Back",
  28661. image: {
  28662. source: "./media/characters/azteck/back.svg",
  28663. extra: 2856 / 2648,
  28664. bottom: 85 / 2941
  28665. }
  28666. },
  28667. frontDressed: {
  28668. height: math.unit(1.8, "meters"),
  28669. weight: math.unit(85, "kg"),
  28670. name: "Front (Dressed)",
  28671. image: {
  28672. source: "./media/characters/azteck/front-dressed.svg",
  28673. extra: 2147 / 2003,
  28674. bottom: 68 / 2215
  28675. }
  28676. },
  28677. head: {
  28678. height: math.unit(0.47, "meters"),
  28679. weight: math.unit(85, "kg"),
  28680. name: "Head",
  28681. image: {
  28682. source: "./media/characters/azteck/head.svg"
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Bite sized",
  28689. height: math.unit(16, "cm")
  28690. },
  28691. {
  28692. name: "Normal",
  28693. height: math.unit(1.8, "meters"),
  28694. default: true
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(6, "feet"),
  28703. weight: math.unit(150, "lb"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/pidge/front.svg",
  28707. extra: 620 / 588,
  28708. bottom: 9 / 629
  28709. }
  28710. },
  28711. back: {
  28712. height: math.unit(6, "feet"),
  28713. weight: math.unit(150, "lb"),
  28714. name: "Back",
  28715. image: {
  28716. source: "./media/characters/pidge/back.svg",
  28717. extra: 620 / 588,
  28718. bottom: 9 / 629
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Macro",
  28725. height: math.unit(1, "mile"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(6, "feet"),
  28735. weight: math.unit(150, "lb"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/en/front.svg",
  28739. extra: 1697 / 1563,
  28740. bottom: 103 / 1800
  28741. }
  28742. },
  28743. back: {
  28744. height: math.unit(6, "feet"),
  28745. weight: math.unit(150, "lb"),
  28746. name: "Back",
  28747. image: {
  28748. source: "./media/characters/en/back.svg",
  28749. extra: 1700 / 1570,
  28750. bottom: 51 / 1751
  28751. }
  28752. },
  28753. frontDressed: {
  28754. height: math.unit(6, "feet"),
  28755. weight: math.unit(150, "lb"),
  28756. name: "Front (Dressed)",
  28757. image: {
  28758. source: "./media/characters/en/front-dressed.svg",
  28759. extra: 1697 / 1563,
  28760. bottom: 103 / 1800
  28761. }
  28762. },
  28763. backDressed: {
  28764. height: math.unit(6, "feet"),
  28765. weight: math.unit(150, "lb"),
  28766. name: "Back (Dressed)",
  28767. image: {
  28768. source: "./media/characters/en/back-dressed.svg",
  28769. extra: 1700 / 1570,
  28770. bottom: 51 / 1751
  28771. }
  28772. },
  28773. },
  28774. [
  28775. {
  28776. name: "Macro",
  28777. height: math.unit(210, "feet"),
  28778. default: true
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28784. {
  28785. front: {
  28786. height: math.unit(6, "feet"),
  28787. weight: math.unit(150, "lb"),
  28788. name: "Front",
  28789. image: {
  28790. source: "./media/characters/haze-orris/front.svg",
  28791. extra: 3975 / 3525,
  28792. bottom: 137 / 4112
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Micro",
  28799. height: math.unit(150, "mm"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(6, "feet"),
  28809. weight: math.unit(150, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/casselene-yaro/front.svg",
  28813. extra: 4721 / 4541,
  28814. bottom: 82 / 4803
  28815. }
  28816. },
  28817. back: {
  28818. height: math.unit(6, "feet"),
  28819. weight: math.unit(150, "lb"),
  28820. name: "Back",
  28821. image: {
  28822. source: "./media/characters/casselene-yaro/back.svg",
  28823. extra: 4569 / 4377,
  28824. bottom: 69 / 4638
  28825. }
  28826. },
  28827. frontDressed: {
  28828. height: math.unit(6, "feet"),
  28829. weight: math.unit(150, "lb"),
  28830. name: "Front-dressed",
  28831. image: {
  28832. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28833. extra: 4721 / 4541,
  28834. bottom: 82 / 4803
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Macro",
  28841. height: math.unit(190, "feet"),
  28842. default: true
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(6, "feet"),
  28851. weight: math.unit(150, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/myra-rue-delore/front.svg",
  28855. extra: 1340 / 1308,
  28856. bottom: 67 / 1407
  28857. }
  28858. },
  28859. back: {
  28860. height: math.unit(6, "feet"),
  28861. weight: math.unit(150, "lb"),
  28862. name: "Back",
  28863. image: {
  28864. source: "./media/characters/myra-rue-delore/back.svg",
  28865. extra: 1341 / 1310,
  28866. bottom: 40 / 1381
  28867. }
  28868. },
  28869. frontDressed: {
  28870. height: math.unit(6, "feet"),
  28871. weight: math.unit(150, "lb"),
  28872. name: "Front (Dressed)",
  28873. image: {
  28874. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28875. extra: 1340 / 1308,
  28876. bottom: 67 / 1407
  28877. }
  28878. },
  28879. },
  28880. [
  28881. {
  28882. name: "Macro",
  28883. height: math.unit(150, "feet"),
  28884. default: true
  28885. },
  28886. ]
  28887. ))
  28888. characterMakers.push(() => makeCharacter(
  28889. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28890. {
  28891. front: {
  28892. height: math.unit(10, "feet"),
  28893. weight: math.unit(15015, "lb"),
  28894. name: "Front",
  28895. image: {
  28896. source: "./media/characters/fem!plat/front.svg",
  28897. extra: 2799 / 2604,
  28898. bottom: 149 / 2948
  28899. }
  28900. },
  28901. },
  28902. [
  28903. {
  28904. name: "Normal",
  28905. height: math.unit(10, "feet"),
  28906. default: true
  28907. },
  28908. {
  28909. name: "Macro",
  28910. height: math.unit(100, "feet")
  28911. },
  28912. {
  28913. name: "Megamacro",
  28914. height: math.unit(1000, "feet")
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(15 + 5 / 12, "feet"),
  28923. weight: math.unit(4600, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/neapolitan-ananassa/front.svg",
  28927. extra: 2903 / 2736,
  28928. bottom: 0 / 2903
  28929. }
  28930. },
  28931. side: {
  28932. height: math.unit(15 + 5 / 12, "feet"),
  28933. weight: math.unit(4600, "lb"),
  28934. name: "Side",
  28935. image: {
  28936. source: "./media/characters/neapolitan-ananassa/side.svg",
  28937. extra: 2925 / 2719,
  28938. bottom: 0 / 2925
  28939. }
  28940. },
  28941. back: {
  28942. height: math.unit(15 + 5 / 12, "feet"),
  28943. weight: math.unit(4600, "lb"),
  28944. name: "Back",
  28945. image: {
  28946. source: "./media/characters/neapolitan-ananassa/back.svg",
  28947. extra: 2903 / 2736,
  28948. bottom: 0 / 2903
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Normal",
  28955. height: math.unit(15 + 5 / 12, "feet"),
  28956. default: true
  28957. },
  28958. {
  28959. name: "Post-Millenium",
  28960. height: math.unit(35 + 5 / 12, "feet")
  28961. },
  28962. {
  28963. name: "Post-Era",
  28964. height: math.unit(450 + 5 / 12, "feet")
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(300, "meters"),
  28973. weight: math.unit(125000, "tonnes"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/pazuzu/front.svg",
  28977. extra: 877 / 794,
  28978. bottom: 47 / 924
  28979. }
  28980. },
  28981. },
  28982. [
  28983. {
  28984. name: "Macro",
  28985. height: math.unit(300, "meters"),
  28986. default: true
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28992. {
  28993. side: {
  28994. height: math.unit(10 + 7 / 12, "feet"),
  28995. weight: math.unit(2.5, "tons"),
  28996. name: "Side",
  28997. image: {
  28998. source: "./media/characters/aasha/side.svg",
  28999. extra: 1345 / 1245,
  29000. bottom: 111 / 1456
  29001. }
  29002. },
  29003. back: {
  29004. height: math.unit(10 + 7 / 12, "feet"),
  29005. weight: math.unit(2.5, "tons"),
  29006. name: "Back",
  29007. image: {
  29008. source: "./media/characters/aasha/back.svg",
  29009. extra: 1133 / 1057,
  29010. bottom: 257 / 1390
  29011. }
  29012. },
  29013. },
  29014. [
  29015. {
  29016. name: "Normal",
  29017. height: math.unit(10 + 7 / 12, "feet"),
  29018. default: true
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(6 + 3 / 12, "feet"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/nevan/front.svg",
  29030. extra: 704 / 704,
  29031. bottom: 28 / 732
  29032. }
  29033. },
  29034. back: {
  29035. height: math.unit(6 + 3 / 12, "feet"),
  29036. name: "Back",
  29037. image: {
  29038. source: "./media/characters/nevan/back.svg",
  29039. extra: 714 / 714,
  29040. bottom: 21 / 735
  29041. }
  29042. },
  29043. frontFlaccid: {
  29044. height: math.unit(6 + 3 / 12, "feet"),
  29045. name: "Front (Flaccid)",
  29046. image: {
  29047. source: "./media/characters/nevan/front-flaccid.svg",
  29048. extra: 704 / 704,
  29049. bottom: 28 / 732
  29050. }
  29051. },
  29052. frontErect: {
  29053. height: math.unit(6 + 3 / 12, "feet"),
  29054. name: "Front (Erect)",
  29055. image: {
  29056. source: "./media/characters/nevan/front-erect.svg",
  29057. extra: 704 / 704,
  29058. bottom: 28 / 732
  29059. }
  29060. },
  29061. backFlaccid: {
  29062. height: math.unit(6 + 3 / 12, "feet"),
  29063. name: "Back (Flaccid)",
  29064. image: {
  29065. source: "./media/characters/nevan/back-flaccid.svg",
  29066. extra: 714 / 714,
  29067. bottom: 21 / 735
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Normal",
  29074. height: math.unit(6 + 3 / 12, "feet"),
  29075. default: true
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(4, "feet"),
  29084. name: "Front",
  29085. image: {
  29086. source: "./media/characters/arhan/front.svg",
  29087. extra: 3368 / 3133,
  29088. bottom: 0 / 3368
  29089. }
  29090. },
  29091. side: {
  29092. height: math.unit(4, "feet"),
  29093. name: "Side",
  29094. image: {
  29095. source: "./media/characters/arhan/side.svg",
  29096. extra: 3347 / 3105,
  29097. bottom: 0 / 3347
  29098. }
  29099. },
  29100. tongue: {
  29101. height: math.unit(1.42, "feet"),
  29102. name: "Tongue",
  29103. image: {
  29104. source: "./media/characters/arhan/tongue.svg"
  29105. }
  29106. },
  29107. head: {
  29108. height: math.unit(0.85, "feet"),
  29109. name: "Head",
  29110. image: {
  29111. source: "./media/characters/arhan/head.svg"
  29112. }
  29113. },
  29114. },
  29115. [
  29116. {
  29117. name: "Normal",
  29118. height: math.unit(4, "feet"),
  29119. default: true
  29120. },
  29121. ]
  29122. ))
  29123. characterMakers.push(() => makeCharacter(
  29124. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29125. {
  29126. front: {
  29127. height: math.unit(5 + 7.5 / 12, "feet"),
  29128. weight: math.unit(120, "lb"),
  29129. name: "Front",
  29130. image: {
  29131. source: "./media/characters/digi-duncan/front.svg",
  29132. extra: 330 / 326,
  29133. bottom: 16 / 346
  29134. }
  29135. },
  29136. side: {
  29137. height: math.unit(5 + 7.5 / 12, "feet"),
  29138. weight: math.unit(120, "lb"),
  29139. name: "Side",
  29140. image: {
  29141. source: "./media/characters/digi-duncan/side.svg",
  29142. extra: 341 / 337,
  29143. bottom: 1 / 342
  29144. }
  29145. },
  29146. back: {
  29147. height: math.unit(5 + 7.5 / 12, "feet"),
  29148. weight: math.unit(120, "lb"),
  29149. name: "Back",
  29150. image: {
  29151. source: "./media/characters/digi-duncan/back.svg",
  29152. extra: 330 / 326,
  29153. bottom: 12 / 342
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Speck",
  29160. height: math.unit(0.25, "mm")
  29161. },
  29162. {
  29163. name: "Micro",
  29164. height: math.unit(5, "mm")
  29165. },
  29166. {
  29167. name: "Tiny",
  29168. height: math.unit(0.5, "inches"),
  29169. default: true
  29170. },
  29171. {
  29172. name: "Human",
  29173. height: math.unit(5 + 7.5 / 12, "feet")
  29174. },
  29175. {
  29176. name: "Minigiant",
  29177. height: math.unit(8 + 5.25, "feet")
  29178. },
  29179. {
  29180. name: "Giant",
  29181. height: math.unit(2000, "feet")
  29182. },
  29183. {
  29184. name: "Mega",
  29185. height: math.unit(371.1, "miles")
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(2, "meters"),
  29194. weight: math.unit(350, "kg"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29198. extra: 898 / 838,
  29199. bottom: 9 / 907
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Micro",
  29206. height: math.unit(8, "meters")
  29207. },
  29208. {
  29209. name: "Normal",
  29210. height: math.unit(50, "meters"),
  29211. default: true
  29212. },
  29213. {
  29214. name: "Macro",
  29215. height: math.unit(500, "meters")
  29216. },
  29217. ]
  29218. ))
  29219. characterMakers.push(() => makeCharacter(
  29220. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29221. {
  29222. front: {
  29223. height: math.unit(6 + 6 / 12, "feet"),
  29224. name: "Front",
  29225. image: {
  29226. source: "./media/characters/khardesh/front.svg",
  29227. extra: 888 / 797,
  29228. bottom: 25 / 913
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Normal",
  29235. height: math.unit(6 + 6 / 12, "feet"),
  29236. default: true
  29237. },
  29238. {
  29239. name: "Normal+",
  29240. height: math.unit(4, "meters")
  29241. },
  29242. {
  29243. name: "Macro",
  29244. height: math.unit(50, "meters")
  29245. },
  29246. {
  29247. name: "Macro+",
  29248. height: math.unit(100, "meters")
  29249. },
  29250. {
  29251. name: "Megamacro",
  29252. height: math.unit(20, "km")
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(6, "feet"),
  29261. weight: math.unit(150, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/kosho/front.svg",
  29265. extra: 1847 / 1847,
  29266. bottom: 86 / 1933
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Second-stage micro",
  29273. height: math.unit(0.5, "inches")
  29274. },
  29275. {
  29276. name: "First-stage micro",
  29277. height: math.unit(6, "inches")
  29278. },
  29279. {
  29280. name: "Normal",
  29281. height: math.unit(6, "feet"),
  29282. default: true
  29283. },
  29284. {
  29285. name: "First-stage macro",
  29286. height: math.unit(72, "feet")
  29287. },
  29288. {
  29289. name: "Second-stage macro",
  29290. height: math.unit(864, "feet")
  29291. },
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29296. {
  29297. normal: {
  29298. height: math.unit(4 + 6 / 12, "feet"),
  29299. name: "Normal",
  29300. image: {
  29301. source: "./media/characters/hydra/normal.svg",
  29302. extra: 2833 / 2634,
  29303. bottom: 68 / 2901
  29304. }
  29305. },
  29306. smol: {
  29307. height: math.unit(0.705, "inches"),
  29308. name: "Smol",
  29309. image: {
  29310. source: "./media/characters/hydra/smol.svg",
  29311. extra: 2715 / 2540,
  29312. bottom: 0 / 2715
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(4 + 6 / 12, "feet"),
  29320. default: true
  29321. }
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(0.6, "cm"),
  29329. name: "Front",
  29330. image: {
  29331. source: "./media/characters/daz/front.svg",
  29332. extra: 1682 / 1164,
  29333. bottom: 42 / 1724
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Normal",
  29340. height: math.unit(0.6, "cm"),
  29341. default: true
  29342. },
  29343. ]
  29344. ))
  29345. characterMakers.push(() => makeCharacter(
  29346. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29347. {
  29348. front: {
  29349. height: math.unit(6, "feet"),
  29350. weight: math.unit(235, "lb"),
  29351. name: "Front",
  29352. image: {
  29353. source: "./media/characters/theo-pangolin/front.svg",
  29354. extra: 1996 / 1969,
  29355. bottom: 115 / 2111
  29356. }
  29357. },
  29358. back: {
  29359. height: math.unit(6, "feet"),
  29360. weight: math.unit(235, "lb"),
  29361. name: "Back",
  29362. image: {
  29363. source: "./media/characters/theo-pangolin/back.svg",
  29364. extra: 1979 / 1979,
  29365. bottom: 40 / 2019
  29366. }
  29367. },
  29368. feral: {
  29369. height: math.unit(2, "feet"),
  29370. weight: math.unit(30, "lb"),
  29371. name: "Feral",
  29372. image: {
  29373. source: "./media/characters/theo-pangolin/feral.svg",
  29374. extra: 803 / 791,
  29375. bottom: 181 / 984
  29376. }
  29377. },
  29378. footFive: {
  29379. height: math.unit(1.43, "feet"),
  29380. name: "Foot (Five Toes)",
  29381. image: {
  29382. source: "./media/characters/theo-pangolin/foot-five.svg"
  29383. }
  29384. },
  29385. footFour: {
  29386. height: math.unit(1.43, "feet"),
  29387. name: "Foot (Four Toes)",
  29388. image: {
  29389. source: "./media/characters/theo-pangolin/foot-four.svg"
  29390. }
  29391. },
  29392. handFour: {
  29393. height: math.unit(0.81, "feet"),
  29394. name: "Hand (Four Fingers)",
  29395. image: {
  29396. source: "./media/characters/theo-pangolin/hand-four.svg"
  29397. }
  29398. },
  29399. handThree: {
  29400. height: math.unit(0.81, "feet"),
  29401. name: "Hand (Three Fingers)",
  29402. image: {
  29403. source: "./media/characters/theo-pangolin/hand-three.svg"
  29404. }
  29405. },
  29406. headFront: {
  29407. height: math.unit(1.37, "feet"),
  29408. name: "Head (Front)",
  29409. image: {
  29410. source: "./media/characters/theo-pangolin/head-front.svg"
  29411. }
  29412. },
  29413. headSide: {
  29414. height: math.unit(1.43, "feet"),
  29415. name: "Head (Side)",
  29416. image: {
  29417. source: "./media/characters/theo-pangolin/head-side.svg"
  29418. }
  29419. },
  29420. tongue: {
  29421. height: math.unit(2.29, "feet"),
  29422. name: "Tongue",
  29423. image: {
  29424. source: "./media/characters/theo-pangolin/tongue.svg"
  29425. }
  29426. },
  29427. },
  29428. [
  29429. {
  29430. name: "Normal",
  29431. height: math.unit(6, "feet")
  29432. },
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(400, "feet"),
  29436. default: true
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29442. {
  29443. front: {
  29444. height: math.unit(6, "inches"),
  29445. weight: math.unit(0.036, "kg"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/renée/front.svg",
  29449. extra: 900 / 886,
  29450. bottom: 8 / 908
  29451. }
  29452. },
  29453. },
  29454. [
  29455. {
  29456. name: "Nano",
  29457. height: math.unit(1, "nm")
  29458. },
  29459. {
  29460. name: "Micro",
  29461. height: math.unit(1, "mm")
  29462. },
  29463. {
  29464. name: "Normal",
  29465. height: math.unit(6, "inches")
  29466. },
  29467. {
  29468. name: "Macro",
  29469. height: math.unit(2000, "feet"),
  29470. default: true
  29471. },
  29472. {
  29473. name: "Megamacro",
  29474. height: math.unit(2, "km")
  29475. },
  29476. {
  29477. name: "Gigamacro",
  29478. height: math.unit(2000, "km")
  29479. },
  29480. {
  29481. name: "Teramacro",
  29482. height: math.unit(250000, "km")
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(4, "meters"),
  29491. weight: math.unit(150, "kg"),
  29492. name: "Front",
  29493. image: {
  29494. source: "./media/characters/caledvwlch/front.svg",
  29495. extra: 1760 / 1551,
  29496. bottom: 28 / 1788
  29497. }
  29498. },
  29499. side: {
  29500. height: math.unit(4, "meters"),
  29501. weight: math.unit(150, "kg"),
  29502. name: "Side",
  29503. image: {
  29504. source: "./media/characters/caledvwlch/side.svg",
  29505. extra: 1605 / 1536,
  29506. bottom: 31 / 1636
  29507. }
  29508. },
  29509. back: {
  29510. height: math.unit(4, "meters"),
  29511. weight: math.unit(150, "kg"),
  29512. name: "Back",
  29513. image: {
  29514. source: "./media/characters/caledvwlch/back.svg",
  29515. extra: 1635 / 1565,
  29516. bottom: 27 / 1662
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "\"Incognito\"",
  29523. height: math.unit(4, "meters")
  29524. },
  29525. {
  29526. name: "Small rampage",
  29527. height: math.unit(600, "meters")
  29528. },
  29529. {
  29530. name: "Mega",
  29531. height: math.unit(30, "km")
  29532. },
  29533. {
  29534. name: "Home-size",
  29535. height: math.unit(50, "km"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Giga",
  29540. height: math.unit(300, "km")
  29541. },
  29542. {
  29543. name: "Lounging",
  29544. height: math.unit(11000, "km")
  29545. },
  29546. {
  29547. name: "Planet snacking",
  29548. height: math.unit(2000000, "km")
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29554. {
  29555. front: {
  29556. height: math.unit(6, "feet"),
  29557. weight: math.unit(215, "lb"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/sapphire-svell/front.svg",
  29561. extra: 495 / 455,
  29562. bottom: 20 / 515
  29563. }
  29564. },
  29565. back: {
  29566. height: math.unit(6, "feet"),
  29567. weight: math.unit(216, "lb"),
  29568. name: "Back",
  29569. image: {
  29570. source: "./media/characters/sapphire-svell/back.svg",
  29571. extra: 497 / 477,
  29572. bottom: 7 / 504
  29573. }
  29574. },
  29575. maw: {
  29576. height: math.unit(1.57, "feet"),
  29577. name: "Maw",
  29578. image: {
  29579. source: "./media/characters/sapphire-svell/maw.svg"
  29580. }
  29581. },
  29582. foot: {
  29583. height: math.unit(1.07, "feet"),
  29584. name: "Foot",
  29585. image: {
  29586. source: "./media/characters/sapphire-svell/foot.svg"
  29587. }
  29588. },
  29589. toering: {
  29590. height: math.unit(1.7, "inch"),
  29591. name: "Toering",
  29592. image: {
  29593. source: "./media/characters/sapphire-svell/toering.svg"
  29594. }
  29595. },
  29596. },
  29597. [
  29598. {
  29599. name: "Normal",
  29600. height: math.unit(300, "feet"),
  29601. default: true
  29602. },
  29603. {
  29604. name: "Augmented",
  29605. height: math.unit(1250, "feet")
  29606. },
  29607. {
  29608. name: "Unleashed",
  29609. height: math.unit(3000, "feet")
  29610. },
  29611. ]
  29612. ))
  29613. characterMakers.push(() => makeCharacter(
  29614. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29615. {
  29616. side: {
  29617. height: math.unit(2 + 3 / 12, "feet"),
  29618. weight: math.unit(110, "lb"),
  29619. name: "Side",
  29620. image: {
  29621. source: "./media/characters/glitch-flux/side.svg",
  29622. extra: 997 / 805,
  29623. bottom: 20 / 1017
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(2 + 3 / 12, "feet"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(4, "meters"),
  29640. name: "Front",
  29641. image: {
  29642. source: "./media/characters/mid/front.svg",
  29643. extra: 507 / 476,
  29644. bottom: 17 / 524
  29645. }
  29646. },
  29647. back: {
  29648. height: math.unit(4, "meters"),
  29649. name: "Back",
  29650. image: {
  29651. source: "./media/characters/mid/back.svg",
  29652. extra: 519 / 487,
  29653. bottom: 7 / 526
  29654. }
  29655. },
  29656. stuck: {
  29657. height: math.unit(2.2, "meters"),
  29658. name: "Stuck",
  29659. image: {
  29660. source: "./media/characters/mid/stuck.svg",
  29661. extra: 1951 / 1869,
  29662. bottom: 88 / 2039
  29663. }
  29664. }
  29665. },
  29666. [
  29667. {
  29668. name: "Normal",
  29669. height: math.unit(4, "meters"),
  29670. default: true
  29671. },
  29672. {
  29673. name: "Big",
  29674. height: math.unit(10, "meters")
  29675. },
  29676. {
  29677. name: "Macro",
  29678. height: math.unit(800, "meters")
  29679. },
  29680. {
  29681. name: "Megamacro",
  29682. height: math.unit(100, "km")
  29683. },
  29684. {
  29685. name: "Overgrown",
  29686. height: math.unit(1, "parsec")
  29687. },
  29688. ]
  29689. ))
  29690. characterMakers.push(() => makeCharacter(
  29691. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29692. {
  29693. front: {
  29694. height: math.unit(2.5, "meters"),
  29695. weight: math.unit(225, "kg"),
  29696. name: "Front",
  29697. image: {
  29698. source: "./media/characters/iris/front.svg",
  29699. extra: 3348 / 3251,
  29700. bottom: 205 / 3553
  29701. }
  29702. },
  29703. maw: {
  29704. height: math.unit(0.56, "meter"),
  29705. name: "Maw",
  29706. image: {
  29707. source: "./media/characters/iris/maw.svg"
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "Mewter cat",
  29714. height: math.unit(1.2, "meters")
  29715. },
  29716. {
  29717. name: "Minimacro",
  29718. height: math.unit(2.5, "meters"),
  29719. default: true
  29720. },
  29721. {
  29722. name: "Macro",
  29723. height: math.unit(180, "meters")
  29724. },
  29725. {
  29726. name: "Megamacro",
  29727. height: math.unit(2746, "meters")
  29728. },
  29729. ]
  29730. ))
  29731. characterMakers.push(() => makeCharacter(
  29732. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29733. {
  29734. front: {
  29735. height: math.unit(6, "feet"),
  29736. weight: math.unit(135, "lb"),
  29737. name: "Front",
  29738. image: {
  29739. source: "./media/characters/axel/front.svg",
  29740. extra: 908 / 908,
  29741. bottom: 58 / 966
  29742. }
  29743. },
  29744. side: {
  29745. height: math.unit(6, "feet"),
  29746. weight: math.unit(135, "lb"),
  29747. name: "Side",
  29748. image: {
  29749. source: "./media/characters/axel/side.svg",
  29750. extra: 958 / 958,
  29751. bottom: 11 / 969
  29752. }
  29753. },
  29754. back: {
  29755. height: math.unit(6, "feet"),
  29756. weight: math.unit(135, "lb"),
  29757. name: "Back",
  29758. image: {
  29759. source: "./media/characters/axel/back.svg",
  29760. extra: 887 / 887,
  29761. bottom: 34 / 921
  29762. }
  29763. },
  29764. head: {
  29765. height: math.unit(1.07, "feet"),
  29766. name: "Head",
  29767. image: {
  29768. source: "./media/characters/axel/head.svg"
  29769. }
  29770. },
  29771. beak: {
  29772. height: math.unit(1.4, "feet"),
  29773. name: "Beak",
  29774. image: {
  29775. source: "./media/characters/axel/beak.svg"
  29776. }
  29777. },
  29778. beakSide: {
  29779. height: math.unit(1.4, "feet"),
  29780. name: "Beak Side",
  29781. image: {
  29782. source: "./media/characters/axel/beak-side.svg"
  29783. }
  29784. },
  29785. sheath: {
  29786. height: math.unit(0.5, "feet"),
  29787. name: "Sheath",
  29788. image: {
  29789. source: "./media/characters/axel/sheath.svg"
  29790. }
  29791. },
  29792. dick: {
  29793. height: math.unit(0.98, "feet"),
  29794. name: "Dick",
  29795. image: {
  29796. source: "./media/characters/axel/dick.svg"
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Macro",
  29803. height: math.unit(68, "meters"),
  29804. default: true
  29805. },
  29806. ]
  29807. ))
  29808. characterMakers.push(() => makeCharacter(
  29809. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29810. {
  29811. front: {
  29812. height: math.unit(3.5, "meters"),
  29813. weight: math.unit(1200, "kg"),
  29814. name: "Front",
  29815. image: {
  29816. source: "./media/characters/joanna/front.svg",
  29817. extra: 1596 / 1488,
  29818. bottom: 29 / 1625
  29819. }
  29820. },
  29821. back: {
  29822. height: math.unit(3.5, "meters"),
  29823. weight: math.unit(1200, "kg"),
  29824. name: "Back",
  29825. image: {
  29826. source: "./media/characters/joanna/back.svg",
  29827. extra: 1594 / 1495,
  29828. bottom: 26 / 1620
  29829. }
  29830. },
  29831. frontShorts: {
  29832. height: math.unit(3.5, "meters"),
  29833. weight: math.unit(1200, "kg"),
  29834. name: "Front (Shorts)",
  29835. image: {
  29836. source: "./media/characters/joanna/front-shorts.svg",
  29837. extra: 1596 / 1488,
  29838. bottom: 29 / 1625
  29839. }
  29840. },
  29841. frontBiker: {
  29842. height: math.unit(3.5, "meters"),
  29843. weight: math.unit(1200, "kg"),
  29844. name: "Front (Biker)",
  29845. image: {
  29846. source: "./media/characters/joanna/front-biker.svg",
  29847. extra: 1596 / 1488,
  29848. bottom: 29 / 1625
  29849. }
  29850. },
  29851. backBiker: {
  29852. height: math.unit(3.5, "meters"),
  29853. weight: math.unit(1200, "kg"),
  29854. name: "Back (Biker)",
  29855. image: {
  29856. source: "./media/characters/joanna/back-biker.svg",
  29857. extra: 1594 / 1495,
  29858. bottom: 88 / 1682
  29859. }
  29860. },
  29861. bikeLeft: {
  29862. height: math.unit(2.4, "meters"),
  29863. weight: math.unit(1600, "kg"),
  29864. name: "Bike (Left)",
  29865. image: {
  29866. source: "./media/characters/joanna/bike-left.svg",
  29867. extra: 720 / 720,
  29868. bottom: 8 / 728
  29869. }
  29870. },
  29871. bikeRight: {
  29872. height: math.unit(2.4, "meters"),
  29873. weight: math.unit(1600, "kg"),
  29874. name: "Bike (Right)",
  29875. image: {
  29876. source: "./media/characters/joanna/bike-right.svg",
  29877. extra: 720 / 720,
  29878. bottom: 8 / 728
  29879. }
  29880. },
  29881. },
  29882. [
  29883. {
  29884. name: "Incognito",
  29885. height: math.unit(3.5, "meters")
  29886. },
  29887. {
  29888. name: "Casual Big",
  29889. height: math.unit(200, "meters")
  29890. },
  29891. {
  29892. name: "Macro",
  29893. height: math.unit(600, "meters")
  29894. },
  29895. {
  29896. name: "Original",
  29897. height: math.unit(20, "km"),
  29898. default: true
  29899. },
  29900. {
  29901. name: "Giga",
  29902. height: math.unit(400, "km")
  29903. },
  29904. {
  29905. name: "Lounging",
  29906. height: math.unit(1500, "km")
  29907. },
  29908. {
  29909. name: "Planetary",
  29910. height: math.unit(200000, "km")
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29916. {
  29917. front: {
  29918. height: math.unit(6, "feet"),
  29919. weight: math.unit(150, "lb"),
  29920. name: "Front",
  29921. image: {
  29922. source: "./media/characters/hugo-sigil/front.svg",
  29923. extra: 522 / 500,
  29924. bottom: 2 / 524
  29925. }
  29926. },
  29927. back: {
  29928. height: math.unit(6, "feet"),
  29929. weight: math.unit(150, "lb"),
  29930. name: "Back",
  29931. image: {
  29932. source: "./media/characters/hugo-sigil/back.svg",
  29933. extra: 519 / 495,
  29934. bottom: 5 / 524
  29935. }
  29936. },
  29937. maw: {
  29938. height: math.unit(1.4, "feet"),
  29939. weight: math.unit(150, "lb"),
  29940. name: "Maw",
  29941. image: {
  29942. source: "./media/characters/hugo-sigil/maw.svg"
  29943. }
  29944. },
  29945. feet: {
  29946. height: math.unit(1.56, "feet"),
  29947. weight: math.unit(150, "lb"),
  29948. name: "Feet",
  29949. image: {
  29950. source: "./media/characters/hugo-sigil/feet.svg",
  29951. extra: 177 / 177,
  29952. bottom: 12 / 189
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(6, "feet")
  29960. },
  29961. {
  29962. name: "Macro",
  29963. height: math.unit(200, "feet"),
  29964. default: true
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(6, "feet"),
  29973. weight: math.unit(150, "lb"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/peri/front.svg",
  29977. extra: 2354 / 2233,
  29978. bottom: 49 / 2403
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Really Small",
  29985. height: math.unit(1, "nm")
  29986. },
  29987. {
  29988. name: "Micro",
  29989. height: math.unit(4, "inches")
  29990. },
  29991. {
  29992. name: "Normal",
  29993. height: math.unit(7, "inches"),
  29994. default: true
  29995. },
  29996. {
  29997. name: "Macro",
  29998. height: math.unit(400, "feet")
  29999. },
  30000. {
  30001. name: "Megamacro",
  30002. height: math.unit(100, "miles")
  30003. },
  30004. ]
  30005. ))
  30006. characterMakers.push(() => makeCharacter(
  30007. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30008. {
  30009. frontSlim: {
  30010. height: math.unit(7, "feet"),
  30011. name: "Front (Slim)",
  30012. image: {
  30013. source: "./media/characters/issilora/front-slim.svg",
  30014. extra: 529 / 449,
  30015. bottom: 53 / 582
  30016. }
  30017. },
  30018. sideSlim: {
  30019. height: math.unit(7, "feet"),
  30020. name: "Side (Slim)",
  30021. image: {
  30022. source: "./media/characters/issilora/side-slim.svg",
  30023. extra: 570 / 480,
  30024. bottom: 30 / 600
  30025. }
  30026. },
  30027. backSlim: {
  30028. height: math.unit(7, "feet"),
  30029. name: "Back (Slim)",
  30030. image: {
  30031. source: "./media/characters/issilora/back-slim.svg",
  30032. extra: 537 / 455,
  30033. bottom: 46 / 583
  30034. }
  30035. },
  30036. frontBuff: {
  30037. height: math.unit(7, "feet"),
  30038. name: "Front (Buff)",
  30039. image: {
  30040. source: "./media/characters/issilora/front-buff.svg",
  30041. extra: 2310 / 2035,
  30042. bottom: 335 / 2645
  30043. }
  30044. },
  30045. head: {
  30046. height: math.unit(1.94, "feet"),
  30047. name: "Head",
  30048. image: {
  30049. source: "./media/characters/issilora/head.svg"
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Minimum",
  30056. height: math.unit(7, "feet")
  30057. },
  30058. {
  30059. name: "Comfortable",
  30060. height: math.unit(17, "feet")
  30061. },
  30062. {
  30063. name: "Fun Size",
  30064. height: math.unit(47, "feet")
  30065. },
  30066. {
  30067. name: "Natural Macro",
  30068. height: math.unit(137, "feet"),
  30069. default: true
  30070. },
  30071. {
  30072. name: "Maximum Kaiju",
  30073. height: math.unit(397, "feet")
  30074. },
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30079. {
  30080. front: {
  30081. height: math.unit(50 + 9/12, "feet"),
  30082. weight: math.unit(32.8, "tons"),
  30083. name: "Front",
  30084. image: {
  30085. source: "./media/characters/irb'iiritaahn/front.svg",
  30086. extra: 1878/1826,
  30087. bottom: 326/2204
  30088. }
  30089. },
  30090. back: {
  30091. height: math.unit(50 + 9/12, "feet"),
  30092. weight: math.unit(32.8, "tons"),
  30093. name: "Back",
  30094. image: {
  30095. source: "./media/characters/irb'iiritaahn/back.svg",
  30096. extra: 2052/2018,
  30097. bottom: 152/2204
  30098. }
  30099. },
  30100. head: {
  30101. height: math.unit(12.86, "feet"),
  30102. name: "Head",
  30103. image: {
  30104. source: "./media/characters/irb'iiritaahn/head.svg"
  30105. }
  30106. },
  30107. maw: {
  30108. height: math.unit(9.66, "feet"),
  30109. name: "Maw",
  30110. image: {
  30111. source: "./media/characters/irb'iiritaahn/maw.svg"
  30112. }
  30113. },
  30114. frontDick: {
  30115. height: math.unit(8.78461, "feet"),
  30116. name: "Front Dick",
  30117. image: {
  30118. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30119. }
  30120. },
  30121. rearDick: {
  30122. height: math.unit(8.78461, "feet"),
  30123. name: "Rear Dick",
  30124. image: {
  30125. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30126. }
  30127. },
  30128. rearDickUnfolded: {
  30129. height: math.unit(8.78, "feet"),
  30130. name: "Rear Dick (Unfolded)",
  30131. image: {
  30132. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30133. }
  30134. },
  30135. wings: {
  30136. height: math.unit(43, "feet"),
  30137. name: "Wings",
  30138. image: {
  30139. source: "./media/characters/irb'iiritaahn/wings.svg"
  30140. }
  30141. },
  30142. },
  30143. [
  30144. {
  30145. name: "Macro",
  30146. height: math.unit(50 + 9/12, "feet"),
  30147. default: true
  30148. },
  30149. ]
  30150. ))
  30151. characterMakers.push(() => makeCharacter(
  30152. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30153. {
  30154. front: {
  30155. height: math.unit(205, "cm"),
  30156. weight: math.unit(102, "kg"),
  30157. name: "Front",
  30158. image: {
  30159. source: "./media/characters/irbisgreif/front.svg",
  30160. extra: 785/706,
  30161. bottom: 13/798
  30162. }
  30163. },
  30164. back: {
  30165. height: math.unit(205, "cm"),
  30166. weight: math.unit(102, "kg"),
  30167. name: "Back",
  30168. image: {
  30169. source: "./media/characters/irbisgreif/back.svg",
  30170. extra: 713/701,
  30171. bottom: 26/739
  30172. }
  30173. },
  30174. frontDressed: {
  30175. height: math.unit(216, "cm"),
  30176. weight: math.unit(102, "kg"),
  30177. name: "Front-dressed",
  30178. image: {
  30179. source: "./media/characters/irbisgreif/front-dressed.svg",
  30180. extra: 902/776,
  30181. bottom: 14/916
  30182. }
  30183. },
  30184. sideDressed: {
  30185. height: math.unit(195, "cm"),
  30186. weight: math.unit(102, "kg"),
  30187. name: "Side-dressed",
  30188. image: {
  30189. source: "./media/characters/irbisgreif/side-dressed.svg",
  30190. extra: 788/688,
  30191. bottom: 21/809
  30192. }
  30193. },
  30194. backDressed: {
  30195. height: math.unit(216, "cm"),
  30196. weight: math.unit(102, "kg"),
  30197. name: "Back-dressed",
  30198. image: {
  30199. source: "./media/characters/irbisgreif/back-dressed.svg",
  30200. extra: 901/783,
  30201. bottom: 10/911
  30202. }
  30203. },
  30204. dick: {
  30205. height: math.unit(0.49, "feet"),
  30206. name: "Dick",
  30207. image: {
  30208. source: "./media/characters/irbisgreif/dick.svg"
  30209. }
  30210. },
  30211. wingTop: {
  30212. height: math.unit(1.93 , "feet"),
  30213. name: "Wing-top",
  30214. image: {
  30215. source: "./media/characters/irbisgreif/wing-top.svg"
  30216. }
  30217. },
  30218. wingBottom: {
  30219. height: math.unit(1.93 , "feet"),
  30220. name: "Wing-bottom",
  30221. image: {
  30222. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30223. }
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Normal",
  30229. height: math.unit(216, "cm"),
  30230. default: true
  30231. },
  30232. ]
  30233. ))
  30234. characterMakers.push(() => makeCharacter(
  30235. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30236. {
  30237. front: {
  30238. height: math.unit(6, "feet"),
  30239. weight: math.unit(150, "lb"),
  30240. name: "Front",
  30241. image: {
  30242. source: "./media/characters/pride/front.svg",
  30243. extra: 1299/1230,
  30244. bottom: 18/1317
  30245. }
  30246. },
  30247. },
  30248. [
  30249. {
  30250. name: "Normal",
  30251. height: math.unit(7, "feet")
  30252. },
  30253. {
  30254. name: "Mini-macro",
  30255. height: math.unit(11, "feet")
  30256. },
  30257. {
  30258. name: "Macro",
  30259. height: math.unit(15, "meters"),
  30260. default: true
  30261. },
  30262. {
  30263. name: "Macro+",
  30264. height: math.unit(40, "meters")
  30265. },
  30266. ]
  30267. ))
  30268. characterMakers.push(() => makeCharacter(
  30269. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30270. {
  30271. front: {
  30272. height: math.unit(4 + 2 / 12, "feet"),
  30273. weight: math.unit(95, "lb"),
  30274. name: "Front",
  30275. image: {
  30276. source: "./media/characters/vaelophis-nyx/front.svg",
  30277. extra: 2532/2330,
  30278. bottom: 0/2532
  30279. }
  30280. },
  30281. back: {
  30282. height: math.unit(4 + 2 / 12, "feet"),
  30283. weight: math.unit(95, "lb"),
  30284. name: "Back",
  30285. image: {
  30286. source: "./media/characters/vaelophis-nyx/back.svg",
  30287. extra: 2484/2361,
  30288. bottom: 0/2484
  30289. }
  30290. },
  30291. feralSide: {
  30292. height: math.unit(2 + 1/12, "feet"),
  30293. weight: math.unit(20, "lb"),
  30294. name: "Feral (Side)",
  30295. image: {
  30296. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30297. extra: 1721/1581,
  30298. bottom: 70/1791
  30299. }
  30300. },
  30301. feralLazing: {
  30302. height: math.unit(1.08, "feet"),
  30303. weight: math.unit(20, "lb"),
  30304. name: "Feral (Lazing)",
  30305. image: {
  30306. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30307. extra: 822/822,
  30308. bottom: 248/1070
  30309. }
  30310. },
  30311. ear: {
  30312. height: math.unit(0.416, "feet"),
  30313. name: "Ear",
  30314. image: {
  30315. source: "./media/characters/vaelophis-nyx/ear.svg"
  30316. }
  30317. },
  30318. eye: {
  30319. height: math.unit(0.0748, "feet"),
  30320. name: "Eye",
  30321. image: {
  30322. source: "./media/characters/vaelophis-nyx/eye.svg"
  30323. }
  30324. },
  30325. mouth: {
  30326. height: math.unit(0.378, "feet"),
  30327. name: "Mouth",
  30328. image: {
  30329. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30330. }
  30331. },
  30332. spade: {
  30333. height: math.unit(0.55, "feet"),
  30334. name: "Spade",
  30335. image: {
  30336. source: "./media/characters/vaelophis-nyx/spade.svg"
  30337. }
  30338. },
  30339. },
  30340. [
  30341. {
  30342. name: "Normal",
  30343. height: math.unit(4 + 2/12, "feet"),
  30344. default: true
  30345. },
  30346. ]
  30347. ))
  30348. characterMakers.push(() => makeCharacter(
  30349. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30350. {
  30351. front: {
  30352. height: math.unit(7, "feet"),
  30353. weight: math.unit(231, "lb"),
  30354. name: "Front",
  30355. image: {
  30356. source: "./media/characters/flux/front.svg",
  30357. extra: 919/871,
  30358. bottom: 0/919
  30359. }
  30360. },
  30361. back: {
  30362. height: math.unit(7, "feet"),
  30363. weight: math.unit(231, "lb"),
  30364. name: "Back",
  30365. image: {
  30366. source: "./media/characters/flux/back.svg",
  30367. extra: 1040/992,
  30368. bottom: 0/1040
  30369. }
  30370. },
  30371. frontDressed: {
  30372. height: math.unit(7, "feet"),
  30373. weight: math.unit(231, "lb"),
  30374. name: "Front (Dressed)",
  30375. image: {
  30376. source: "./media/characters/flux/front-dressed.svg",
  30377. extra: 919/871,
  30378. bottom: 0/919
  30379. }
  30380. },
  30381. feralSide: {
  30382. height: math.unit(5, "feet"),
  30383. weight: math.unit(150, "lb"),
  30384. name: "Feral (Side)",
  30385. image: {
  30386. source: "./media/characters/flux/feral-side.svg",
  30387. extra: 598/528,
  30388. bottom: 28/626
  30389. }
  30390. },
  30391. head: {
  30392. height: math.unit(1.585, "feet"),
  30393. name: "Head",
  30394. image: {
  30395. source: "./media/characters/flux/head.svg"
  30396. }
  30397. },
  30398. headSide: {
  30399. height: math.unit(1.74, "feet"),
  30400. name: "Head (Side)",
  30401. image: {
  30402. source: "./media/characters/flux/head-side.svg"
  30403. }
  30404. },
  30405. headSideFire: {
  30406. height: math.unit(1.76, "feet"),
  30407. name: "Head (Side, Fire)",
  30408. image: {
  30409. source: "./media/characters/flux/head-side-fire.svg"
  30410. }
  30411. },
  30412. },
  30413. [
  30414. {
  30415. name: "Normal",
  30416. height: math.unit(7, "feet"),
  30417. default: true
  30418. },
  30419. ]
  30420. ))
  30421. characterMakers.push(() => makeCharacter(
  30422. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30423. {
  30424. front: {
  30425. height: math.unit(9, "feet"),
  30426. weight: math.unit(1012, "lb"),
  30427. name: "Front",
  30428. image: {
  30429. source: "./media/characters/ulfra-lupae/front.svg",
  30430. extra: 1083/1011,
  30431. bottom: 67/1150
  30432. }
  30433. },
  30434. },
  30435. [
  30436. {
  30437. name: "Micro",
  30438. height: math.unit(6, "inches")
  30439. },
  30440. {
  30441. name: "Socializing",
  30442. height: math.unit(6 + 5/12, "feet")
  30443. },
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(9, "feet"),
  30447. default: true
  30448. },
  30449. {
  30450. name: "Macro",
  30451. height: math.unit(150, "feet")
  30452. },
  30453. ]
  30454. ))
  30455. characterMakers.push(() => makeCharacter(
  30456. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30457. {
  30458. front: {
  30459. height: math.unit(5 + 2/12, "feet"),
  30460. weight: math.unit(120, "lb"),
  30461. name: "Front",
  30462. image: {
  30463. source: "./media/characters/timber/front.svg",
  30464. extra: 2814/2705,
  30465. bottom: 181/2995
  30466. }
  30467. },
  30468. },
  30469. [
  30470. {
  30471. name: "Normal",
  30472. height: math.unit(5 + 2/12, "feet"),
  30473. default: true
  30474. },
  30475. ]
  30476. ))
  30477. characterMakers.push(() => makeCharacter(
  30478. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30479. {
  30480. front: {
  30481. height: math.unit(5 + 7/12, "feet"),
  30482. weight: math.unit(220, "lb"),
  30483. name: "Front",
  30484. image: {
  30485. source: "./media/characters/nicki/front.svg",
  30486. extra: 453/419,
  30487. bottom: 7/460
  30488. }
  30489. },
  30490. frontAlt: {
  30491. height: math.unit(5 + 7/12, "feet"),
  30492. weight: math.unit(220, "lb"),
  30493. name: "Front-alt",
  30494. image: {
  30495. source: "./media/characters/nicki/front-alt.svg",
  30496. extra: 435/411,
  30497. bottom: 12/447
  30498. }
  30499. },
  30500. back: {
  30501. height: math.unit(5 + 7/12, "feet"),
  30502. weight: math.unit(220, "lb"),
  30503. name: "Back",
  30504. image: {
  30505. source: "./media/characters/nicki/back.svg",
  30506. extra: 440/413,
  30507. bottom: 19/459
  30508. }
  30509. },
  30510. taur: {
  30511. height: math.unit(7 + 6/12, "feet"),
  30512. weight: math.unit(700, "lb"),
  30513. name: "Taur",
  30514. image: {
  30515. source: "./media/characters/nicki/taur.svg",
  30516. extra: 975/773,
  30517. bottom: 0/975
  30518. }
  30519. },
  30520. frontNsfw: {
  30521. height: math.unit(5 + 7/12, "feet"),
  30522. weight: math.unit(220, "lb"),
  30523. name: "Front (NSFW)",
  30524. image: {
  30525. source: "./media/characters/nicki/front-nsfw.svg",
  30526. extra: 453/419,
  30527. bottom: 7/460
  30528. }
  30529. },
  30530. frontNsfwAlt: {
  30531. height: math.unit(5 + 7/12, "feet"),
  30532. weight: math.unit(220, "lb"),
  30533. name: "Front (Alt, NSFW)",
  30534. image: {
  30535. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30536. extra: 435/411,
  30537. bottom: 12/447
  30538. }
  30539. },
  30540. backNsfw: {
  30541. height: math.unit(5 + 7/12, "feet"),
  30542. weight: math.unit(220, "lb"),
  30543. name: "Back (NSFW)",
  30544. image: {
  30545. source: "./media/characters/nicki/back-nsfw.svg",
  30546. extra: 440/413,
  30547. bottom: 19/459
  30548. }
  30549. },
  30550. head: {
  30551. height: math.unit(2.1, "feet"),
  30552. name: "Head",
  30553. image: {
  30554. source: "./media/characters/nicki/head.svg"
  30555. }
  30556. },
  30557. paw: {
  30558. height: math.unit(1.88, "feet"),
  30559. name: "Paw",
  30560. image: {
  30561. source: "./media/characters/nicki/paw.svg"
  30562. }
  30563. },
  30564. },
  30565. [
  30566. {
  30567. name: "Normal",
  30568. height: math.unit(5 + 7/12, "feet"),
  30569. default: true
  30570. },
  30571. ]
  30572. ))
  30573. characterMakers.push(() => makeCharacter(
  30574. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30575. {
  30576. front: {
  30577. height: math.unit(7 + 10/12, "feet"),
  30578. weight: math.unit(3.5, "tons"),
  30579. name: "Front",
  30580. image: {
  30581. source: "./media/characters/lee/front.svg",
  30582. extra: 1773/1615,
  30583. bottom: 86/1859
  30584. }
  30585. },
  30586. hand: {
  30587. height: math.unit(1.78, "feet"),
  30588. name: "Hand",
  30589. image: {
  30590. source: "./media/characters/lee/hand.svg"
  30591. }
  30592. },
  30593. maw: {
  30594. height: math.unit(1.18, "feet"),
  30595. name: "Maw",
  30596. image: {
  30597. source: "./media/characters/lee/maw.svg"
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Normal",
  30604. height: math.unit(7 + 10/12, "feet"),
  30605. default: true
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30611. {
  30612. front: {
  30613. height: math.unit(9, "feet"),
  30614. name: "Front",
  30615. image: {
  30616. source: "./media/characters/guti/front.svg",
  30617. extra: 4551/4355,
  30618. bottom: 123/4674
  30619. }
  30620. },
  30621. tongue: {
  30622. height: math.unit(1, "feet"),
  30623. name: "Tongue",
  30624. image: {
  30625. source: "./media/characters/guti/tongue.svg"
  30626. }
  30627. },
  30628. paw: {
  30629. height: math.unit(1.18, "feet"),
  30630. name: "Paw",
  30631. image: {
  30632. source: "./media/characters/guti/paw.svg"
  30633. }
  30634. },
  30635. },
  30636. [
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(9, "feet"),
  30640. default: true
  30641. },
  30642. ]
  30643. ))
  30644. characterMakers.push(() => makeCharacter(
  30645. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30646. {
  30647. side: {
  30648. height: math.unit(5, "meters"),
  30649. name: "Side",
  30650. image: {
  30651. source: "./media/characters/vesper/side.svg",
  30652. extra: 1605/1518,
  30653. bottom: 0/1605
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Small",
  30660. height: math.unit(5, "meters")
  30661. },
  30662. {
  30663. name: "Sage",
  30664. height: math.unit(100, "meters"),
  30665. default: true
  30666. },
  30667. {
  30668. name: "Fun Size",
  30669. height: math.unit(600, "meters")
  30670. },
  30671. {
  30672. name: "Goddess",
  30673. height: math.unit(20000, "km")
  30674. },
  30675. {
  30676. name: "Maximum",
  30677. height: math.unit(5, "galaxies")
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30683. {
  30684. front: {
  30685. height: math.unit(6 + 3/12, "feet"),
  30686. weight: math.unit(190, "lb"),
  30687. name: "Front",
  30688. image: {
  30689. source: "./media/characters/gawain/front.svg",
  30690. extra: 2222/2139,
  30691. bottom: 90/2312
  30692. }
  30693. },
  30694. back: {
  30695. height: math.unit(6 + 3/12, "feet"),
  30696. weight: math.unit(190, "lb"),
  30697. name: "Back",
  30698. image: {
  30699. source: "./media/characters/gawain/back.svg",
  30700. extra: 2199/2111,
  30701. bottom: 73/2272
  30702. }
  30703. },
  30704. },
  30705. [
  30706. {
  30707. name: "Normal",
  30708. height: math.unit(6 + 3/12, "feet"),
  30709. default: true
  30710. },
  30711. ]
  30712. ))
  30713. characterMakers.push(() => makeCharacter(
  30714. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30715. {
  30716. side: {
  30717. height: math.unit(3.5, "meters"),
  30718. weight: math.unit(16000, "lb"),
  30719. name: "Side",
  30720. image: {
  30721. source: "./media/characters/dascalti/side.svg",
  30722. extra: 392/273,
  30723. bottom: 47/439
  30724. }
  30725. },
  30726. breath: {
  30727. height: math.unit(7.4, "feet"),
  30728. name: "Breath",
  30729. image: {
  30730. source: "./media/characters/dascalti/breath.svg"
  30731. }
  30732. },
  30733. fed: {
  30734. height: math.unit(3.6, "meters"),
  30735. weight: math.unit(16000, "lb"),
  30736. name: "Fed",
  30737. image: {
  30738. source: "./media/characters/dascalti/fed.svg",
  30739. extra: 1419/820,
  30740. bottom: 95/1514
  30741. }
  30742. },
  30743. },
  30744. [
  30745. {
  30746. name: "Normal",
  30747. height: math.unit(3.5, "meters"),
  30748. default: true
  30749. },
  30750. ]
  30751. ))
  30752. characterMakers.push(() => makeCharacter(
  30753. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30754. {
  30755. front: {
  30756. height: math.unit(3 + 5/12, "feet"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/mauve/front.svg",
  30760. extra: 1126/1033,
  30761. bottom: 65/1191
  30762. }
  30763. },
  30764. side: {
  30765. height: math.unit(3 + 5/12, "feet"),
  30766. name: "Side",
  30767. image: {
  30768. source: "./media/characters/mauve/side.svg",
  30769. extra: 1089/1001,
  30770. bottom: 29/1118
  30771. }
  30772. },
  30773. back: {
  30774. height: math.unit(3 + 5/12, "feet"),
  30775. name: "Back",
  30776. image: {
  30777. source: "./media/characters/mauve/back.svg",
  30778. extra: 1173/1053,
  30779. bottom: 109/1282
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Normal",
  30786. height: math.unit(3 + 5/12, "feet"),
  30787. default: true
  30788. },
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30793. {
  30794. front: {
  30795. height: math.unit(6 + 3/12, "feet"),
  30796. weight: math.unit(430, "lb"),
  30797. name: "Front",
  30798. image: {
  30799. source: "./media/characters/carlos/front.svg",
  30800. extra: 1964/1913,
  30801. bottom: 70/2034
  30802. }
  30803. },
  30804. },
  30805. [
  30806. {
  30807. name: "Normal",
  30808. height: math.unit(6 + 3/12, "feet"),
  30809. default: true
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30815. {
  30816. back: {
  30817. height: math.unit(5 + 10/12, "feet"),
  30818. weight: math.unit(200, "lb"),
  30819. name: "Back",
  30820. image: {
  30821. source: "./media/characters/jax/back.svg",
  30822. extra: 764/739,
  30823. bottom: 25/789
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(5 + 10/12, "feet"),
  30831. default: true
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30837. {
  30838. front: {
  30839. height: math.unit(8, "feet"),
  30840. weight: math.unit(250, "lb"),
  30841. name: "Front",
  30842. image: {
  30843. source: "./media/characters/eikthynir/front.svg",
  30844. extra: 1332/1166,
  30845. bottom: 82/1414
  30846. }
  30847. },
  30848. back: {
  30849. height: math.unit(8, "feet"),
  30850. weight: math.unit(250, "lb"),
  30851. name: "Back",
  30852. image: {
  30853. source: "./media/characters/eikthynir/back.svg",
  30854. extra: 1342/1190,
  30855. bottom: 19/1361
  30856. }
  30857. },
  30858. dick: {
  30859. height: math.unit(2.35, "feet"),
  30860. name: "Dick",
  30861. image: {
  30862. source: "./media/characters/eikthynir/dick.svg"
  30863. }
  30864. },
  30865. },
  30866. [
  30867. {
  30868. name: "Normal",
  30869. height: math.unit(8, "feet"),
  30870. default: true
  30871. },
  30872. ]
  30873. ))
  30874. characterMakers.push(() => makeCharacter(
  30875. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30876. {
  30877. front: {
  30878. height: math.unit(99, "meters"),
  30879. weight: math.unit(13000, "tons"),
  30880. name: "Front",
  30881. image: {
  30882. source: "./media/characters/zlmos/front.svg",
  30883. extra: 2202/1992,
  30884. bottom: 315/2517
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Macro",
  30891. height: math.unit(99, "meters"),
  30892. default: true
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30898. {
  30899. front: {
  30900. height: math.unit(6 + 5/12, "feet"),
  30901. name: "Front",
  30902. image: {
  30903. source: "./media/characters/purri/front.svg",
  30904. extra: 1698/1610,
  30905. bottom: 32/1730
  30906. }
  30907. },
  30908. frontAlt: {
  30909. height: math.unit(6 + 5/12, "feet"),
  30910. name: "Front (Alt)",
  30911. image: {
  30912. source: "./media/characters/purri/front-alt.svg",
  30913. extra: 450/420,
  30914. bottom: 26/476
  30915. }
  30916. },
  30917. boots: {
  30918. height: math.unit(5.5, "feet"),
  30919. name: "Boots",
  30920. image: {
  30921. source: "./media/characters/purri/boots.svg",
  30922. extra: 905/853,
  30923. bottom: 18/923
  30924. }
  30925. },
  30926. lying: {
  30927. height: math.unit(2, "feet"),
  30928. name: "Lying",
  30929. image: {
  30930. source: "./media/characters/purri/lying.svg",
  30931. extra: 940/843,
  30932. bottom: 146/1086
  30933. }
  30934. },
  30935. devious: {
  30936. height: math.unit(1.77, "feet"),
  30937. name: "Devious",
  30938. image: {
  30939. source: "./media/characters/purri/devious.svg",
  30940. extra: 1440/1155,
  30941. bottom: 147/1587
  30942. }
  30943. },
  30944. bean: {
  30945. height: math.unit(1.94, "feet"),
  30946. name: "Bean",
  30947. image: {
  30948. source: "./media/characters/purri/bean.svg"
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "Micro",
  30955. height: math.unit(1, "mm")
  30956. },
  30957. {
  30958. name: "Normal",
  30959. height: math.unit(6 + 5/12, "feet"),
  30960. default: true
  30961. },
  30962. {
  30963. name: "Macro :3c",
  30964. height: math.unit(2, "miles")
  30965. },
  30966. ]
  30967. ))
  30968. characterMakers.push(() => makeCharacter(
  30969. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30970. {
  30971. front: {
  30972. height: math.unit(6 + 2/12, "feet"),
  30973. weight: math.unit(250, "lb"),
  30974. name: "Front",
  30975. image: {
  30976. source: "./media/characters/moonlight/front.svg",
  30977. extra: 1044/908,
  30978. bottom: 56/1100
  30979. }
  30980. },
  30981. feral: {
  30982. height: math.unit(3 + 1/12, "feet"),
  30983. weight: math.unit(50, "kg"),
  30984. name: "Feral",
  30985. image: {
  30986. source: "./media/characters/moonlight/feral.svg",
  30987. extra: 3705/2791,
  30988. bottom: 145/3850
  30989. }
  30990. },
  30991. paw: {
  30992. height: math.unit(1, "feet"),
  30993. name: "Paw",
  30994. image: {
  30995. source: "./media/characters/moonlight/paw.svg"
  30996. }
  30997. },
  30998. paws: {
  30999. height: math.unit(0.98, "feet"),
  31000. name: "Paws",
  31001. image: {
  31002. source: "./media/characters/moonlight/paws.svg",
  31003. extra: 939/939,
  31004. bottom: 50/989
  31005. }
  31006. },
  31007. mouth: {
  31008. height: math.unit(0.48, "feet"),
  31009. name: "Mouth",
  31010. image: {
  31011. source: "./media/characters/moonlight/mouth.svg"
  31012. }
  31013. },
  31014. dick: {
  31015. height: math.unit(1.46, "feet"),
  31016. name: "Dick",
  31017. image: {
  31018. source: "./media/characters/moonlight/dick.svg"
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Normal",
  31025. height: math.unit(6 + 2/12, "feet"),
  31026. default: true
  31027. },
  31028. {
  31029. name: "Macro",
  31030. height: math.unit(300, "feet")
  31031. },
  31032. {
  31033. name: "Macro+",
  31034. height: math.unit(1, "mile")
  31035. },
  31036. {
  31037. name: "Mt. Moon",
  31038. height: math.unit(5, "miles")
  31039. },
  31040. {
  31041. name: "Megamacro",
  31042. height: math.unit(15, "miles")
  31043. },
  31044. ]
  31045. ))
  31046. characterMakers.push(() => makeCharacter(
  31047. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31048. {
  31049. back: {
  31050. height: math.unit(6, "feet"),
  31051. weight: math.unit(150, "lb"),
  31052. name: "Back",
  31053. image: {
  31054. source: "./media/characters/sylen/back.svg",
  31055. extra: 1335/1273,
  31056. bottom: 107/1442
  31057. }
  31058. },
  31059. },
  31060. [
  31061. {
  31062. name: "Normal",
  31063. height: math.unit(5 + 5/12, "feet")
  31064. },
  31065. {
  31066. name: "Megamacro",
  31067. height: math.unit(3, "miles"),
  31068. default: true
  31069. },
  31070. ]
  31071. ))
  31072. characterMakers.push(() => makeCharacter(
  31073. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31074. {
  31075. front: {
  31076. height: math.unit(6, "feet"),
  31077. weight: math.unit(190, "lb"),
  31078. name: "Front",
  31079. image: {
  31080. source: "./media/characters/huttser/front.svg",
  31081. extra: 1152/1058,
  31082. bottom: 23/1175
  31083. }
  31084. },
  31085. side: {
  31086. height: math.unit(6, "feet"),
  31087. weight: math.unit(190, "lb"),
  31088. name: "Side",
  31089. image: {
  31090. source: "./media/characters/huttser/side.svg",
  31091. extra: 1174/1065,
  31092. bottom: 18/1192
  31093. }
  31094. },
  31095. back: {
  31096. height: math.unit(6, "feet"),
  31097. weight: math.unit(190, "lb"),
  31098. name: "Back",
  31099. image: {
  31100. source: "./media/characters/huttser/back.svg",
  31101. extra: 1158/1056,
  31102. bottom: 12/1170
  31103. }
  31104. },
  31105. },
  31106. [
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31111. {
  31112. side: {
  31113. height: math.unit(12 + 9/12, "feet"),
  31114. weight: math.unit(15000, "lb"),
  31115. name: "Side",
  31116. image: {
  31117. source: "./media/characters/faan/side.svg",
  31118. extra: 2747/2697,
  31119. bottom: 0/2747
  31120. }
  31121. },
  31122. front: {
  31123. height: math.unit(12 + 9/12, "feet"),
  31124. weight: math.unit(15000, "lb"),
  31125. name: "Front",
  31126. image: {
  31127. source: "./media/characters/faan/front.svg",
  31128. extra: 607/571,
  31129. bottom: 24/631
  31130. }
  31131. },
  31132. head: {
  31133. height: math.unit(2.85, "feet"),
  31134. name: "Head",
  31135. image: {
  31136. source: "./media/characters/faan/head.svg"
  31137. }
  31138. },
  31139. headAlt: {
  31140. height: math.unit(3.13, "feet"),
  31141. name: "Head-alt",
  31142. image: {
  31143. source: "./media/characters/faan/head-alt.svg"
  31144. }
  31145. },
  31146. },
  31147. [
  31148. {
  31149. name: "Normal",
  31150. height: math.unit(12 + 9/12, "feet"),
  31151. default: true
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31157. {
  31158. front: {
  31159. height: math.unit(6, "feet"),
  31160. weight: math.unit(300, "lb"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/tanio/front.svg",
  31164. extra: 711/673,
  31165. bottom: 25/736
  31166. }
  31167. },
  31168. },
  31169. [
  31170. {
  31171. name: "Normal",
  31172. height: math.unit(6, "feet"),
  31173. default: true
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(3, "inches"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/noboru/front.svg",
  31185. extra: 1039/932,
  31186. bottom: 18/1057
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Micro",
  31193. height: math.unit(3, "inches"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(1.85, "meters"),
  31203. weight: math.unit(80, "kg"),
  31204. name: "Front",
  31205. image: {
  31206. source: "./media/characters/daniel-barrett/front.svg",
  31207. extra: 355/337,
  31208. bottom: 9/364
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Pico",
  31215. height: math.unit(0.0433, "mm")
  31216. },
  31217. {
  31218. name: "Nano",
  31219. height: math.unit(1.5, "mm")
  31220. },
  31221. {
  31222. name: "Micro",
  31223. height: math.unit(5.3, "cm"),
  31224. default: true
  31225. },
  31226. {
  31227. name: "Normal",
  31228. height: math.unit(1.85, "meters")
  31229. },
  31230. {
  31231. name: "Macro",
  31232. height: math.unit(64.7, "meters")
  31233. },
  31234. {
  31235. name: "Megamacro",
  31236. height: math.unit(2.26, "km")
  31237. },
  31238. {
  31239. name: "Gigamacro",
  31240. height: math.unit(79, "km")
  31241. },
  31242. {
  31243. name: "Teramacro",
  31244. height: math.unit(2765, "km")
  31245. },
  31246. {
  31247. name: "Petamacro",
  31248. height: math.unit(96678, "km")
  31249. },
  31250. ]
  31251. ))
  31252. characterMakers.push(() => makeCharacter(
  31253. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31254. {
  31255. front: {
  31256. height: math.unit(30, "meters"),
  31257. weight: math.unit(400, "tons"),
  31258. name: "Front",
  31259. image: {
  31260. source: "./media/characters/zeel/front.svg",
  31261. extra: 2599/2599,
  31262. bottom: 226/2825
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Macro",
  31269. height: math.unit(30, "meters"),
  31270. default: true
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(6 + 7/12, "feet"),
  31279. weight: math.unit(210, "lb"),
  31280. name: "Front",
  31281. image: {
  31282. source: "./media/characters/tarn/front.svg",
  31283. extra: 3517/3220,
  31284. bottom: 91/3608
  31285. }
  31286. },
  31287. back: {
  31288. height: math.unit(6 + 7/12, "feet"),
  31289. weight: math.unit(210, "lb"),
  31290. name: "Back",
  31291. image: {
  31292. source: "./media/characters/tarn/back.svg",
  31293. extra: 3566/3241,
  31294. bottom: 34/3600
  31295. }
  31296. },
  31297. dick: {
  31298. height: math.unit(1.65, "feet"),
  31299. name: "Dick",
  31300. image: {
  31301. source: "./media/characters/tarn/dick.svg"
  31302. }
  31303. },
  31304. paw: {
  31305. height: math.unit(1.80, "feet"),
  31306. name: "Paw",
  31307. image: {
  31308. source: "./media/characters/tarn/paw.svg"
  31309. }
  31310. },
  31311. tongue: {
  31312. height: math.unit(0.97, "feet"),
  31313. name: "Tongue",
  31314. image: {
  31315. source: "./media/characters/tarn/tongue.svg"
  31316. }
  31317. },
  31318. },
  31319. [
  31320. {
  31321. name: "Micro",
  31322. height: math.unit(4, "inches")
  31323. },
  31324. {
  31325. name: "Normal",
  31326. height: math.unit(6 + 7/12, "feet"),
  31327. default: true
  31328. },
  31329. {
  31330. name: "Macro",
  31331. height: math.unit(300, "feet")
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(5 + 7/12, "feet"),
  31340. weight: math.unit(80, "kg"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31344. extra: 3023/2865,
  31345. bottom: 33/3056
  31346. }
  31347. },
  31348. back: {
  31349. height: math.unit(5 + 7/12, "feet"),
  31350. weight: math.unit(80, "kg"),
  31351. name: "Back",
  31352. image: {
  31353. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31354. extra: 3020/2886,
  31355. bottom: 30/3050
  31356. }
  31357. },
  31358. dick: {
  31359. height: math.unit(0.98, "feet"),
  31360. name: "Dick",
  31361. image: {
  31362. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31363. }
  31364. },
  31365. anatomy: {
  31366. height: math.unit(2.86, "feet"),
  31367. name: "Anatomy",
  31368. image: {
  31369. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31370. }
  31371. },
  31372. },
  31373. [
  31374. {
  31375. name: "Really Small",
  31376. height: math.unit(2, "inches")
  31377. },
  31378. {
  31379. name: "Micro",
  31380. height: math.unit(5.583, "inches")
  31381. },
  31382. {
  31383. name: "Normal",
  31384. height: math.unit(5 + 7/12, "feet"),
  31385. default: true
  31386. },
  31387. {
  31388. name: "Macro",
  31389. height: math.unit(67, "feet")
  31390. },
  31391. {
  31392. name: "Megamacro",
  31393. height: math.unit(134, "feet")
  31394. },
  31395. ]
  31396. ))
  31397. characterMakers.push(() => makeCharacter(
  31398. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31399. {
  31400. front: {
  31401. height: math.unit(9, "feet"),
  31402. weight: math.unit(120, "lb"),
  31403. name: "Front",
  31404. image: {
  31405. source: "./media/characters/sally/front.svg",
  31406. extra: 1506/1349,
  31407. bottom: 66/1572
  31408. }
  31409. },
  31410. },
  31411. [
  31412. {
  31413. name: "Normal",
  31414. height: math.unit(9, "feet"),
  31415. default: true
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31421. {
  31422. front: {
  31423. height: math.unit(8, "feet"),
  31424. weight: math.unit(900, "lb"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/owen/front.svg",
  31428. extra: 1761/1657,
  31429. bottom: 74/1835
  31430. }
  31431. },
  31432. side: {
  31433. height: math.unit(8, "feet"),
  31434. weight: math.unit(900, "lb"),
  31435. name: "Side",
  31436. image: {
  31437. source: "./media/characters/owen/side.svg",
  31438. extra: 1797/1734,
  31439. bottom: 30/1827
  31440. }
  31441. },
  31442. back: {
  31443. height: math.unit(8, "feet"),
  31444. weight: math.unit(900, "lb"),
  31445. name: "Back",
  31446. image: {
  31447. source: "./media/characters/owen/back.svg",
  31448. extra: 1796/1706,
  31449. bottom: 59/1855
  31450. }
  31451. },
  31452. maw: {
  31453. height: math.unit(1.76, "feet"),
  31454. name: "Maw",
  31455. image: {
  31456. source: "./media/characters/owen/maw.svg"
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(8, "feet"),
  31464. default: true
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31470. {
  31471. front: {
  31472. height: math.unit(4, "feet"),
  31473. weight: math.unit(400, "lb"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/ryth/front.svg",
  31477. extra: 876/691,
  31478. bottom: 25/901
  31479. }
  31480. },
  31481. goia: {
  31482. height: math.unit(12, "feet"),
  31483. weight: math.unit(10800, "lb"),
  31484. name: "Goia",
  31485. image: {
  31486. source: "./media/characters/ryth/goia.svg",
  31487. extra: 3450/3198,
  31488. bottom: 61/3511
  31489. }
  31490. },
  31491. },
  31492. [
  31493. {
  31494. name: "Normal",
  31495. height: math.unit(4, "feet"),
  31496. default: true
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(7, "feet"),
  31505. weight: math.unit(180, "lb"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/necrolance/front.svg",
  31509. extra: 1062/947,
  31510. bottom: 41/1103
  31511. }
  31512. },
  31513. back: {
  31514. height: math.unit(7, "feet"),
  31515. weight: math.unit(180, "lb"),
  31516. name: "Back",
  31517. image: {
  31518. source: "./media/characters/necrolance/back.svg",
  31519. extra: 1045/984,
  31520. bottom: 14/1059
  31521. }
  31522. },
  31523. wing: {
  31524. height: math.unit(2.67, "feet"),
  31525. name: "Wing",
  31526. image: {
  31527. source: "./media/characters/necrolance/wing.svg"
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Normal",
  31534. height: math.unit(7, "feet"),
  31535. default: true
  31536. },
  31537. ]
  31538. ))
  31539. characterMakers.push(() => makeCharacter(
  31540. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31541. {
  31542. front: {
  31543. height: math.unit(76, "meters"),
  31544. weight: math.unit(30000, "tons"),
  31545. name: "Front",
  31546. image: {
  31547. source: "./media/characters/tyler/front.svg",
  31548. extra: 1640/1640,
  31549. bottom: 114/1754
  31550. }
  31551. },
  31552. },
  31553. [
  31554. {
  31555. name: "Macro",
  31556. height: math.unit(76, "meters"),
  31557. default: true
  31558. },
  31559. ]
  31560. ))
  31561. characterMakers.push(() => makeCharacter(
  31562. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31563. {
  31564. front: {
  31565. height: math.unit(4 + 11/12, "feet"),
  31566. weight: math.unit(132, "lb"),
  31567. name: "Front",
  31568. image: {
  31569. source: "./media/characters/icey/front.svg",
  31570. extra: 2750/2550,
  31571. bottom: 33/2783
  31572. }
  31573. },
  31574. back: {
  31575. height: math.unit(4 + 11/12, "feet"),
  31576. weight: math.unit(132, "lb"),
  31577. name: "Back",
  31578. image: {
  31579. source: "./media/characters/icey/back.svg",
  31580. extra: 2624/2481,
  31581. bottom: 35/2659
  31582. }
  31583. },
  31584. },
  31585. [
  31586. {
  31587. name: "Normal",
  31588. height: math.unit(4 + 11/12, "feet"),
  31589. default: true
  31590. },
  31591. ]
  31592. ))
  31593. characterMakers.push(() => makeCharacter(
  31594. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31595. {
  31596. front: {
  31597. height: math.unit(100, "feet"),
  31598. weight: math.unit(0, "lb"),
  31599. name: "Front",
  31600. image: {
  31601. source: "./media/characters/smile/front.svg",
  31602. extra: 2983/2912,
  31603. bottom: 162/3145
  31604. }
  31605. },
  31606. back: {
  31607. height: math.unit(100, "feet"),
  31608. weight: math.unit(0, "lb"),
  31609. name: "Back",
  31610. image: {
  31611. source: "./media/characters/smile/back.svg",
  31612. extra: 3143/3031,
  31613. bottom: 91/3234
  31614. }
  31615. },
  31616. head: {
  31617. height: math.unit(26.3, "feet"),
  31618. weight: math.unit(0, "lb"),
  31619. name: "Head",
  31620. image: {
  31621. source: "./media/characters/smile/head.svg"
  31622. }
  31623. },
  31624. collar: {
  31625. height: math.unit(5.3, "feet"),
  31626. weight: math.unit(0, "lb"),
  31627. name: "Collar",
  31628. image: {
  31629. source: "./media/characters/smile/collar.svg"
  31630. }
  31631. },
  31632. },
  31633. [
  31634. {
  31635. name: "Macro",
  31636. height: math.unit(100, "feet"),
  31637. default: true
  31638. },
  31639. ]
  31640. ))
  31641. characterMakers.push(() => makeCharacter(
  31642. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31643. {
  31644. dragon: {
  31645. height: math.unit(26, "feet"),
  31646. weight: math.unit(36, "tons"),
  31647. name: "Dragon",
  31648. image: {
  31649. source: "./media/characters/arimphae/dragon.svg",
  31650. extra: 1574/983,
  31651. bottom: 357/1931
  31652. }
  31653. },
  31654. drake: {
  31655. height: math.unit(9, "feet"),
  31656. weight: math.unit(1.5, "tons"),
  31657. name: "Drake",
  31658. image: {
  31659. source: "./media/characters/arimphae/drake.svg",
  31660. extra: 1120/925,
  31661. bottom: 435/1555
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Small",
  31668. height: math.unit(26*5/9, "feet")
  31669. },
  31670. {
  31671. name: "Normal",
  31672. height: math.unit(26, "feet"),
  31673. default: true
  31674. },
  31675. ]
  31676. ))
  31677. characterMakers.push(() => makeCharacter(
  31678. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31679. {
  31680. front: {
  31681. height: math.unit(8 + 9/12, "feet"),
  31682. name: "Front",
  31683. image: {
  31684. source: "./media/characters/xander/front.svg",
  31685. extra: 848/673,
  31686. bottom: 62/910
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Normal",
  31693. height: math.unit(8 + 9/12, "feet"),
  31694. default: true
  31695. },
  31696. {
  31697. name: "Gaze Grabber",
  31698. height: math.unit(13 + 8/12, "feet")
  31699. },
  31700. {
  31701. name: "Jaw Dropper",
  31702. height: math.unit(27, "feet")
  31703. },
  31704. {
  31705. name: "Show Stopper",
  31706. height: math.unit(136, "feet")
  31707. },
  31708. {
  31709. name: "Superstar",
  31710. height: math.unit(1.9e6, "miles")
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31716. {
  31717. side: {
  31718. height: math.unit(2100, "feet"),
  31719. name: "Side",
  31720. image: {
  31721. source: "./media/characters/osiris/side.svg",
  31722. extra: 1105/939,
  31723. bottom: 167/1272
  31724. }
  31725. },
  31726. },
  31727. [
  31728. {
  31729. name: "Macro",
  31730. height: math.unit(2100, "feet"),
  31731. default: true
  31732. },
  31733. ]
  31734. ))
  31735. characterMakers.push(() => makeCharacter(
  31736. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31737. {
  31738. front: {
  31739. height: math.unit(6 + 8/12, "feet"),
  31740. weight: math.unit(225, "lb"),
  31741. name: "Front",
  31742. image: {
  31743. source: "./media/characters/rhys-londe/front.svg",
  31744. extra: 2258/2141,
  31745. bottom: 188/2446
  31746. }
  31747. },
  31748. back: {
  31749. height: math.unit(6 + 8/12, "feet"),
  31750. weight: math.unit(225, "lb"),
  31751. name: "Back",
  31752. image: {
  31753. source: "./media/characters/rhys-londe/back.svg",
  31754. extra: 2237/2137,
  31755. bottom: 63/2300
  31756. }
  31757. },
  31758. frontNsfw: {
  31759. height: math.unit(6 + 8/12, "feet"),
  31760. weight: math.unit(225, "lb"),
  31761. name: "Front (NSFW)",
  31762. image: {
  31763. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31764. extra: 2258/2141,
  31765. bottom: 188/2446
  31766. }
  31767. },
  31768. backNsfw: {
  31769. height: math.unit(6 + 8/12, "feet"),
  31770. weight: math.unit(225, "lb"),
  31771. name: "Back (NSFW)",
  31772. image: {
  31773. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31774. extra: 2237/2137,
  31775. bottom: 63/2300
  31776. }
  31777. },
  31778. dick: {
  31779. height: math.unit(30, "inches"),
  31780. name: "Dick",
  31781. image: {
  31782. source: "./media/characters/rhys-londe/dick.svg"
  31783. }
  31784. },
  31785. maw: {
  31786. height: math.unit(1.6, "feet"),
  31787. name: "Maw",
  31788. image: {
  31789. source: "./media/characters/rhys-londe/maw.svg"
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(6 + 8/12, "feet"),
  31797. default: true
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31803. {
  31804. front: {
  31805. height: math.unit(3 + 10/12, "feet"),
  31806. weight: math.unit(90, "lb"),
  31807. name: "Front",
  31808. image: {
  31809. source: "./media/characters/taivas-ensim/front.svg",
  31810. extra: 1327/1216,
  31811. bottom: 96/1423
  31812. }
  31813. },
  31814. back: {
  31815. height: math.unit(3 + 10/12, "feet"),
  31816. weight: math.unit(90, "lb"),
  31817. name: "Back",
  31818. image: {
  31819. source: "./media/characters/taivas-ensim/back.svg",
  31820. extra: 1355/1247,
  31821. bottom: 11/1366
  31822. }
  31823. },
  31824. frontNsfw: {
  31825. height: math.unit(3 + 10/12, "feet"),
  31826. weight: math.unit(90, "lb"),
  31827. name: "Front (NSFW)",
  31828. image: {
  31829. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31830. extra: 1327/1216,
  31831. bottom: 96/1423
  31832. }
  31833. },
  31834. backNsfw: {
  31835. height: math.unit(3 + 10/12, "feet"),
  31836. weight: math.unit(90, "lb"),
  31837. name: "Back (NSFW)",
  31838. image: {
  31839. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31840. extra: 1355/1247,
  31841. bottom: 11/1366
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(3 + 10/12, "feet"),
  31849. default: true
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31855. {
  31856. front: {
  31857. height: math.unit(9 + 6/12, "feet"),
  31858. weight: math.unit(940, "lb"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/byliss/front.svg",
  31862. extra: 1327/1290,
  31863. bottom: 82/1409
  31864. }
  31865. },
  31866. back: {
  31867. height: math.unit(9 + 6/12, "feet"),
  31868. weight: math.unit(940, "lb"),
  31869. name: "Back",
  31870. image: {
  31871. source: "./media/characters/byliss/back.svg",
  31872. extra: 1376/1349,
  31873. bottom: 9/1385
  31874. }
  31875. },
  31876. frontNsfw: {
  31877. height: math.unit(9 + 6/12, "feet"),
  31878. weight: math.unit(940, "lb"),
  31879. name: "Front (NSFW)",
  31880. image: {
  31881. source: "./media/characters/byliss/front-nsfw.svg",
  31882. extra: 1327/1290,
  31883. bottom: 82/1409
  31884. }
  31885. },
  31886. backNsfw: {
  31887. height: math.unit(9 + 6/12, "feet"),
  31888. weight: math.unit(940, "lb"),
  31889. name: "Back (NSFW)",
  31890. image: {
  31891. source: "./media/characters/byliss/back-nsfw.svg",
  31892. extra: 1376/1349,
  31893. bottom: 9/1385
  31894. }
  31895. },
  31896. },
  31897. [
  31898. {
  31899. name: "Normal",
  31900. height: math.unit(9 + 6/12, "feet"),
  31901. default: true
  31902. },
  31903. ]
  31904. ))
  31905. characterMakers.push(() => makeCharacter(
  31906. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31907. {
  31908. front: {
  31909. height: math.unit(5 + 2/12, "feet"),
  31910. weight: math.unit(200, "lb"),
  31911. name: "Front",
  31912. image: {
  31913. source: "./media/characters/noraly/front.svg",
  31914. extra: 4985/4773,
  31915. bottom: 150/5135
  31916. }
  31917. },
  31918. full: {
  31919. height: math.unit(5 + 2/12, "feet"),
  31920. weight: math.unit(164, "lb"),
  31921. name: "Full",
  31922. image: {
  31923. source: "./media/characters/noraly/full.svg",
  31924. extra: 1114/1059,
  31925. bottom: 35/1149
  31926. }
  31927. },
  31928. fuller: {
  31929. height: math.unit(5 + 2/12, "feet"),
  31930. weight: math.unit(230, "lb"),
  31931. name: "Fuller",
  31932. image: {
  31933. source: "./media/characters/noraly/fuller.svg",
  31934. extra: 1114/1059,
  31935. bottom: 35/1149
  31936. }
  31937. },
  31938. fullest: {
  31939. height: math.unit(5 + 2/12, "feet"),
  31940. weight: math.unit(300, "lb"),
  31941. name: "Fullest",
  31942. image: {
  31943. source: "./media/characters/noraly/fullest.svg",
  31944. extra: 1114/1059,
  31945. bottom: 35/1149
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Normal",
  31952. height: math.unit(5 + 2/12, "feet"),
  31953. default: true
  31954. },
  31955. ]
  31956. ))
  31957. characterMakers.push(() => makeCharacter(
  31958. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31959. {
  31960. front: {
  31961. height: math.unit(5 + 2/12, "feet"),
  31962. weight: math.unit(210, "lb"),
  31963. name: "Front",
  31964. image: {
  31965. source: "./media/characters/pera/front.svg",
  31966. extra: 1560/1531,
  31967. bottom: 165/1725
  31968. }
  31969. },
  31970. back: {
  31971. height: math.unit(5 + 2/12, "feet"),
  31972. weight: math.unit(210, "lb"),
  31973. name: "Back",
  31974. image: {
  31975. source: "./media/characters/pera/back.svg",
  31976. extra: 1523/1493,
  31977. bottom: 152/1675
  31978. }
  31979. },
  31980. dick: {
  31981. height: math.unit(2.4, "feet"),
  31982. name: "Dick",
  31983. image: {
  31984. source: "./media/characters/pera/dick.svg"
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(5 + 2/12, "feet"),
  31992. default: true
  31993. },
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31998. {
  31999. front: {
  32000. height: math.unit(12, "feet"),
  32001. weight: math.unit(3200, "lb"),
  32002. name: "Front",
  32003. image: {
  32004. source: "./media/characters/julian/front.svg",
  32005. extra: 2962/2701,
  32006. bottom: 184/3146
  32007. }
  32008. },
  32009. maw: {
  32010. height: math.unit(5.35, "feet"),
  32011. name: "Maw",
  32012. image: {
  32013. source: "./media/characters/julian/maw.svg"
  32014. }
  32015. },
  32016. paw: {
  32017. height: math.unit(3.07, "feet"),
  32018. name: "Paw",
  32019. image: {
  32020. source: "./media/characters/julian/paw.svg"
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Default",
  32027. height: math.unit(12, "feet"),
  32028. default: true
  32029. },
  32030. {
  32031. name: "Big",
  32032. height: math.unit(50, "feet")
  32033. },
  32034. {
  32035. name: "Really Big",
  32036. height: math.unit(1, "mile")
  32037. },
  32038. {
  32039. name: "Extremely Big",
  32040. height: math.unit(100, "miles")
  32041. },
  32042. {
  32043. name: "Planet Hugger",
  32044. height: math.unit(200, "megameters")
  32045. },
  32046. {
  32047. name: "Unreasonably Big",
  32048. height: math.unit(1e300, "meters")
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32054. {
  32055. solgooleo: {
  32056. height: math.unit(4, "meters"),
  32057. weight: math.unit(6000*1.5, "kg"),
  32058. volume: math.unit(6000, "liters"),
  32059. name: "Solgooleo",
  32060. image: {
  32061. source: "./media/characters/pi/solgooleo.svg",
  32062. extra: 388/331,
  32063. bottom: 29/417
  32064. }
  32065. },
  32066. },
  32067. [
  32068. {
  32069. name: "Normal",
  32070. height: math.unit(4, "meters"),
  32071. default: true
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32077. {
  32078. front: {
  32079. height: math.unit(8 + 2/12, "feet"),
  32080. weight: math.unit(4, "tons"),
  32081. name: "Front",
  32082. image: {
  32083. source: "./media/characters/shaun/front.svg",
  32084. extra: 1550/1505,
  32085. bottom: 353/1903
  32086. }
  32087. },
  32088. },
  32089. [
  32090. {
  32091. name: "Lorg",
  32092. height: math.unit(8 + 2/12, "feet"),
  32093. default: true
  32094. },
  32095. ]
  32096. ))
  32097. characterMakers.push(() => makeCharacter(
  32098. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32099. {
  32100. front: {
  32101. height: math.unit(7, "feet"),
  32102. name: "Front",
  32103. image: {
  32104. source: "./media/characters/sini/front.svg",
  32105. extra: 726/678,
  32106. bottom: 35/761
  32107. }
  32108. },
  32109. back: {
  32110. height: math.unit(7, "feet"),
  32111. name: "Back",
  32112. image: {
  32113. source: "./media/characters/sini/back.svg",
  32114. extra: 743/701,
  32115. bottom: 12/755
  32116. }
  32117. },
  32118. mawAnthro: {
  32119. height: math.unit(2.14, "feet"),
  32120. name: "Maw (Anthro)",
  32121. image: {
  32122. source: "./media/characters/sini/maw-anthro.svg"
  32123. }
  32124. },
  32125. dick: {
  32126. height: math.unit(1.45, "feet"),
  32127. name: "Dick (Anthro)",
  32128. image: {
  32129. source: "./media/characters/sini/dick-anthro.svg"
  32130. }
  32131. },
  32132. feral: {
  32133. height: math.unit(13, "feet"),
  32134. name: "Feral",
  32135. image: {
  32136. source: "./media/characters/sini/feral.svg",
  32137. extra: 814/605,
  32138. bottom: 11/825
  32139. }
  32140. },
  32141. mawFeral: {
  32142. height: math.unit(4.6, "feet"),
  32143. name: "Maw-feral",
  32144. image: {
  32145. source: "./media/characters/sini/maw-feral.svg"
  32146. }
  32147. },
  32148. footFeral: {
  32149. height: math.unit(4.2, "feet"),
  32150. name: "Foot-feral",
  32151. image: {
  32152. source: "./media/characters/sini/foot-feral.svg"
  32153. }
  32154. },
  32155. },
  32156. [
  32157. {
  32158. name: "Normal",
  32159. height: math.unit(7, "feet"),
  32160. default: true
  32161. },
  32162. ]
  32163. ))
  32164. characterMakers.push(() => makeCharacter(
  32165. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32166. {
  32167. side: {
  32168. height: math.unit(13, "meters"),
  32169. weight: math.unit(9072, "kg"),
  32170. name: "Side",
  32171. image: {
  32172. source: "./media/characters/raylldo/side.svg",
  32173. extra: 403/344,
  32174. bottom: 42/445
  32175. }
  32176. },
  32177. leaping: {
  32178. height: math.unit(12.3, "meters"),
  32179. weight: math.unit(9072, "kg"),
  32180. name: "Leaping",
  32181. image: {
  32182. source: "./media/characters/raylldo/leaping.svg",
  32183. extra: 470/249,
  32184. bottom: 13/483
  32185. }
  32186. },
  32187. flying: {
  32188. height: math.unit(18, "meters"),
  32189. weight: math.unit(9072, "kg"),
  32190. name: "Flying",
  32191. image: {
  32192. source: "./media/characters/raylldo/flying.svg"
  32193. }
  32194. },
  32195. head: {
  32196. height: math.unit(5.85, "meters"),
  32197. name: "Head",
  32198. image: {
  32199. source: "./media/characters/raylldo/head.svg"
  32200. }
  32201. },
  32202. maw: {
  32203. height: math.unit(5.32, "meters"),
  32204. name: "Maw",
  32205. image: {
  32206. source: "./media/characters/raylldo/maw.svg"
  32207. }
  32208. },
  32209. eye: {
  32210. height: math.unit(0.54, "meters"),
  32211. name: "Eye",
  32212. image: {
  32213. source: "./media/characters/raylldo/eye.svg"
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(13, "meters"),
  32221. default: true
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32227. {
  32228. anthroFront: {
  32229. height: math.unit(9, "feet"),
  32230. weight: math.unit(600, "lb"),
  32231. name: "Anthro (Front)",
  32232. image: {
  32233. source: "./media/characters/glint/anthro-front.svg",
  32234. extra: 1097/1018,
  32235. bottom: 28/1125
  32236. }
  32237. },
  32238. anthroBack: {
  32239. height: math.unit(9, "feet"),
  32240. weight: math.unit(600, "lb"),
  32241. name: "Anthro (Back)",
  32242. image: {
  32243. source: "./media/characters/glint/anthro-back.svg",
  32244. extra: 1154/997,
  32245. bottom: 36/1190
  32246. }
  32247. },
  32248. feral: {
  32249. height: math.unit(11, "feet"),
  32250. weight: math.unit(50000, "lb"),
  32251. name: "Feral",
  32252. image: {
  32253. source: "./media/characters/glint/feral.svg",
  32254. extra: 3035/1585,
  32255. bottom: 1169/4204
  32256. }
  32257. },
  32258. dickAnthro: {
  32259. height: math.unit(0.7, "meters"),
  32260. name: "Dick (Anthro)",
  32261. image: {
  32262. source: "./media/characters/glint/dick-anthro.svg"
  32263. }
  32264. },
  32265. dickFeral: {
  32266. height: math.unit(2.65, "meters"),
  32267. name: "Dick (Feral)",
  32268. image: {
  32269. source: "./media/characters/glint/dick-feral.svg"
  32270. }
  32271. },
  32272. slitHidden: {
  32273. height: math.unit(5.85, "meters"),
  32274. name: "Slit (Hidden)",
  32275. image: {
  32276. source: "./media/characters/glint/slit-hidden.svg"
  32277. }
  32278. },
  32279. slitErect: {
  32280. height: math.unit(5.85, "meters"),
  32281. name: "Slit (Erect)",
  32282. image: {
  32283. source: "./media/characters/glint/slit-erect.svg"
  32284. }
  32285. },
  32286. mawAnthro: {
  32287. height: math.unit(0.63, "meters"),
  32288. name: "Maw (Anthro)",
  32289. image: {
  32290. source: "./media/characters/glint/maw.svg"
  32291. }
  32292. },
  32293. mawFeral: {
  32294. height: math.unit(2.89, "meters"),
  32295. name: "Maw (Feral)",
  32296. image: {
  32297. source: "./media/characters/glint/maw.svg"
  32298. }
  32299. },
  32300. },
  32301. [
  32302. {
  32303. name: "Normal",
  32304. height: math.unit(9, "feet"),
  32305. default: true
  32306. },
  32307. ]
  32308. ))
  32309. characterMakers.push(() => makeCharacter(
  32310. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32311. {
  32312. side: {
  32313. height: math.unit(15, "feet"),
  32314. weight: math.unit(5000, "kg"),
  32315. name: "Side",
  32316. image: {
  32317. source: "./media/characters/kairne/side.svg",
  32318. extra: 979/811,
  32319. bottom: 13/992
  32320. }
  32321. },
  32322. front: {
  32323. height: math.unit(15, "feet"),
  32324. weight: math.unit(5000, "kg"),
  32325. name: "Front",
  32326. image: {
  32327. source: "./media/characters/kairne/front.svg",
  32328. extra: 908/814,
  32329. bottom: 26/934
  32330. }
  32331. },
  32332. sideNsfw: {
  32333. height: math.unit(15, "feet"),
  32334. weight: math.unit(5000, "kg"),
  32335. name: "Side (NSFW)",
  32336. image: {
  32337. source: "./media/characters/kairne/side-nsfw.svg",
  32338. extra: 979/811,
  32339. bottom: 13/992
  32340. }
  32341. },
  32342. frontNsfw: {
  32343. height: math.unit(15, "feet"),
  32344. weight: math.unit(5000, "kg"),
  32345. name: "Front (NSFW)",
  32346. image: {
  32347. source: "./media/characters/kairne/front-nsfw.svg",
  32348. extra: 908/814,
  32349. bottom: 26/934
  32350. }
  32351. },
  32352. dickCaged: {
  32353. height: math.unit(0.65, "meters"),
  32354. name: "Dick-caged",
  32355. image: {
  32356. source: "./media/characters/kairne/dick-caged.svg"
  32357. }
  32358. },
  32359. dick: {
  32360. height: math.unit(0.79, "meters"),
  32361. name: "Dick",
  32362. image: {
  32363. source: "./media/characters/kairne/dick.svg"
  32364. }
  32365. },
  32366. genitals: {
  32367. height: math.unit(1.29, "meters"),
  32368. name: "Genitals",
  32369. image: {
  32370. source: "./media/characters/kairne/genitals.svg"
  32371. }
  32372. },
  32373. maw: {
  32374. height: math.unit(1.73, "meters"),
  32375. name: "Maw",
  32376. image: {
  32377. source: "./media/characters/kairne/maw.svg"
  32378. }
  32379. },
  32380. },
  32381. [
  32382. {
  32383. name: "Normal",
  32384. height: math.unit(15, "feet"),
  32385. default: true
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(5 + 8/12, "feet"),
  32394. weight: math.unit(139, "lb"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/biscuit-jackal/front.svg",
  32398. extra: 2106/1961,
  32399. bottom: 58/2164
  32400. }
  32401. },
  32402. back: {
  32403. height: math.unit(5 + 8/12, "feet"),
  32404. weight: math.unit(139, "lb"),
  32405. name: "Back",
  32406. image: {
  32407. source: "./media/characters/biscuit-jackal/back.svg",
  32408. extra: 2132/1976,
  32409. bottom: 57/2189
  32410. }
  32411. },
  32412. werejackal: {
  32413. height: math.unit(6 + 3/12, "feet"),
  32414. weight: math.unit(188, "lb"),
  32415. name: "Werejackal",
  32416. image: {
  32417. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32418. extra: 2373/2178,
  32419. bottom: 53/2426
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(5 + 8/12, "feet"),
  32427. default: true
  32428. },
  32429. ]
  32430. ))
  32431. characterMakers.push(() => makeCharacter(
  32432. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32433. {
  32434. front: {
  32435. height: math.unit(140, "cm"),
  32436. weight: math.unit(45, "kg"),
  32437. name: "Front",
  32438. image: {
  32439. source: "./media/characters/tayra-white/front.svg",
  32440. extra: 2229/2192,
  32441. bottom: 75/2304
  32442. }
  32443. },
  32444. },
  32445. [
  32446. {
  32447. name: "Normal",
  32448. height: math.unit(140, "cm"),
  32449. default: true
  32450. },
  32451. ]
  32452. ))
  32453. characterMakers.push(() => makeCharacter(
  32454. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32455. {
  32456. front: {
  32457. height: math.unit(4 + 5/12, "feet"),
  32458. name: "Front",
  32459. image: {
  32460. source: "./media/characters/scoop/front.svg",
  32461. extra: 1257/1136,
  32462. bottom: 69/1326
  32463. }
  32464. },
  32465. back: {
  32466. height: math.unit(4 + 5/12, "feet"),
  32467. name: "Back",
  32468. image: {
  32469. source: "./media/characters/scoop/back.svg",
  32470. extra: 1321/1152,
  32471. bottom: 32/1353
  32472. }
  32473. },
  32474. maw: {
  32475. height: math.unit(0.68, "feet"),
  32476. name: "Maw",
  32477. image: {
  32478. source: "./media/characters/scoop/maw.svg"
  32479. }
  32480. },
  32481. },
  32482. [
  32483. {
  32484. name: "Really Small",
  32485. height: math.unit(1, "mm")
  32486. },
  32487. {
  32488. name: "Micro",
  32489. height: math.unit(1, "inch")
  32490. },
  32491. {
  32492. name: "Normal",
  32493. height: math.unit(4 + 5/12, "feet"),
  32494. default: true
  32495. },
  32496. {
  32497. name: "Macro",
  32498. height: math.unit(200, "feet")
  32499. },
  32500. {
  32501. name: "Megamacro",
  32502. height: math.unit(3240, "feet")
  32503. },
  32504. {
  32505. name: "Teramacro",
  32506. height: math.unit(2500, "miles")
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(15 + 7/12, "feet"),
  32515. name: "Front",
  32516. image: {
  32517. source: "./media/characters/saphinara/front.svg",
  32518. extra: 604/546,
  32519. bottom: 19/623
  32520. }
  32521. },
  32522. side: {
  32523. height: math.unit(15 + 7/12, "feet"),
  32524. name: "Side",
  32525. image: {
  32526. source: "./media/characters/saphinara/side.svg",
  32527. extra: 605/547,
  32528. bottom: 6/611
  32529. }
  32530. },
  32531. back: {
  32532. height: math.unit(15 + 7/12, "feet"),
  32533. name: "Back",
  32534. image: {
  32535. source: "./media/characters/saphinara/back.svg",
  32536. extra: 591/531,
  32537. bottom: 13/604
  32538. }
  32539. },
  32540. frontTail: {
  32541. height: math.unit(15 + 7/12, "feet"),
  32542. name: "Front (Full Tail)",
  32543. image: {
  32544. source: "./media/characters/saphinara/front-tail.svg",
  32545. extra: 748/547,
  32546. bottom: 66/814
  32547. }
  32548. },
  32549. },
  32550. [
  32551. {
  32552. name: "Normal",
  32553. height: math.unit(15 + 7/12, "feet"),
  32554. default: true
  32555. },
  32556. {
  32557. name: "Angry",
  32558. height: math.unit(30 + 6/12, "feet")
  32559. },
  32560. {
  32561. name: "Enraged",
  32562. height: math.unit(102 + 1/12, "feet")
  32563. },
  32564. ]
  32565. ))
  32566. characterMakers.push(() => makeCharacter(
  32567. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32568. {
  32569. front: {
  32570. height: math.unit(6 + 8/12, "feet"),
  32571. weight: math.unit(300, "lb"),
  32572. name: "Front",
  32573. image: {
  32574. source: "./media/characters/jrain/front.svg",
  32575. extra: 3039/2865,
  32576. bottom: 399/3438
  32577. }
  32578. },
  32579. back: {
  32580. height: math.unit(6 + 8/12, "feet"),
  32581. weight: math.unit(300, "lb"),
  32582. name: "Back",
  32583. image: {
  32584. source: "./media/characters/jrain/back.svg",
  32585. extra: 3089/2938,
  32586. bottom: 172/3261
  32587. }
  32588. },
  32589. head: {
  32590. height: math.unit(2.14, "feet"),
  32591. name: "Head",
  32592. image: {
  32593. source: "./media/characters/jrain/head.svg"
  32594. }
  32595. },
  32596. maw: {
  32597. height: math.unit(1.77, "feet"),
  32598. name: "Maw",
  32599. image: {
  32600. source: "./media/characters/jrain/maw.svg"
  32601. }
  32602. },
  32603. leftHand: {
  32604. height: math.unit(1.1, "feet"),
  32605. name: "Left Hand",
  32606. image: {
  32607. source: "./media/characters/jrain/left-hand.svg"
  32608. }
  32609. },
  32610. rightHand: {
  32611. height: math.unit(1.1, "feet"),
  32612. name: "Right Hand",
  32613. image: {
  32614. source: "./media/characters/jrain/right-hand.svg"
  32615. }
  32616. },
  32617. eye: {
  32618. height: math.unit(0.35, "feet"),
  32619. name: "Eye",
  32620. image: {
  32621. source: "./media/characters/jrain/eye.svg"
  32622. }
  32623. },
  32624. },
  32625. [
  32626. {
  32627. name: "Normal",
  32628. height: math.unit(6 + 8/12, "feet"),
  32629. default: true
  32630. },
  32631. {
  32632. name: "Casually Large",
  32633. height: math.unit(25, "feet")
  32634. },
  32635. {
  32636. name: "Giant",
  32637. height: math.unit(100, "feet")
  32638. },
  32639. {
  32640. name: "Kaiju",
  32641. height: math.unit(300, "feet")
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32647. {
  32648. dragon: {
  32649. height: math.unit(5, "meters"),
  32650. name: "Dragon",
  32651. image: {
  32652. source: "./media/characters/sabrina/dragon.svg",
  32653. extra: 3670 / 2365,
  32654. bottom: 333 / 4003
  32655. }
  32656. },
  32657. gryphon: {
  32658. height: math.unit(3, "meters"),
  32659. name: "Gryphon",
  32660. image: {
  32661. source: "./media/characters/sabrina/gryphon.svg",
  32662. extra: 1576 / 945,
  32663. bottom: 71 / 1647
  32664. }
  32665. },
  32666. snake: {
  32667. height: math.unit(12, "meters"),
  32668. name: "Snake",
  32669. image: {
  32670. source: "./media/characters/sabrina/snake.svg",
  32671. extra: 1758 / 1320,
  32672. bottom: 186 / 1944
  32673. }
  32674. },
  32675. collar: {
  32676. height: math.unit(1.86, "meters"),
  32677. name: "Collar",
  32678. image: {
  32679. source: "./media/characters/sabrina/collar.svg"
  32680. }
  32681. },
  32682. eye: {
  32683. height: math.unit(0.53, "meters"),
  32684. name: "Eye",
  32685. image: {
  32686. source: "./media/characters/sabrina/eye.svg"
  32687. }
  32688. },
  32689. foot: {
  32690. height: math.unit(1.86, "meters"),
  32691. name: "Foot",
  32692. image: {
  32693. source: "./media/characters/sabrina/foot.svg"
  32694. }
  32695. },
  32696. hand: {
  32697. height: math.unit(1.32, "meters"),
  32698. name: "Hand",
  32699. image: {
  32700. source: "./media/characters/sabrina/hand.svg"
  32701. }
  32702. },
  32703. head: {
  32704. height: math.unit(2.44, "meters"),
  32705. name: "Head",
  32706. image: {
  32707. source: "./media/characters/sabrina/head.svg"
  32708. }
  32709. },
  32710. headAngry: {
  32711. height: math.unit(2.44, "meters"),
  32712. name: "Head (Angry))",
  32713. image: {
  32714. source: "./media/characters/sabrina/head-angry.svg"
  32715. }
  32716. },
  32717. maw: {
  32718. height: math.unit(1.65, "meters"),
  32719. name: "Maw",
  32720. image: {
  32721. source: "./media/characters/sabrina/maw.svg"
  32722. }
  32723. },
  32724. spikes: {
  32725. height: math.unit(1.69, "meters"),
  32726. name: "Spikes",
  32727. image: {
  32728. source: "./media/characters/sabrina/spikes.svg"
  32729. }
  32730. },
  32731. stomach: {
  32732. height: math.unit(1.15, "meters"),
  32733. name: "Stomach",
  32734. image: {
  32735. source: "./media/characters/sabrina/stomach.svg"
  32736. }
  32737. },
  32738. tongue: {
  32739. height: math.unit(1.27, "meters"),
  32740. name: "Tongue",
  32741. image: {
  32742. source: "./media/characters/sabrina/tongue.svg"
  32743. }
  32744. },
  32745. wingDorsal: {
  32746. height: math.unit(4.85, "meters"),
  32747. name: "Wing (Dorsal)",
  32748. image: {
  32749. source: "./media/characters/sabrina/wing-dorsal.svg"
  32750. }
  32751. },
  32752. wingVentral: {
  32753. height: math.unit(4.85, "meters"),
  32754. name: "Wing (Ventral)",
  32755. image: {
  32756. source: "./media/characters/sabrina/wing-ventral.svg"
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(5, "meters"),
  32764. default: true
  32765. },
  32766. ]
  32767. ))
  32768. characterMakers.push(() => makeCharacter(
  32769. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32770. {
  32771. frontMaid: {
  32772. height: math.unit(5 + 5/12, "feet"),
  32773. weight: math.unit(130, "lb"),
  32774. name: "Front (Maid)",
  32775. image: {
  32776. source: "./media/characters/midnight-tales/front-maid.svg",
  32777. extra: 489/454,
  32778. bottom: 61/550
  32779. }
  32780. },
  32781. frontFormal: {
  32782. height: math.unit(5 + 5/12, "feet"),
  32783. weight: math.unit(130, "lb"),
  32784. name: "Front (Formal)",
  32785. image: {
  32786. source: "./media/characters/midnight-tales/front-formal.svg",
  32787. extra: 489/454,
  32788. bottom: 61/550
  32789. }
  32790. },
  32791. back: {
  32792. height: math.unit(5 + 5/12, "feet"),
  32793. weight: math.unit(130, "lb"),
  32794. name: "Back",
  32795. image: {
  32796. source: "./media/characters/midnight-tales/back.svg",
  32797. extra: 498/456,
  32798. bottom: 33/531
  32799. }
  32800. },
  32801. frontBeast: {
  32802. height: math.unit(40, "feet"),
  32803. weight: math.unit(64000, "lb"),
  32804. name: "Front (Beast)",
  32805. image: {
  32806. source: "./media/characters/midnight-tales/front-beast.svg",
  32807. extra: 927/860,
  32808. bottom: 53/980
  32809. }
  32810. },
  32811. backBeast: {
  32812. height: math.unit(40, "feet"),
  32813. weight: math.unit(64000, "lb"),
  32814. name: "Back (Beast)",
  32815. image: {
  32816. source: "./media/characters/midnight-tales/back-beast.svg",
  32817. extra: 929/855,
  32818. bottom: 16/945
  32819. }
  32820. },
  32821. footBeast: {
  32822. height: math.unit(6.7, "feet"),
  32823. name: "Foot (Beast)",
  32824. image: {
  32825. source: "./media/characters/midnight-tales/foot-beast.svg"
  32826. }
  32827. },
  32828. headBeast: {
  32829. height: math.unit(8, "feet"),
  32830. name: "Head (Beast)",
  32831. image: {
  32832. source: "./media/characters/midnight-tales/head-beast.svg"
  32833. }
  32834. },
  32835. },
  32836. [
  32837. {
  32838. name: "Normal",
  32839. height: math.unit(5 + 5 / 12, "feet"),
  32840. default: true
  32841. },
  32842. {
  32843. name: "Macro",
  32844. height: math.unit(25, "feet")
  32845. },
  32846. ]
  32847. ))
  32848. characterMakers.push(() => makeCharacter(
  32849. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32850. {
  32851. front: {
  32852. height: math.unit(5 + 10/12, "feet"),
  32853. name: "Front",
  32854. image: {
  32855. source: "./media/characters/argon/front.svg",
  32856. extra: 2009/1935,
  32857. bottom: 118/2127
  32858. }
  32859. },
  32860. back: {
  32861. height: math.unit(5 + 10/12, "feet"),
  32862. name: "Back",
  32863. image: {
  32864. source: "./media/characters/argon/back.svg",
  32865. extra: 2047/1992,
  32866. bottom: 20/2067
  32867. }
  32868. },
  32869. frontDressed: {
  32870. height: math.unit(5 + 10/12, "feet"),
  32871. name: "Front (Dressed)",
  32872. image: {
  32873. source: "./media/characters/argon/front-dressed.svg",
  32874. extra: 2009/1935,
  32875. bottom: 118/2127
  32876. }
  32877. },
  32878. },
  32879. [
  32880. {
  32881. name: "Normal",
  32882. height: math.unit(5 + 10/12, "feet"),
  32883. default: true
  32884. },
  32885. ]
  32886. ))
  32887. characterMakers.push(() => makeCharacter(
  32888. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32889. {
  32890. front: {
  32891. height: math.unit(8 + 6/12, "feet"),
  32892. weight: math.unit(1150, "lb"),
  32893. name: "Front",
  32894. image: {
  32895. source: "./media/characters/kichi/front.svg",
  32896. extra: 1267/1164,
  32897. bottom: 61/1328
  32898. }
  32899. },
  32900. back: {
  32901. height: math.unit(8 + 6/12, "feet"),
  32902. weight: math.unit(1150, "lb"),
  32903. name: "Back",
  32904. image: {
  32905. source: "./media/characters/kichi/back.svg",
  32906. extra: 1273/1166,
  32907. bottom: 33/1306
  32908. }
  32909. },
  32910. },
  32911. [
  32912. {
  32913. name: "Normal",
  32914. height: math.unit(8 + 6/12, "feet"),
  32915. default: true
  32916. },
  32917. ]
  32918. ))
  32919. characterMakers.push(() => makeCharacter(
  32920. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32921. {
  32922. front: {
  32923. height: math.unit(6, "feet"),
  32924. weight: math.unit(210, "lb"),
  32925. name: "Front",
  32926. image: {
  32927. source: "./media/characters/manetel-greyscale/front.svg",
  32928. extra: 350/312,
  32929. bottom: 8/358
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Micro",
  32936. height: math.unit(2, "inches")
  32937. },
  32938. {
  32939. name: "Normal",
  32940. height: math.unit(6, "feet"),
  32941. default: true
  32942. },
  32943. {
  32944. name: "Minimacro",
  32945. height: math.unit(17, "feet")
  32946. },
  32947. {
  32948. name: "Macro",
  32949. height: math.unit(117, "feet")
  32950. },
  32951. ]
  32952. ))
  32953. characterMakers.push(() => makeCharacter(
  32954. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32955. {
  32956. side: {
  32957. height: math.unit(5 + 1/12, "feet"),
  32958. weight: math.unit(418, "lb"),
  32959. name: "Side",
  32960. image: {
  32961. source: "./media/characters/softpurr/side.svg",
  32962. extra: 1993/1945,
  32963. bottom: 134/2127
  32964. }
  32965. },
  32966. front: {
  32967. height: math.unit(5 + 1/12, "feet"),
  32968. weight: math.unit(418, "lb"),
  32969. name: "Front",
  32970. image: {
  32971. source: "./media/characters/softpurr/front.svg",
  32972. extra: 1950/1856,
  32973. bottom: 174/2124
  32974. }
  32975. },
  32976. paw: {
  32977. height: math.unit(1, "feet"),
  32978. name: "Paw",
  32979. image: {
  32980. source: "./media/characters/softpurr/paw.svg"
  32981. }
  32982. },
  32983. },
  32984. [
  32985. {
  32986. name: "Normal",
  32987. height: math.unit(5 + 1/12, "feet"),
  32988. default: true
  32989. },
  32990. ]
  32991. ))
  32992. characterMakers.push(() => makeCharacter(
  32993. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32994. {
  32995. front: {
  32996. height: math.unit(260, "meters"),
  32997. name: "Front",
  32998. image: {
  32999. source: "./media/characters/anahita/front.svg",
  33000. extra: 665/635,
  33001. bottom: 89/754
  33002. }
  33003. },
  33004. },
  33005. [
  33006. {
  33007. name: "Macro",
  33008. height: math.unit(260, "meters"),
  33009. default: true
  33010. },
  33011. ]
  33012. ))
  33013. characterMakers.push(() => makeCharacter(
  33014. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33015. {
  33016. front: {
  33017. height: math.unit(4 + 10/12, "feet"),
  33018. weight: math.unit(160, "lb"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/chip-mouse/front.svg",
  33022. extra: 3528/3408,
  33023. bottom: 0/3528
  33024. }
  33025. },
  33026. frontNsfw: {
  33027. height: math.unit(4 + 10/12, "feet"),
  33028. weight: math.unit(160, "lb"),
  33029. name: "Front (NSFW)",
  33030. image: {
  33031. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33032. extra: 3528/3408,
  33033. bottom: 0/3528
  33034. }
  33035. },
  33036. },
  33037. [
  33038. {
  33039. name: "Normal",
  33040. height: math.unit(4 + 10/12, "feet"),
  33041. default: true
  33042. },
  33043. ]
  33044. ))
  33045. characterMakers.push(() => makeCharacter(
  33046. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33047. {
  33048. side: {
  33049. height: math.unit(10, "feet"),
  33050. weight: math.unit(14000, "lb"),
  33051. name: "Side",
  33052. image: {
  33053. source: "./media/characters/kremm/side.svg",
  33054. extra: 1390/1053,
  33055. bottom: 90/1480
  33056. }
  33057. },
  33058. gut: {
  33059. height: math.unit(5.8, "feet"),
  33060. name: "Gut",
  33061. image: {
  33062. source: "./media/characters/kremm/gut.svg"
  33063. }
  33064. },
  33065. ass: {
  33066. height: math.unit(6.1, "feet"),
  33067. name: "Ass",
  33068. image: {
  33069. source: "./media/characters/kremm/ass.svg"
  33070. }
  33071. },
  33072. jaws: {
  33073. height: math.unit(2.2, "feet"),
  33074. name: "Jaws",
  33075. image: {
  33076. source: "./media/characters/kremm/jaws.svg"
  33077. }
  33078. },
  33079. dick: {
  33080. height: math.unit(4.26, "feet"),
  33081. name: "Dick",
  33082. image: {
  33083. source: "./media/characters/kremm/dick.svg"
  33084. }
  33085. },
  33086. },
  33087. [
  33088. {
  33089. name: "Normal",
  33090. height: math.unit(10, "feet"),
  33091. default: true
  33092. },
  33093. ]
  33094. ))
  33095. characterMakers.push(() => makeCharacter(
  33096. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33097. {
  33098. front: {
  33099. height: math.unit(30, "stories"),
  33100. name: "Front",
  33101. image: {
  33102. source: "./media/characters/kai/front.svg",
  33103. extra: 1892/1718,
  33104. bottom: 162/2054
  33105. }
  33106. },
  33107. },
  33108. [
  33109. {
  33110. name: "Macro",
  33111. height: math.unit(30, "stories"),
  33112. default: true
  33113. },
  33114. ]
  33115. ))
  33116. characterMakers.push(() => makeCharacter(
  33117. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33118. {
  33119. front: {
  33120. height: math.unit(6 + 4/12, "feet"),
  33121. weight: math.unit(145, "lb"),
  33122. name: "Front",
  33123. image: {
  33124. source: "./media/characters/sykes/front.svg",
  33125. extra: 1321 / 1187,
  33126. bottom: 66 / 1387
  33127. }
  33128. },
  33129. back: {
  33130. height: math.unit(6 + 4/12, "feet"),
  33131. weight: math.unit(145, "lb"),
  33132. name: "Back",
  33133. image: {
  33134. source: "./media/characters/sykes/back.svg",
  33135. extra: 1326/1181,
  33136. bottom: 31/1357
  33137. }
  33138. },
  33139. handBack: {
  33140. height: math.unit(0.9, "feet"),
  33141. name: "Hand (Back)",
  33142. image: {
  33143. source: "./media/characters/sykes/hand-back.svg"
  33144. }
  33145. },
  33146. handFront: {
  33147. height: math.unit(0.839, "feet"),
  33148. name: "Hand (Front)",
  33149. image: {
  33150. source: "./media/characters/sykes/hand-front.svg"
  33151. }
  33152. },
  33153. leftFoot: {
  33154. height: math.unit(1.2, "feet"),
  33155. name: "Foot (Left)",
  33156. image: {
  33157. source: "./media/characters/sykes/foot-left.svg"
  33158. }
  33159. },
  33160. rightFoot: {
  33161. height: math.unit(1.2, "feet"),
  33162. name: "Foot (Right)",
  33163. image: {
  33164. source: "./media/characters/sykes/foot-right.svg"
  33165. }
  33166. },
  33167. maw: {
  33168. height: math.unit(1.93, "feet"),
  33169. name: "Maw",
  33170. image: {
  33171. source: "./media/characters/sykes/maw.svg"
  33172. }
  33173. },
  33174. teeth: {
  33175. height: math.unit(0.51, "feet"),
  33176. name: "Teeth",
  33177. image: {
  33178. source: "./media/characters/sykes/teeth.svg"
  33179. }
  33180. },
  33181. tongue: {
  33182. height: math.unit(2.13, "feet"),
  33183. name: "Tongue",
  33184. image: {
  33185. source: "./media/characters/sykes/tongue.svg"
  33186. }
  33187. },
  33188. uvula: {
  33189. height: math.unit(0.16, "feet"),
  33190. name: "Uvula",
  33191. image: {
  33192. source: "./media/characters/sykes/uvula.svg"
  33193. }
  33194. },
  33195. collar: {
  33196. height: math.unit(0.287, "feet"),
  33197. name: "Collar",
  33198. image: {
  33199. source: "./media/characters/sykes/collar.svg"
  33200. }
  33201. },
  33202. },
  33203. [
  33204. {
  33205. name: "Shrunken",
  33206. height: math.unit(5, "inches")
  33207. },
  33208. {
  33209. name: "Normal",
  33210. height: math.unit(6 + 4 / 12, "feet"),
  33211. default: true
  33212. },
  33213. {
  33214. name: "Big",
  33215. height: math.unit(15, "feet")
  33216. },
  33217. ]
  33218. ))
  33219. characterMakers.push(() => makeCharacter(
  33220. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33221. {
  33222. front: {
  33223. height: math.unit(5 + 8/12, "feet"),
  33224. weight: math.unit(190, "lb"),
  33225. name: "Front",
  33226. image: {
  33227. source: "./media/characters/oven-otter/front.svg",
  33228. extra: 1809/1740,
  33229. bottom: 181/1990
  33230. }
  33231. },
  33232. back: {
  33233. height: math.unit(5 + 8/12, "feet"),
  33234. weight: math.unit(190, "lb"),
  33235. name: "Back",
  33236. image: {
  33237. source: "./media/characters/oven-otter/back.svg",
  33238. extra: 1709/1635,
  33239. bottom: 118/1827
  33240. }
  33241. },
  33242. hand: {
  33243. height: math.unit(1.07, "feet"),
  33244. name: "Hand",
  33245. image: {
  33246. source: "./media/characters/oven-otter/hand.svg"
  33247. }
  33248. },
  33249. beans: {
  33250. height: math.unit(1.74, "feet"),
  33251. name: "Beans",
  33252. image: {
  33253. source: "./media/characters/oven-otter/beans.svg"
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Micro",
  33260. height: math.unit(0.5, "inches")
  33261. },
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(5 + 8/12, "feet"),
  33265. default: true
  33266. },
  33267. {
  33268. name: "Macro",
  33269. height: math.unit(250, "feet")
  33270. },
  33271. {
  33272. name: "Really High",
  33273. height: math.unit(420, "feet")
  33274. },
  33275. ]
  33276. ))
  33277. characterMakers.push(() => makeCharacter(
  33278. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33279. {
  33280. front: {
  33281. height: math.unit(5, "meters"),
  33282. weight: math.unit(292000000000000, "kg"),
  33283. name: "Front",
  33284. image: {
  33285. source: "./media/characters/devourer/front.svg",
  33286. extra: 1800/1733,
  33287. bottom: 211/2011
  33288. }
  33289. },
  33290. maw: {
  33291. height: math.unit(1.1, "meter"),
  33292. name: "Maw",
  33293. image: {
  33294. source: "./media/characters/devourer/maw.svg"
  33295. }
  33296. },
  33297. },
  33298. [
  33299. {
  33300. name: "Small",
  33301. height: math.unit(3, "meters")
  33302. },
  33303. {
  33304. name: "Large",
  33305. height: math.unit(5, "meters"),
  33306. default: true
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33312. {
  33313. front: {
  33314. height: math.unit(6, "feet"),
  33315. weight: math.unit(400, "lb"),
  33316. name: "Front",
  33317. image: {
  33318. source: "./media/characters/ellarby/front.svg",
  33319. extra: 1909/1763,
  33320. bottom: 80/1989
  33321. }
  33322. },
  33323. back: {
  33324. height: math.unit(6, "feet"),
  33325. weight: math.unit(400, "lb"),
  33326. name: "Back",
  33327. image: {
  33328. source: "./media/characters/ellarby/back.svg",
  33329. extra: 1914/1784,
  33330. bottom: 172/2086
  33331. }
  33332. },
  33333. },
  33334. [
  33335. {
  33336. name: "Mischief",
  33337. height: math.unit(18, "inches")
  33338. },
  33339. {
  33340. name: "Trouble",
  33341. height: math.unit(12, "feet")
  33342. },
  33343. {
  33344. name: "Havoc",
  33345. height: math.unit(200, "feet"),
  33346. default: true
  33347. },
  33348. {
  33349. name: "Pandemonium",
  33350. height: math.unit(1, "mile")
  33351. },
  33352. {
  33353. name: "Catastrophe",
  33354. height: math.unit(100, "miles")
  33355. },
  33356. ]
  33357. ))
  33358. characterMakers.push(() => makeCharacter(
  33359. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33360. {
  33361. front: {
  33362. height: math.unit(4.7, "meters"),
  33363. weight: math.unit(6500, "kg"),
  33364. name: "Front",
  33365. image: {
  33366. source: "./media/characters/vex/front.svg",
  33367. extra: 1288/1140,
  33368. bottom: 100/1388
  33369. }
  33370. },
  33371. },
  33372. [
  33373. {
  33374. name: "Normal",
  33375. height: math.unit(4.7, "meters"),
  33376. default: true
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33382. {
  33383. normal: {
  33384. height: math.unit(6, "feet"),
  33385. weight: math.unit(350, "lb"),
  33386. name: "Normal",
  33387. image: {
  33388. source: "./media/characters/teshy/normal.svg",
  33389. extra: 1795/1735,
  33390. bottom: 16/1811
  33391. }
  33392. },
  33393. monsterFront: {
  33394. height: math.unit(12, "feet"),
  33395. weight: math.unit(4700, "lb"),
  33396. name: "Monster (Front)",
  33397. image: {
  33398. source: "./media/characters/teshy/monster-front.svg",
  33399. extra: 2042/2034,
  33400. bottom: 128/2170
  33401. }
  33402. },
  33403. monsterSide: {
  33404. height: math.unit(12, "feet"),
  33405. weight: math.unit(4700, "lb"),
  33406. name: "Monster (Side)",
  33407. image: {
  33408. source: "./media/characters/teshy/monster-side.svg",
  33409. extra: 2067/2056,
  33410. bottom: 70/2137
  33411. }
  33412. },
  33413. monsterBack: {
  33414. height: math.unit(12, "feet"),
  33415. weight: math.unit(4700, "lb"),
  33416. name: "Monster (Back)",
  33417. image: {
  33418. source: "./media/characters/teshy/monster-back.svg",
  33419. extra: 1921/1914,
  33420. bottom: 171/2092
  33421. }
  33422. },
  33423. },
  33424. [
  33425. {
  33426. name: "Normal",
  33427. height: math.unit(6, "feet"),
  33428. default: true
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33434. {
  33435. front: {
  33436. height: math.unit(6, "feet"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/ramey/front.svg",
  33440. extra: 790/787,
  33441. bottom: 27/817
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Normal",
  33448. height: math.unit(6, "feet"),
  33449. default: true
  33450. },
  33451. ]
  33452. ))
  33453. characterMakers.push(() => makeCharacter(
  33454. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33455. {
  33456. front: {
  33457. height: math.unit(5 + 5/12, "feet"),
  33458. weight: math.unit(120, "lb"),
  33459. name: "Front",
  33460. image: {
  33461. source: "./media/characters/phirae/front.svg",
  33462. extra: 2491/2436,
  33463. bottom: 38/2529
  33464. }
  33465. },
  33466. },
  33467. [
  33468. {
  33469. name: "Normal",
  33470. height: math.unit(5 + 5/12, "feet"),
  33471. default: true
  33472. },
  33473. ]
  33474. ))
  33475. characterMakers.push(() => makeCharacter(
  33476. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33477. {
  33478. front: {
  33479. height: math.unit(6, "feet"),
  33480. weight: math.unit(150, "lb"),
  33481. name: "Front",
  33482. image: {
  33483. source: "./media/characters/stagglas/front.svg",
  33484. extra: 962/882,
  33485. bottom: 53/1015
  33486. }
  33487. },
  33488. },
  33489. [
  33490. {
  33491. name: "Normal",
  33492. height: math.unit(5 + 3/12, "feet"),
  33493. default: true
  33494. },
  33495. ]
  33496. ))
  33497. characterMakers.push(() => makeCharacter(
  33498. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33499. {
  33500. front: {
  33501. height: math.unit(5 + 4/12, "feet"),
  33502. weight: math.unit(145, "lb"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/starra/front.svg",
  33506. extra: 1790/1691,
  33507. bottom: 91/1881
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(5 + 4/12, "feet"),
  33515. default: true
  33516. },
  33517. ]
  33518. ))
  33519. characterMakers.push(() => makeCharacter(
  33520. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33521. {
  33522. front: {
  33523. height: math.unit(2.2, "meters"),
  33524. name: "Front",
  33525. image: {
  33526. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33527. extra: 1194/1005,
  33528. bottom: 25/1219
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(2.2, "meters"),
  33536. default: true
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33542. {
  33543. side: {
  33544. height: math.unit(8 + 2/12, "feet"),
  33545. weight: math.unit(1240, "lb"),
  33546. name: "Side",
  33547. image: {
  33548. source: "./media/characters/mika-valentine/side.svg",
  33549. extra: 2670/2501,
  33550. bottom: 250/2920
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(8 + 2/12, "feet"),
  33558. default: true
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33564. {
  33565. front: {
  33566. height: math.unit(7 + 2/12, "feet"),
  33567. name: "Front",
  33568. image: {
  33569. source: "./media/characters/xoltol/front.svg",
  33570. extra: 2212/2124,
  33571. bottom: 84/2296
  33572. }
  33573. },
  33574. side: {
  33575. height: math.unit(7 + 2/12, "feet"),
  33576. name: "Side",
  33577. image: {
  33578. source: "./media/characters/xoltol/side.svg",
  33579. extra: 2273/2197,
  33580. bottom: 26/2299
  33581. }
  33582. },
  33583. hand: {
  33584. height: math.unit(2.5, "feet"),
  33585. name: "Hand",
  33586. image: {
  33587. source: "./media/characters/xoltol/hand.svg"
  33588. }
  33589. },
  33590. },
  33591. [
  33592. {
  33593. name: "Small-ish",
  33594. height: math.unit(5 + 11/12, "feet")
  33595. },
  33596. {
  33597. name: "Normal",
  33598. height: math.unit(7 + 2/12, "feet")
  33599. },
  33600. {
  33601. name: "\"Macro\"",
  33602. height: math.unit(14 + 9/12, "feet"),
  33603. default: true
  33604. },
  33605. {
  33606. name: "Alternate Height",
  33607. height: math.unit(20, "feet")
  33608. },
  33609. {
  33610. name: "Actually Macro",
  33611. height: math.unit(100, "feet")
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33617. {
  33618. front: {
  33619. height: math.unit(5 + 2/12, "feet"),
  33620. name: "Front",
  33621. image: {
  33622. source: "./media/characters/kotetsu-redwood/front.svg",
  33623. extra: 1053/942,
  33624. bottom: 60/1113
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(5 + 2/12, "feet"),
  33632. default: true
  33633. },
  33634. ]
  33635. ))
  33636. characterMakers.push(() => makeCharacter(
  33637. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33638. {
  33639. front: {
  33640. height: math.unit(2.4, "meters"),
  33641. weight: math.unit(125, "kg"),
  33642. name: "Front",
  33643. image: {
  33644. source: "./media/characters/lilith/front.svg",
  33645. extra: 1590/1513,
  33646. bottom: 203/1793
  33647. }
  33648. },
  33649. },
  33650. [
  33651. {
  33652. name: "Humanoid",
  33653. height: math.unit(2.4, "meters")
  33654. },
  33655. {
  33656. name: "Normal",
  33657. height: math.unit(6, "meters"),
  33658. default: true
  33659. },
  33660. {
  33661. name: "Largest",
  33662. height: math.unit(55, "meters")
  33663. },
  33664. ]
  33665. ))
  33666. characterMakers.push(() => makeCharacter(
  33667. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33668. {
  33669. front: {
  33670. height: math.unit(8 + 4/12, "feet"),
  33671. weight: math.unit(535, "lb"),
  33672. name: "Front",
  33673. image: {
  33674. source: "./media/characters/beh'kah-bolger/front.svg",
  33675. extra: 1660/1603,
  33676. bottom: 37/1697
  33677. }
  33678. },
  33679. },
  33680. [
  33681. {
  33682. name: "Normal",
  33683. height: math.unit(8 + 4/12, "feet"),
  33684. default: true
  33685. },
  33686. {
  33687. name: "Kaiju",
  33688. height: math.unit(250, "feet")
  33689. },
  33690. {
  33691. name: "Still Growing",
  33692. height: math.unit(10, "miles")
  33693. },
  33694. {
  33695. name: "Continental",
  33696. height: math.unit(5000, "miles")
  33697. },
  33698. {
  33699. name: "Final Form",
  33700. height: math.unit(2500000, "miles")
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33706. {
  33707. front: {
  33708. height: math.unit(7 + 2/12, "feet"),
  33709. weight: math.unit(230, "kg"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/tatyana-milewska/front.svg",
  33713. extra: 1199/1150,
  33714. bottom: 86/1285
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Normal",
  33721. height: math.unit(7 + 2/12, "feet"),
  33722. default: true
  33723. },
  33724. {
  33725. name: "Big",
  33726. height: math.unit(12, "feet")
  33727. },
  33728. {
  33729. name: "Minimacro",
  33730. height: math.unit(20, "feet")
  33731. },
  33732. {
  33733. name: "Macro",
  33734. height: math.unit(120, "feet")
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(7 + 8/12, "feet"),
  33743. weight: math.unit(152, "kg"),
  33744. name: "Front",
  33745. image: {
  33746. source: "./media/characters/helen-arri/front.svg",
  33747. extra: 440/423,
  33748. bottom: 14/454
  33749. }
  33750. },
  33751. back: {
  33752. height: math.unit(7 + 8/12, "feet"),
  33753. weight: math.unit(152, "kg"),
  33754. name: "Back",
  33755. image: {
  33756. source: "./media/characters/helen-arri/back.svg",
  33757. extra: 443/426,
  33758. bottom: 8/451
  33759. }
  33760. },
  33761. },
  33762. [
  33763. {
  33764. name: "Normal",
  33765. height: math.unit(7 + 8/12, "feet"),
  33766. default: true
  33767. },
  33768. {
  33769. name: "Big",
  33770. height: math.unit(14, "feet")
  33771. },
  33772. {
  33773. name: "Minimacro",
  33774. height: math.unit(24, "feet")
  33775. },
  33776. {
  33777. name: "Macro",
  33778. height: math.unit(140, "feet")
  33779. },
  33780. ]
  33781. ))
  33782. characterMakers.push(() => makeCharacter(
  33783. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33784. {
  33785. front: {
  33786. height: math.unit(6, "meters"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/ehanu-rehu/front.svg",
  33790. extra: 1800/1800,
  33791. bottom: 59/1859
  33792. }
  33793. },
  33794. },
  33795. [
  33796. {
  33797. name: "Normal",
  33798. height: math.unit(6, "meters"),
  33799. default: true
  33800. },
  33801. ]
  33802. ))
  33803. characterMakers.push(() => makeCharacter(
  33804. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33805. {
  33806. front: {
  33807. height: math.unit(7 + 3/12, "feet"),
  33808. name: "Front",
  33809. image: {
  33810. source: "./media/characters/renholder/front.svg",
  33811. extra: 3096/2960,
  33812. bottom: 250/3346
  33813. }
  33814. },
  33815. },
  33816. [
  33817. {
  33818. name: "Normal Bat",
  33819. height: math.unit(7 + 3/12, "feet"),
  33820. default: true
  33821. },
  33822. {
  33823. name: "Slightly Tall Bat",
  33824. height: math.unit(100, "feet")
  33825. },
  33826. {
  33827. name: "Big Bat",
  33828. height: math.unit(1000, "feet")
  33829. },
  33830. {
  33831. name: "City-Sized Bat",
  33832. height: math.unit(200000, "feet")
  33833. },
  33834. {
  33835. name: "Bigger Bat",
  33836. height: math.unit(10000, "miles")
  33837. },
  33838. {
  33839. name: "Solar Sized Bat",
  33840. height: math.unit(100, "AU")
  33841. },
  33842. {
  33843. name: "Galactic Bat",
  33844. height: math.unit(200000, "lightyears")
  33845. },
  33846. {
  33847. name: "Universally Known Bat",
  33848. height: math.unit(1, "universe")
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33854. {
  33855. front: {
  33856. height: math.unit(6 + 11/12, "feet"),
  33857. weight: math.unit(250, "lb"),
  33858. name: "Front",
  33859. image: {
  33860. source: "./media/characters/cookiecat/front.svg",
  33861. extra: 893/827,
  33862. bottom: 14/907
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Micro",
  33869. height: math.unit(3, "inches")
  33870. },
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(6 + 11/12, "feet"),
  33874. default: true
  33875. },
  33876. {
  33877. name: "Macro",
  33878. height: math.unit(100, "feet")
  33879. },
  33880. {
  33881. name: "Macro+",
  33882. height: math.unit(404, "feet")
  33883. },
  33884. {
  33885. name: "Megamacro",
  33886. height: math.unit(165, "miles")
  33887. },
  33888. {
  33889. name: "Planetary",
  33890. height: math.unit(4600, "miles")
  33891. },
  33892. ]
  33893. ))
  33894. characterMakers.push(() => makeCharacter(
  33895. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33896. {
  33897. front: {
  33898. height: math.unit(10 + 3/12, "feet"),
  33899. weight: math.unit(1500, "lb"),
  33900. name: "Front",
  33901. image: {
  33902. source: "./media/characters/tux-kusanagi/front.svg",
  33903. extra: 944/840,
  33904. bottom: 39/983
  33905. }
  33906. },
  33907. back: {
  33908. height: math.unit(10 + 3/12, "feet"),
  33909. weight: math.unit(1500, "lb"),
  33910. name: "Back",
  33911. image: {
  33912. source: "./media/characters/tux-kusanagi/back.svg",
  33913. extra: 941/842,
  33914. bottom: 28/969
  33915. }
  33916. },
  33917. rump: {
  33918. height: math.unit(5.25, "feet"),
  33919. name: "Rump",
  33920. image: {
  33921. source: "./media/characters/tux-kusanagi/rump.svg"
  33922. }
  33923. },
  33924. beak: {
  33925. height: math.unit(1.54, "feet"),
  33926. name: "Beak",
  33927. image: {
  33928. source: "./media/characters/tux-kusanagi/beak.svg"
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Normal",
  33935. height: math.unit(10 + 3/12, "feet"),
  33936. default: true
  33937. },
  33938. ]
  33939. ))
  33940. characterMakers.push(() => makeCharacter(
  33941. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33942. {
  33943. front: {
  33944. height: math.unit(58, "feet"),
  33945. weight: math.unit(200, "tons"),
  33946. name: "Front",
  33947. image: {
  33948. source: "./media/characters/uzarmazari/front.svg",
  33949. extra: 1575/1455,
  33950. bottom: 152/1727
  33951. }
  33952. },
  33953. back: {
  33954. height: math.unit(58, "feet"),
  33955. weight: math.unit(200, "tons"),
  33956. name: "Back",
  33957. image: {
  33958. source: "./media/characters/uzarmazari/back.svg",
  33959. extra: 1585/1510,
  33960. bottom: 157/1742
  33961. }
  33962. },
  33963. head: {
  33964. height: math.unit(26, "feet"),
  33965. name: "Head",
  33966. image: {
  33967. source: "./media/characters/uzarmazari/head.svg"
  33968. }
  33969. },
  33970. },
  33971. [
  33972. {
  33973. name: "Normal",
  33974. height: math.unit(58, "feet"),
  33975. default: true
  33976. },
  33977. ]
  33978. ))
  33979. characterMakers.push(() => makeCharacter(
  33980. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33981. {
  33982. side: {
  33983. height: math.unit(15, "feet"),
  33984. name: "Side",
  33985. image: {
  33986. source: "./media/characters/akitu/side.svg",
  33987. extra: 1421/1321,
  33988. bottom: 157/1578
  33989. }
  33990. },
  33991. front: {
  33992. height: math.unit(15, "feet"),
  33993. name: "Front",
  33994. image: {
  33995. source: "./media/characters/akitu/front.svg",
  33996. extra: 1435/1326,
  33997. bottom: 232/1667
  33998. }
  33999. },
  34000. },
  34001. [
  34002. {
  34003. name: "Normal",
  34004. height: math.unit(15, "feet"),
  34005. default: true
  34006. },
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34011. {
  34012. front: {
  34013. height: math.unit(10 + 8/12, "feet"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/azalie-croixland/front.svg",
  34017. extra: 1972/1856,
  34018. bottom: 31/2003
  34019. }
  34020. },
  34021. },
  34022. [
  34023. {
  34024. name: "Original Height",
  34025. height: math.unit(5 + 4/12, "feet")
  34026. },
  34027. {
  34028. name: "Normal Height",
  34029. height: math.unit(10 + 8/12, "feet"),
  34030. default: true
  34031. },
  34032. ]
  34033. ))
  34034. characterMakers.push(() => makeCharacter(
  34035. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34036. {
  34037. side: {
  34038. height: math.unit(7 + 1/12, "feet"),
  34039. weight: math.unit(245, "lb"),
  34040. name: "Side",
  34041. image: {
  34042. source: "./media/characters/kavus-kazian/side.svg",
  34043. extra: 349/342,
  34044. bottom: 15/364
  34045. }
  34046. },
  34047. },
  34048. [
  34049. {
  34050. name: "Normal",
  34051. height: math.unit(7 + 1/12, "feet"),
  34052. default: true
  34053. },
  34054. ]
  34055. ))
  34056. characterMakers.push(() => makeCharacter(
  34057. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34058. {
  34059. normal: {
  34060. height: math.unit(5 + 11/12, "feet"),
  34061. name: "Normal",
  34062. image: {
  34063. source: "./media/characters/moonlight-rose/normal.svg",
  34064. extra: 1979/1835,
  34065. bottom: 14/1993
  34066. }
  34067. },
  34068. demon: {
  34069. height: math.unit(5, "km"),
  34070. name: "Demon",
  34071. image: {
  34072. source: "./media/characters/moonlight-rose/demon.svg",
  34073. extra: 986/916,
  34074. bottom: 28/1014
  34075. }
  34076. },
  34077. },
  34078. [
  34079. {
  34080. name: "\"Natural\" height",
  34081. height: math.unit(5 + 11/12, "feet")
  34082. },
  34083. {
  34084. name: "Comfortable Size",
  34085. height: math.unit(40, "meters")
  34086. },
  34087. {
  34088. name: "Common Size",
  34089. height: math.unit(50, "km"),
  34090. default: true
  34091. },
  34092. {
  34093. name: "Demonic",
  34094. height: math.unit(1.24415e+21, "meters")
  34095. },
  34096. ]
  34097. ))
  34098. characterMakers.push(() => makeCharacter(
  34099. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34100. {
  34101. front: {
  34102. height: math.unit(16, "feet"),
  34103. weight: math.unit(610, "kg"),
  34104. name: "Front",
  34105. image: {
  34106. source: "./media/characters/huckle/front.svg",
  34107. extra: 1731/1625,
  34108. bottom: 33/1764
  34109. }
  34110. },
  34111. back: {
  34112. height: math.unit(16, "feet"),
  34113. weight: math.unit(610, "kg"),
  34114. name: "Back",
  34115. image: {
  34116. source: "./media/characters/huckle/back.svg",
  34117. extra: 1738/1651,
  34118. bottom: 37/1775
  34119. }
  34120. },
  34121. laughing: {
  34122. height: math.unit(3.75, "feet"),
  34123. name: "Laughing",
  34124. image: {
  34125. source: "./media/characters/huckle/laughing.svg"
  34126. }
  34127. },
  34128. angry: {
  34129. height: math.unit(4.15, "feet"),
  34130. name: "Angry",
  34131. image: {
  34132. source: "./media/characters/huckle/angry.svg"
  34133. }
  34134. },
  34135. },
  34136. [
  34137. {
  34138. name: "Normal",
  34139. height: math.unit(16, "feet"),
  34140. default: true
  34141. },
  34142. {
  34143. name: "Mini Macro",
  34144. height: math.unit(463, "feet")
  34145. },
  34146. {
  34147. name: "Macro",
  34148. height: math.unit(1680, "meters")
  34149. },
  34150. {
  34151. name: "Mega Macro",
  34152. height: math.unit(175, "km")
  34153. },
  34154. {
  34155. name: "Terra Macro",
  34156. height: math.unit(32, "gigameters")
  34157. },
  34158. {
  34159. name: "Multiverse+",
  34160. height: math.unit(2.56e23, "yottameters")
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(6 + 9/12, "feet"),
  34169. weight: math.unit(280, "lb"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/candy/front.svg",
  34173. extra: 234/217,
  34174. bottom: 11/245
  34175. }
  34176. },
  34177. },
  34178. [
  34179. {
  34180. name: "Really Small",
  34181. height: math.unit(0.1, "nm")
  34182. },
  34183. {
  34184. name: "Micro",
  34185. height: math.unit(2, "inches")
  34186. },
  34187. {
  34188. name: "Normal",
  34189. height: math.unit(6 + 9/12, "feet"),
  34190. default: true
  34191. },
  34192. {
  34193. name: "Small Macro",
  34194. height: math.unit(69, "feet")
  34195. },
  34196. {
  34197. name: "Macro",
  34198. height: math.unit(160, "feet")
  34199. },
  34200. {
  34201. name: "Megamacro",
  34202. height: math.unit(22000, "miles")
  34203. },
  34204. {
  34205. name: "Gigamacro",
  34206. height: math.unit(50000, "miles")
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34212. {
  34213. front: {
  34214. height: math.unit(4, "feet"),
  34215. weight: math.unit(90, "lb"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/joey-mcdonald/front.svg",
  34219. extra: 1059/852,
  34220. bottom: 33/1092
  34221. }
  34222. },
  34223. back: {
  34224. height: math.unit(4, "feet"),
  34225. weight: math.unit(90, "lb"),
  34226. name: "Back",
  34227. image: {
  34228. source: "./media/characters/joey-mcdonald/back.svg",
  34229. extra: 1077/879,
  34230. bottom: 5/1082
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(4, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34244. {
  34245. front: {
  34246. height: math.unit(12 + 6/12, "feet"),
  34247. name: "Front",
  34248. image: {
  34249. source: "./media/characters/kass-lockheed/front.svg",
  34250. extra: 354/343,
  34251. bottom: 9/363
  34252. }
  34253. },
  34254. back: {
  34255. height: math.unit(12 + 6/12, "feet"),
  34256. name: "Back",
  34257. image: {
  34258. source: "./media/characters/kass-lockheed/back.svg",
  34259. extra: 364/352,
  34260. bottom: 3/367
  34261. }
  34262. },
  34263. dick: {
  34264. height: math.unit(3.12, "feet"),
  34265. name: "Dick",
  34266. image: {
  34267. source: "./media/characters/kass-lockheed/dick.svg"
  34268. }
  34269. },
  34270. head: {
  34271. height: math.unit(2.6, "feet"),
  34272. name: "Head",
  34273. image: {
  34274. source: "./media/characters/kass-lockheed/head.svg"
  34275. }
  34276. },
  34277. bleh: {
  34278. height: math.unit(2.85, "feet"),
  34279. name: "Bleh",
  34280. image: {
  34281. source: "./media/characters/kass-lockheed/bleh.svg"
  34282. }
  34283. },
  34284. smug: {
  34285. height: math.unit(2.85, "feet"),
  34286. name: "Smug",
  34287. image: {
  34288. source: "./media/characters/kass-lockheed/smug.svg"
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Normal",
  34295. height: math.unit(12 + 6/12, "feet"),
  34296. default: true
  34297. },
  34298. ]
  34299. ))
  34300. characterMakers.push(() => makeCharacter(
  34301. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34302. {
  34303. front: {
  34304. height: math.unit(6 + 2/12, "feet"),
  34305. name: "Front",
  34306. image: {
  34307. source: "./media/characters/taylor/front.svg",
  34308. extra: 639/495,
  34309. bottom: 12/651
  34310. }
  34311. },
  34312. },
  34313. [
  34314. {
  34315. name: "Normal",
  34316. height: math.unit(6 + 2/12, "feet"),
  34317. default: true
  34318. },
  34319. {
  34320. name: "Big",
  34321. height: math.unit(15, "feet")
  34322. },
  34323. {
  34324. name: "Lorg",
  34325. height: math.unit(80, "feet")
  34326. },
  34327. {
  34328. name: "Too Lorg",
  34329. height: math.unit(120, "feet")
  34330. },
  34331. ]
  34332. ))
  34333. characterMakers.push(() => makeCharacter(
  34334. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34335. {
  34336. front: {
  34337. height: math.unit(15, "feet"),
  34338. name: "Front",
  34339. image: {
  34340. source: "./media/characters/kaizer/front.svg",
  34341. extra: 1612/1436,
  34342. bottom: 43/1655
  34343. }
  34344. },
  34345. },
  34346. [
  34347. {
  34348. name: "Normal",
  34349. height: math.unit(15, "feet"),
  34350. default: true
  34351. },
  34352. ]
  34353. ))
  34354. characterMakers.push(() => makeCharacter(
  34355. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34356. {
  34357. front: {
  34358. height: math.unit(2, "feet"),
  34359. weight: math.unit(30, "lb"),
  34360. name: "Front",
  34361. image: {
  34362. source: "./media/characters/sandy/front.svg",
  34363. extra: 1439/1307,
  34364. bottom: 194/1633
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(2, "feet"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(3, "feet"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/mellvi/front.svg",
  34384. extra: 1831/1630,
  34385. bottom: 58/1889
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Normal",
  34392. height: math.unit(3, "feet"),
  34393. default: true
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34399. {
  34400. front: {
  34401. height: math.unit(5 + 11/12, "feet"),
  34402. weight: math.unit(200, "lb"),
  34403. name: "Front",
  34404. image: {
  34405. source: "./media/characters/shirou/front.svg",
  34406. extra: 2491/2383,
  34407. bottom: 189/2680
  34408. }
  34409. },
  34410. back: {
  34411. height: math.unit(5 + 11/12, "feet"),
  34412. weight: math.unit(200, "lb"),
  34413. name: "Back",
  34414. image: {
  34415. source: "./media/characters/shirou/back.svg",
  34416. extra: 2554/2450,
  34417. bottom: 76/2630
  34418. }
  34419. },
  34420. },
  34421. [
  34422. {
  34423. name: "Normal",
  34424. height: math.unit(5 + 11/12, "feet"),
  34425. default: true
  34426. },
  34427. ]
  34428. ))
  34429. characterMakers.push(() => makeCharacter(
  34430. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34431. {
  34432. front: {
  34433. height: math.unit(6 + 3/12, "feet"),
  34434. weight: math.unit(177, "lb"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/noryu/front.svg",
  34438. extra: 973/885,
  34439. bottom: 10/983
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(6 + 3/12, "feet"),
  34447. default: true
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34453. {
  34454. front: {
  34455. height: math.unit(5 + 6/12, "feet"),
  34456. weight: math.unit(170, "lb"),
  34457. name: "Front",
  34458. image: {
  34459. source: "./media/characters/mevolas-rubenido/front.svg",
  34460. extra: 2109/1901,
  34461. bottom: 96/2205
  34462. }
  34463. },
  34464. },
  34465. [
  34466. {
  34467. name: "Normal",
  34468. height: math.unit(5 + 6/12, "feet"),
  34469. default: true
  34470. },
  34471. ]
  34472. ))
  34473. characterMakers.push(() => makeCharacter(
  34474. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34475. {
  34476. front: {
  34477. height: math.unit(100, "feet"),
  34478. name: "Front",
  34479. image: {
  34480. source: "./media/characters/dee/front.svg",
  34481. extra: 2153/2036,
  34482. bottom: 59/2212
  34483. }
  34484. },
  34485. back: {
  34486. height: math.unit(100, "feet"),
  34487. name: "Back",
  34488. image: {
  34489. source: "./media/characters/dee/back.svg",
  34490. extra: 2183/2058,
  34491. bottom: 75/2258
  34492. }
  34493. },
  34494. foot: {
  34495. height: math.unit(19.43, "feet"),
  34496. name: "Foot",
  34497. image: {
  34498. source: "./media/characters/dee/foot.svg"
  34499. }
  34500. },
  34501. hoof: {
  34502. height: math.unit(20.6, "feet"),
  34503. name: "Hoof",
  34504. image: {
  34505. source: "./media/characters/dee/hoof.svg"
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Macro",
  34512. height: math.unit(100, "feet"),
  34513. default: true
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(5 + 6/12, "feet"),
  34522. name: "Front",
  34523. image: {
  34524. source: "./media/characters/teh/front.svg",
  34525. extra: 1002/847,
  34526. bottom: 62/1064
  34527. }
  34528. },
  34529. },
  34530. [
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(5 + 6/12, "feet"),
  34534. default: true
  34535. },
  34536. ]
  34537. ))
  34538. characterMakers.push(() => makeCharacter(
  34539. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34540. {
  34541. side: {
  34542. height: math.unit(6 + 1/12, "feet"),
  34543. weight: math.unit(204, "lb"),
  34544. name: "Side",
  34545. image: {
  34546. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34547. extra: 974/775,
  34548. bottom: 169/1143
  34549. }
  34550. },
  34551. sitting: {
  34552. height: math.unit(6 + 2/12, "feet"),
  34553. weight: math.unit(204, "lb"),
  34554. name: "Sitting",
  34555. image: {
  34556. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34557. extra: 1175/964,
  34558. bottom: 378/1553
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Normal",
  34565. height: math.unit(6 + 1/12, "feet"),
  34566. default: true
  34567. },
  34568. ]
  34569. ))
  34570. characterMakers.push(() => makeCharacter(
  34571. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34572. {
  34573. front: {
  34574. height: math.unit(6, "inches"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/tululi/front.svg",
  34578. extra: 1997/1876,
  34579. bottom: 20/2017
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(6, "inches"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(4 + 1/12, "feet"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/star/front.svg",
  34599. extra: 1493/1189,
  34600. bottom: 48/1541
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(4 + 1/12, "feet"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(6 + 3/12, "feet"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/comet/front.svg",
  34620. extra: 1681/1462,
  34621. bottom: 26/1707
  34622. }
  34623. },
  34624. },
  34625. [
  34626. {
  34627. name: "Normal",
  34628. height: math.unit(6 + 3/12, "feet"),
  34629. default: true
  34630. },
  34631. ]
  34632. ))
  34633. characterMakers.push(() => makeCharacter(
  34634. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34635. {
  34636. front: {
  34637. height: math.unit(950, "feet"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/vortex/front.svg",
  34641. extra: 1497/1434,
  34642. bottom: 56/1553
  34643. }
  34644. },
  34645. maw: {
  34646. height: math.unit(285, "feet"),
  34647. name: "Maw",
  34648. image: {
  34649. source: "./media/characters/vortex/maw.svg"
  34650. }
  34651. },
  34652. },
  34653. [
  34654. {
  34655. name: "Macro",
  34656. height: math.unit(950, "feet"),
  34657. default: true
  34658. },
  34659. ]
  34660. ))
  34661. characterMakers.push(() => makeCharacter(
  34662. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34663. {
  34664. front: {
  34665. height: math.unit(600, "feet"),
  34666. weight: math.unit(0.02, "grams"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/doodle/front.svg",
  34670. extra: 1578/1413,
  34671. bottom: 37/1615
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Macro",
  34678. height: math.unit(600, "feet"),
  34679. default: true
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34685. {
  34686. front: {
  34687. height: math.unit(6 + 6/12, "feet"),
  34688. name: "Front",
  34689. image: {
  34690. source: "./media/characters/jai/front.svg",
  34691. extra: 1645/1534,
  34692. bottom: 115/1760
  34693. }
  34694. },
  34695. },
  34696. [
  34697. {
  34698. name: "Normal",
  34699. height: math.unit(6 + 6/12, "feet"),
  34700. default: true
  34701. },
  34702. ]
  34703. ))
  34704. characterMakers.push(() => makeCharacter(
  34705. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34706. {
  34707. front: {
  34708. height: math.unit(6 + 8/12, "feet"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/pixel/front.svg",
  34712. extra: 1900/1735,
  34713. bottom: 63/1963
  34714. }
  34715. },
  34716. },
  34717. [
  34718. {
  34719. name: "Normal",
  34720. height: math.unit(6 + 8/12, "feet"),
  34721. default: true
  34722. },
  34723. ]
  34724. ))
  34725. characterMakers.push(() => makeCharacter(
  34726. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34727. {
  34728. front: {
  34729. height: math.unit(4 + 11/12, "feet"),
  34730. weight: math.unit(111, "lb"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/rhett/front.svg",
  34734. extra: 1682/1586,
  34735. bottom: 92/1774
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Mini",
  34742. height: math.unit(1 + 1/12, "feet")
  34743. },
  34744. {
  34745. name: "Normal",
  34746. height: math.unit(4 + 11/12, "feet"),
  34747. default: true
  34748. },
  34749. ]
  34750. ))
  34751. characterMakers.push(() => makeCharacter(
  34752. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34753. {
  34754. front: {
  34755. height: math.unit(3 + 3/12, "feet"),
  34756. name: "Front",
  34757. image: {
  34758. source: "./media/characters/penny/front.svg",
  34759. extra: 1406/1311,
  34760. bottom: 26/1432
  34761. }
  34762. },
  34763. },
  34764. [
  34765. {
  34766. name: "Normal",
  34767. height: math.unit(3 + 3/12, "feet"),
  34768. default: true
  34769. },
  34770. ]
  34771. ))
  34772. characterMakers.push(() => makeCharacter(
  34773. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34774. {
  34775. front: {
  34776. height: math.unit(4 + 11/12, "feet"),
  34777. name: "Front",
  34778. image: {
  34779. source: "./media/characters/monty/front.svg",
  34780. extra: 1479/1209,
  34781. bottom: 0/1479
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(4 + 11/12, "feet"),
  34789. default: true
  34790. },
  34791. ]
  34792. ))
  34793. characterMakers.push(() => makeCharacter(
  34794. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34795. {
  34796. front: {
  34797. height: math.unit(8 + 4/12, "feet"),
  34798. name: "Front",
  34799. image: {
  34800. source: "./media/characters/sterling/front.svg",
  34801. extra: 1420/1236,
  34802. bottom: 27/1447
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Normal",
  34809. height: math.unit(8 + 4/12, "feet"),
  34810. default: true
  34811. },
  34812. ]
  34813. ))
  34814. characterMakers.push(() => makeCharacter(
  34815. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34816. {
  34817. front: {
  34818. height: math.unit(15, "feet"),
  34819. name: "Front",
  34820. image: {
  34821. source: "./media/characters/marble/front.svg",
  34822. extra: 973/937,
  34823. bottom: 32/1005
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(15, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34837. {
  34838. front: {
  34839. height: math.unit(3, "inches"),
  34840. name: "Front",
  34841. image: {
  34842. source: "./media/characters/powder/front.svg",
  34843. extra: 1504/1334,
  34844. bottom: 518/2022
  34845. }
  34846. },
  34847. },
  34848. [
  34849. {
  34850. name: "Normal",
  34851. height: math.unit(3, "inches"),
  34852. default: true
  34853. },
  34854. ]
  34855. ))
  34856. characterMakers.push(() => makeCharacter(
  34857. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34858. {
  34859. front: {
  34860. height: math.unit(4 + 5/12, "feet"),
  34861. name: "Front",
  34862. image: {
  34863. source: "./media/characters/joey-raccoon/front.svg",
  34864. extra: 1273/1197,
  34865. bottom: 0/1273
  34866. }
  34867. },
  34868. },
  34869. [
  34870. {
  34871. name: "Normal",
  34872. height: math.unit(4 + 5/12, "feet"),
  34873. default: true
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34879. {
  34880. front: {
  34881. height: math.unit(8 + 4/12, "feet"),
  34882. name: "Front",
  34883. image: {
  34884. source: "./media/characters/vick/front.svg",
  34885. extra: 2187/2118,
  34886. bottom: 47/2234
  34887. }
  34888. },
  34889. },
  34890. [
  34891. {
  34892. name: "Normal",
  34893. height: math.unit(8 + 4/12, "feet"),
  34894. default: true
  34895. },
  34896. ]
  34897. ))
  34898. characterMakers.push(() => makeCharacter(
  34899. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34900. {
  34901. front: {
  34902. height: math.unit(5 + 5/12, "feet"),
  34903. name: "Front",
  34904. image: {
  34905. source: "./media/characters/mitsy/front.svg",
  34906. extra: 1842/1695,
  34907. bottom: 0/1842
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Normal",
  34914. height: math.unit(5 + 5/12, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(6 + 3/12, "feet"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/silvy/front.svg",
  34927. extra: 1995/1836,
  34928. bottom: 225/2220
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(6 + 3/12, "feet"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34942. {
  34943. front: {
  34944. height: math.unit(3 + 8/12, "feet"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/rodney/front.svg",
  34948. extra: 1956/1747,
  34949. bottom: 31/1987
  34950. }
  34951. },
  34952. frontDressed: {
  34953. height: math.unit(2.9, "feet"),
  34954. name: "Front (Dressed)",
  34955. image: {
  34956. source: "./media/characters/rodney/front-dressed.svg",
  34957. extra: 1382/1241,
  34958. bottom: 385/1767
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(3 + 8/12, "feet"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(5 + 9/12, "feet"),
  34975. weight: math.unit(194, "lbs"),
  34976. name: "Front",
  34977. image: {
  34978. source: "./media/characters/zakail-sudekai/front.svg",
  34979. extra: 2696/2533,
  34980. bottom: 248/2944
  34981. }
  34982. },
  34983. maw: {
  34984. height: math.unit(1.35, "feet"),
  34985. name: "Maw",
  34986. image: {
  34987. source: "./media/characters/zakail-sudekai/maw.svg"
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Normal",
  34994. height: math.unit(5 + 9/12, "feet"),
  34995. default: true
  34996. },
  34997. ]
  34998. ))
  34999. characterMakers.push(() => makeCharacter(
  35000. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35001. {
  35002. front: {
  35003. height: math.unit(8 + 4/12, "feet"),
  35004. weight: math.unit(1200, "lb"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/eleanor/front.svg",
  35008. extra: 1226/1192,
  35009. bottom: 52/1278
  35010. }
  35011. },
  35012. back: {
  35013. height: math.unit(8 + 4/12, "feet"),
  35014. weight: math.unit(1200, "lb"),
  35015. name: "Back",
  35016. image: {
  35017. source: "./media/characters/eleanor/back.svg",
  35018. extra: 1242/1184,
  35019. bottom: 60/1302
  35020. }
  35021. },
  35022. head: {
  35023. height: math.unit(2.62, "feet"),
  35024. name: "Head",
  35025. image: {
  35026. source: "./media/characters/eleanor/head.svg"
  35027. }
  35028. },
  35029. },
  35030. [
  35031. {
  35032. name: "Normal",
  35033. height: math.unit(8 + 4/12, "feet"),
  35034. default: true
  35035. },
  35036. ]
  35037. ))
  35038. characterMakers.push(() => makeCharacter(
  35039. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35040. {
  35041. front: {
  35042. height: math.unit(8 + 4/12, "feet"),
  35043. weight: math.unit(750, "lb"),
  35044. name: "Front",
  35045. image: {
  35046. source: "./media/characters/tanya/front.svg",
  35047. extra: 1749/1615,
  35048. bottom: 33/1782
  35049. }
  35050. },
  35051. },
  35052. [
  35053. {
  35054. name: "Normal",
  35055. height: math.unit(8 + 4/12, "feet"),
  35056. default: true
  35057. },
  35058. ]
  35059. ))
  35060. characterMakers.push(() => makeCharacter(
  35061. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35062. {
  35063. front: {
  35064. height: math.unit(5, "feet"),
  35065. weight: math.unit(225, "lb"),
  35066. name: "Front",
  35067. image: {
  35068. source: "./media/characters/cindy/front.svg",
  35069. extra: 1320/1250,
  35070. bottom: 42/1362
  35071. }
  35072. },
  35073. frontDressed: {
  35074. height: math.unit(5, "feet"),
  35075. weight: math.unit(225, "lb"),
  35076. name: "Front (Dressed)",
  35077. image: {
  35078. source: "./media/characters/cindy/front-dressed.svg",
  35079. extra: 1320/1250,
  35080. bottom: 42/1362
  35081. }
  35082. },
  35083. back: {
  35084. height: math.unit(5, "feet"),
  35085. weight: math.unit(225, "lb"),
  35086. name: "Back",
  35087. image: {
  35088. source: "./media/characters/cindy/back.svg",
  35089. extra: 1384/1346,
  35090. bottom: 14/1398
  35091. }
  35092. },
  35093. },
  35094. [
  35095. {
  35096. name: "Normal",
  35097. height: math.unit(5, "feet"),
  35098. default: true
  35099. },
  35100. ]
  35101. ))
  35102. characterMakers.push(() => makeCharacter(
  35103. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35104. {
  35105. front: {
  35106. height: math.unit(6 + 9/12, "feet"),
  35107. weight: math.unit(440, "lb"),
  35108. name: "Front",
  35109. image: {
  35110. source: "./media/characters/wilbur-owen/front.svg",
  35111. extra: 1575/1448,
  35112. bottom: 72/1647
  35113. }
  35114. },
  35115. back: {
  35116. height: math.unit(6 + 9/12, "feet"),
  35117. weight: math.unit(440, "lb"),
  35118. name: "Back",
  35119. image: {
  35120. source: "./media/characters/wilbur-owen/back.svg",
  35121. extra: 1578/1445,
  35122. bottom: 36/1614
  35123. }
  35124. },
  35125. },
  35126. [
  35127. {
  35128. name: "Normal",
  35129. height: math.unit(6 + 9/12, "feet"),
  35130. default: true
  35131. },
  35132. ]
  35133. ))
  35134. characterMakers.push(() => makeCharacter(
  35135. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35136. {
  35137. front: {
  35138. height: math.unit(6 + 5/12, "feet"),
  35139. weight: math.unit(650, "lb"),
  35140. name: "Front",
  35141. image: {
  35142. source: "./media/characters/keegan/front.svg",
  35143. extra: 2387/2198,
  35144. bottom: 33/2420
  35145. }
  35146. },
  35147. side: {
  35148. height: math.unit(6 + 5/12, "feet"),
  35149. weight: math.unit(650, "lb"),
  35150. name: "Side",
  35151. image: {
  35152. source: "./media/characters/keegan/side.svg",
  35153. extra: 2390/2202,
  35154. bottom: 47/2437
  35155. }
  35156. },
  35157. back: {
  35158. height: math.unit(6 + 5/12, "feet"),
  35159. weight: math.unit(650, "lb"),
  35160. name: "Back",
  35161. image: {
  35162. source: "./media/characters/keegan/back.svg",
  35163. extra: 2418/2268,
  35164. bottom: 15/2433
  35165. }
  35166. },
  35167. frontSfw: {
  35168. height: math.unit(6 + 5/12, "feet"),
  35169. weight: math.unit(650, "lb"),
  35170. name: "Front (SFW)",
  35171. image: {
  35172. source: "./media/characters/keegan/front-sfw.svg",
  35173. extra: 2387/2198,
  35174. bottom: 33/2420
  35175. }
  35176. },
  35177. beans: {
  35178. height: math.unit(1.85, "feet"),
  35179. name: "Beans",
  35180. image: {
  35181. source: "./media/characters/keegan/beans.svg"
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(6 + 5/12, "feet"),
  35189. default: true
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35195. {
  35196. front: {
  35197. height: math.unit(9, "feet"),
  35198. name: "Front",
  35199. image: {
  35200. source: "./media/characters/colton/front.svg",
  35201. extra: 1589/1326,
  35202. bottom: 139/1728
  35203. }
  35204. },
  35205. },
  35206. [
  35207. {
  35208. name: "Normal",
  35209. height: math.unit(9, "feet"),
  35210. default: true
  35211. },
  35212. ]
  35213. ))
  35214. characterMakers.push(() => makeCharacter(
  35215. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35216. {
  35217. front: {
  35218. height: math.unit(2 + 9/12, "feet"),
  35219. name: "Front",
  35220. image: {
  35221. source: "./media/characters/bora/front.svg",
  35222. extra: 1265/1250,
  35223. bottom: 24/1289
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(2 + 9/12, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35237. {
  35238. front: {
  35239. height: math.unit(8, "feet"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/myu-myu/front.svg",
  35243. extra: 1949/1857,
  35244. bottom: 90/2039
  35245. }
  35246. },
  35247. },
  35248. [
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(8, "feet"),
  35252. default: true
  35253. },
  35254. {
  35255. name: "Big",
  35256. height: math.unit(15, "feet")
  35257. },
  35258. {
  35259. name: "BIG",
  35260. height: math.unit(25, "feet")
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35266. {
  35267. side: {
  35268. height: math.unit(7 + 5/12, "feet"),
  35269. weight: math.unit(2800, "lb"),
  35270. name: "Side",
  35271. image: {
  35272. source: "./media/characters/haloren/side.svg",
  35273. extra: 1793/409,
  35274. bottom: 59/1852
  35275. }
  35276. },
  35277. frontPaw: {
  35278. height: math.unit(2.36, "feet"),
  35279. name: "Front paw",
  35280. image: {
  35281. source: "./media/characters/haloren/front-paw.svg"
  35282. }
  35283. },
  35284. hindPaw: {
  35285. height: math.unit(3.18, "feet"),
  35286. name: "Hind paw",
  35287. image: {
  35288. source: "./media/characters/haloren/hind-paw.svg"
  35289. }
  35290. },
  35291. maw: {
  35292. height: math.unit(5.05, "feet"),
  35293. name: "Maw",
  35294. image: {
  35295. source: "./media/characters/haloren/maw.svg"
  35296. }
  35297. },
  35298. dick: {
  35299. height: math.unit(2.90, "feet"),
  35300. name: "Dick",
  35301. image: {
  35302. source: "./media/characters/haloren/dick.svg"
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(7 + 5/12, "feet"),
  35310. default: true
  35311. },
  35312. {
  35313. name: "Enhanced",
  35314. height: math.unit(14 + 3/12, "feet")
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(171, "cm"),
  35323. name: "Front",
  35324. image: {
  35325. source: "./media/characters/kimmy/front.svg",
  35326. extra: 1491/1435,
  35327. bottom: 53/1544
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Small",
  35334. height: math.unit(9, "cm")
  35335. },
  35336. {
  35337. name: "Normal",
  35338. height: math.unit(171, "cm"),
  35339. default: true
  35340. },
  35341. ]
  35342. ))
  35343. characterMakers.push(() => makeCharacter(
  35344. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35345. {
  35346. front: {
  35347. height: math.unit(8, "feet"),
  35348. weight: math.unit(300, "lb"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/galeboomer/front.svg",
  35352. extra: 4651/4415,
  35353. bottom: 162/4813
  35354. }
  35355. },
  35356. back: {
  35357. height: math.unit(8, "feet"),
  35358. weight: math.unit(300, "lb"),
  35359. name: "Back",
  35360. image: {
  35361. source: "./media/characters/galeboomer/back.svg",
  35362. extra: 4544/4314,
  35363. bottom: 16/4560
  35364. }
  35365. },
  35366. frontAlt: {
  35367. height: math.unit(8, "feet"),
  35368. weight: math.unit(300, "lb"),
  35369. name: "Front (Alt)",
  35370. image: {
  35371. source: "./media/characters/galeboomer/front-alt.svg",
  35372. extra: 4458/4228,
  35373. bottom: 68/4526
  35374. }
  35375. },
  35376. maw: {
  35377. height: math.unit(1.2, "feet"),
  35378. name: "Maw",
  35379. image: {
  35380. source: "./media/characters/galeboomer/maw.svg"
  35381. }
  35382. },
  35383. },
  35384. [
  35385. {
  35386. name: "Normal",
  35387. height: math.unit(8, "feet"),
  35388. default: true
  35389. },
  35390. ]
  35391. ))
  35392. characterMakers.push(() => makeCharacter(
  35393. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35394. {
  35395. front: {
  35396. height: math.unit(5 + 9/12, "feet"),
  35397. weight: math.unit(120, "lb"),
  35398. name: "Front",
  35399. image: {
  35400. source: "./media/characters/chyr/front.svg",
  35401. extra: 1323/1254,
  35402. bottom: 63/1386
  35403. }
  35404. },
  35405. back: {
  35406. height: math.unit(5 + 9/12, "feet"),
  35407. weight: math.unit(120, "lb"),
  35408. name: "Back",
  35409. image: {
  35410. source: "./media/characters/chyr/back.svg",
  35411. extra: 1323/1252,
  35412. bottom: 48/1371
  35413. }
  35414. },
  35415. },
  35416. [
  35417. {
  35418. name: "Normal",
  35419. height: math.unit(5 + 9/12, "feet"),
  35420. default: true
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(7, "feet"),
  35429. weight: math.unit(310, "lb"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/solarus/front.svg",
  35433. extra: 2415/2021,
  35434. bottom: 103/2518
  35435. }
  35436. },
  35437. back: {
  35438. height: math.unit(7, "feet"),
  35439. weight: math.unit(310, "lb"),
  35440. name: "Back",
  35441. image: {
  35442. source: "./media/characters/solarus/back.svg",
  35443. extra: 2463/2089,
  35444. bottom: 79/2542
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(7, "feet"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35458. {
  35459. front: {
  35460. height: math.unit(16, "feet"),
  35461. name: "Front",
  35462. image: {
  35463. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35464. extra: 1844/1780,
  35465. bottom: 58/1902
  35466. }
  35467. },
  35468. },
  35469. [
  35470. {
  35471. name: "Normal",
  35472. height: math.unit(16, "feet"),
  35473. default: true
  35474. },
  35475. ]
  35476. ))
  35477. characterMakers.push(() => makeCharacter(
  35478. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35479. {
  35480. front: {
  35481. height: math.unit(11 + 6/12, "feet"),
  35482. weight: math.unit(1366, "lb"),
  35483. name: "Front",
  35484. image: {
  35485. source: "./media/characters/lexor/front.svg",
  35486. extra: 1560/1481,
  35487. bottom: 211/1771
  35488. }
  35489. },
  35490. back: {
  35491. height: math.unit(11 + 6/12, "feet"),
  35492. weight: math.unit(1366, "lb"),
  35493. name: "Back",
  35494. image: {
  35495. source: "./media/characters/lexor/back.svg",
  35496. extra: 1614/1533,
  35497. bottom: 76/1690
  35498. }
  35499. },
  35500. maw: {
  35501. height: math.unit(3, "feet"),
  35502. name: "Maw",
  35503. image: {
  35504. source: "./media/characters/lexor/maw.svg"
  35505. }
  35506. },
  35507. dick: {
  35508. height: math.unit(2.59, "feet"),
  35509. name: "Dick",
  35510. image: {
  35511. source: "./media/characters/lexor/dick.svg"
  35512. }
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Normal",
  35518. height: math.unit(11 + 6/12, "feet"),
  35519. default: true
  35520. },
  35521. ]
  35522. ))
  35523. characterMakers.push(() => makeCharacter(
  35524. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35525. {
  35526. front: {
  35527. height: math.unit(5 + 8/12, "feet"),
  35528. name: "Front",
  35529. image: {
  35530. source: "./media/characters/magnum/front.svg",
  35531. extra: 942/855,
  35532. bottom: 26/968
  35533. }
  35534. },
  35535. },
  35536. [
  35537. {
  35538. name: "Normal",
  35539. height: math.unit(5 + 8/12, "feet"),
  35540. default: true
  35541. },
  35542. ]
  35543. ))
  35544. characterMakers.push(() => makeCharacter(
  35545. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35546. {
  35547. front: {
  35548. height: math.unit(18 + 4/12, "feet"),
  35549. weight: math.unit(1500, "kg"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/solas-sharpsman/front.svg",
  35553. extra: 1698/1589,
  35554. bottom: 0/1698
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(18 + 4/12, "feet"),
  35562. default: true
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35568. {
  35569. front: {
  35570. height: math.unit(5 + 5/12, "feet"),
  35571. weight: math.unit(180, "lb"),
  35572. name: "Front",
  35573. image: {
  35574. source: "./media/characters/october/front.svg",
  35575. extra: 1800/1650,
  35576. bottom: 0/1800
  35577. }
  35578. },
  35579. frontNsfw: {
  35580. height: math.unit(5 + 5/12, "feet"),
  35581. weight: math.unit(180, "lb"),
  35582. name: "Front (NSFW)",
  35583. image: {
  35584. source: "./media/characters/october/front-nsfw.svg",
  35585. extra: 1392/1307,
  35586. bottom: 42/1434
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(5 + 5/12, "feet"),
  35594. default: true
  35595. },
  35596. ]
  35597. ))
  35598. characterMakers.push(() => makeCharacter(
  35599. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35600. {
  35601. front: {
  35602. height: math.unit(8 + 6/12, "feet"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/essynkardi/front.svg",
  35606. extra: 1914/1846,
  35607. bottom: 22/1936
  35608. }
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(8 + 6/12, "feet"),
  35615. default: true
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35621. {
  35622. front: {
  35623. height: math.unit(6 + 6/12, "feet"),
  35624. weight: math.unit(7, "lb"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/icky/front.svg",
  35628. extra: 813/782,
  35629. bottom: 66/879
  35630. }
  35631. },
  35632. back: {
  35633. height: math.unit(6 + 6/12, "feet"),
  35634. weight: math.unit(7, "lb"),
  35635. name: "Back",
  35636. image: {
  35637. source: "./media/characters/icky/back.svg",
  35638. extra: 754/735,
  35639. bottom: 56/810
  35640. }
  35641. },
  35642. },
  35643. [
  35644. {
  35645. name: "Normal",
  35646. height: math.unit(6 + 6/12, "feet"),
  35647. default: true
  35648. },
  35649. ]
  35650. ))
  35651. characterMakers.push(() => makeCharacter(
  35652. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35653. {
  35654. front: {
  35655. height: math.unit(15, "feet"),
  35656. name: "Front",
  35657. image: {
  35658. source: "./media/characters/rojas/front.svg",
  35659. extra: 1462/1408,
  35660. bottom: 95/1557
  35661. }
  35662. },
  35663. back: {
  35664. height: math.unit(15, "feet"),
  35665. name: "Back",
  35666. image: {
  35667. source: "./media/characters/rojas/back.svg",
  35668. extra: 1023/954,
  35669. bottom: 28/1051
  35670. }
  35671. },
  35672. },
  35673. [
  35674. {
  35675. name: "Normal",
  35676. height: math.unit(15, "feet"),
  35677. default: true
  35678. },
  35679. ]
  35680. ))
  35681. characterMakers.push(() => makeCharacter(
  35682. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35683. {
  35684. frontHuman: {
  35685. height: math.unit(5 + 7/12, "feet"),
  35686. name: "Front (Human)",
  35687. image: {
  35688. source: "./media/characters/alek-dryagan/front-human.svg",
  35689. extra: 1687/1667,
  35690. bottom: 69/1756
  35691. }
  35692. },
  35693. backHuman: {
  35694. height: math.unit(5 + 7/12, "feet"),
  35695. name: "Back (Human)",
  35696. image: {
  35697. source: "./media/characters/alek-dryagan/back-human.svg",
  35698. extra: 1670/1649,
  35699. bottom: 65/1735
  35700. }
  35701. },
  35702. frontDemi: {
  35703. height: math.unit(65, "feet"),
  35704. name: "Front (Demi)",
  35705. image: {
  35706. source: "./media/characters/alek-dryagan/front-demi.svg",
  35707. extra: 1669/1642,
  35708. bottom: 49/1718
  35709. }
  35710. },
  35711. backDemi: {
  35712. height: math.unit(65, "feet"),
  35713. name: "Back (Demi)",
  35714. image: {
  35715. source: "./media/characters/alek-dryagan/back-demi.svg",
  35716. extra: 1658/1637,
  35717. bottom: 40/1698
  35718. }
  35719. },
  35720. mawHuman: {
  35721. height: math.unit(0.3, "feet"),
  35722. name: "Maw (Human)",
  35723. image: {
  35724. source: "./media/characters/alek-dryagan/maw-human.svg"
  35725. }
  35726. },
  35727. mawDemi: {
  35728. height: math.unit(3.8, "feet"),
  35729. name: "Maw (Demi)",
  35730. image: {
  35731. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(5 + 7/12, "feet"),
  35739. default: true
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35745. {
  35746. frontHuman: {
  35747. height: math.unit(5 + 2/12, "feet"),
  35748. name: "Front (Human)",
  35749. image: {
  35750. source: "./media/characters/gen/front-human.svg",
  35751. extra: 1627/1538,
  35752. bottom: 71/1698
  35753. }
  35754. },
  35755. backHuman: {
  35756. height: math.unit(5 + 2/12, "feet"),
  35757. name: "Back (Human)",
  35758. image: {
  35759. source: "./media/characters/gen/back-human.svg",
  35760. extra: 1638/1548,
  35761. bottom: 69/1707
  35762. }
  35763. },
  35764. frontDemi: {
  35765. height: math.unit(5 + 2/12, "feet"),
  35766. name: "Front (Demi)",
  35767. image: {
  35768. source: "./media/characters/gen/front-demi.svg",
  35769. extra: 1627/1538,
  35770. bottom: 71/1698
  35771. }
  35772. },
  35773. backDemi: {
  35774. height: math.unit(5 + 2/12, "feet"),
  35775. name: "Back (Demi)",
  35776. image: {
  35777. source: "./media/characters/gen/back-demi.svg",
  35778. extra: 1638/1548,
  35779. bottom: 69/1707
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(5 + 2/12, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35793. {
  35794. frontImp: {
  35795. height: math.unit(1 + 11/12, "feet"),
  35796. name: "Front (Imp)",
  35797. image: {
  35798. source: "./media/characters/max-kobold/front-imp.svg",
  35799. extra: 1238/1134,
  35800. bottom: 81/1319
  35801. }
  35802. },
  35803. backImp: {
  35804. height: math.unit(1 + 11/12, "feet"),
  35805. name: "Back (Imp)",
  35806. image: {
  35807. source: "./media/characters/max-kobold/back-imp.svg",
  35808. extra: 1334/1175,
  35809. bottom: 34/1368
  35810. }
  35811. },
  35812. frontDemi: {
  35813. height: math.unit(5 + 9/12, "feet"),
  35814. name: "Front (Demi)",
  35815. image: {
  35816. source: "./media/characters/max-kobold/front-demi.svg",
  35817. extra: 1715/1685,
  35818. bottom: 54/1769
  35819. }
  35820. },
  35821. backDemi: {
  35822. height: math.unit(5 + 9/12, "feet"),
  35823. name: "Back (Demi)",
  35824. image: {
  35825. source: "./media/characters/max-kobold/back-demi.svg",
  35826. extra: 1752/1729,
  35827. bottom: 41/1793
  35828. }
  35829. },
  35830. handImp: {
  35831. height: math.unit(0.45, "feet"),
  35832. name: "Hand (Imp)",
  35833. image: {
  35834. source: "./media/characters/max-kobold/hand.svg"
  35835. }
  35836. },
  35837. pawImp: {
  35838. height: math.unit(0.46, "feet"),
  35839. name: "Paw (Imp)",
  35840. image: {
  35841. source: "./media/characters/max-kobold/paw.svg"
  35842. }
  35843. },
  35844. handDemi: {
  35845. height: math.unit(0.80, "feet"),
  35846. name: "Hand (Demi)",
  35847. image: {
  35848. source: "./media/characters/max-kobold/hand.svg"
  35849. }
  35850. },
  35851. pawDemi: {
  35852. height: math.unit(1.1, "feet"),
  35853. name: "Paw (Demi)",
  35854. image: {
  35855. source: "./media/characters/max-kobold/paw.svg"
  35856. }
  35857. },
  35858. headImp: {
  35859. height: math.unit(1.33, "feet"),
  35860. name: "Head (Imp)",
  35861. image: {
  35862. source: "./media/characters/max-kobold/head-imp.svg"
  35863. }
  35864. },
  35865. mawImp: {
  35866. height: math.unit(0.75, "feet"),
  35867. name: "Maw (Imp)",
  35868. image: {
  35869. source: "./media/characters/max-kobold/maw-imp.svg"
  35870. }
  35871. },
  35872. mawDemi: {
  35873. height: math.unit(0.42, "feet"),
  35874. name: "Maw (Demi)",
  35875. image: {
  35876. source: "./media/characters/max-kobold/maw-demi.svg"
  35877. }
  35878. },
  35879. },
  35880. [
  35881. {
  35882. name: "Normal",
  35883. height: math.unit(1 + 11/12, "feet"),
  35884. default: true
  35885. },
  35886. ]
  35887. ))
  35888. characterMakers.push(() => makeCharacter(
  35889. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35890. {
  35891. front: {
  35892. height: math.unit(7 + 5/12, "feet"),
  35893. name: "Front",
  35894. image: {
  35895. source: "./media/characters/carbon/front.svg",
  35896. extra: 1754/1689,
  35897. bottom: 65/1819
  35898. }
  35899. },
  35900. back: {
  35901. height: math.unit(7 + 5/12, "feet"),
  35902. name: "Back",
  35903. image: {
  35904. source: "./media/characters/carbon/back.svg",
  35905. extra: 1762/1695,
  35906. bottom: 24/1786
  35907. }
  35908. },
  35909. frontGigantamax: {
  35910. height: math.unit(150, "feet"),
  35911. name: "Front (Gigantamax)",
  35912. image: {
  35913. source: "./media/characters/carbon/front-gigantamax.svg",
  35914. extra: 1826/1669,
  35915. bottom: 59/1885
  35916. }
  35917. },
  35918. backGigantamax: {
  35919. height: math.unit(150, "feet"),
  35920. name: "Back (Gigantamax)",
  35921. image: {
  35922. source: "./media/characters/carbon/back-gigantamax.svg",
  35923. extra: 1796/1653,
  35924. bottom: 53/1849
  35925. }
  35926. },
  35927. maw: {
  35928. height: math.unit(0.48, "feet"),
  35929. name: "Maw",
  35930. image: {
  35931. source: "./media/characters/carbon/maw.svg"
  35932. }
  35933. },
  35934. mawGigantamax: {
  35935. height: math.unit(7.5, "feet"),
  35936. name: "Maw (Gigantamax)",
  35937. image: {
  35938. source: "./media/characters/carbon/maw-gigantamax.svg"
  35939. }
  35940. },
  35941. },
  35942. [
  35943. {
  35944. name: "Normal",
  35945. height: math.unit(7 + 5/12, "feet"),
  35946. default: true
  35947. },
  35948. ]
  35949. ))
  35950. characterMakers.push(() => makeCharacter(
  35951. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35952. {
  35953. front: {
  35954. height: math.unit(6, "feet"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/maverick/front.svg",
  35958. extra: 1672/1661,
  35959. bottom: 85/1757
  35960. }
  35961. },
  35962. back: {
  35963. height: math.unit(6, "feet"),
  35964. name: "Back",
  35965. image: {
  35966. source: "./media/characters/maverick/back.svg",
  35967. extra: 1642/1631,
  35968. bottom: 38/1680
  35969. }
  35970. },
  35971. },
  35972. [
  35973. {
  35974. name: "Normal",
  35975. height: math.unit(6, "feet"),
  35976. default: true
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  35982. {
  35983. front: {
  35984. height: math.unit(15, "feet"),
  35985. weight: math.unit(615, "lb"),
  35986. name: "Front",
  35987. image: {
  35988. source: "./media/characters/grockle/front.svg",
  35989. extra: 1535/1427,
  35990. bottom: 56/1591
  35991. }
  35992. },
  35993. },
  35994. [
  35995. {
  35996. name: "Normal",
  35997. height: math.unit(15, "feet"),
  35998. default: true
  35999. },
  36000. {
  36001. name: "Large",
  36002. height: math.unit(150, "feet")
  36003. },
  36004. {
  36005. name: "Macro",
  36006. height: math.unit(1876, "feet")
  36007. },
  36008. {
  36009. name: "Mega Macro",
  36010. height: math.unit(121940, "feet")
  36011. },
  36012. {
  36013. name: "Giga Macro",
  36014. height: math.unit(750, "km")
  36015. },
  36016. {
  36017. name: "Tera Macro",
  36018. height: math.unit(750000, "km")
  36019. },
  36020. {
  36021. name: "Galactic",
  36022. height: math.unit(1.4e5, "km")
  36023. },
  36024. {
  36025. name: "Godlike",
  36026. height: math.unit(9.8e280, "galaxies")
  36027. },
  36028. ]
  36029. ))
  36030. characterMakers.push(() => makeCharacter(
  36031. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36032. {
  36033. front: {
  36034. height: math.unit(11, "meters"),
  36035. weight: math.unit(20, "tonnes"),
  36036. name: "Front",
  36037. image: {
  36038. source: "./media/characters/alistair/front.svg",
  36039. extra: 1265/1009,
  36040. bottom: 93/1358
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(11, "meters"),
  36048. default: true
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36054. {
  36055. front: {
  36056. height: math.unit(5 + 8/12, "feet"),
  36057. name: "Front",
  36058. image: {
  36059. source: "./media/characters/haruka/front.svg",
  36060. extra: 2012/1952,
  36061. bottom: 0/2012
  36062. }
  36063. },
  36064. },
  36065. [
  36066. {
  36067. name: "Normal",
  36068. height: math.unit(5 + 8/12, "feet"),
  36069. default: true
  36070. },
  36071. ]
  36072. ))
  36073. characterMakers.push(() => makeCharacter(
  36074. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36075. {
  36076. back: {
  36077. height: math.unit(9, "feet"),
  36078. name: "Back",
  36079. image: {
  36080. source: "./media/characters/vivian-sylveon/back.svg",
  36081. extra: 1853/1714,
  36082. bottom: 0/1853
  36083. }
  36084. },
  36085. },
  36086. [
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(9, "feet"),
  36090. default: true
  36091. },
  36092. {
  36093. name: "Macro",
  36094. height: math.unit(500, "feet")
  36095. },
  36096. {
  36097. name: "Megamacro",
  36098. height: math.unit(600, "miles")
  36099. },
  36100. {
  36101. name: "Gigamacro",
  36102. height: math.unit(30000, "miles")
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36108. {
  36109. anthro: {
  36110. height: math.unit(5 + 10/12, "feet"),
  36111. weight: math.unit(100, "lb"),
  36112. name: "Anthro",
  36113. image: {
  36114. source: "./media/characters/daiki/anthro.svg",
  36115. extra: 1115/1027,
  36116. bottom: 69/1184
  36117. }
  36118. },
  36119. feral: {
  36120. height: math.unit(200, "feet"),
  36121. name: "Feral",
  36122. image: {
  36123. source: "./media/characters/daiki/feral.svg",
  36124. extra: 1256/313,
  36125. bottom: 39/1295
  36126. }
  36127. },
  36128. feralHead: {
  36129. height: math.unit(171, "feet"),
  36130. name: "Feral Head",
  36131. image: {
  36132. source: "./media/characters/daiki/feral-head.svg"
  36133. }
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "Normal",
  36139. height: math.unit(5 + 10/12, "feet"),
  36140. default: true
  36141. },
  36142. ]
  36143. ))
  36144. characterMakers.push(() => makeCharacter(
  36145. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36146. {
  36147. fullyEquippedFront: {
  36148. height: math.unit(3 + 1/12, "feet"),
  36149. weight: math.unit(24, "lb"),
  36150. name: "Fully Equipped (Front)",
  36151. image: {
  36152. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36153. extra: 687/605,
  36154. bottom: 18/705
  36155. }
  36156. },
  36157. fullyEquippedBack: {
  36158. height: math.unit(3 + 1/12, "feet"),
  36159. weight: math.unit(24, "lb"),
  36160. name: "Fully Equipped (Back)",
  36161. image: {
  36162. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36163. extra: 689/590,
  36164. bottom: 18/707
  36165. }
  36166. },
  36167. dailyWear: {
  36168. height: math.unit(3 + 1/12, "feet"),
  36169. weight: math.unit(24, "lb"),
  36170. name: "Daily Wear",
  36171. image: {
  36172. source: "./media/characters/tea-spot/daily-wear.svg",
  36173. extra: 701/620,
  36174. bottom: 21/722
  36175. }
  36176. },
  36177. maidWork: {
  36178. height: math.unit(3 + 1/12, "feet"),
  36179. weight: math.unit(24, "lb"),
  36180. name: "Maid Work",
  36181. image: {
  36182. source: "./media/characters/tea-spot/maid-work.svg",
  36183. extra: 693/609,
  36184. bottom: 15/708
  36185. }
  36186. },
  36187. },
  36188. [
  36189. {
  36190. name: "Normal",
  36191. height: math.unit(3 + 1/12, "feet"),
  36192. default: true
  36193. },
  36194. ]
  36195. ))
  36196. characterMakers.push(() => makeCharacter(
  36197. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36198. {
  36199. front: {
  36200. height: math.unit(175, "cm"),
  36201. weight: math.unit(75, "kg"),
  36202. name: "Front",
  36203. image: {
  36204. source: "./media/characters/chee/front.svg",
  36205. extra: 1796/1740,
  36206. bottom: 40/1836
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Micro-Micro",
  36213. height: math.unit(1, "nm")
  36214. },
  36215. {
  36216. name: "Micro-erst",
  36217. height: math.unit(1, "micrometer")
  36218. },
  36219. {
  36220. name: "Micro-er",
  36221. height: math.unit(1, "cm")
  36222. },
  36223. {
  36224. name: "Normal",
  36225. height: math.unit(175, "cm"),
  36226. default: true
  36227. },
  36228. {
  36229. name: "Macro",
  36230. height: math.unit(100, "m")
  36231. },
  36232. {
  36233. name: "Macro-er",
  36234. height: math.unit(1, "km")
  36235. },
  36236. {
  36237. name: "Macro-erst",
  36238. height: math.unit(10, "km")
  36239. },
  36240. {
  36241. name: "Macro-Macro",
  36242. height: math.unit(100, "km")
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36248. {
  36249. front: {
  36250. height: math.unit(11 + 9/12, "feet"),
  36251. weight: math.unit(935, "lb"),
  36252. name: "Front",
  36253. image: {
  36254. source: "./media/characters/kingsley/front.svg",
  36255. extra: 1803/1674,
  36256. bottom: 127/1930
  36257. }
  36258. },
  36259. frontNude: {
  36260. height: math.unit(11 + 9/12, "feet"),
  36261. weight: math.unit(935, "lb"),
  36262. name: "Front (Nude)",
  36263. image: {
  36264. source: "./media/characters/kingsley/front-nude.svg",
  36265. extra: 1803/1674,
  36266. bottom: 127/1930
  36267. }
  36268. },
  36269. },
  36270. [
  36271. {
  36272. name: "Normal",
  36273. height: math.unit(11 + 9/12, "feet"),
  36274. default: true
  36275. },
  36276. ]
  36277. ))
  36278. characterMakers.push(() => makeCharacter(
  36279. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36280. {
  36281. side: {
  36282. height: math.unit(9, "feet"),
  36283. name: "Side",
  36284. image: {
  36285. source: "./media/characters/rymel/side.svg",
  36286. extra: 792/469,
  36287. bottom: 121/913
  36288. }
  36289. },
  36290. maw: {
  36291. height: math.unit(2.4, "meters"),
  36292. name: "Maw",
  36293. image: {
  36294. source: "./media/characters/rymel/maw.svg"
  36295. }
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "House Drake",
  36301. height: math.unit(2, "feet")
  36302. },
  36303. {
  36304. name: "Reduced",
  36305. height: math.unit(4.5, "feet")
  36306. },
  36307. {
  36308. name: "Normal",
  36309. height: math.unit(9, "feet"),
  36310. default: true
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36316. {
  36317. front: {
  36318. height: math.unit(1.74, "meters"),
  36319. weight: math.unit(55, "kg"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/rubus/front.svg",
  36323. extra: 1894/1742,
  36324. bottom: 44/1938
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(1.74, "meters"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36338. {
  36339. front: {
  36340. height: math.unit(5 + 2/12, "feet"),
  36341. weight: math.unit(112, "lb"),
  36342. name: "Front",
  36343. image: {
  36344. source: "./media/characters/cassie-kingston/front.svg",
  36345. extra: 1438/1390,
  36346. bottom: 47/1485
  36347. }
  36348. },
  36349. },
  36350. [
  36351. {
  36352. name: "Normal",
  36353. height: math.unit(5 + 2/12, "feet"),
  36354. default: true
  36355. },
  36356. {
  36357. name: "Macro",
  36358. height: math.unit(128, "feet")
  36359. },
  36360. {
  36361. name: "Megamacro",
  36362. height: math.unit(2.56, "miles")
  36363. },
  36364. ]
  36365. ))
  36366. characterMakers.push(() => makeCharacter(
  36367. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36368. {
  36369. front: {
  36370. height: math.unit(7, "feet"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/fox/front.svg",
  36374. extra: 1798/1703,
  36375. bottom: 55/1853
  36376. }
  36377. },
  36378. back: {
  36379. height: math.unit(7, "feet"),
  36380. name: "Back",
  36381. image: {
  36382. source: "./media/characters/fox/back.svg",
  36383. extra: 1748/1649,
  36384. bottom: 32/1780
  36385. }
  36386. },
  36387. head: {
  36388. height: math.unit(1.95, "feet"),
  36389. name: "Head",
  36390. image: {
  36391. source: "./media/characters/fox/head.svg"
  36392. }
  36393. },
  36394. dick: {
  36395. height: math.unit(1.33, "feet"),
  36396. name: "Dick",
  36397. image: {
  36398. source: "./media/characters/fox/dick.svg"
  36399. }
  36400. },
  36401. foot: {
  36402. height: math.unit(1, "feet"),
  36403. name: "Foot",
  36404. image: {
  36405. source: "./media/characters/fox/foot.svg"
  36406. }
  36407. },
  36408. paw: {
  36409. height: math.unit(0.92, "feet"),
  36410. name: "Paw",
  36411. image: {
  36412. source: "./media/characters/fox/paw.svg"
  36413. }
  36414. },
  36415. },
  36416. [
  36417. {
  36418. name: "Small",
  36419. height: math.unit(3, "inches")
  36420. },
  36421. {
  36422. name: "\"Realistic\"",
  36423. height: math.unit(7, "feet")
  36424. },
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(150, "feet"),
  36428. default: true
  36429. },
  36430. {
  36431. name: "BIG",
  36432. height: math.unit(1200, "feet")
  36433. },
  36434. {
  36435. name: "👀",
  36436. height: math.unit(5, "miles")
  36437. },
  36438. {
  36439. name: "👀👀👀",
  36440. height: math.unit(64, "miles")
  36441. },
  36442. ]
  36443. ))
  36444. characterMakers.push(() => makeCharacter(
  36445. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36446. {
  36447. front: {
  36448. height: math.unit(625, "feet"),
  36449. name: "Front",
  36450. image: {
  36451. source: "./media/characters/asonja-rossa/front.svg",
  36452. extra: 1833/1686,
  36453. bottom: 24/1857
  36454. }
  36455. },
  36456. back: {
  36457. height: math.unit(625, "feet"),
  36458. name: "Back",
  36459. image: {
  36460. source: "./media/characters/asonja-rossa/back.svg",
  36461. extra: 1852/1753,
  36462. bottom: 26/1878
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Macro",
  36469. height: math.unit(625, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36476. {
  36477. side: {
  36478. height: math.unit(6, "feet"),
  36479. weight: math.unit(150, "lb"),
  36480. name: "Side",
  36481. image: {
  36482. source: "./media/characters/rezukii/side.svg",
  36483. extra: 979/542,
  36484. bottom: 87/1066
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Tiny",
  36491. height: math.unit(2, "feet")
  36492. },
  36493. {
  36494. name: "Smol",
  36495. height: math.unit(4, "feet")
  36496. },
  36497. {
  36498. name: "Normal",
  36499. height: math.unit(8, "feet"),
  36500. default: true
  36501. },
  36502. {
  36503. name: "Big",
  36504. height: math.unit(12, "feet")
  36505. },
  36506. {
  36507. name: "Macro",
  36508. height: math.unit(30, "feet")
  36509. },
  36510. ]
  36511. ))
  36512. characterMakers.push(() => makeCharacter(
  36513. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36514. {
  36515. front: {
  36516. height: math.unit(14, "feet"),
  36517. weight: math.unit(9.5, "tonnes"),
  36518. name: "Front",
  36519. image: {
  36520. source: "./media/characters/dawnheart/front.svg",
  36521. extra: 2792/2675,
  36522. bottom: 64/2856
  36523. }
  36524. },
  36525. },
  36526. [
  36527. {
  36528. name: "Normal",
  36529. height: math.unit(14, "feet"),
  36530. default: true
  36531. },
  36532. ]
  36533. ))
  36534. characterMakers.push(() => makeCharacter(
  36535. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36536. {
  36537. front: {
  36538. height: math.unit(1.7, "m"),
  36539. name: "Front",
  36540. image: {
  36541. source: "./media/characters/gladi/front.svg",
  36542. extra: 1460/1362,
  36543. bottom: 19/1479
  36544. }
  36545. },
  36546. back: {
  36547. height: math.unit(1.7, "m"),
  36548. name: "Back",
  36549. image: {
  36550. source: "./media/characters/gladi/back.svg",
  36551. extra: 1459/1357,
  36552. bottom: 12/1471
  36553. }
  36554. },
  36555. feral: {
  36556. height: math.unit(2.05, "m"),
  36557. name: "Feral",
  36558. image: {
  36559. source: "./media/characters/gladi/feral.svg",
  36560. extra: 821/557,
  36561. bottom: 91/912
  36562. }
  36563. },
  36564. },
  36565. [
  36566. {
  36567. name: "Shortest",
  36568. height: math.unit(70, "cm")
  36569. },
  36570. {
  36571. name: "Normal",
  36572. height: math.unit(1.7, "m")
  36573. },
  36574. {
  36575. name: "Macro",
  36576. height: math.unit(10, "m"),
  36577. default: true
  36578. },
  36579. {
  36580. name: "Tallest",
  36581. height: math.unit(200, "m")
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36587. {
  36588. front: {
  36589. height: math.unit(5 + 7/12, "feet"),
  36590. weight: math.unit(92, "kg"),
  36591. name: "Front",
  36592. image: {
  36593. source: "./media/characters/erdno/front.svg",
  36594. extra: 1954/1889,
  36595. bottom: 22/1976
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(5 + 7/12, "feet"),
  36603. default: true
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(5 + 10/12, "feet"),
  36612. weight: math.unit(150, "lb"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/jamie/front.svg",
  36616. extra: 1908/1768,
  36617. bottom: 19/1927
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Minimum",
  36624. height: math.unit(2, "cm")
  36625. },
  36626. {
  36627. name: "Micro",
  36628. height: math.unit(3, "inches")
  36629. },
  36630. {
  36631. name: "Normal",
  36632. height: math.unit(5 + 10/12, "feet"),
  36633. default: true
  36634. },
  36635. {
  36636. name: "Macro",
  36637. height: math.unit(150, "feet")
  36638. },
  36639. {
  36640. name: "Megamacro",
  36641. height: math.unit(10000, "m")
  36642. },
  36643. ]
  36644. ))
  36645. characterMakers.push(() => makeCharacter(
  36646. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36647. {
  36648. front: {
  36649. height: math.unit(2, "meters"),
  36650. weight: math.unit(100, "kg"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/shiron/front.svg",
  36654. extra: 2103/1985,
  36655. bottom: 98/2201
  36656. }
  36657. },
  36658. back: {
  36659. height: math.unit(2, "meters"),
  36660. weight: math.unit(100, "kg"),
  36661. name: "Back",
  36662. image: {
  36663. source: "./media/characters/shiron/back.svg",
  36664. extra: 2110/2015,
  36665. bottom: 89/2199
  36666. }
  36667. },
  36668. hand: {
  36669. height: math.unit(0.96, "feet"),
  36670. name: "Hand",
  36671. image: {
  36672. source: "./media/characters/shiron/hand.svg"
  36673. }
  36674. },
  36675. foot: {
  36676. height: math.unit(1.464, "feet"),
  36677. name: "Foot",
  36678. image: {
  36679. source: "./media/characters/shiron/foot.svg"
  36680. }
  36681. },
  36682. },
  36683. [
  36684. {
  36685. name: "Normal",
  36686. height: math.unit(2, "meters")
  36687. },
  36688. {
  36689. name: "Macro",
  36690. height: math.unit(500, "meters"),
  36691. default: true
  36692. },
  36693. {
  36694. name: "Megamacro",
  36695. height: math.unit(20, "km")
  36696. },
  36697. ]
  36698. ))
  36699. //characters
  36700. function makeCharacters() {
  36701. const results = [];
  36702. characterMakers.forEach(character => {
  36703. results.push(character());
  36704. });
  36705. return results;
  36706. }