less copy protection, more size visualization
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

36411 lignes
915 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. },
  227. "cougar": {
  228. name: "Cougar",
  229. parents: [
  230. "cat"
  231. ]
  232. },
  233. "goat": {
  234. name: "Goat",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "lion": {
  240. name: "Lion",
  241. parents: [
  242. "cat"
  243. ]
  244. },
  245. "harpy-eager": {
  246. name: "Harpy Eagle",
  247. parents: [
  248. "avian"
  249. ]
  250. },
  251. "deer": {
  252. name: "Deer",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "phoenix": {
  258. name: "Phoenix",
  259. parents: [
  260. "avian"
  261. ]
  262. },
  263. "aeromorph": {
  264. name: "Aeromorph",
  265. parents: [
  266. "machine"
  267. ]
  268. },
  269. "machine": {
  270. name: "Machine",
  271. },
  272. "android": {
  273. name: "Android",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "jackal": {
  279. name: "Jackal",
  280. parents: [
  281. "canine"
  282. ]
  283. },
  284. "corvid": {
  285. name: "Corvid",
  286. parents: [
  287. "avian"
  288. ]
  289. },
  290. "pharaoh-hound": {
  291. name: "Pharaoh Hound",
  292. parents: [
  293. "dog"
  294. ]
  295. },
  296. "skunk": {
  297. name: "Skunk",
  298. parents: [
  299. "mammal"
  300. ]
  301. },
  302. "shark": {
  303. name: "Shark",
  304. parents: [
  305. "fish"
  306. ]
  307. },
  308. "black-panther": {
  309. name: "Black Panther",
  310. parents: [
  311. "cat"
  312. ]
  313. },
  314. "umbra": {
  315. name: "Umbra",
  316. parents: [
  317. "animal"
  318. ]
  319. },
  320. "raven": {
  321. name: "Raven",
  322. parents: [
  323. "corvid"
  324. ]
  325. },
  326. "snow-leopard": {
  327. name: "Snow Leopard",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "barbary-lion": {
  333. name: "Barbary Lion",
  334. parents: [
  335. "lion"
  336. ]
  337. },
  338. "dra'gal": {
  339. name: "Dra'Gal",
  340. parents: [
  341. "mammal"
  342. ]
  343. },
  344. "german-shepherd": {
  345. name: "German Shepherd",
  346. parents: [
  347. "dog"
  348. ]
  349. },
  350. "bayleef": {
  351. name: "Bayleef",
  352. parents: [
  353. "pokemon"
  354. ]
  355. },
  356. "mouse": {
  357. name: "Mouse",
  358. parents: [
  359. "rodent"
  360. ]
  361. },
  362. "rat": {
  363. name: "Rat",
  364. parents: [
  365. "mammal"
  366. ]
  367. },
  368. "hoshiko-beast": {
  369. name: "Hoshiko Beast",
  370. parents: ["animal"]
  371. },
  372. "snow-jugani": {
  373. name: "Snow Jugani",
  374. parents: ["cat"]
  375. },
  376. "patamon": {
  377. name: "Patamon",
  378. parents: ["digimon"]
  379. },
  380. "digimon": {
  381. name: "Digimon",
  382. },
  383. "jugani": {
  384. name: "Jugani",
  385. parents: ["cat"]
  386. },
  387. "luxray": {
  388. name: "Luxray",
  389. parents: ["pokemon"]
  390. },
  391. "mech": {
  392. name: "Mech",
  393. parents: ["machine"]
  394. },
  395. "zoid": {
  396. name: "Zoid",
  397. parents: ["mech"]
  398. },
  399. "monster": {
  400. name: "Monster",
  401. parents: ["animal"]
  402. },
  403. "foo-dog": {
  404. name: "Foo Dog",
  405. parents: ["mammal"]
  406. },
  407. "elephant": {
  408. name: "Elephant",
  409. parents: ["mammal"]
  410. },
  411. "eagle": {
  412. name: "Eagle",
  413. parents: ["avian"]
  414. },
  415. "cow": {
  416. name: "Cow",
  417. parents: ["mammal"]
  418. },
  419. "crocodile": {
  420. name: "Crocodile",
  421. parents: ["reptile"]
  422. },
  423. "borzoi": {
  424. name: "Borzoi",
  425. parents: ["dog"]
  426. },
  427. "snake": {
  428. name: "Snake",
  429. parents: ["reptile"]
  430. },
  431. "horned-bush-viper": {
  432. name: "Horned Bush Viper",
  433. parents: ["snake"]
  434. },
  435. "cobra": {
  436. name: "Cobra",
  437. parents: ["snake"]
  438. },
  439. "harpy-eagle": {
  440. name: "Harpy Eagle",
  441. parents: ["eagle"]
  442. },
  443. "raptor": {
  444. name: "Raptor",
  445. parents: ["dinosaur"]
  446. },
  447. "dinosaur": {
  448. name: "Dinosaur",
  449. parents: ["reptile"]
  450. },
  451. "veilhound": {
  452. name: "Veilhound",
  453. parents: ["hellhound", "demon"]
  454. },
  455. "hellhound": {
  456. name: "Hellhound",
  457. parents: ["canine"]
  458. },
  459. "insect": {
  460. name: "Insect",
  461. parents: ["animal"]
  462. },
  463. "beetle": {
  464. name: "Beetle",
  465. parents: ["insect"]
  466. },
  467. "moth": {
  468. name: "Moth",
  469. parents: ["insect"]
  470. },
  471. "eastern-dragon": {
  472. name: "Eastern Dragon",
  473. parents: ["dragon"]
  474. },
  475. "jaguar": {
  476. name: "Jaguar",
  477. parents: ["cat"]
  478. },
  479. "horse": {
  480. name: "Horse",
  481. parents: ["mammal"]
  482. },
  483. "sergal": {
  484. name: "Sergal",
  485. parents: ["mammal"]
  486. },
  487. "gryphon": {
  488. name: "Gryphon",
  489. parents: ["lion", "eagle"]
  490. },
  491. "robot": {
  492. name: "Robot",
  493. parents: ["machine"]
  494. },
  495. "medihound": {
  496. name: "Medihound",
  497. parents: ["robot", "dog"]
  498. },
  499. "sylveon": {
  500. name: "Sylveon",
  501. parents: ["pokemon"]
  502. },
  503. "catgirl": {
  504. name: "Catgirl",
  505. parents: ["mammal"]
  506. },
  507. "cowgirl": {
  508. name: "Cowgirl",
  509. parents: ["mammal"]
  510. },
  511. "pony": {
  512. name: "Pony",
  513. parents: ["horse"]
  514. },
  515. "rabbit": {
  516. name: "Rabbit",
  517. parents: ["mammal"]
  518. },
  519. "fennec-fox": {
  520. name: "Fennec Fox",
  521. parents: ["fox"]
  522. },
  523. "azodian": {
  524. name: "Azodian",
  525. parents: ["mouse"]
  526. },
  527. "shiba-inu": {
  528. name: "Shiba Inu",
  529. parents: ["dog"]
  530. },
  531. "changeling": {
  532. name: "Changeling",
  533. parents: ["insect"]
  534. },
  535. "cheetah": {
  536. name: "Cheetah",
  537. parents: ["cat"]
  538. },
  539. "golden-jackal": {
  540. name: "Golden Jackal",
  541. parents: ["jackal"]
  542. },
  543. "manectric": {
  544. name: "Manectric",
  545. parents: ["pokemon"]
  546. },
  547. "rat": {
  548. name: "Rat",
  549. parents: ["rodent"]
  550. },
  551. "rodent": {
  552. name: "Rodent",
  553. parents: ["mammal"]
  554. },
  555. "octocoon": {
  556. name: "Octocoon",
  557. parents: ["raccoon", "octopus"]
  558. },
  559. "octopus": {
  560. name: "Octopus",
  561. parents: ["fish"]
  562. },
  563. "werewolf": {
  564. name: "Werewolf",
  565. parents: ["wolf"]
  566. },
  567. "meerkat": {
  568. name: "Meerkat",
  569. parents: ["mammal"]
  570. },
  571. "human": {
  572. name: "Human",
  573. parents: ["mammal"]
  574. },
  575. "geth": {
  576. name: "Geth",
  577. parents: ["android"]
  578. },
  579. "husky": {
  580. name: "Husky",
  581. parents: ["dog"]
  582. },
  583. "long-eared-bat": {
  584. name: "Long Eared Bat",
  585. parents: ["bat"]
  586. },
  587. "lizard": {
  588. name: "Lizard",
  589. parents: ["reptile"]
  590. },
  591. "salamander": {
  592. name: "Salamander",
  593. parents: ["lizard"]
  594. },
  595. "chameleon": {
  596. name: "Chameleon",
  597. parents: ["lizard"]
  598. },
  599. "gecko": {
  600. name: "Gecko",
  601. parents: ["lizard"]
  602. },
  603. "kobold": {
  604. name: "Kobold",
  605. parents: ["reptile"]
  606. },
  607. "charizard": {
  608. name: "Charizard",
  609. parents: ["pokemon"]
  610. },
  611. "lugia": {
  612. name: "Lugia",
  613. parents: ["pokemon"]
  614. },
  615. "cerberus": {
  616. name: "Cerberus",
  617. parents: ["dog"]
  618. },
  619. "tyrantrum": {
  620. name: "Tyrantrum",
  621. parents: ["pokemon"]
  622. },
  623. "lemur": {
  624. name: "Lemur",
  625. parents: ["mammal"]
  626. },
  627. "kelpie": {
  628. name: "Kelpie",
  629. parents: ["horse", "monster"]
  630. },
  631. "labrador": {
  632. name: "Labrador",
  633. parents: ["dog"]
  634. },
  635. "sylveon": {
  636. name: "Sylveon",
  637. parents: ["eeveelution"]
  638. },
  639. "eeveelution": {
  640. name: "Eeveelution",
  641. parents: ["pokemon"]
  642. },
  643. "polar-bear": {
  644. name: "Polar Bear",
  645. parents: ["bear"]
  646. },
  647. "bear": {
  648. name: "Bear",
  649. parents: ["mammal"]
  650. },
  651. "absol": {
  652. name: "Absol",
  653. parents: ["pokemon"]
  654. },
  655. "wolver": {
  656. name: "Wolver",
  657. parents: ["mammal"]
  658. },
  659. "rottweiler": {
  660. name: "Rottweiler",
  661. parents: ["dog"]
  662. },
  663. "zebra": {
  664. name: "Zebra",
  665. parents: ["horse"]
  666. },
  667. "yoshi": {
  668. name: "Yoshi",
  669. parents: ["lizard"]
  670. },
  671. "lynx": {
  672. name: "Lynx",
  673. parents: ["cat"]
  674. },
  675. "unknown": {
  676. name: "Unknown",
  677. parents: []
  678. },
  679. "thylacine": {
  680. name: "Thylacine",
  681. parents: ["mammal"]
  682. },
  683. "gabumon": {
  684. name: "Gabumon",
  685. parents: ["digimon"]
  686. },
  687. "border-collie": {
  688. name: "Border Collie",
  689. parents: ["dog"]
  690. },
  691. "imp": {
  692. name: "Imp",
  693. parents: ["demon"]
  694. },
  695. "kangaroo": {
  696. name: "Kangaroo",
  697. parents: ["mammal"]
  698. },
  699. "renamon": {
  700. name: "Renamon",
  701. parents: ["digimon"]
  702. },
  703. "candy-orca-dragon": {
  704. name: "Candy Orca Dragon",
  705. parents: ["fish", "dragon", "candy"]
  706. },
  707. "sabertooth-tiger": {
  708. name: "Sabertooth Tiger",
  709. parents: ["cat"]
  710. },
  711. "espurr": {
  712. name: "Espurr",
  713. parents: ["pokemon"]
  714. },
  715. "otter": {
  716. name: "Otter",
  717. parents: ["mammal"]
  718. },
  719. "elemental": {
  720. name: "Elemental",
  721. parents: ["mammal"]
  722. },
  723. "mew": {
  724. name: "Mew",
  725. parents: ["pokemon"]
  726. },
  727. "goodra": {
  728. name: "Goodra",
  729. parents: ["pokemon"]
  730. },
  731. "fairy": {
  732. name: "Fairy",
  733. parents: ["magical"]
  734. },
  735. "typhlosion": {
  736. name: "Typhlosion",
  737. parents: ["pokemon"]
  738. },
  739. "magical": {
  740. name: "Magical",
  741. parents: []
  742. },
  743. "xenomorph": {
  744. name: "Xenomorph",
  745. parents: ["monster", "alien"]
  746. },
  747. "charr": {
  748. name: "Charr",
  749. parents: ["cat"]
  750. },
  751. "siberian-husky": {
  752. name: "Siberian Husky",
  753. parents: ["husky"]
  754. },
  755. "alligator": {
  756. name: "Alligator",
  757. parents: ["reptile"]
  758. },
  759. "bernese-mountain-dog": {
  760. name: "Bernese Mountain Dog",
  761. parents: ["dog"]
  762. },
  763. "reshiram": {
  764. name: "Reshiram",
  765. parents: ["pokemon"]
  766. },
  767. "grizzly-bear": {
  768. name: "Grizzly Bear",
  769. parents: ["bear"]
  770. },
  771. "water-monitor": {
  772. name: "Water Monitor",
  773. parents: ["lizard"]
  774. },
  775. "banchofossa": {
  776. name: "Banchofossa",
  777. parents: ["mammal"]
  778. },
  779. "kirin": {
  780. name: "Kirin",
  781. parents: ["monster"]
  782. },
  783. "quilava": {
  784. name: "Quilava",
  785. parents: ["pokemon"]
  786. },
  787. "seviper": {
  788. name: "Seviper",
  789. parents: ["pokemon"]
  790. },
  791. "flying-fox": {
  792. name: "Flying Fox",
  793. parents: ["bat"]
  794. },
  795. "keynain": {
  796. name: "Keynain",
  797. parents: ["avian"]
  798. },
  799. "lucario": {
  800. name: "Lucario",
  801. parents: ["pokemon"]
  802. },
  803. "siamese-cat": {
  804. name: "Siamese Cat",
  805. parents: ["cat"]
  806. },
  807. "spider": {
  808. name: "Spider",
  809. parents: ["insect"]
  810. },
  811. "samurott": {
  812. name: "Samurott",
  813. parents: ["pokemon"]
  814. },
  815. "megalodon": {
  816. name: "Megalodon",
  817. parents: ["shark"]
  818. },
  819. "unicorn": {
  820. name: "Unicorn",
  821. parents: ["horse"]
  822. },
  823. "greninja": {
  824. name: "Greninja",
  825. parents: ["pokemon"]
  826. },
  827. "water-dragon": {
  828. name: "Water Dragon",
  829. parents: ["dragon"]
  830. },
  831. "cross-fox": {
  832. name: "Cross Fox",
  833. parents: ["fox"]
  834. },
  835. "synth": {
  836. name: "Synth",
  837. parents: ["machine"]
  838. },
  839. "construct": {
  840. name: "Construct",
  841. parents: []
  842. },
  843. "mexican-wolf": {
  844. name: "Mexican Wolf",
  845. parents: ["wolf"]
  846. },
  847. "leopard": {
  848. name: "Leopard",
  849. parents: ["cat"]
  850. },
  851. "pig": {
  852. name: "Pig",
  853. parents: ["mammal"]
  854. },
  855. "ampharos": {
  856. name: "Ampharos",
  857. parents: ["pokemon"]
  858. },
  859. "orca": {
  860. name: "Orca",
  861. parents: ["fish"]
  862. },
  863. "lycanroc": {
  864. name: "Lycanroc",
  865. parents: ["pokemon"]
  866. },
  867. "surkanu": {
  868. name: "Surkanu",
  869. parents: ["monster"]
  870. },
  871. "seal": {
  872. name: "Seal",
  873. parents: ["mammal"]
  874. },
  875. "keldeo": {
  876. name: "Keldeo",
  877. parents: ["pokemon"]
  878. },
  879. "great-dane": {
  880. name: "Great Dane",
  881. parents: ["dog"]
  882. },
  883. "black-backed-jackal": {
  884. name: "Black Backed Jackal",
  885. parents: ["jackal"]
  886. },
  887. "sheep": {
  888. name: "Sheep",
  889. parents: ["mammal"]
  890. },
  891. "leopard-seal": {
  892. name: "Leopard Seal",
  893. parents: ["seal"]
  894. },
  895. "zoroark": {
  896. name: "Zoroark",
  897. parents: ["pokemon"]
  898. },
  899. "maned-wolf": {
  900. name: "Maned Wolf",
  901. parents: ["canine"]
  902. },
  903. "dracha": {
  904. name: "Dracha",
  905. parents: ["dragon"]
  906. },
  907. "wolxi": {
  908. name: "Wolxi",
  909. parents: ["mammal", "alien"]
  910. },
  911. "dratini": {
  912. name: "Dratini",
  913. parents: ["pokemon", "dragon"]
  914. },
  915. "skaven": {
  916. name: "Skaven",
  917. parents: ["rat"]
  918. },
  919. "mongoose": {
  920. name: "Mongoose",
  921. parents: ["mammal"]
  922. },
  923. "lopunny": {
  924. name: "Lopunny",
  925. parents: ["pokemon", "rabbit"]
  926. },
  927. "feraligatr": {
  928. name: "Feraligatr",
  929. parents: ["pokemon", "alligator"]
  930. },
  931. "houndoom": {
  932. name: "Houndoom",
  933. parents: ["pokemon", "dog"]
  934. },
  935. "protogen": {
  936. name: "Protogen",
  937. parents: ["machine"]
  938. },
  939. "saint-bernard": {
  940. name: "Saint Bernard",
  941. parents: ["dog"]
  942. },
  943. "crow": {
  944. name: "Crow",
  945. parents: ["corvid"]
  946. },
  947. "delphox": {
  948. name: "Delphox",
  949. parents: ["pokemon", "fox"]
  950. },
  951. "moose": {
  952. name: "Moose",
  953. parents: ["mammal"]
  954. },
  955. "joraxian": {
  956. name: "Joraxian",
  957. parents: ["monster", "canine", "demon"]
  958. },
  959. "nimbat": {
  960. name: "Nimbat",
  961. parents: ["mammal"]
  962. },
  963. "aardwolf": {
  964. name: "Aardwolf",
  965. parents: ["canine"]
  966. },
  967. "fluudrani": {
  968. name: "Fluudrani",
  969. parents: ["animal"]
  970. },
  971. "arcanine": {
  972. name: "Arcanine",
  973. parents: ["pokemon", "dog"]
  974. },
  975. "inteleon": {
  976. name: "Inteleon",
  977. parents: ["pokemon", "fish"]
  978. },
  979. "ninetales": {
  980. name: "Ninetales",
  981. parents: ["pokemon", "kitsune"]
  982. },
  983. "tigrex": {
  984. name: "Tigrex",
  985. parents: ["tiger"]
  986. },
  987. "zorua": {
  988. name: "Zorua",
  989. parents: ["pokemon", "fox"]
  990. },
  991. "vulpix": {
  992. name: "Vulpix",
  993. parents: ["pokemon", "fox"]
  994. },
  995. "barghest": {
  996. name: "Barghest",
  997. parents: ["monster"]
  998. },
  999. "gray-wolf": {
  1000. name: "Gray Wolf",
  1001. parents: ["wolf"]
  1002. },
  1003. "ruppells-fox": {
  1004. name: "Rüppell's Fox",
  1005. parents: ["fox"]
  1006. },
  1007. "bull-terrier": {
  1008. name: "Bull Terrier",
  1009. parents: ["dog"]
  1010. },
  1011. "european-honey-buzzard": {
  1012. name: "European Honey Buzzard",
  1013. parents: ["avian"]
  1014. },
  1015. "t-rex": {
  1016. name: "T Rex",
  1017. parents: ["dinosaur"]
  1018. },
  1019. "mactarian": {
  1020. name: "Mactarian",
  1021. parents: ["shark", "monster"]
  1022. },
  1023. "mewtwo-y": {
  1024. name: "Mewtwo Y",
  1025. parents: ["mewtwo"]
  1026. },
  1027. "mewtwo": {
  1028. name: "Mewtwo",
  1029. parents: ["pokemon"]
  1030. },
  1031. "mew": {
  1032. name: "Mew",
  1033. parents: ["pokemon"]
  1034. },
  1035. "eevee": {
  1036. name: "Eevee",
  1037. parents: ["eeveelution"]
  1038. },
  1039. "mienshao": {
  1040. name: "Mienshao",
  1041. parents: ["pokemon"]
  1042. },
  1043. "sugar-glider": {
  1044. name: "Sugar Glider",
  1045. parents: ["opossum"]
  1046. },
  1047. "spectral-bat": {
  1048. name: "Spectral Bat",
  1049. parents: ["bat"]
  1050. },
  1051. "scolipede": {
  1052. name: "Scolipede",
  1053. parents: ["pokemon", "insect"]
  1054. },
  1055. "jackalope": {
  1056. name: "Jackalope",
  1057. parents: ["rabbit", "antelope"]
  1058. },
  1059. "caracal": {
  1060. name: "Caracal",
  1061. parents: ["cat"]
  1062. },
  1063. "stoat": {
  1064. name: "Stoat",
  1065. parents: ["mammal"]
  1066. },
  1067. "african-golden-cat": {
  1068. name: "African Golden Cat",
  1069. parents: ["cat"]
  1070. },
  1071. "gigantosaurus": {
  1072. name: "Gigantosaurus",
  1073. parents: ["dinosaur"]
  1074. },
  1075. "zorgoia": {
  1076. name: "Zorgoia",
  1077. parents: ["mammal"]
  1078. },
  1079. "monitor-lizard": {
  1080. name: "Monitor Lizard",
  1081. parents: ["lizard"]
  1082. },
  1083. "ziralkia": {
  1084. name: "Ziralkia",
  1085. parents: ["mammal"]
  1086. },
  1087. "kiiasi": {
  1088. name: "Kiiasi",
  1089. parents: ["animal"]
  1090. },
  1091. "synx": {
  1092. name: "Synx",
  1093. parents: ["monster"]
  1094. },
  1095. "panther": {
  1096. name: "Panther",
  1097. parents: ["cat"]
  1098. },
  1099. "azumarill": {
  1100. name: "Azumarill",
  1101. parents: ["pokemon"]
  1102. },
  1103. "river-snaptail": {
  1104. name: "River Snaptail",
  1105. parents: ["otter", "crocodile"]
  1106. },
  1107. "great-blue-heron": {
  1108. name: "Great Blue Heron",
  1109. parents: ["avian"]
  1110. },
  1111. "smeargle": {
  1112. name: "Smeargle",
  1113. parents: ["pokemon"]
  1114. },
  1115. "vendeilen": {
  1116. name: "Vendeilen",
  1117. parents: ["monster"]
  1118. },
  1119. "ventura": {
  1120. name: "Ventura",
  1121. parents: ["canine"]
  1122. },
  1123. "clouded-leopard": {
  1124. name: "Clouded Leopard",
  1125. parents: ["leopard"]
  1126. },
  1127. "argonian": {
  1128. name: "Argonian",
  1129. parents: ["lizard"]
  1130. },
  1131. "salazzle": {
  1132. name: "Salazzle",
  1133. parents: ["pokemon", "lizard"]
  1134. },
  1135. "je-stoff-drachen": {
  1136. name: "Je-Stoff Drachen",
  1137. parents: ["dragon"]
  1138. },
  1139. "finnish-spitz-dog": {
  1140. name: "Finnish Spitz Dog",
  1141. parents: ["dog"]
  1142. },
  1143. "gray-fox": {
  1144. name: "Gray Fox",
  1145. parents: ["fox"]
  1146. },
  1147. "opossum": {
  1148. name: "opossum",
  1149. parents: ["mammal"]
  1150. },
  1151. "antelope": {
  1152. name: "Antelope",
  1153. parents: ["mammal"]
  1154. },
  1155. "weavile": {
  1156. name: "Weavile",
  1157. parents: ["pokemon"]
  1158. },
  1159. "pikachu": {
  1160. name: "Pikachu",
  1161. parents: ["pokemon", "mouse"]
  1162. },
  1163. "grovyle": {
  1164. name: "Grovyle",
  1165. parents: ["pokemon", "plant"]
  1166. },
  1167. "sthara": {
  1168. name: "Sthara",
  1169. parents: ["snow-leopard", "reptile"]
  1170. },
  1171. "star-warrior": {
  1172. name: "Star Warrior",
  1173. parents: ["magical"]
  1174. },
  1175. "dragonoid": {
  1176. name: "Dragonoid",
  1177. parents: ["dragon"]
  1178. },
  1179. "suicune": {
  1180. name: "Suicune",
  1181. parents: ["pokemon"]
  1182. },
  1183. "vole": {
  1184. name: "Vole",
  1185. parents: ["mammal"]
  1186. },
  1187. "blaziken": {
  1188. name: "Blaziken",
  1189. parents: ["pokemon", "avian"]
  1190. },
  1191. "buizel": {
  1192. name: "Buizel",
  1193. parents: ["pokemon", "fish"]
  1194. },
  1195. "floatzel": {
  1196. name: "Floatzel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "umok": {
  1200. name: "Umok",
  1201. parents: ["avian"]
  1202. },
  1203. "sea-monster": {
  1204. name: "Sea Monster",
  1205. parents: ["monster", "fish"]
  1206. },
  1207. "egyptian-vulture": {
  1208. name: "Egyptian Vulture",
  1209. parents: ["avian"]
  1210. },
  1211. "doberman": {
  1212. name: "Doberman",
  1213. parents: ["dog"]
  1214. },
  1215. "zangoose": {
  1216. name: "Zangoose",
  1217. parents: ["pokemon", "mongoose"]
  1218. },
  1219. "mongoose": {
  1220. name: "Mongoose",
  1221. parents: ["mammal"]
  1222. },
  1223. "wickerbeast": {
  1224. name: "Wickerbeast",
  1225. parents: ["monster"]
  1226. },
  1227. "zenari": {
  1228. name: "Zenari",
  1229. parents: ["lizard"]
  1230. },
  1231. "plant": {
  1232. name: "Plant",
  1233. parents: []
  1234. },
  1235. "raskatox": {
  1236. name: "Raskatox",
  1237. parents: ["raccoon", "skunk", "cat", "fox"]
  1238. },
  1239. "mikromare": {
  1240. name: "mikromare",
  1241. parents: ["alien"]
  1242. },
  1243. "alien": {
  1244. name: "Alien",
  1245. parents: ["animal"]
  1246. },
  1247. "deity": {
  1248. name: "Deity",
  1249. parents: []
  1250. },
  1251. "skarlan": {
  1252. name: "Skarlan",
  1253. parents: ["slug", "dragon"]
  1254. },
  1255. "slug": {
  1256. name: "Slug",
  1257. parents: ["mollusk"]
  1258. },
  1259. "mollusk": {
  1260. name: "Mollusk",
  1261. parents: ["animal"]
  1262. },
  1263. "chimera": {
  1264. name: "Chimera",
  1265. parents: ["monster"]
  1266. },
  1267. "gestalt": {
  1268. name: "Gestalt",
  1269. parents: ["construct"]
  1270. },
  1271. "mimic": {
  1272. name: "Mimic",
  1273. parents: ["monster"]
  1274. },
  1275. "calico-rat": {
  1276. name: "Calico Rat",
  1277. parents: ["rat"]
  1278. },
  1279. "panda": {
  1280. name: "Panda",
  1281. parents: ["mammal"]
  1282. },
  1283. "oni": {
  1284. name: "Oni",
  1285. parents: ["monster"]
  1286. },
  1287. "pegasus": {
  1288. name: "Pegasus",
  1289. parents: ["horse"]
  1290. },
  1291. "vulpera": {
  1292. name: "Vulpera",
  1293. parents: ["fennec-fox"]
  1294. },
  1295. "ceratosaurus": {
  1296. name: "Ceratosaurus",
  1297. parents: ["dinosaur"]
  1298. },
  1299. "nykur": {
  1300. name: "Nykur",
  1301. parents: ["horse", "monster"]
  1302. },
  1303. "giraffe": {
  1304. name: "Giraffe",
  1305. parents: ["mammal"]
  1306. },
  1307. "tauren": {
  1308. name: "Tauren",
  1309. parents: ["cow"]
  1310. },
  1311. "draconi": {
  1312. name: "Draconi",
  1313. parents: ["alien", "cat", "cyborg"]
  1314. },
  1315. "dire-wolf": {
  1316. name: "Dire Wolf",
  1317. parents: ["wolf"]
  1318. },
  1319. "ferromorph": {
  1320. name: "Ferromorph",
  1321. parents: ["construct"]
  1322. },
  1323. "meowth": {
  1324. name: "Meowth",
  1325. parents: ["cat", "pokemon"]
  1326. },
  1327. "pavodragon": {
  1328. name: "Pavodragon",
  1329. parents: ["dragon"]
  1330. },
  1331. "aaltranae": {
  1332. name: "Aaltranae",
  1333. parents: ["dragon"]
  1334. },
  1335. "cyborg": {
  1336. name: "Cyborg",
  1337. parents: ["machine"]
  1338. },
  1339. "draptor": {
  1340. name: "Draptor",
  1341. parents: ["dragon"]
  1342. },
  1343. "candy": {
  1344. name: "Candy",
  1345. parents: []
  1346. },
  1347. "drenath": {
  1348. name: "Drenath",
  1349. parents: ["dragon", "snake", "rabbit"]
  1350. },
  1351. "coyju": {
  1352. name: "Coyju",
  1353. parents: ["coyote", "kaiju"]
  1354. },
  1355. "kaiju": {
  1356. name: "Kaiju",
  1357. parents: ["monster"]
  1358. },
  1359. "nickit": {
  1360. name: "Nickit",
  1361. parents: ["pokemon", "cat"]
  1362. },
  1363. "lopunny": {
  1364. name: "Lopunny",
  1365. parents: ["pokemon", "rabbit"]
  1366. },
  1367. "korean-jindo-dog": {
  1368. name: "Korean Jindo Dog",
  1369. parents: ["dog"]
  1370. },
  1371. "naga": {
  1372. name: "Naga",
  1373. parents: ["snake", "monster"]
  1374. },
  1375. "undead": {
  1376. name: "Undead",
  1377. parents: ["monster"]
  1378. },
  1379. "whale": {
  1380. name: "Whale",
  1381. parents: ["fish"]
  1382. },
  1383. "gelato-bee": {
  1384. name: "Gelato Bee",
  1385. parents: ["bee"]
  1386. },
  1387. "bee": {
  1388. name: "Bee",
  1389. parents: ["insect"]
  1390. },
  1391. "gardevoir": {
  1392. name: "Gardevoir",
  1393. parents: ["pokemon"]
  1394. },
  1395. "ant": {
  1396. name: "Ant",
  1397. parents: ["insect"]
  1398. },
  1399. "frog": {
  1400. name: "Frog",
  1401. parents: ["amphibian"]
  1402. },
  1403. "amphibian": {
  1404. name: "Amphibian",
  1405. parents: ["animal"]
  1406. },
  1407. "pangolin": {
  1408. name: "Pangolin",
  1409. parents: ["mammal"]
  1410. },
  1411. "uragi'viidorn": {
  1412. name: "Uragi'viidorn",
  1413. parents: ["avian", "bear"]
  1414. },
  1415. "gryphdelphais": {
  1416. name: "Gryphdelphais",
  1417. parents: ["dolphin", "gryphon"]
  1418. },
  1419. "plush": {
  1420. name: "Plush",
  1421. parents: ["construct"]
  1422. },
  1423. "draiger": {
  1424. name: "Draiger",
  1425. parents: ["dragon","tiger"]
  1426. },
  1427. "foxsky": {
  1428. name: "Foxsky",
  1429. parents: ["fox", "husky"]
  1430. },
  1431. "umbreon": {
  1432. name: "Umbreon",
  1433. parents: ["eeveelution"]
  1434. },
  1435. "slime-dragon": {
  1436. name: "Slime Dragon",
  1437. parents: ["dragon"]
  1438. },
  1439. "enderman": {
  1440. name: "Enderman",
  1441. parents: ["monster"]
  1442. },
  1443. "gremlin": {
  1444. name: "Gremlin",
  1445. parents: ["monster"]
  1446. },
  1447. "dragonsune": {
  1448. name: "Dragonsune",
  1449. parents: ["dragon", "kitsune"]
  1450. },
  1451. "ghost": {
  1452. name: "Ghost",
  1453. parents: ["monster"]
  1454. },
  1455. "false-vampire-bat": {
  1456. name: "False Vampire Bat",
  1457. parents: ["bat"]
  1458. },
  1459. "succubus": {
  1460. name: "Succubus",
  1461. parents: ["demon"]
  1462. },
  1463. "mia": {
  1464. name: "Mia",
  1465. parents: ["canine"]
  1466. },
  1467. "rainbow": {
  1468. name: "Rainbow",
  1469. parents: ["monster"]
  1470. },
  1471. "solgaleo": {
  1472. name: "Solgaleo",
  1473. parents: ["pokemon"]
  1474. },
  1475. "lucent-nargacuga": {
  1476. name: "Lucent Nargacuga",
  1477. parents: ["monster-hunter"]
  1478. },
  1479. "monster-hunter": {
  1480. name: "Monster Hunter",
  1481. parents: ["monster"]
  1482. },
  1483. "leviathan": {
  1484. "name": "Leviathan",
  1485. "url": "sea-monster"
  1486. },
  1487. "bull": {
  1488. name: "Bull",
  1489. parents: ["mammal"]
  1490. },
  1491. "tanuki": {
  1492. name: "Tanuki",
  1493. parents: ["monster"]
  1494. },
  1495. "chakat": {
  1496. name: "Chakat",
  1497. parents: ["cat"]
  1498. },
  1499. "hydra": {
  1500. name: "Hydra",
  1501. parents: ["monster"]
  1502. },
  1503. "zigzagoon": {
  1504. name: "Zigzagoon",
  1505. parents: ["raccoon", "pokemon"]
  1506. },
  1507. "vulture": {
  1508. name: "Vulture",
  1509. parents: ["avian"]
  1510. },
  1511. "eastern-dragon": {
  1512. name: "Eastern Dragon",
  1513. parents: ["dragon"]
  1514. },
  1515. "gryffon": {
  1516. name: "Gryffon",
  1517. parents: ["phoenix", "red-panda"]
  1518. },
  1519. "amtsvane": {
  1520. name: "Amtsvane",
  1521. parents: ["reptile"]
  1522. },
  1523. "kigavi": {
  1524. name: "Kigavi",
  1525. parents: ["avian"]
  1526. },
  1527. "turian": {
  1528. name: "Turian",
  1529. parents: ["avian"]
  1530. },
  1531. "zeraora": {
  1532. name: "Zeraora",
  1533. parents: ["pokemon"]
  1534. },
  1535. "sandshrew": {
  1536. name: "Sandshrew",
  1537. parents: ["pokemon", "pangolin"]
  1538. },
  1539. "valais-blacknose-sheep": {
  1540. name: "Valais Blacknose Sheep",
  1541. parents: ["sheep"]
  1542. },
  1543. "novaleit": {
  1544. name: "Novaleit",
  1545. parents: ["mammal"]
  1546. },
  1547. "dunnoh": {
  1548. name: "Dunnoh",
  1549. parents: ["mammal"]
  1550. },
  1551. "lunaral-dragon": {
  1552. name: "Lunaral Dragon",
  1553. parents: ["dragon"]
  1554. },
  1555. "arctic-wolf": {
  1556. name: "Arctic Wolf",
  1557. parents: ["wolf"]
  1558. },
  1559. "donkey": {
  1560. name: "Donkey",
  1561. parents: ["horse"]
  1562. },
  1563. "chinchilla": {
  1564. name: "Chinchilla",
  1565. parents: ["rodent"]
  1566. },
  1567. "felkin": {
  1568. name: "Felkin",
  1569. parents: ["dragon"]
  1570. },
  1571. "tykeriel": {
  1572. name: "Tykeriel",
  1573. parents: ["avian"]
  1574. },
  1575. }
  1576. //species
  1577. function getSpeciesInfo(speciesList) {
  1578. let result = new Set();
  1579. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1580. result.add(entry)
  1581. });
  1582. return Array.from(result);
  1583. };
  1584. function getSpeciesInfoHelper(species) {
  1585. if (!speciesData[species]) {
  1586. console.warn(species + " doesn't exist");
  1587. return [];
  1588. }
  1589. if (speciesData[species].parents) {
  1590. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1591. } else {
  1592. return [species];
  1593. }
  1594. }
  1595. characterMakers.push(() => makeCharacter(
  1596. {
  1597. name: "Fen",
  1598. species: ["crux"],
  1599. description: {
  1600. title: "Bio",
  1601. text: "Very furry. Sheds on everything."
  1602. },
  1603. tags: [
  1604. "anthro",
  1605. "goo"
  1606. ]
  1607. },
  1608. {
  1609. back: {
  1610. height: math.unit(2.2428, "meter"),
  1611. weight: math.unit(124.738, "kg"),
  1612. name: "Back",
  1613. image: {
  1614. source: "./media/characters/fen/back.svg",
  1615. extra: 2024 / 1867,
  1616. bottom: 13 / 2037
  1617. },
  1618. info: {
  1619. description: {
  1620. mode: "append",
  1621. text: "\n\nHe is not currently looking at you."
  1622. }
  1623. }
  1624. },
  1625. full: {
  1626. height: math.unit(1.34, "meter"),
  1627. weight: math.unit(225, "kg"),
  1628. name: "Full",
  1629. image: {
  1630. source: "./media/characters/fen/full.svg"
  1631. },
  1632. info: {
  1633. description: {
  1634. mode: "append",
  1635. text: "\n\nMunch."
  1636. }
  1637. }
  1638. },
  1639. kneeling: {
  1640. height: math.unit(5.4, "feet"),
  1641. weight: math.unit(124.738, "kg"),
  1642. name: "Kneeling",
  1643. image: {
  1644. source: "./media/characters/fen/kneeling.svg",
  1645. extra: 563 / 507
  1646. }
  1647. },
  1648. goo: {
  1649. height: math.unit(2.8, "feet"),
  1650. weight: math.unit(125, "kg"),
  1651. capacity: math.unit(1, "people"),
  1652. name: "Goo",
  1653. image: {
  1654. source: "./media/characters/fen/goo.svg",
  1655. bottom: 116 / 613
  1656. }
  1657. },
  1658. lounging: {
  1659. height: math.unit(6.5, "feet"),
  1660. weight: math.unit(125, "kg"),
  1661. name: "Lounging",
  1662. image: {
  1663. source: "./media/characters/fen/lounging.svg"
  1664. }
  1665. },
  1666. },
  1667. [
  1668. {
  1669. name: "Normal",
  1670. height: math.unit(2.2428, "meter")
  1671. },
  1672. {
  1673. name: "Big",
  1674. height: math.unit(12, "feet")
  1675. },
  1676. {
  1677. name: "Minimacro",
  1678. height: math.unit(40, "feet"),
  1679. default: true,
  1680. info: {
  1681. description: {
  1682. mode: "append",
  1683. text: "\n\nTOO DAMN BIG"
  1684. }
  1685. }
  1686. },
  1687. {
  1688. name: "Macro",
  1689. height: math.unit(100, "feet"),
  1690. info: {
  1691. description: {
  1692. mode: "append",
  1693. text: "\n\nTOO DAMN BIG"
  1694. }
  1695. }
  1696. },
  1697. {
  1698. name: "Macro+",
  1699. height: math.unit(300, "feet")
  1700. },
  1701. {
  1702. name: "Megamacro",
  1703. height: math.unit(2, "miles")
  1704. }
  1705. ]
  1706. ))
  1707. characterMakers.push(() => makeCharacter(
  1708. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1709. {
  1710. front: {
  1711. height: math.unit(183, "cm"),
  1712. weight: math.unit(80, "kg"),
  1713. name: "Front",
  1714. image: {
  1715. source: "./media/characters/sofia-fluttertail/front.svg",
  1716. bottom: 0.01,
  1717. extra: 2154 / 2081
  1718. }
  1719. },
  1720. frontAlt: {
  1721. height: math.unit(183, "cm"),
  1722. weight: math.unit(80, "kg"),
  1723. name: "Front (alt)",
  1724. image: {
  1725. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1726. }
  1727. },
  1728. back: {
  1729. height: math.unit(183, "cm"),
  1730. weight: math.unit(80, "kg"),
  1731. name: "Back",
  1732. image: {
  1733. source: "./media/characters/sofia-fluttertail/back.svg"
  1734. }
  1735. },
  1736. kneeling: {
  1737. height: math.unit(125, "cm"),
  1738. weight: math.unit(80, "kg"),
  1739. name: "Kneeling",
  1740. image: {
  1741. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1742. extra: 1033 / 977,
  1743. bottom: 23.7 / 1057
  1744. }
  1745. },
  1746. maw: {
  1747. height: math.unit(183 / 5, "cm"),
  1748. name: "Maw",
  1749. image: {
  1750. source: "./media/characters/sofia-fluttertail/maw.svg"
  1751. }
  1752. },
  1753. mawcloseup: {
  1754. height: math.unit(183 / 5 * 0.41, "cm"),
  1755. name: "Maw (Closeup)",
  1756. image: {
  1757. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1758. }
  1759. },
  1760. paws: {
  1761. height: math.unit(1.17, "feet"),
  1762. name: "Paws",
  1763. image: {
  1764. source: "./media/characters/sofia-fluttertail/paws.svg",
  1765. extra: 851 / 851,
  1766. bottom: 17 / 868
  1767. }
  1768. },
  1769. },
  1770. [
  1771. {
  1772. name: "Normal",
  1773. height: math.unit(1.83, "meter")
  1774. },
  1775. {
  1776. name: "Size Thief",
  1777. height: math.unit(18, "feet")
  1778. },
  1779. {
  1780. name: "50 Foot Collie",
  1781. height: math.unit(50, "feet")
  1782. },
  1783. {
  1784. name: "Macro",
  1785. height: math.unit(96, "feet"),
  1786. default: true
  1787. },
  1788. {
  1789. name: "Megamerger",
  1790. height: math.unit(650, "feet")
  1791. },
  1792. ]
  1793. ))
  1794. characterMakers.push(() => makeCharacter(
  1795. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1796. {
  1797. front: {
  1798. height: math.unit(7, "feet"),
  1799. weight: math.unit(100, "kg"),
  1800. name: "Front",
  1801. image: {
  1802. source: "./media/characters/march/front.svg",
  1803. extra: 1,
  1804. bottom: 0.015
  1805. }
  1806. },
  1807. foot: {
  1808. height: math.unit(0.9, "feet"),
  1809. name: "Foot",
  1810. image: {
  1811. source: "./media/characters/march/foot.svg"
  1812. }
  1813. },
  1814. },
  1815. [
  1816. {
  1817. name: "Normal",
  1818. height: math.unit(7.9, "feet")
  1819. },
  1820. {
  1821. name: "Macro",
  1822. height: math.unit(220, "meters")
  1823. },
  1824. {
  1825. name: "Megamacro",
  1826. height: math.unit(2.98, "km"),
  1827. default: true
  1828. },
  1829. {
  1830. name: "Gigamacro",
  1831. height: math.unit(15963, "km")
  1832. },
  1833. {
  1834. name: "Teramacro",
  1835. height: math.unit(2980000000, "km")
  1836. },
  1837. {
  1838. name: "Examacro",
  1839. height: math.unit(250, "parsecs")
  1840. },
  1841. ]
  1842. ))
  1843. characterMakers.push(() => makeCharacter(
  1844. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1845. {
  1846. front: {
  1847. height: math.unit(6, "feet"),
  1848. weight: math.unit(60, "kg"),
  1849. name: "Front",
  1850. image: {
  1851. source: "./media/characters/noir/front.svg",
  1852. extra: 1,
  1853. bottom: 0.032
  1854. }
  1855. },
  1856. },
  1857. [
  1858. {
  1859. name: "Normal",
  1860. height: math.unit(6.6, "feet")
  1861. },
  1862. {
  1863. name: "Macro",
  1864. height: math.unit(500, "feet")
  1865. },
  1866. {
  1867. name: "Megamacro",
  1868. height: math.unit(2.5, "km"),
  1869. default: true
  1870. },
  1871. {
  1872. name: "Gigamacro",
  1873. height: math.unit(22500, "km")
  1874. },
  1875. {
  1876. name: "Teramacro",
  1877. height: math.unit(2500000000, "km")
  1878. },
  1879. {
  1880. name: "Examacro",
  1881. height: math.unit(200, "parsecs")
  1882. },
  1883. ]
  1884. ))
  1885. characterMakers.push(() => makeCharacter(
  1886. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1887. {
  1888. front: {
  1889. height: math.unit(7, "feet"),
  1890. weight: math.unit(100, "kg"),
  1891. name: "Front",
  1892. image: {
  1893. source: "./media/characters/okuri/front.svg",
  1894. extra: 1,
  1895. bottom: 0.037
  1896. }
  1897. },
  1898. back: {
  1899. height: math.unit(7, "feet"),
  1900. weight: math.unit(100, "kg"),
  1901. name: "Back",
  1902. image: {
  1903. source: "./media/characters/okuri/back.svg",
  1904. extra: 1,
  1905. bottom: 0.007
  1906. }
  1907. },
  1908. },
  1909. [
  1910. {
  1911. name: "Megamacro",
  1912. height: math.unit(100, "miles"),
  1913. default: true
  1914. },
  1915. ]
  1916. ))
  1917. characterMakers.push(() => makeCharacter(
  1918. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1919. {
  1920. front: {
  1921. height: math.unit(7, "feet"),
  1922. weight: math.unit(100, "kg"),
  1923. name: "Front",
  1924. image: {
  1925. source: "./media/characters/manny/front.svg",
  1926. extra: 1,
  1927. bottom: 0.06
  1928. }
  1929. },
  1930. back: {
  1931. height: math.unit(7, "feet"),
  1932. weight: math.unit(100, "kg"),
  1933. name: "Back",
  1934. image: {
  1935. source: "./media/characters/manny/back.svg",
  1936. extra: 1,
  1937. bottom: 0.014
  1938. }
  1939. },
  1940. },
  1941. [
  1942. {
  1943. name: "Normal",
  1944. height: math.unit(7, "feet"),
  1945. },
  1946. {
  1947. name: "Macro",
  1948. height: math.unit(78, "feet"),
  1949. default: true
  1950. },
  1951. {
  1952. name: "Macro+",
  1953. height: math.unit(300, "meters")
  1954. },
  1955. {
  1956. name: "Macro++",
  1957. height: math.unit(2400, "meters")
  1958. },
  1959. {
  1960. name: "Megamacro",
  1961. height: math.unit(5167, "meters")
  1962. },
  1963. {
  1964. name: "Gigamacro",
  1965. height: math.unit(41769, "miles")
  1966. },
  1967. ]
  1968. ))
  1969. characterMakers.push(() => makeCharacter(
  1970. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1971. {
  1972. front: {
  1973. height: math.unit(7, "feet"),
  1974. weight: math.unit(100, "kg"),
  1975. name: "Front",
  1976. image: {
  1977. source: "./media/characters/adake/front-1.svg"
  1978. }
  1979. },
  1980. frontAlt: {
  1981. height: math.unit(7, "feet"),
  1982. weight: math.unit(100, "kg"),
  1983. name: "Front (Alt)",
  1984. image: {
  1985. source: "./media/characters/adake/front-2.svg",
  1986. extra: 1,
  1987. bottom: 0.01
  1988. }
  1989. },
  1990. back: {
  1991. height: math.unit(7, "feet"),
  1992. weight: math.unit(100, "kg"),
  1993. name: "Back",
  1994. image: {
  1995. source: "./media/characters/adake/back.svg",
  1996. }
  1997. },
  1998. kneel: {
  1999. height: math.unit(5.385, "feet"),
  2000. weight: math.unit(100, "kg"),
  2001. name: "Kneeling",
  2002. image: {
  2003. source: "./media/characters/adake/kneel.svg",
  2004. bottom: 0.052
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Normal",
  2011. height: math.unit(7, "feet"),
  2012. },
  2013. {
  2014. name: "Macro",
  2015. height: math.unit(78, "feet"),
  2016. default: true
  2017. },
  2018. {
  2019. name: "Macro+",
  2020. height: math.unit(300, "meters")
  2021. },
  2022. {
  2023. name: "Macro++",
  2024. height: math.unit(2400, "meters")
  2025. },
  2026. {
  2027. name: "Megamacro",
  2028. height: math.unit(5167, "meters")
  2029. },
  2030. {
  2031. name: "Gigamacro",
  2032. height: math.unit(41769, "miles")
  2033. },
  2034. ]
  2035. ))
  2036. characterMakers.push(() => makeCharacter(
  2037. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2038. {
  2039. front: {
  2040. height: math.unit(1.65, "meters"),
  2041. weight: math.unit(50, "kg"),
  2042. name: "Front",
  2043. image: {
  2044. source: "./media/characters/elijah/front.svg",
  2045. extra: 858 / 830,
  2046. bottom: 95.5 / 953.8559
  2047. }
  2048. },
  2049. back: {
  2050. height: math.unit(1.65, "meters"),
  2051. weight: math.unit(50, "kg"),
  2052. name: "Back",
  2053. image: {
  2054. source: "./media/characters/elijah/back.svg",
  2055. extra: 895 / 850,
  2056. bottom: 5.3 / 897.956
  2057. }
  2058. },
  2059. frontNsfw: {
  2060. height: math.unit(1.65, "meters"),
  2061. weight: math.unit(50, "kg"),
  2062. name: "Front (NSFW)",
  2063. image: {
  2064. source: "./media/characters/elijah/front-nsfw.svg",
  2065. extra: 858 / 830,
  2066. bottom: 95.5 / 953.8559
  2067. }
  2068. },
  2069. backNsfw: {
  2070. height: math.unit(1.65, "meters"),
  2071. weight: math.unit(50, "kg"),
  2072. name: "Back (NSFW)",
  2073. image: {
  2074. source: "./media/characters/elijah/back-nsfw.svg",
  2075. extra: 895 / 850,
  2076. bottom: 5.3 / 897.956
  2077. }
  2078. },
  2079. dick: {
  2080. height: math.unit(1, "feet"),
  2081. name: "Dick",
  2082. image: {
  2083. source: "./media/characters/elijah/dick.svg"
  2084. }
  2085. },
  2086. beakOpen: {
  2087. height: math.unit(1.25, "feet"),
  2088. name: "Beak (Open)",
  2089. image: {
  2090. source: "./media/characters/elijah/beak-open.svg"
  2091. }
  2092. },
  2093. beakShut: {
  2094. height: math.unit(1.25, "feet"),
  2095. name: "Beak (Shut)",
  2096. image: {
  2097. source: "./media/characters/elijah/beak-shut.svg"
  2098. }
  2099. },
  2100. footFlexing: {
  2101. height: math.unit(1.61, "feet"),
  2102. name: "Foot (Flexing)",
  2103. image: {
  2104. source: "./media/characters/elijah/foot-flexing.svg"
  2105. }
  2106. },
  2107. footStepping: {
  2108. height: math.unit(1.44, "feet"),
  2109. name: "Foot (Stepping)",
  2110. image: {
  2111. source: "./media/characters/elijah/foot-stepping.svg"
  2112. }
  2113. },
  2114. plantigradeLeg: {
  2115. height: math.unit(2.34, "feet"),
  2116. name: "Plantigrade Leg",
  2117. image: {
  2118. source: "./media/characters/elijah/plantigrade-leg.svg"
  2119. }
  2120. },
  2121. plantigradeFootLeft: {
  2122. height: math.unit(0.9, "feet"),
  2123. name: "Plantigrade Foot (Left)",
  2124. image: {
  2125. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2126. }
  2127. },
  2128. plantigradeFootRight: {
  2129. height: math.unit(0.9, "feet"),
  2130. name: "Plantigrade Foot (Right)",
  2131. image: {
  2132. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2133. }
  2134. },
  2135. },
  2136. [
  2137. {
  2138. name: "Normal",
  2139. height: math.unit(1.65, "meters")
  2140. },
  2141. {
  2142. name: "Macro",
  2143. height: math.unit(55, "meters"),
  2144. default: true
  2145. },
  2146. {
  2147. name: "Macro+",
  2148. height: math.unit(105, "meters")
  2149. },
  2150. ]
  2151. ))
  2152. characterMakers.push(() => makeCharacter(
  2153. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2154. {
  2155. front: {
  2156. height: math.unit(11, "feet"),
  2157. weight: math.unit(80, "kg"),
  2158. name: "Front",
  2159. image: {
  2160. source: "./media/characters/rai/front.svg",
  2161. extra: 1,
  2162. bottom: 0.03
  2163. }
  2164. },
  2165. side: {
  2166. height: math.unit(11, "feet"),
  2167. weight: math.unit(80, "kg"),
  2168. name: "Side",
  2169. image: {
  2170. source: "./media/characters/rai/side.svg"
  2171. }
  2172. },
  2173. back: {
  2174. height: math.unit(11, "feet"),
  2175. weight: math.unit(80, "lb"),
  2176. name: "Back",
  2177. image: {
  2178. source: "./media/characters/rai/back.svg",
  2179. extra: 1,
  2180. bottom: 0.01
  2181. }
  2182. },
  2183. feral: {
  2184. height: math.unit(11, "feet"),
  2185. weight: math.unit(800, "lb"),
  2186. name: "Feral",
  2187. image: {
  2188. source: "./media/characters/rai/feral.svg",
  2189. extra: 1050 / 659,
  2190. bottom: 0.07
  2191. }
  2192. },
  2193. dragon: {
  2194. height: math.unit(23, "feet"),
  2195. weight: math.unit(50000, "lb"),
  2196. name: "Dragon",
  2197. image: {
  2198. source: "./media/characters/rai/dragon.svg",
  2199. extra: 2498 / 2030,
  2200. bottom: 85.2 / 2584
  2201. }
  2202. },
  2203. maw: {
  2204. height: math.unit(6 / 3.81416, "feet"),
  2205. name: "Maw",
  2206. image: {
  2207. source: "./media/characters/rai/maw.svg"
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Normal",
  2214. height: math.unit(11, "feet")
  2215. },
  2216. {
  2217. name: "Macro",
  2218. height: math.unit(302, "feet"),
  2219. default: true
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2225. {
  2226. frontDressed: {
  2227. height: math.unit(216, "feet"),
  2228. weight: math.unit(7000000, "lb"),
  2229. name: "Front (Dressed)",
  2230. image: {
  2231. source: "./media/characters/jazzy/front-dressed.svg",
  2232. extra: 2738 / 2651,
  2233. bottom: 41.8 / 2786
  2234. }
  2235. },
  2236. backDressed: {
  2237. height: math.unit(216, "feet"),
  2238. weight: math.unit(7000000, "lb"),
  2239. name: "Back (Dressed)",
  2240. image: {
  2241. source: "./media/characters/jazzy/back-dressed.svg",
  2242. extra: 2775 / 2673,
  2243. bottom: 36.8 / 2817
  2244. }
  2245. },
  2246. front: {
  2247. height: math.unit(216, "feet"),
  2248. weight: math.unit(7000000, "lb"),
  2249. name: "Front",
  2250. image: {
  2251. source: "./media/characters/jazzy/front.svg",
  2252. extra: 2738 / 2651,
  2253. bottom: 41.8 / 2786
  2254. }
  2255. },
  2256. back: {
  2257. height: math.unit(216, "feet"),
  2258. weight: math.unit(7000000, "lb"),
  2259. name: "Back",
  2260. image: {
  2261. source: "./media/characters/jazzy/back.svg",
  2262. extra: 2775 / 2673,
  2263. bottom: 36.8 / 2817
  2264. }
  2265. },
  2266. maw: {
  2267. height: math.unit(20, "feet"),
  2268. name: "Maw",
  2269. image: {
  2270. source: "./media/characters/jazzy/maw.svg"
  2271. }
  2272. },
  2273. paws: {
  2274. height: math.unit(27.5, "feet"),
  2275. name: "Paws",
  2276. image: {
  2277. source: "./media/characters/jazzy/paws.svg"
  2278. }
  2279. },
  2280. eye: {
  2281. height: math.unit(4.4, "feet"),
  2282. name: "Eye",
  2283. image: {
  2284. source: "./media/characters/jazzy/eye.svg"
  2285. }
  2286. },
  2287. droneOffense: {
  2288. height: math.unit(9.5, "inches"),
  2289. name: "Drone (Offense)",
  2290. image: {
  2291. source: "./media/characters/jazzy/drone-offense.svg"
  2292. }
  2293. },
  2294. droneRecon: {
  2295. height: math.unit(9.5, "inches"),
  2296. name: "Drone (Recon)",
  2297. image: {
  2298. source: "./media/characters/jazzy/drone-recon.svg"
  2299. }
  2300. },
  2301. droneDefense: {
  2302. height: math.unit(9.5, "inches"),
  2303. name: "Drone (Defense)",
  2304. image: {
  2305. source: "./media/characters/jazzy/drone-defense.svg"
  2306. }
  2307. },
  2308. },
  2309. [
  2310. {
  2311. name: "Macro",
  2312. height: math.unit(216, "feet"),
  2313. default: true
  2314. },
  2315. ]
  2316. ))
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2319. {
  2320. front: {
  2321. height: math.unit(9 + 6/12, "feet"),
  2322. weight: math.unit(700, "lb"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/flamm/front.svg",
  2326. extra: 1751/1632,
  2327. bottom: 46/1797
  2328. }
  2329. },
  2330. buff: {
  2331. height: math.unit(9 + 6/12, "feet"),
  2332. weight: math.unit(950, "lb"),
  2333. name: "Buff",
  2334. image: {
  2335. source: "./media/characters/flamm/buff.svg",
  2336. extra: 3018/2874,
  2337. bottom: 221/3239
  2338. }
  2339. },
  2340. },
  2341. [
  2342. {
  2343. name: "Normal",
  2344. height: math.unit(9.5, "feet")
  2345. },
  2346. {
  2347. name: "Macro",
  2348. height: math.unit(200, "feet"),
  2349. default: true
  2350. },
  2351. ]
  2352. ))
  2353. characterMakers.push(() => makeCharacter(
  2354. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2355. {
  2356. front: {
  2357. height: math.unit(5 + 3/12, "feet"),
  2358. weight: math.unit(60, "kg"),
  2359. name: "Front",
  2360. image: {
  2361. source: "./media/characters/zephiro/front.svg",
  2362. extra: 2309 / 2162,
  2363. bottom: 0.069
  2364. }
  2365. },
  2366. side: {
  2367. height: math.unit(5 + 3/12, "feet"),
  2368. weight: math.unit(60, "kg"),
  2369. name: "Side",
  2370. image: {
  2371. source: "./media/characters/zephiro/side.svg",
  2372. extra: 2403 / 2279,
  2373. bottom: 0.015
  2374. }
  2375. },
  2376. back: {
  2377. height: math.unit(5 + 3/12, "feet"),
  2378. weight: math.unit(60, "kg"),
  2379. name: "Back",
  2380. image: {
  2381. source: "./media/characters/zephiro/back.svg",
  2382. extra: 2373 / 2244,
  2383. bottom: 0.013
  2384. }
  2385. },
  2386. hand: {
  2387. height: math.unit(0.68, "feet"),
  2388. name: "Hand",
  2389. image: {
  2390. source: "./media/characters/zephiro/hand.svg"
  2391. }
  2392. },
  2393. paw: {
  2394. height: math.unit(1, "feet"),
  2395. name: "Paw",
  2396. image: {
  2397. source: "./media/characters/zephiro/paw.svg"
  2398. }
  2399. },
  2400. beans: {
  2401. height: math.unit(0.93, "feet"),
  2402. name: "Beans",
  2403. image: {
  2404. source: "./media/characters/zephiro/beans.svg"
  2405. }
  2406. },
  2407. },
  2408. [
  2409. {
  2410. name: "Micro",
  2411. height: math.unit(3, "inches")
  2412. },
  2413. {
  2414. name: "Normal",
  2415. height: math.unit(5 + 3 / 12, "feet"),
  2416. default: true
  2417. },
  2418. {
  2419. name: "Macro",
  2420. height: math.unit(118, "feet")
  2421. },
  2422. ]
  2423. ))
  2424. characterMakers.push(() => makeCharacter(
  2425. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2426. {
  2427. front: {
  2428. height: math.unit(5, "feet"),
  2429. weight: math.unit(90, "kg"),
  2430. name: "Front",
  2431. image: {
  2432. source: "./media/characters/fory/front.svg",
  2433. extra: 2862 / 2674,
  2434. bottom: 180 / 3043.8
  2435. }
  2436. },
  2437. back: {
  2438. height: math.unit(5, "feet"),
  2439. weight: math.unit(90, "kg"),
  2440. name: "Back",
  2441. image: {
  2442. source: "./media/characters/fory/back.svg",
  2443. extra: 2962 / 2791,
  2444. bottom: 106 / 3071.8
  2445. }
  2446. },
  2447. foot: {
  2448. height: math.unit(2.14, "feet"),
  2449. name: "Foot",
  2450. image: {
  2451. source: "./media/characters/fory/foot.svg"
  2452. }
  2453. },
  2454. },
  2455. [
  2456. {
  2457. name: "Normal",
  2458. height: math.unit(5, "feet")
  2459. },
  2460. {
  2461. name: "Macro",
  2462. height: math.unit(50, "feet"),
  2463. default: true
  2464. },
  2465. {
  2466. name: "Megamacro",
  2467. height: math.unit(10, "miles")
  2468. },
  2469. {
  2470. name: "Gigamacro",
  2471. height: math.unit(5, "earths")
  2472. },
  2473. ]
  2474. ))
  2475. characterMakers.push(() => makeCharacter(
  2476. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2477. {
  2478. front: {
  2479. height: math.unit(7, "feet"),
  2480. weight: math.unit(90, "kg"),
  2481. name: "Front",
  2482. image: {
  2483. source: "./media/characters/kurrikage/front.svg",
  2484. extra: 1,
  2485. bottom: 0.035
  2486. }
  2487. },
  2488. back: {
  2489. height: math.unit(7, "feet"),
  2490. weight: math.unit(90, "lb"),
  2491. name: "Back",
  2492. image: {
  2493. source: "./media/characters/kurrikage/back.svg"
  2494. }
  2495. },
  2496. paw: {
  2497. height: math.unit(1.5, "feet"),
  2498. name: "Paw",
  2499. image: {
  2500. source: "./media/characters/kurrikage/paw.svg"
  2501. }
  2502. },
  2503. staff: {
  2504. height: math.unit(6.7, "feet"),
  2505. name: "Staff",
  2506. image: {
  2507. source: "./media/characters/kurrikage/staff.svg"
  2508. }
  2509. },
  2510. peek: {
  2511. height: math.unit(1.05, "feet"),
  2512. name: "Peeking",
  2513. image: {
  2514. source: "./media/characters/kurrikage/peek.svg",
  2515. bottom: 0.08
  2516. }
  2517. },
  2518. },
  2519. [
  2520. {
  2521. name: "Normal",
  2522. height: math.unit(12, "feet"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Big",
  2527. height: math.unit(20, "feet")
  2528. },
  2529. {
  2530. name: "Macro",
  2531. height: math.unit(500, "feet")
  2532. },
  2533. {
  2534. name: "Megamacro",
  2535. height: math.unit(20, "miles")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(6, "feet"),
  2544. weight: math.unit(75, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/shingo/front.svg",
  2548. extra: 706/681,
  2549. bottom: 11/717
  2550. }
  2551. },
  2552. frontAlt: {
  2553. height: math.unit(6, "feet"),
  2554. weight: math.unit(75, "kg"),
  2555. name: "Front (Alt)",
  2556. image: {
  2557. source: "./media/characters/shingo/front-alt.svg",
  2558. extra: 3511 / 3338,
  2559. bottom: 0.005
  2560. }
  2561. },
  2562. paw: {
  2563. height: math.unit(1, "feet"),
  2564. name: "Paw",
  2565. image: {
  2566. source: "./media/characters/shingo/paw.svg"
  2567. }
  2568. },
  2569. },
  2570. [
  2571. {
  2572. name: "Micro",
  2573. height: math.unit(4, "inches")
  2574. },
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(6, "feet"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Macro",
  2582. height: math.unit(108, "feet")
  2583. },
  2584. {
  2585. name: "Macro+",
  2586. height: math.unit(1500, "feet")
  2587. },
  2588. ]
  2589. ))
  2590. characterMakers.push(() => makeCharacter(
  2591. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2592. {
  2593. side: {
  2594. height: math.unit(6, "feet"),
  2595. weight: math.unit(75, "kg"),
  2596. name: "Side",
  2597. image: {
  2598. source: "./media/characters/aigey/side.svg"
  2599. }
  2600. },
  2601. },
  2602. [
  2603. {
  2604. name: "Macro",
  2605. height: math.unit(200, "feet"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Megamacro",
  2610. height: math.unit(100, "miles")
  2611. },
  2612. ]
  2613. )
  2614. )
  2615. characterMakers.push(() => makeCharacter(
  2616. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2617. {
  2618. front: {
  2619. height: math.unit(5 + 5 / 12, "feet"),
  2620. weight: math.unit(75, "kg"),
  2621. name: "Front",
  2622. image: {
  2623. source: "./media/characters/natasha/front.svg",
  2624. extra: 859 / 824,
  2625. bottom: 23 / 879.6
  2626. }
  2627. },
  2628. frontNsfw: {
  2629. height: math.unit(5 + 5 / 12, "feet"),
  2630. weight: math.unit(75, "kg"),
  2631. name: "Front (NSFW)",
  2632. image: {
  2633. source: "./media/characters/natasha/front-nsfw.svg",
  2634. extra: 859 / 824,
  2635. bottom: 23 / 879.6
  2636. }
  2637. },
  2638. frontErect: {
  2639. height: math.unit(5 + 5 / 12, "feet"),
  2640. weight: math.unit(75, "kg"),
  2641. name: "Front (Erect)",
  2642. image: {
  2643. source: "./media/characters/natasha/front-erect.svg",
  2644. extra: 859 / 824,
  2645. bottom: 23 / 879.6
  2646. }
  2647. },
  2648. back: {
  2649. height: math.unit(5 + 5 / 12, "feet"),
  2650. weight: math.unit(75, "kg"),
  2651. name: "Back",
  2652. image: {
  2653. source: "./media/characters/natasha/back.svg",
  2654. extra: 887.9 / 852.6,
  2655. bottom: 9.7 / 896.4
  2656. }
  2657. },
  2658. backAlt: {
  2659. height: math.unit(5 + 5 / 12, "feet"),
  2660. weight: math.unit(75, "kg"),
  2661. name: "Back (Alt)",
  2662. image: {
  2663. source: "./media/characters/natasha/back-alt.svg",
  2664. extra: 1236.7 / 1192,
  2665. bottom: 22.3 / 1258.2
  2666. }
  2667. },
  2668. dick: {
  2669. height: math.unit(1.772, "feet"),
  2670. name: "Dick",
  2671. image: {
  2672. source: "./media/characters/natasha/dick.svg"
  2673. }
  2674. },
  2675. paw: {
  2676. height: math.unit(0.250, "meters"),
  2677. name: "Paw",
  2678. image: {
  2679. source: "./media/characters/natasha/paw.svg"
  2680. }
  2681. },
  2682. },
  2683. [
  2684. {
  2685. name: "Normal",
  2686. height: math.unit(5 + 5 / 12, "feet")
  2687. },
  2688. {
  2689. name: "Large",
  2690. height: math.unit(12, "feet")
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(100, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Macro+",
  2699. height: math.unit(260, "feet")
  2700. },
  2701. {
  2702. name: "Macro++",
  2703. height: math.unit(1, "mile")
  2704. },
  2705. ]
  2706. ))
  2707. characterMakers.push(() => makeCharacter(
  2708. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2709. {
  2710. front: {
  2711. height: math.unit(6, "feet"),
  2712. weight: math.unit(75, "kg"),
  2713. name: "Front",
  2714. image: {
  2715. source: "./media/characters/malik/front.svg"
  2716. }
  2717. },
  2718. side: {
  2719. height: math.unit(6, "feet"),
  2720. weight: math.unit(75, "kg"),
  2721. name: "Side",
  2722. image: {
  2723. source: "./media/characters/malik/side.svg",
  2724. extra: 1.1539
  2725. }
  2726. },
  2727. back: {
  2728. height: math.unit(6, "feet"),
  2729. weight: math.unit(75, "kg"),
  2730. name: "Back",
  2731. image: {
  2732. source: "./media/characters/malik/back.svg"
  2733. }
  2734. },
  2735. },
  2736. [
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(156, "feet"),
  2740. default: true
  2741. },
  2742. {
  2743. name: "Macro+",
  2744. height: math.unit(1188, "feet")
  2745. },
  2746. ]
  2747. ))
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(6, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/sefer/front.svg",
  2757. extra: 848 / 659,
  2758. bottom: 28.3 / 876.442
  2759. }
  2760. },
  2761. back: {
  2762. height: math.unit(6, "feet"),
  2763. weight: math.unit(75, "kg"),
  2764. name: "Back",
  2765. image: {
  2766. source: "./media/characters/sefer/back.svg",
  2767. extra: 864 / 695,
  2768. bottom: 10 / 871
  2769. }
  2770. },
  2771. frontDressed: {
  2772. height: math.unit(6, "feet"),
  2773. weight: math.unit(75, "kg"),
  2774. name: "Front (Dressed)",
  2775. image: {
  2776. source: "./media/characters/sefer/front-dressed.svg",
  2777. extra: 839 / 653,
  2778. bottom: 37.6 / 878
  2779. }
  2780. },
  2781. },
  2782. [
  2783. {
  2784. name: "Normal",
  2785. height: math.unit(6, "feet"),
  2786. default: true
  2787. },
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2792. {
  2793. body: {
  2794. height: math.unit(2.2428, "meter"),
  2795. weight: math.unit(124.738, "kg"),
  2796. name: "Body",
  2797. image: {
  2798. extra: 1225 / 1050,
  2799. source: "./media/characters/north/front.svg"
  2800. }
  2801. }
  2802. },
  2803. [
  2804. {
  2805. name: "Micro",
  2806. height: math.unit(4, "inches")
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(63, "meters")
  2811. },
  2812. {
  2813. name: "Megamacro",
  2814. height: math.unit(101, "miles"),
  2815. default: true
  2816. }
  2817. ]
  2818. ))
  2819. characterMakers.push(() => makeCharacter(
  2820. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2821. {
  2822. angled: {
  2823. height: math.unit(4, "meter"),
  2824. weight: math.unit(150, "kg"),
  2825. name: "Angled",
  2826. image: {
  2827. source: "./media/characters/talan/angled-sfw.svg",
  2828. bottom: 29 / 3734
  2829. }
  2830. },
  2831. angledNsfw: {
  2832. height: math.unit(4, "meter"),
  2833. weight: math.unit(150, "kg"),
  2834. name: "Angled (NSFW)",
  2835. image: {
  2836. source: "./media/characters/talan/angled-nsfw.svg",
  2837. bottom: 29 / 3734
  2838. }
  2839. },
  2840. frontNsfw: {
  2841. height: math.unit(4, "meter"),
  2842. weight: math.unit(150, "kg"),
  2843. name: "Front (NSFW)",
  2844. image: {
  2845. source: "./media/characters/talan/front-nsfw.svg",
  2846. bottom: 29 / 3734
  2847. }
  2848. },
  2849. sideNsfw: {
  2850. height: math.unit(4, "meter"),
  2851. weight: math.unit(150, "kg"),
  2852. name: "Side (NSFW)",
  2853. image: {
  2854. source: "./media/characters/talan/side-nsfw.svg",
  2855. bottom: 29 / 3734
  2856. }
  2857. },
  2858. back: {
  2859. height: math.unit(4, "meter"),
  2860. weight: math.unit(150, "kg"),
  2861. name: "Back",
  2862. image: {
  2863. source: "./media/characters/talan/back.svg"
  2864. }
  2865. },
  2866. dickBottom: {
  2867. height: math.unit(0.621, "meter"),
  2868. name: "Dick (Bottom)",
  2869. image: {
  2870. source: "./media/characters/talan/dick-bottom.svg"
  2871. }
  2872. },
  2873. dickTop: {
  2874. height: math.unit(0.621, "meter"),
  2875. name: "Dick (Top)",
  2876. image: {
  2877. source: "./media/characters/talan/dick-top.svg"
  2878. }
  2879. },
  2880. dickSide: {
  2881. height: math.unit(0.305, "meter"),
  2882. name: "Dick (Side)",
  2883. image: {
  2884. source: "./media/characters/talan/dick-side.svg"
  2885. }
  2886. },
  2887. dickFront: {
  2888. height: math.unit(0.305, "meter"),
  2889. name: "Dick (Front)",
  2890. image: {
  2891. source: "./media/characters/talan/dick-front.svg"
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(4, "meters")
  2899. },
  2900. {
  2901. name: "Macro",
  2902. height: math.unit(100, "meters")
  2903. },
  2904. {
  2905. name: "Megamacro",
  2906. height: math.unit(2, "miles"),
  2907. default: true
  2908. },
  2909. {
  2910. name: "Gigamacro",
  2911. height: math.unit(5000, "miles")
  2912. },
  2913. {
  2914. name: "Teramacro",
  2915. height: math.unit(100, "parsecs")
  2916. }
  2917. ]
  2918. ))
  2919. characterMakers.push(() => makeCharacter(
  2920. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2921. {
  2922. front: {
  2923. height: math.unit(2, "meter"),
  2924. weight: math.unit(90, "kg"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/gael'rathus/front.svg"
  2928. }
  2929. },
  2930. frontAlt: {
  2931. height: math.unit(2, "meter"),
  2932. weight: math.unit(90, "kg"),
  2933. name: "Front (alt)",
  2934. image: {
  2935. source: "./media/characters/gael'rathus/front-alt.svg"
  2936. }
  2937. },
  2938. frontAlt2: {
  2939. height: math.unit(2, "meter"),
  2940. weight: math.unit(90, "kg"),
  2941. name: "Front (alt 2)",
  2942. image: {
  2943. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2944. }
  2945. }
  2946. },
  2947. [
  2948. {
  2949. name: "Normal",
  2950. height: math.unit(9, "feet"),
  2951. default: true
  2952. },
  2953. {
  2954. name: "Large",
  2955. height: math.unit(25, "feet")
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(0.25, "miles")
  2960. },
  2961. {
  2962. name: "Megamacro",
  2963. height: math.unit(10, "miles")
  2964. }
  2965. ]
  2966. ))
  2967. characterMakers.push(() => makeCharacter(
  2968. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2969. {
  2970. side: {
  2971. height: math.unit(2, "meter"),
  2972. weight: math.unit(140, "kg"),
  2973. name: "Side",
  2974. image: {
  2975. source: "./media/characters/sosha/side.svg",
  2976. bottom: 0.042
  2977. }
  2978. },
  2979. },
  2980. [
  2981. {
  2982. name: "Normal",
  2983. height: math.unit(12, "feet"),
  2984. default: true
  2985. }
  2986. ]
  2987. ))
  2988. characterMakers.push(() => makeCharacter(
  2989. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2990. {
  2991. side: {
  2992. height: math.unit(5 + 5 / 12, "feet"),
  2993. weight: math.unit(170, "kg"),
  2994. name: "Side",
  2995. image: {
  2996. source: "./media/characters/runnola/side.svg",
  2997. extra: 741 / 448,
  2998. bottom: 0.05
  2999. }
  3000. },
  3001. },
  3002. [
  3003. {
  3004. name: "Small",
  3005. height: math.unit(3, "feet")
  3006. },
  3007. {
  3008. name: "Normal",
  3009. height: math.unit(5 + 5 / 12, "feet"),
  3010. default: true
  3011. },
  3012. {
  3013. name: "Big",
  3014. height: math.unit(10, "feet")
  3015. },
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(2, "meter"),
  3023. weight: math.unit(50, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/kurribird/front.svg",
  3027. bottom: 0.015
  3028. }
  3029. },
  3030. frontAlt: {
  3031. height: math.unit(1.5, "meter"),
  3032. weight: math.unit(50, "kg"),
  3033. name: "Front (Alt)",
  3034. image: {
  3035. source: "./media/characters/kurribird/front-alt.svg",
  3036. extra: 1.45
  3037. }
  3038. },
  3039. },
  3040. [
  3041. {
  3042. name: "Normal",
  3043. height: math.unit(7, "feet")
  3044. },
  3045. {
  3046. name: "Big",
  3047. height: math.unit(12, "feet"),
  3048. default: true
  3049. },
  3050. {
  3051. name: "Macro",
  3052. height: math.unit(1500, "feet")
  3053. },
  3054. {
  3055. name: "Megamacro",
  3056. height: math.unit(2, "miles")
  3057. }
  3058. ]
  3059. ))
  3060. characterMakers.push(() => makeCharacter(
  3061. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3062. {
  3063. front: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(80, "kg"),
  3066. name: "Front",
  3067. image: {
  3068. source: "./media/characters/elbial/front.svg",
  3069. extra: 1643 / 1556,
  3070. bottom: 60.2 / 1696
  3071. }
  3072. },
  3073. side: {
  3074. height: math.unit(2, "meter"),
  3075. weight: math.unit(80, "kg"),
  3076. name: "Side",
  3077. image: {
  3078. source: "./media/characters/elbial/side.svg",
  3079. extra: 1630 / 1565,
  3080. bottom: 71.5 / 1697
  3081. }
  3082. },
  3083. back: {
  3084. height: math.unit(2, "meter"),
  3085. weight: math.unit(80, "kg"),
  3086. name: "Back",
  3087. image: {
  3088. source: "./media/characters/elbial/back.svg",
  3089. extra: 1668 / 1595,
  3090. bottom: 5.6 / 1672
  3091. }
  3092. },
  3093. frontDressed: {
  3094. height: math.unit(2, "meter"),
  3095. weight: math.unit(80, "kg"),
  3096. name: "Front (Dressed)",
  3097. image: {
  3098. source: "./media/characters/elbial/front-dressed.svg",
  3099. extra: 1653 / 1584,
  3100. bottom: 57 / 1708
  3101. }
  3102. },
  3103. genitals: {
  3104. height: math.unit(2 / 3.367, "meter"),
  3105. name: "Genitals",
  3106. image: {
  3107. source: "./media/characters/elbial/genitals.svg"
  3108. }
  3109. },
  3110. },
  3111. [
  3112. {
  3113. name: "Large",
  3114. height: math.unit(100, "feet")
  3115. },
  3116. {
  3117. name: "Macro",
  3118. height: math.unit(500, "feet"),
  3119. default: true
  3120. },
  3121. {
  3122. name: "Megamacro",
  3123. height: math.unit(10, "miles")
  3124. },
  3125. {
  3126. name: "Gigamacro",
  3127. height: math.unit(25000, "miles")
  3128. },
  3129. {
  3130. name: "Full-Size",
  3131. height: math.unit(8000000, "gigaparsecs")
  3132. }
  3133. ]
  3134. ))
  3135. characterMakers.push(() => makeCharacter(
  3136. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3137. {
  3138. front: {
  3139. height: math.unit(2, "meter"),
  3140. weight: math.unit(60, "kg"),
  3141. name: "Front",
  3142. image: {
  3143. source: "./media/characters/noah/front.svg"
  3144. }
  3145. },
  3146. talons: {
  3147. height: math.unit(0.315, "meter"),
  3148. name: "Talons",
  3149. image: {
  3150. source: "./media/characters/noah/talons.svg"
  3151. }
  3152. }
  3153. },
  3154. [
  3155. {
  3156. name: "Large",
  3157. height: math.unit(50, "feet")
  3158. },
  3159. {
  3160. name: "Macro",
  3161. height: math.unit(750, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Megamacro",
  3166. height: math.unit(50, "miles")
  3167. },
  3168. {
  3169. name: "Gigamacro",
  3170. height: math.unit(100000, "miles")
  3171. },
  3172. {
  3173. name: "Full-Size",
  3174. height: math.unit(3000000000, "miles")
  3175. }
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(80, "kg"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/natalya/front.svg"
  3187. }
  3188. },
  3189. back: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(80, "kg"),
  3192. name: "Back",
  3193. image: {
  3194. source: "./media/characters/natalya/back.svg"
  3195. }
  3196. }
  3197. },
  3198. [
  3199. {
  3200. name: "Normal",
  3201. height: math.unit(150, "feet"),
  3202. default: true
  3203. },
  3204. {
  3205. name: "Megamacro",
  3206. height: math.unit(5, "miles")
  3207. },
  3208. {
  3209. name: "Full-Size",
  3210. height: math.unit(600, "kiloparsecs")
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3216. {
  3217. front: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(50, "kg"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/erestrebah/front.svg",
  3223. extra: 208 / 193,
  3224. bottom: 0.055
  3225. }
  3226. },
  3227. back: {
  3228. height: math.unit(2, "meter"),
  3229. weight: math.unit(50, "kg"),
  3230. name: "Back",
  3231. image: {
  3232. source: "./media/characters/erestrebah/back.svg",
  3233. extra: 1.3
  3234. }
  3235. }
  3236. },
  3237. [
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(10, "feet")
  3241. },
  3242. {
  3243. name: "Large",
  3244. height: math.unit(50, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(300, "feet")
  3250. },
  3251. {
  3252. name: "Macro+",
  3253. height: math.unit(750, "feet")
  3254. },
  3255. {
  3256. name: "Megamacro",
  3257. height: math.unit(3, "miles")
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(80, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/jennifer/front.svg",
  3270. bottom: 0.11,
  3271. extra: 1.16
  3272. }
  3273. },
  3274. frontAlt: {
  3275. height: math.unit(2, "meter"),
  3276. weight: math.unit(80, "kg"),
  3277. name: "Front (Alt)",
  3278. image: {
  3279. source: "./media/characters/jennifer/front-alt.svg"
  3280. }
  3281. }
  3282. },
  3283. [
  3284. {
  3285. name: "Canon Height",
  3286. height: math.unit(120, "feet"),
  3287. default: true
  3288. },
  3289. {
  3290. name: "Macro+",
  3291. height: math.unit(300, "feet")
  3292. },
  3293. {
  3294. name: "Megamacro",
  3295. height: math.unit(20000, "feet")
  3296. }
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(2, "meter"),
  3304. weight: math.unit(50, "kg"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/kalista/front.svg",
  3308. extra: 1947 / 1700,
  3309. bottom: 76.6 / 1412.98
  3310. }
  3311. },
  3312. back: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(50, "kg"),
  3315. name: "Back",
  3316. image: {
  3317. source: "./media/characters/kalista/back.svg",
  3318. extra: 1366 / 1156,
  3319. bottom: 33.9 / 1362.78
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Uncomfortably Small",
  3326. height: math.unit(10, "feet")
  3327. },
  3328. {
  3329. name: "Small",
  3330. height: math.unit(30, "feet")
  3331. },
  3332. {
  3333. name: "Macro",
  3334. height: math.unit(100, "feet"),
  3335. default: true
  3336. },
  3337. {
  3338. name: "Macro+",
  3339. height: math.unit(2000, "feet")
  3340. },
  3341. {
  3342. name: "True Form",
  3343. height: math.unit(8924, "miles")
  3344. }
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(120, "kg"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/ggv/front.svg"
  3356. }
  3357. },
  3358. side: {
  3359. height: math.unit(2, "meter"),
  3360. weight: math.unit(120, "kg"),
  3361. name: "Side",
  3362. image: {
  3363. source: "./media/characters/ggv/side.svg"
  3364. }
  3365. }
  3366. },
  3367. [
  3368. {
  3369. name: "Extremely Puny",
  3370. height: math.unit(9 + 5 / 12, "feet")
  3371. },
  3372. {
  3373. name: "Horribly Small",
  3374. height: math.unit(47.7, "miles"),
  3375. default: true
  3376. },
  3377. {
  3378. name: "Reasonably Sized",
  3379. height: math.unit(25000, "parsecs")
  3380. },
  3381. {
  3382. name: "Slightly Uncompressed",
  3383. height: math.unit(7.77e31, "parsecs")
  3384. },
  3385. {
  3386. name: "Omniversal",
  3387. height: math.unit(1e300, "meters")
  3388. },
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3393. {
  3394. front: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(75, "lb"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/napalm/front.svg"
  3400. }
  3401. },
  3402. back: {
  3403. height: math.unit(2, "meter"),
  3404. weight: math.unit(75, "lb"),
  3405. name: "Back",
  3406. image: {
  3407. source: "./media/characters/napalm/back.svg"
  3408. }
  3409. }
  3410. },
  3411. [
  3412. {
  3413. name: "Standard",
  3414. height: math.unit(55, "feet"),
  3415. default: true
  3416. }
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3421. {
  3422. front: {
  3423. height: math.unit(7 + 5 / 6, "feet"),
  3424. weight: math.unit(325, "lb"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/asana/front.svg",
  3428. extra: 1133 / 1060,
  3429. bottom: 15.2 / 1148.6
  3430. }
  3431. },
  3432. back: {
  3433. height: math.unit(7 + 5 / 6, "feet"),
  3434. weight: math.unit(325, "lb"),
  3435. name: "Back",
  3436. image: {
  3437. source: "./media/characters/asana/back.svg",
  3438. extra: 1114 / 1043,
  3439. bottom: 5 / 1120
  3440. }
  3441. },
  3442. dressedDark: {
  3443. height: math.unit(7 + 5 / 6, "feet"),
  3444. weight: math.unit(325, "lb"),
  3445. name: "Dressed (Dark)",
  3446. image: {
  3447. source: "./media/characters/asana/dressed-dark.svg",
  3448. extra: 1133 / 1060,
  3449. bottom: 15.2 / 1148.6
  3450. }
  3451. },
  3452. dressedLight: {
  3453. height: math.unit(7 + 5 / 6, "feet"),
  3454. weight: math.unit(325, "lb"),
  3455. name: "Dressed (Light)",
  3456. image: {
  3457. source: "./media/characters/asana/dressed-light.svg",
  3458. extra: 1133 / 1060,
  3459. bottom: 15.2 / 1148.6
  3460. }
  3461. },
  3462. },
  3463. [
  3464. {
  3465. name: "Standard",
  3466. height: math.unit(7 + 5 / 6, "feet"),
  3467. default: true
  3468. },
  3469. {
  3470. name: "Large",
  3471. height: math.unit(10, "meters")
  3472. },
  3473. {
  3474. name: "Macro",
  3475. height: math.unit(2500, "meters")
  3476. },
  3477. {
  3478. name: "Megamacro",
  3479. height: math.unit(5e6, "meters")
  3480. },
  3481. {
  3482. name: "Examacro",
  3483. height: math.unit(5e12, "lightyears")
  3484. },
  3485. {
  3486. name: "Max Size",
  3487. height: math.unit(1e31, "lightyears")
  3488. }
  3489. ]
  3490. ))
  3491. characterMakers.push(() => makeCharacter(
  3492. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3493. {
  3494. front: {
  3495. height: math.unit(2, "meter"),
  3496. weight: math.unit(60, "kg"),
  3497. name: "Front",
  3498. image: {
  3499. source: "./media/characters/ebony/front.svg",
  3500. bottom: 0.03,
  3501. extra: 1045 / 810 + 0.03
  3502. }
  3503. },
  3504. side: {
  3505. height: math.unit(2, "meter"),
  3506. weight: math.unit(60, "kg"),
  3507. name: "Side",
  3508. image: {
  3509. source: "./media/characters/ebony/side.svg",
  3510. bottom: 0.03,
  3511. extra: 1045 / 810 + 0.03
  3512. }
  3513. },
  3514. back: {
  3515. height: math.unit(2, "meter"),
  3516. weight: math.unit(60, "kg"),
  3517. name: "Back",
  3518. image: {
  3519. source: "./media/characters/ebony/back.svg",
  3520. bottom: 0.01,
  3521. extra: 1045 / 810 + 0.01
  3522. }
  3523. },
  3524. },
  3525. [
  3526. // TODO check why I did this lol
  3527. {
  3528. name: "Standard",
  3529. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(200, "feet")
  3535. },
  3536. {
  3537. name: "Gigamacro",
  3538. height: math.unit(13000, "km")
  3539. }
  3540. ]
  3541. ))
  3542. characterMakers.push(() => makeCharacter(
  3543. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3544. {
  3545. front: {
  3546. height: math.unit(6, "feet"),
  3547. weight: math.unit(175, "lb"),
  3548. name: "Front",
  3549. image: {
  3550. source: "./media/characters/mountain/front.svg",
  3551. extra: 972 / 955,
  3552. bottom: 64 / 1036.6
  3553. }
  3554. },
  3555. back: {
  3556. height: math.unit(6, "feet"),
  3557. weight: math.unit(175, "lb"),
  3558. name: "Back",
  3559. image: {
  3560. source: "./media/characters/mountain/back.svg",
  3561. extra: 970 / 950,
  3562. bottom: 28.25 / 999
  3563. }
  3564. },
  3565. },
  3566. [
  3567. {
  3568. name: "Large",
  3569. height: math.unit(20, "meters")
  3570. },
  3571. {
  3572. name: "Macro",
  3573. height: math.unit(300, "meters")
  3574. },
  3575. {
  3576. name: "Gigamacro",
  3577. height: math.unit(10000, "km"),
  3578. default: true
  3579. },
  3580. {
  3581. name: "Examacro",
  3582. height: math.unit(10e9, "lightyears")
  3583. }
  3584. ]
  3585. ))
  3586. characterMakers.push(() => makeCharacter(
  3587. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3588. {
  3589. front: {
  3590. height: math.unit(8, "feet"),
  3591. weight: math.unit(500, "lb"),
  3592. name: "Front",
  3593. image: {
  3594. source: "./media/characters/rick/front.svg"
  3595. }
  3596. }
  3597. },
  3598. [
  3599. {
  3600. name: "Normal",
  3601. height: math.unit(8, "feet"),
  3602. default: true
  3603. },
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(5, "km")
  3607. }
  3608. ]
  3609. ))
  3610. characterMakers.push(() => makeCharacter(
  3611. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3612. {
  3613. front: {
  3614. height: math.unit(8, "feet"),
  3615. weight: math.unit(120, "lb"),
  3616. name: "Front",
  3617. image: {
  3618. source: "./media/characters/ona/front.svg"
  3619. }
  3620. },
  3621. frontAlt: {
  3622. height: math.unit(8, "feet"),
  3623. weight: math.unit(120, "lb"),
  3624. name: "Front (Alt)",
  3625. image: {
  3626. source: "./media/characters/ona/front-alt.svg"
  3627. }
  3628. },
  3629. back: {
  3630. height: math.unit(8, "feet"),
  3631. weight: math.unit(120, "lb"),
  3632. name: "Back",
  3633. image: {
  3634. source: "./media/characters/ona/back.svg"
  3635. }
  3636. },
  3637. foot: {
  3638. height: math.unit(1.1, "feet"),
  3639. name: "Foot",
  3640. image: {
  3641. source: "./media/characters/ona/foot.svg"
  3642. }
  3643. }
  3644. },
  3645. [
  3646. {
  3647. name: "Megamacro",
  3648. height: math.unit(70, "km"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Gigamacro",
  3653. height: math.unit(681818, "miles")
  3654. },
  3655. {
  3656. name: "Examacro",
  3657. height: math.unit(3800000, "lightyears")
  3658. },
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3663. {
  3664. front: {
  3665. height: math.unit(12, "feet"),
  3666. weight: math.unit(3000, "lb"),
  3667. name: "Front",
  3668. image: {
  3669. source: "./media/characters/mech/front.svg",
  3670. extra: 2900 / 2770,
  3671. bottom: 110 / 3010
  3672. }
  3673. },
  3674. back: {
  3675. height: math.unit(12, "feet"),
  3676. weight: math.unit(3000, "lb"),
  3677. name: "Back",
  3678. image: {
  3679. source: "./media/characters/mech/back.svg",
  3680. extra: 3011 / 2890,
  3681. bottom: 94 / 3105
  3682. }
  3683. },
  3684. maw: {
  3685. height: math.unit(3.07, "feet"),
  3686. name: "Maw",
  3687. image: {
  3688. source: "./media/characters/mech/maw.svg"
  3689. }
  3690. },
  3691. head: {
  3692. height: math.unit(2.82, "feet"),
  3693. name: "Head",
  3694. image: {
  3695. source: "./media/characters/mech/head.svg"
  3696. }
  3697. },
  3698. dick: {
  3699. height: math.unit(1.43, "feet"),
  3700. name: "Dick",
  3701. image: {
  3702. source: "./media/characters/mech/dick.svg"
  3703. }
  3704. },
  3705. },
  3706. [
  3707. {
  3708. name: "Normal",
  3709. height: math.unit(12, "feet")
  3710. },
  3711. {
  3712. name: "Macro",
  3713. height: math.unit(300, "feet"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Macro+",
  3718. height: math.unit(1500, "feet")
  3719. },
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3724. {
  3725. front: {
  3726. height: math.unit(1.3, "meter"),
  3727. weight: math.unit(30, "kg"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/gregory/front.svg",
  3731. }
  3732. }
  3733. },
  3734. [
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(1.3, "meter"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(20, "meter")
  3743. }
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(2.8, "meter"),
  3751. weight: math.unit(200, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/elory/front.svg",
  3755. }
  3756. }
  3757. },
  3758. [
  3759. {
  3760. name: "Normal",
  3761. height: math.unit(2.8, "meter"),
  3762. default: true
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(38, "meter")
  3767. }
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3772. {
  3773. front: {
  3774. height: math.unit(470, "feet"),
  3775. weight: math.unit(924, "tons"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/angelpatamon/front.svg",
  3779. }
  3780. }
  3781. },
  3782. [
  3783. {
  3784. name: "Normal",
  3785. height: math.unit(470, "feet"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Deity Size I",
  3790. height: math.unit(28651.2, "km")
  3791. },
  3792. {
  3793. name: "Deity Size II",
  3794. height: math.unit(171907.2, "km")
  3795. }
  3796. ]
  3797. ))
  3798. characterMakers.push(() => makeCharacter(
  3799. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3800. {
  3801. side: {
  3802. height: math.unit(7.2, "meter"),
  3803. weight: math.unit(8.2, "tons"),
  3804. name: "Side",
  3805. image: {
  3806. source: "./media/characters/cryae/side.svg",
  3807. extra: 3500 / 1500
  3808. }
  3809. }
  3810. },
  3811. [
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(7.2, "meter"),
  3815. default: true
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(6, "feet"),
  3824. weight: math.unit(175, "lb"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/xera/front.svg",
  3828. extra: 2377 / 1972,
  3829. bottom: 75.5 / 2452
  3830. }
  3831. },
  3832. side: {
  3833. height: math.unit(6, "feet"),
  3834. weight: math.unit(175, "lb"),
  3835. name: "Side",
  3836. image: {
  3837. source: "./media/characters/xera/side.svg",
  3838. extra: 2345 / 2019,
  3839. bottom: 39.7 / 2384
  3840. }
  3841. },
  3842. back: {
  3843. height: math.unit(6, "feet"),
  3844. weight: math.unit(175, "lb"),
  3845. name: "Back",
  3846. image: {
  3847. source: "./media/characters/xera/back.svg",
  3848. extra: 2095 / 1984,
  3849. bottom: 67 / 2166
  3850. }
  3851. },
  3852. },
  3853. [
  3854. {
  3855. name: "Small",
  3856. height: math.unit(10, "feet")
  3857. },
  3858. {
  3859. name: "Macro",
  3860. height: math.unit(500, "meters"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Macro+",
  3865. height: math.unit(10, "km")
  3866. },
  3867. {
  3868. name: "Gigamacro",
  3869. height: math.unit(25000, "km")
  3870. },
  3871. {
  3872. name: "Teramacro",
  3873. height: math.unit(3e6, "km")
  3874. }
  3875. ]
  3876. ))
  3877. characterMakers.push(() => makeCharacter(
  3878. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3879. {
  3880. front: {
  3881. height: math.unit(6, "feet"),
  3882. weight: math.unit(175, "lb"),
  3883. name: "Front",
  3884. image: {
  3885. source: "./media/characters/nebula/front.svg",
  3886. extra: 2566 / 2362,
  3887. bottom: 81 / 2644
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Small",
  3894. height: math.unit(4.5, "meters")
  3895. },
  3896. {
  3897. name: "Macro",
  3898. height: math.unit(1500, "meters"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Megamacro",
  3903. height: math.unit(150, "km")
  3904. },
  3905. {
  3906. name: "Gigamacro",
  3907. height: math.unit(27000, "km")
  3908. }
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(6, "feet"),
  3916. weight: math.unit(225, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/abysgar/front.svg"
  3920. }
  3921. }
  3922. },
  3923. [
  3924. {
  3925. name: "Small",
  3926. height: math.unit(4.5, "meters")
  3927. },
  3928. {
  3929. name: "Macro",
  3930. height: math.unit(1250, "meters"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Megamacro",
  3935. height: math.unit(125, "km")
  3936. },
  3937. {
  3938. name: "Gigamacro",
  3939. height: math.unit(26000, "km")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(6, "feet"),
  3948. weight: math.unit(180, "lb"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/yakuz/front.svg"
  3952. }
  3953. }
  3954. },
  3955. [
  3956. {
  3957. name: "Small",
  3958. height: math.unit(5, "meters")
  3959. },
  3960. {
  3961. name: "Macro",
  3962. height: math.unit(1500, "meters"),
  3963. default: true
  3964. },
  3965. {
  3966. name: "Megamacro",
  3967. height: math.unit(200, "km")
  3968. },
  3969. {
  3970. name: "Gigamacro",
  3971. height: math.unit(100000, "km")
  3972. }
  3973. ]
  3974. ))
  3975. characterMakers.push(() => makeCharacter(
  3976. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3977. {
  3978. front: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(175, "lb"),
  3981. name: "Front",
  3982. image: {
  3983. source: "./media/characters/mirova/front.svg",
  3984. extra: 3334 / 3071,
  3985. bottom: 42 / 3375.6
  3986. }
  3987. }
  3988. },
  3989. [
  3990. {
  3991. name: "Small",
  3992. height: math.unit(5, "meters")
  3993. },
  3994. {
  3995. name: "Macro",
  3996. height: math.unit(900, "meters"),
  3997. default: true
  3998. },
  3999. {
  4000. name: "Megamacro",
  4001. height: math.unit(135, "km")
  4002. },
  4003. {
  4004. name: "Gigamacro",
  4005. height: math.unit(20000, "km")
  4006. }
  4007. ]
  4008. ))
  4009. characterMakers.push(() => makeCharacter(
  4010. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4011. {
  4012. side: {
  4013. height: math.unit(28.35, "feet"),
  4014. weight: math.unit(99.75, "tons"),
  4015. name: "Side",
  4016. image: {
  4017. source: "./media/characters/asana-mech/side.svg",
  4018. extra: 923 / 699,
  4019. bottom: 50 / 975
  4020. }
  4021. },
  4022. chaingun: {
  4023. height: math.unit(7, "feet"),
  4024. weight: math.unit(2400, "lb"),
  4025. name: "Chaingun",
  4026. image: {
  4027. source: "./media/characters/asana-mech/chaingun.svg"
  4028. }
  4029. },
  4030. laser: {
  4031. height: math.unit(7.12, "feet"),
  4032. weight: math.unit(2000, "lb"),
  4033. name: "Laser",
  4034. image: {
  4035. source: "./media/characters/asana-mech/laser.svg"
  4036. }
  4037. },
  4038. },
  4039. [
  4040. {
  4041. name: "Normal",
  4042. height: math.unit(28.35, "feet"),
  4043. default: true
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(2500, "feet")
  4048. },
  4049. {
  4050. name: "Megamacro",
  4051. height: math.unit(25, "miles")
  4052. },
  4053. {
  4054. name: "Examacro",
  4055. height: math.unit(6e8, "lightyears")
  4056. },
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(5, "meters"),
  4064. weight: math.unit(1000, "kg"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/asche/front.svg",
  4068. extra: 1258 / 1190,
  4069. bottom: 47 / 1305
  4070. }
  4071. },
  4072. frontUnderwear: {
  4073. height: math.unit(5, "meters"),
  4074. weight: math.unit(1000, "kg"),
  4075. name: "Front (Underwear)",
  4076. image: {
  4077. source: "./media/characters/asche/front-underwear.svg",
  4078. extra: 1258 / 1190,
  4079. bottom: 47 / 1305
  4080. }
  4081. },
  4082. frontDressed: {
  4083. height: math.unit(5, "meters"),
  4084. weight: math.unit(1000, "kg"),
  4085. name: "Front (Dressed)",
  4086. image: {
  4087. source: "./media/characters/asche/front-dressed.svg",
  4088. extra: 1258 / 1190,
  4089. bottom: 47 / 1305
  4090. }
  4091. },
  4092. frontArmor: {
  4093. height: math.unit(5, "meters"),
  4094. weight: math.unit(1000, "kg"),
  4095. name: "Front (Armored)",
  4096. image: {
  4097. source: "./media/characters/asche/front-armored.svg",
  4098. extra: 1374 / 1308,
  4099. bottom: 23 / 1397
  4100. }
  4101. },
  4102. mp724: {
  4103. height: math.unit(0.96, "meters"),
  4104. weight: math.unit(38, "kg"),
  4105. name: "H&K MP724",
  4106. image: {
  4107. source: "./media/characters/asche/h&k-mp724.svg"
  4108. }
  4109. },
  4110. side: {
  4111. height: math.unit(5, "meters"),
  4112. weight: math.unit(1000, "kg"),
  4113. name: "Side",
  4114. image: {
  4115. source: "./media/characters/asche/side.svg",
  4116. extra: 1717 / 1609,
  4117. bottom: 0.005
  4118. }
  4119. },
  4120. back: {
  4121. height: math.unit(5, "meters"),
  4122. weight: math.unit(1000, "kg"),
  4123. name: "Back",
  4124. image: {
  4125. source: "./media/characters/asche/back.svg",
  4126. extra: 1570 / 1501
  4127. }
  4128. },
  4129. },
  4130. [
  4131. {
  4132. name: "DEFCON 5",
  4133. height: math.unit(5, "meters")
  4134. },
  4135. {
  4136. name: "DEFCON 4",
  4137. height: math.unit(500, "meters"),
  4138. default: true
  4139. },
  4140. {
  4141. name: "DEFCON 3",
  4142. height: math.unit(5, "km")
  4143. },
  4144. {
  4145. name: "DEFCON 2",
  4146. height: math.unit(500, "km")
  4147. },
  4148. {
  4149. name: "DEFCON 1",
  4150. height: math.unit(500000, "km")
  4151. },
  4152. {
  4153. name: "DEFCON 0",
  4154. height: math.unit(3, "gigaparsecs")
  4155. },
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4160. {
  4161. front: {
  4162. height: math.unit(2, "meters"),
  4163. weight: math.unit(76, "kg"),
  4164. name: "Front",
  4165. image: {
  4166. source: "./media/characters/gale/front.svg"
  4167. }
  4168. },
  4169. frontAlt1: {
  4170. height: math.unit(2, "meters"),
  4171. weight: math.unit(76, "kg"),
  4172. name: "Front (Alt 1)",
  4173. image: {
  4174. source: "./media/characters/gale/front-alt-1.svg"
  4175. }
  4176. },
  4177. frontAlt2: {
  4178. height: math.unit(2, "meters"),
  4179. weight: math.unit(76, "kg"),
  4180. name: "Front (Alt 2)",
  4181. image: {
  4182. source: "./media/characters/gale/front-alt-2.svg"
  4183. }
  4184. },
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(7, "feet")
  4190. },
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(150, "feet"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro+",
  4198. height: math.unit(300, "feet")
  4199. },
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(2, "meters"),
  4207. weight: math.unit(76, "kg"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/draylen/front.svg"
  4211. }
  4212. }
  4213. },
  4214. [
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(150, "feet"),
  4218. default: true
  4219. }
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4224. {
  4225. front: {
  4226. height: math.unit(7 + 9 / 12, "feet"),
  4227. weight: math.unit(379, "lbs"),
  4228. name: "Front",
  4229. image: {
  4230. source: "./media/characters/chez/front.svg"
  4231. }
  4232. },
  4233. side: {
  4234. height: math.unit(7 + 9 / 12, "feet"),
  4235. weight: math.unit(379, "lbs"),
  4236. name: "Side",
  4237. image: {
  4238. source: "./media/characters/chez/side.svg"
  4239. }
  4240. }
  4241. },
  4242. [
  4243. {
  4244. name: "Normal",
  4245. height: math.unit(7 + 9 / 12, "feet"),
  4246. default: true
  4247. },
  4248. {
  4249. name: "God King",
  4250. height: math.unit(9750000, "meters")
  4251. }
  4252. ]
  4253. ))
  4254. characterMakers.push(() => makeCharacter(
  4255. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4256. {
  4257. front: {
  4258. height: math.unit(6, "feet"),
  4259. weight: math.unit(275, "lbs"),
  4260. name: "Front",
  4261. image: {
  4262. source: "./media/characters/kaylum/front.svg",
  4263. bottom: 0.01,
  4264. extra: 1166 / 1031
  4265. }
  4266. },
  4267. frontWingless: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(275, "lbs"),
  4270. name: "Front (Wingless)",
  4271. image: {
  4272. source: "./media/characters/kaylum/front-wingless.svg",
  4273. bottom: 0.01,
  4274. extra: 1117 / 1031
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(3.05, "meters")
  4282. },
  4283. {
  4284. name: "Master",
  4285. height: math.unit(5.5, "meters")
  4286. },
  4287. {
  4288. name: "Rampage",
  4289. height: math.unit(19, "meters")
  4290. },
  4291. {
  4292. name: "Macro Lite",
  4293. height: math.unit(37, "meters")
  4294. },
  4295. {
  4296. name: "Hyper Predator",
  4297. height: math.unit(61, "meters")
  4298. },
  4299. {
  4300. name: "Macro",
  4301. height: math.unit(138, "meters"),
  4302. default: true
  4303. }
  4304. ]
  4305. ))
  4306. characterMakers.push(() => makeCharacter(
  4307. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4308. {
  4309. front: {
  4310. height: math.unit(6, "feet"),
  4311. weight: math.unit(150, "lbs"),
  4312. name: "Front",
  4313. image: {
  4314. source: "./media/characters/geta/front.svg"
  4315. }
  4316. }
  4317. },
  4318. [
  4319. {
  4320. name: "Micro",
  4321. height: math.unit(3, "inches"),
  4322. default: true
  4323. },
  4324. {
  4325. name: "Normal",
  4326. height: math.unit(5 + 5 / 12, "feet")
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(6, "feet"),
  4335. weight: math.unit(300, "lbs"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/tyrnn/front.svg"
  4339. }
  4340. }
  4341. },
  4342. [
  4343. {
  4344. name: "Main Height",
  4345. height: math.unit(355, "feet"),
  4346. default: true
  4347. },
  4348. {
  4349. name: "Fave. Height",
  4350. height: math.unit(2400, "feet")
  4351. }
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4356. {
  4357. front: {
  4358. height: math.unit(6, "feet"),
  4359. weight: math.unit(300, "lbs"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/appledectomy/front.svg"
  4363. }
  4364. }
  4365. },
  4366. [
  4367. {
  4368. name: "Macro",
  4369. height: math.unit(2500, "feet")
  4370. },
  4371. {
  4372. name: "Megamacro",
  4373. height: math.unit(50, "miles"),
  4374. default: true
  4375. },
  4376. {
  4377. name: "Gigamacro",
  4378. height: math.unit(5000, "miles")
  4379. },
  4380. {
  4381. name: "Teramacro",
  4382. height: math.unit(250000, "miles")
  4383. },
  4384. ]
  4385. ))
  4386. characterMakers.push(() => makeCharacter(
  4387. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4388. {
  4389. front: {
  4390. height: math.unit(6, "feet"),
  4391. weight: math.unit(200, "lbs"),
  4392. name: "Front",
  4393. image: {
  4394. source: "./media/characters/vulpes/front.svg",
  4395. extra: 573 / 543,
  4396. bottom: 0.033
  4397. }
  4398. },
  4399. side: {
  4400. height: math.unit(6, "feet"),
  4401. weight: math.unit(200, "lbs"),
  4402. name: "Side",
  4403. image: {
  4404. source: "./media/characters/vulpes/side.svg",
  4405. extra: 577 / 549,
  4406. bottom: 11 / 588
  4407. }
  4408. },
  4409. back: {
  4410. height: math.unit(6, "feet"),
  4411. weight: math.unit(200, "lbs"),
  4412. name: "Back",
  4413. image: {
  4414. source: "./media/characters/vulpes/back.svg",
  4415. extra: 573 / 549,
  4416. bottom: 20 / 593
  4417. }
  4418. },
  4419. feet: {
  4420. height: math.unit(1.276, "feet"),
  4421. name: "Feet",
  4422. image: {
  4423. source: "./media/characters/vulpes/feet.svg"
  4424. }
  4425. },
  4426. maw: {
  4427. height: math.unit(1.18, "feet"),
  4428. name: "Maw",
  4429. image: {
  4430. source: "./media/characters/vulpes/maw.svg"
  4431. }
  4432. },
  4433. },
  4434. [
  4435. {
  4436. name: "Micro",
  4437. height: math.unit(2, "inches")
  4438. },
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(6.3, "feet")
  4442. },
  4443. {
  4444. name: "Macro",
  4445. height: math.unit(850, "feet")
  4446. },
  4447. {
  4448. name: "Megamacro",
  4449. height: math.unit(7500, "feet"),
  4450. default: true
  4451. },
  4452. {
  4453. name: "Gigamacro",
  4454. height: math.unit(570000, "miles")
  4455. }
  4456. ]
  4457. ))
  4458. characterMakers.push(() => makeCharacter(
  4459. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4460. {
  4461. front: {
  4462. height: math.unit(6, "feet"),
  4463. weight: math.unit(210, "lbs"),
  4464. name: "Front",
  4465. image: {
  4466. source: "./media/characters/rain-fallen/front.svg"
  4467. }
  4468. },
  4469. side: {
  4470. height: math.unit(6, "feet"),
  4471. weight: math.unit(210, "lbs"),
  4472. name: "Side",
  4473. image: {
  4474. source: "./media/characters/rain-fallen/side.svg"
  4475. }
  4476. },
  4477. back: {
  4478. height: math.unit(6, "feet"),
  4479. weight: math.unit(210, "lbs"),
  4480. name: "Back",
  4481. image: {
  4482. source: "./media/characters/rain-fallen/back.svg"
  4483. }
  4484. },
  4485. feral: {
  4486. height: math.unit(9, "feet"),
  4487. weight: math.unit(700, "lbs"),
  4488. name: "Feral",
  4489. image: {
  4490. source: "./media/characters/rain-fallen/feral.svg"
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Meddling with Mortals",
  4497. height: math.unit(8 + 8/12, "feet")
  4498. },
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(5, "meter")
  4502. },
  4503. {
  4504. name: "Macro",
  4505. height: math.unit(150, "meter"),
  4506. default: true
  4507. },
  4508. {
  4509. name: "Megamacro",
  4510. height: math.unit(278e6, "meter")
  4511. },
  4512. {
  4513. name: "Gigamacro",
  4514. height: math.unit(2e9, "meter")
  4515. },
  4516. {
  4517. name: "Teramacro",
  4518. height: math.unit(8e12, "meter")
  4519. },
  4520. {
  4521. name: "Devourer",
  4522. height: math.unit(14, "zettameters")
  4523. },
  4524. {
  4525. name: "Scarlet King",
  4526. height: math.unit(18, "yottameters")
  4527. },
  4528. {
  4529. name: "Void",
  4530. height: math.unit(1e88, "yottameters")
  4531. }
  4532. ]
  4533. ))
  4534. characterMakers.push(() => makeCharacter(
  4535. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4536. {
  4537. standing: {
  4538. height: math.unit(6, "feet"),
  4539. weight: math.unit(180, "lbs"),
  4540. name: "Standing",
  4541. image: {
  4542. source: "./media/characters/zaakira/standing.svg"
  4543. }
  4544. },
  4545. laying: {
  4546. height: math.unit(3, "feet"),
  4547. weight: math.unit(180, "lbs"),
  4548. name: "Laying",
  4549. image: {
  4550. source: "./media/characters/zaakira/laying.svg"
  4551. }
  4552. },
  4553. },
  4554. [
  4555. {
  4556. name: "Normal",
  4557. height: math.unit(12, "feet")
  4558. },
  4559. {
  4560. name: "Macro",
  4561. height: math.unit(279, "feet"),
  4562. default: true
  4563. }
  4564. ]
  4565. ))
  4566. characterMakers.push(() => makeCharacter(
  4567. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4568. {
  4569. femSfw: {
  4570. height: math.unit(8, "feet"),
  4571. weight: math.unit(350, "lb"),
  4572. name: "Fem",
  4573. image: {
  4574. source: "./media/characters/sigvald/fem-sfw.svg",
  4575. extra: 182 / 164,
  4576. bottom: 8.7 / 190.5
  4577. }
  4578. },
  4579. femNsfw: {
  4580. height: math.unit(8, "feet"),
  4581. weight: math.unit(350, "lb"),
  4582. name: "Fem (NSFW)",
  4583. image: {
  4584. source: "./media/characters/sigvald/fem-nsfw.svg",
  4585. extra: 182 / 164,
  4586. bottom: 8.7 / 190.5
  4587. }
  4588. },
  4589. maleNsfw: {
  4590. height: math.unit(8, "feet"),
  4591. weight: math.unit(350, "lb"),
  4592. name: "Male (NSFW)",
  4593. image: {
  4594. source: "./media/characters/sigvald/male-nsfw.svg",
  4595. extra: 182 / 164,
  4596. bottom: 8.7 / 190.5
  4597. }
  4598. },
  4599. hermNsfw: {
  4600. height: math.unit(8, "feet"),
  4601. weight: math.unit(350, "lb"),
  4602. name: "Herm (NSFW)",
  4603. image: {
  4604. source: "./media/characters/sigvald/herm-nsfw.svg",
  4605. extra: 182 / 164,
  4606. bottom: 8.7 / 190.5
  4607. }
  4608. },
  4609. dick: {
  4610. height: math.unit(2.36, "feet"),
  4611. name: "Dick",
  4612. image: {
  4613. source: "./media/characters/sigvald/dick.svg"
  4614. }
  4615. },
  4616. eye: {
  4617. height: math.unit(0.31, "feet"),
  4618. name: "Eye",
  4619. image: {
  4620. source: "./media/characters/sigvald/eye.svg"
  4621. }
  4622. },
  4623. mouth: {
  4624. height: math.unit(0.92, "feet"),
  4625. name: "Mouth",
  4626. image: {
  4627. source: "./media/characters/sigvald/mouth.svg"
  4628. }
  4629. },
  4630. paws: {
  4631. height: math.unit(2.2, "feet"),
  4632. name: "Paws",
  4633. image: {
  4634. source: "./media/characters/sigvald/paws.svg"
  4635. }
  4636. }
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(8, "feet")
  4642. },
  4643. {
  4644. name: "Large",
  4645. height: math.unit(12, "feet")
  4646. },
  4647. {
  4648. name: "Larger",
  4649. height: math.unit(20, "feet")
  4650. },
  4651. {
  4652. name: "Macro",
  4653. height: math.unit(150, "feet")
  4654. },
  4655. {
  4656. name: "Macro+",
  4657. height: math.unit(200, "feet"),
  4658. default: true
  4659. },
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4664. {
  4665. side: {
  4666. height: math.unit(12, "feet"),
  4667. weight: math.unit(2000, "kg"),
  4668. name: "Side",
  4669. image: {
  4670. source: "./media/characters/scott/side.svg",
  4671. extra: 754 / 724,
  4672. bottom: 0.069
  4673. }
  4674. },
  4675. upright: {
  4676. height: math.unit(12, "feet"),
  4677. weight: math.unit(2000, "kg"),
  4678. name: "Upright",
  4679. image: {
  4680. source: "./media/characters/scott/upright.svg",
  4681. extra: 3881 / 3722,
  4682. bottom: 0.05
  4683. }
  4684. },
  4685. },
  4686. [
  4687. {
  4688. name: "Normal",
  4689. height: math.unit(12, "feet"),
  4690. default: true
  4691. },
  4692. ]
  4693. ))
  4694. characterMakers.push(() => makeCharacter(
  4695. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4696. {
  4697. side: {
  4698. height: math.unit(8, "meters"),
  4699. weight: math.unit(84755, "lbs"),
  4700. name: "Side",
  4701. image: {
  4702. source: "./media/characters/tobias/side.svg",
  4703. extra: 1474 / 1096,
  4704. bottom: 38.9 / 1513.1235
  4705. }
  4706. },
  4707. },
  4708. [
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(8, "meters"),
  4712. default: true
  4713. },
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4718. {
  4719. front: {
  4720. height: math.unit(5.5, "feet"),
  4721. weight: math.unit(400, "lbs"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/kieran/front.svg",
  4725. extra: 2694 / 2364,
  4726. bottom: 217 / 2908
  4727. }
  4728. },
  4729. side: {
  4730. height: math.unit(5.5, "feet"),
  4731. weight: math.unit(400, "lbs"),
  4732. name: "Side",
  4733. image: {
  4734. source: "./media/characters/kieran/side.svg",
  4735. extra: 875 / 777,
  4736. bottom: 84.6 / 959
  4737. }
  4738. },
  4739. },
  4740. [
  4741. {
  4742. name: "Normal",
  4743. height: math.unit(5.5, "feet"),
  4744. default: true
  4745. },
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4750. {
  4751. side: {
  4752. height: math.unit(2, "meters"),
  4753. weight: math.unit(70, "kg"),
  4754. name: "Side",
  4755. image: {
  4756. source: "./media/characters/sanya/side.svg",
  4757. bottom: 0.02,
  4758. extra: 1.02
  4759. }
  4760. },
  4761. },
  4762. [
  4763. {
  4764. name: "Small",
  4765. height: math.unit(2, "meters")
  4766. },
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(3, "meters")
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(16, "meters"),
  4774. default: true
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4780. {
  4781. front: {
  4782. height: math.unit(2, "meters"),
  4783. weight: math.unit(120, "kg"),
  4784. name: "Front",
  4785. image: {
  4786. source: "./media/characters/miranda/front.svg",
  4787. extra: 195 / 185,
  4788. bottom: 10.9 / 206.5
  4789. }
  4790. },
  4791. back: {
  4792. height: math.unit(2, "meters"),
  4793. weight: math.unit(120, "kg"),
  4794. name: "Back",
  4795. image: {
  4796. source: "./media/characters/miranda/back.svg",
  4797. extra: 201 / 193,
  4798. bottom: 2.3 / 203.7
  4799. }
  4800. },
  4801. },
  4802. [
  4803. {
  4804. name: "Normal",
  4805. height: math.unit(10, "feet"),
  4806. default: true
  4807. }
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "James", species: ["deer"], tags: ["anthro"] },
  4812. {
  4813. side: {
  4814. height: math.unit(2, "meters"),
  4815. weight: math.unit(100, "kg"),
  4816. name: "Front",
  4817. image: {
  4818. source: "./media/characters/james/front.svg",
  4819. extra: 10 / 8.5
  4820. }
  4821. },
  4822. },
  4823. [
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(8.5, "feet"),
  4827. default: true
  4828. }
  4829. ]
  4830. ))
  4831. characterMakers.push(() => makeCharacter(
  4832. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4833. {
  4834. side: {
  4835. height: math.unit(9.5, "feet"),
  4836. weight: math.unit(2500, "lbs"),
  4837. name: "Side",
  4838. image: {
  4839. source: "./media/characters/heather/side.svg"
  4840. }
  4841. },
  4842. },
  4843. [
  4844. {
  4845. name: "Normal",
  4846. height: math.unit(9.5, "feet"),
  4847. default: true
  4848. }
  4849. ]
  4850. ))
  4851. characterMakers.push(() => makeCharacter(
  4852. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4853. {
  4854. side: {
  4855. height: math.unit(6.5, "feet"),
  4856. weight: math.unit(400, "lbs"),
  4857. name: "Side",
  4858. image: {
  4859. source: "./media/characters/lukas/side.svg",
  4860. extra: 7.25 / 6.5
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(6.5, "feet"),
  4868. default: true
  4869. }
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4874. {
  4875. side: {
  4876. height: math.unit(5, "feet"),
  4877. weight: math.unit(3000, "lbs"),
  4878. name: "Side",
  4879. image: {
  4880. source: "./media/characters/louise/side.svg"
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(5, "feet"),
  4888. default: true
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4894. {
  4895. side: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(150, "lbs"),
  4898. name: "Side",
  4899. image: {
  4900. source: "./media/characters/ramona/side.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(5.3, "meters"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Macro",
  4912. height: math.unit(20, "stories")
  4913. },
  4914. {
  4915. name: "Macro+",
  4916. height: math.unit(50, "stories")
  4917. },
  4918. ]
  4919. ))
  4920. characterMakers.push(() => makeCharacter(
  4921. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4922. {
  4923. standing: {
  4924. height: math.unit(5.75, "feet"),
  4925. weight: math.unit(160, "lbs"),
  4926. name: "Standing",
  4927. image: {
  4928. source: "./media/characters/deerpuff/standing.svg",
  4929. extra: 682 / 624
  4930. }
  4931. },
  4932. sitting: {
  4933. height: math.unit(5.75 / 1.79, "feet"),
  4934. weight: math.unit(160, "lbs"),
  4935. name: "Sitting",
  4936. image: {
  4937. source: "./media/characters/deerpuff/sitting.svg",
  4938. bottom: 44 / 400,
  4939. extra: 1
  4940. }
  4941. },
  4942. taurLaying: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(400, "lbs"),
  4945. name: "Taur (Laying)",
  4946. image: {
  4947. source: "./media/characters/deerpuff/taur-laying.svg"
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "Puffball",
  4954. height: math.unit(6, "inches")
  4955. },
  4956. {
  4957. name: "Normalpuff",
  4958. height: math.unit(5.75, "feet")
  4959. },
  4960. {
  4961. name: "Macropuff",
  4962. height: math.unit(1500, "feet"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Megapuff",
  4967. height: math.unit(500, "miles")
  4968. },
  4969. {
  4970. name: "Gigapuff",
  4971. height: math.unit(250000, "miles")
  4972. },
  4973. {
  4974. name: "Omegapuff",
  4975. height: math.unit(1000, "lightyears")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4981. {
  4982. stomping: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(170, "lbs"),
  4985. name: "Stomping",
  4986. image: {
  4987. source: "./media/characters/vivian/stomping.svg"
  4988. }
  4989. },
  4990. sitting: {
  4991. height: math.unit(6 / 1.75, "feet"),
  4992. weight: math.unit(170, "lbs"),
  4993. name: "Sitting",
  4994. image: {
  4995. source: "./media/characters/vivian/sitting.svg",
  4996. bottom: 1 / 6.4,
  4997. extra: 1,
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(7, "feet"),
  5005. default: true
  5006. },
  5007. {
  5008. name: "Macro",
  5009. height: math.unit(10, "stories")
  5010. },
  5011. {
  5012. name: "Macro+",
  5013. height: math.unit(30, "stories")
  5014. },
  5015. {
  5016. name: "Megamacro",
  5017. height: math.unit(10, "miles")
  5018. },
  5019. {
  5020. name: "Megamacro+",
  5021. height: math.unit(2750000, "meters")
  5022. },
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5027. {
  5028. front: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(160, "lbs"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/prince/front.svg",
  5034. extra: 3400 / 3000
  5035. }
  5036. },
  5037. jumping: {
  5038. height: math.unit(6, "feet"),
  5039. weight: math.unit(160, "lbs"),
  5040. name: "Jumping",
  5041. image: {
  5042. source: "./media/characters/prince/jump.svg",
  5043. extra: 2555 / 2134
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Normal",
  5050. height: math.unit(7.75, "feet"),
  5051. default: true
  5052. },
  5053. {
  5054. name: "Not cute",
  5055. height: math.unit(17, "feet")
  5056. },
  5057. {
  5058. name: "I said NOT",
  5059. height: math.unit(91, "feet")
  5060. },
  5061. {
  5062. name: "Please stop",
  5063. height: math.unit(560, "feet")
  5064. },
  5065. {
  5066. name: "What have you done",
  5067. height: math.unit(2200, "feet")
  5068. },
  5069. {
  5070. name: "Deer God",
  5071. height: math.unit(3.6, "miles")
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5077. {
  5078. standing: {
  5079. height: math.unit(6, "feet"),
  5080. weight: math.unit(300, "lbs"),
  5081. name: "Standing",
  5082. image: {
  5083. source: "./media/characters/psymon/standing.svg",
  5084. extra: 1888 / 1810,
  5085. bottom: 0.05
  5086. }
  5087. },
  5088. slithering: {
  5089. height: math.unit(6, "feet"),
  5090. weight: math.unit(300, "lbs"),
  5091. name: "Slithering",
  5092. image: {
  5093. source: "./media/characters/psymon/slithering.svg",
  5094. extra: 1330 / 1224
  5095. }
  5096. },
  5097. slitheringAlt: {
  5098. height: math.unit(6, "feet"),
  5099. weight: math.unit(300, "lbs"),
  5100. name: "Slithering (Alt)",
  5101. image: {
  5102. source: "./media/characters/psymon/slithering-alt.svg",
  5103. extra: 1330 / 1224
  5104. }
  5105. },
  5106. },
  5107. [
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(11.25, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Large",
  5115. height: math.unit(27, "feet")
  5116. },
  5117. {
  5118. name: "Giant",
  5119. height: math.unit(87, "feet")
  5120. },
  5121. {
  5122. name: "Macro",
  5123. height: math.unit(365, "feet")
  5124. },
  5125. {
  5126. name: "Megamacro",
  5127. height: math.unit(3, "miles")
  5128. },
  5129. {
  5130. name: "World Serpent",
  5131. height: math.unit(8000, "miles")
  5132. },
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5137. {
  5138. front: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(180, "lbs"),
  5141. name: "Front",
  5142. image: {
  5143. source: "./media/characters/daimos/front.svg",
  5144. extra: 4160 / 3897,
  5145. bottom: 0.021
  5146. }
  5147. }
  5148. },
  5149. [
  5150. {
  5151. name: "Normal",
  5152. height: math.unit(8, "feet"),
  5153. default: true
  5154. },
  5155. {
  5156. name: "Big Dog",
  5157. height: math.unit(22, "feet")
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(127, "feet")
  5162. },
  5163. {
  5164. name: "Megamacro",
  5165. height: math.unit(3600, "feet")
  5166. },
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5171. {
  5172. side: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(180, "lbs"),
  5175. name: "Side",
  5176. image: {
  5177. source: "./media/characters/blake/side.svg",
  5178. extra: 1212 / 1120,
  5179. bottom: 0.05
  5180. }
  5181. },
  5182. crouched: {
  5183. height: math.unit(6 * 0.57, "feet"),
  5184. weight: math.unit(180, "lbs"),
  5185. name: "Crouched",
  5186. image: {
  5187. source: "./media/characters/blake/crouched.svg",
  5188. extra: 840 / 587,
  5189. bottom: 0.04
  5190. }
  5191. },
  5192. bent: {
  5193. height: math.unit(6 * 0.75, "feet"),
  5194. weight: math.unit(180, "lbs"),
  5195. name: "Bent",
  5196. image: {
  5197. source: "./media/characters/blake/bent.svg",
  5198. extra: 592 / 544,
  5199. bottom: 0.035
  5200. }
  5201. },
  5202. },
  5203. [
  5204. {
  5205. name: "Normal",
  5206. height: math.unit(8 + 1 / 6, "feet"),
  5207. default: true
  5208. },
  5209. {
  5210. name: "Big Backside",
  5211. height: math.unit(37, "feet")
  5212. },
  5213. {
  5214. name: "Subway Shredder",
  5215. height: math.unit(72, "feet")
  5216. },
  5217. {
  5218. name: "City Carver",
  5219. height: math.unit(1675, "feet")
  5220. },
  5221. {
  5222. name: "Tectonic Tweaker",
  5223. height: math.unit(2300, "miles")
  5224. },
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5229. {
  5230. front: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(180, "lbs"),
  5233. name: "Front",
  5234. image: {
  5235. source: "./media/characters/guisetto/front.svg",
  5236. extra: 856 / 817,
  5237. bottom: 0.06
  5238. }
  5239. },
  5240. airborne: {
  5241. height: math.unit(6, "feet"),
  5242. weight: math.unit(180, "lbs"),
  5243. name: "Airborne",
  5244. image: {
  5245. source: "./media/characters/guisetto/airborne.svg",
  5246. extra: 584 / 525
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(10 + 11 / 12, "feet"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Large",
  5258. height: math.unit(35, "feet")
  5259. },
  5260. {
  5261. name: "Macro",
  5262. height: math.unit(475, "feet")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5268. {
  5269. front: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(180, "lbs"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/luxor/front.svg",
  5275. extra: 2940 / 2152
  5276. }
  5277. },
  5278. back: {
  5279. height: math.unit(6, "feet"),
  5280. weight: math.unit(180, "lbs"),
  5281. name: "Back",
  5282. image: {
  5283. source: "./media/characters/luxor/back.svg",
  5284. extra: 1083 / 960
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(5 + 5 / 6, "feet"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Lamp",
  5296. height: math.unit(50, "feet")
  5297. },
  5298. {
  5299. name: "Lämp",
  5300. height: math.unit(300, "feet")
  5301. },
  5302. {
  5303. name: "The sun is a lamp",
  5304. height: math.unit(250000, "miles")
  5305. },
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(50, "lbs"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/huoyan/front.svg"
  5317. }
  5318. },
  5319. side: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(180, "lbs"),
  5322. name: "Side",
  5323. image: {
  5324. source: "./media/characters/huoyan/side.svg"
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Chef",
  5331. height: math.unit(9, "feet")
  5332. },
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(65, "feet"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Macro",
  5340. height: math.unit(780, "feet")
  5341. },
  5342. {
  5343. name: "Flaming Mountain",
  5344. height: math.unit(4.8, "miles")
  5345. },
  5346. {
  5347. name: "Celestial",
  5348. height: math.unit(765000, "miles")
  5349. },
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5354. {
  5355. front: {
  5356. height: math.unit(5 + 3 / 4, "feet"),
  5357. weight: math.unit(120, "lbs"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/tails/front.svg"
  5361. }
  5362. }
  5363. },
  5364. [
  5365. {
  5366. name: "Normal",
  5367. height: math.unit(5 + 3 / 4, "feet"),
  5368. default: true
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5374. {
  5375. front: {
  5376. height: math.unit(4, "feet"),
  5377. weight: math.unit(50, "lbs"),
  5378. name: "Front",
  5379. image: {
  5380. source: "./media/characters/rainy/front.svg"
  5381. }
  5382. }
  5383. },
  5384. [
  5385. {
  5386. name: "Macro",
  5387. height: math.unit(800, "feet"),
  5388. default: true
  5389. }
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5394. {
  5395. front: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(150, "lbs"),
  5398. name: "Front",
  5399. image: {
  5400. source: "./media/characters/rainier/front.svg"
  5401. }
  5402. }
  5403. },
  5404. [
  5405. {
  5406. name: "Micro",
  5407. height: math.unit(2, "mm"),
  5408. default: true
  5409. }
  5410. ]
  5411. ))
  5412. characterMakers.push(() => makeCharacter(
  5413. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5414. {
  5415. front: {
  5416. height: math.unit(6, "feet"),
  5417. weight: math.unit(180, "lbs"),
  5418. name: "Front",
  5419. image: {
  5420. source: "./media/characters/andy/front.svg"
  5421. }
  5422. }
  5423. },
  5424. [
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(8, "feet"),
  5428. default: true
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(1000, "feet")
  5433. },
  5434. {
  5435. name: "Megamacro",
  5436. height: math.unit(5, "miles")
  5437. },
  5438. {
  5439. name: "Gigamacro",
  5440. height: math.unit(5000, "miles")
  5441. },
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(210, "lbs"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/cimmaron/front-sfw.svg",
  5453. extra: 701 / 676,
  5454. bottom: 0.046
  5455. }
  5456. },
  5457. back: {
  5458. height: math.unit(6, "feet"),
  5459. weight: math.unit(210, "lbs"),
  5460. name: "Back",
  5461. image: {
  5462. source: "./media/characters/cimmaron/back-sfw.svg",
  5463. extra: 701 / 676,
  5464. bottom: 0.046
  5465. }
  5466. },
  5467. frontNsfw: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(210, "lbs"),
  5470. name: "Front (NSFW)",
  5471. image: {
  5472. source: "./media/characters/cimmaron/front-nsfw.svg",
  5473. extra: 701 / 676,
  5474. bottom: 0.046
  5475. }
  5476. },
  5477. backNsfw: {
  5478. height: math.unit(6, "feet"),
  5479. weight: math.unit(210, "lbs"),
  5480. name: "Back (NSFW)",
  5481. image: {
  5482. source: "./media/characters/cimmaron/back-nsfw.svg",
  5483. extra: 701 / 676,
  5484. bottom: 0.046
  5485. }
  5486. },
  5487. dick: {
  5488. height: math.unit(1.714, "feet"),
  5489. name: "Dick",
  5490. image: {
  5491. source: "./media/characters/cimmaron/dick.svg"
  5492. }
  5493. },
  5494. },
  5495. [
  5496. {
  5497. name: "Normal",
  5498. height: math.unit(6, "feet"),
  5499. default: true
  5500. },
  5501. {
  5502. name: "Macro Mayor",
  5503. height: math.unit(350, "meters")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(6, "feet"),
  5512. weight: math.unit(200, "lbs"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/akari/front.svg",
  5516. extra: 962 / 901,
  5517. bottom: 0.04
  5518. }
  5519. }
  5520. },
  5521. [
  5522. {
  5523. name: "Micro",
  5524. height: math.unit(5, "inches"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Normal",
  5529. height: math.unit(7, "feet")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(140, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/cynosura/front.svg",
  5542. extra: 896 / 847
  5543. }
  5544. },
  5545. back: {
  5546. height: math.unit(6, "feet"),
  5547. weight: math.unit(140, "lbs"),
  5548. name: "Back",
  5549. image: {
  5550. source: "./media/characters/cynosura/back.svg",
  5551. extra: 1365 / 1250
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Micro",
  5558. height: math.unit(4, "inches")
  5559. },
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(5.75, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Tall",
  5567. height: math.unit(10, "feet")
  5568. },
  5569. {
  5570. name: "Big",
  5571. height: math.unit(20, "feet")
  5572. },
  5573. {
  5574. name: "Macro",
  5575. height: math.unit(50, "feet")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(170, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/gin/front.svg",
  5588. extra: 1.053,
  5589. bottom: 0.025
  5590. }
  5591. },
  5592. foot: {
  5593. height: math.unit(6 / 4.25, "feet"),
  5594. name: "Foot",
  5595. image: {
  5596. source: "./media/characters/gin/foot.svg"
  5597. }
  5598. },
  5599. sole: {
  5600. height: math.unit(6 / 4.40, "feet"),
  5601. name: "Sole",
  5602. image: {
  5603. source: "./media/characters/gin/sole.svg"
  5604. }
  5605. },
  5606. },
  5607. [
  5608. {
  5609. name: "Normal",
  5610. height: math.unit(13 + 2 / 12, "feet")
  5611. },
  5612. {
  5613. name: "Macro",
  5614. height: math.unit(1500, "feet")
  5615. },
  5616. {
  5617. name: "Megamacro",
  5618. height: math.unit(200, "miles"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Gigamacro",
  5623. height: math.unit(500, "megameters")
  5624. },
  5625. {
  5626. name: "Teramacro",
  5627. height: math.unit(15, "lightyears")
  5628. }
  5629. ]
  5630. ))
  5631. characterMakers.push(() => makeCharacter(
  5632. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5633. {
  5634. front: {
  5635. height: math.unit(6 + 1 / 6, "feet"),
  5636. weight: math.unit(178, "lbs"),
  5637. name: "Front",
  5638. image: {
  5639. source: "./media/characters/guy/front.svg"
  5640. }
  5641. }
  5642. },
  5643. [
  5644. {
  5645. name: "Normal",
  5646. height: math.unit(6 + 1 / 6, "feet"),
  5647. default: true
  5648. },
  5649. {
  5650. name: "Large",
  5651. height: math.unit(25 + 7 / 12, "feet")
  5652. },
  5653. {
  5654. name: "Macro",
  5655. height: math.unit(60 + 9 / 12, "feet")
  5656. },
  5657. {
  5658. name: "Macro+",
  5659. height: math.unit(246, "feet")
  5660. },
  5661. {
  5662. name: "Macro++",
  5663. height: math.unit(878, "feet")
  5664. }
  5665. ]
  5666. ))
  5667. characterMakers.push(() => makeCharacter(
  5668. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5669. {
  5670. front: {
  5671. height: math.unit(9, "feet"),
  5672. weight: math.unit(800, "lbs"),
  5673. name: "Front",
  5674. image: {
  5675. source: "./media/characters/tiberius/front.svg",
  5676. extra: 2295 / 2071
  5677. }
  5678. },
  5679. back: {
  5680. height: math.unit(9, "feet"),
  5681. weight: math.unit(800, "lbs"),
  5682. name: "Back",
  5683. image: {
  5684. source: "./media/characters/tiberius/back.svg",
  5685. extra: 2373 / 2160
  5686. }
  5687. },
  5688. },
  5689. [
  5690. {
  5691. name: "Normal",
  5692. height: math.unit(9, "feet"),
  5693. default: true
  5694. }
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5699. {
  5700. front: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(600, "lbs"),
  5703. name: "Front",
  5704. image: {
  5705. source: "./media/characters/surgo/front.svg",
  5706. extra: 3591 / 2227
  5707. }
  5708. },
  5709. back: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(600, "lbs"),
  5712. name: "Back",
  5713. image: {
  5714. source: "./media/characters/surgo/back.svg",
  5715. extra: 3557 / 2228
  5716. }
  5717. },
  5718. laying: {
  5719. height: math.unit(6 * 0.85, "feet"),
  5720. weight: math.unit(600, "lbs"),
  5721. name: "Laying",
  5722. image: {
  5723. source: "./media/characters/surgo/laying.svg"
  5724. }
  5725. },
  5726. },
  5727. [
  5728. {
  5729. name: "Normal",
  5730. height: math.unit(6, "feet"),
  5731. default: true
  5732. }
  5733. ]
  5734. ))
  5735. characterMakers.push(() => makeCharacter(
  5736. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5737. {
  5738. side: {
  5739. height: math.unit(6, "feet"),
  5740. weight: math.unit(150, "lbs"),
  5741. name: "Side",
  5742. image: {
  5743. source: "./media/characters/cibus/side.svg",
  5744. extra: 800 / 400
  5745. }
  5746. },
  5747. },
  5748. [
  5749. {
  5750. name: "Normal",
  5751. height: math.unit(6, "feet"),
  5752. default: true
  5753. }
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5758. {
  5759. front: {
  5760. height: math.unit(6, "feet"),
  5761. weight: math.unit(240, "lbs"),
  5762. name: "Front",
  5763. image: {
  5764. source: "./media/characters/nibbles/front.svg"
  5765. }
  5766. },
  5767. side: {
  5768. height: math.unit(6, "feet"),
  5769. weight: math.unit(240, "lbs"),
  5770. name: "Side",
  5771. image: {
  5772. source: "./media/characters/nibbles/side.svg"
  5773. }
  5774. },
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(9, "feet"),
  5780. default: true
  5781. }
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5786. {
  5787. side: {
  5788. height: math.unit(5 + 1 / 6, "feet"),
  5789. weight: math.unit(130, "lbs"),
  5790. name: "Side",
  5791. image: {
  5792. source: "./media/characters/rikky/side.svg",
  5793. extra: 851 / 801
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(5 + 1 / 6, "feet")
  5801. },
  5802. {
  5803. name: "Macro",
  5804. height: math.unit(152, "feet"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Megamacro",
  5809. height: math.unit(7, "miles")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5815. {
  5816. side: {
  5817. height: math.unit(370, "cm"),
  5818. weight: math.unit(350, "lbs"),
  5819. name: "Side",
  5820. image: {
  5821. source: "./media/characters/malfressa/side.svg"
  5822. }
  5823. },
  5824. walking: {
  5825. height: math.unit(370, "cm"),
  5826. weight: math.unit(350, "lbs"),
  5827. name: "Walking",
  5828. image: {
  5829. source: "./media/characters/malfressa/walking.svg"
  5830. }
  5831. },
  5832. feral: {
  5833. height: math.unit(2500, "cm"),
  5834. weight: math.unit(100000, "lbs"),
  5835. name: "Feral",
  5836. image: {
  5837. source: "./media/characters/malfressa/feral.svg",
  5838. extra: 2108 / 837,
  5839. bottom: 0.02
  5840. }
  5841. },
  5842. },
  5843. [
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(370, "cm")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(300, "meters"),
  5851. default: true
  5852. }
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5857. {
  5858. front: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(60, "kg"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/jaro/front.svg"
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(60, "kg"),
  5869. name: "Back",
  5870. image: {
  5871. source: "./media/characters/jaro/back.svg"
  5872. }
  5873. },
  5874. },
  5875. [
  5876. {
  5877. name: "Micro",
  5878. height: math.unit(7, "inches")
  5879. },
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(5.5, "feet"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Minimacro",
  5887. height: math.unit(20, "feet")
  5888. },
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(200, "meters")
  5892. }
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(6, "feet"),
  5900. weight: math.unit(195, "lb"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/rogue/front.svg"
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Macro",
  5910. height: math.unit(90, "feet"),
  5911. default: true
  5912. },
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(5 + 8 / 12, "feet"),
  5920. weight: math.unit(140, "lb"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/piper/front.svg",
  5924. extra: 3948/3655,
  5925. bottom: 0/3948
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Micro",
  5932. height: math.unit(2, "inches")
  5933. },
  5934. {
  5935. name: "Normal",
  5936. height: math.unit(5 + 8 / 12, "feet")
  5937. },
  5938. {
  5939. name: "Macro",
  5940. height: math.unit(250, "feet"),
  5941. default: true
  5942. },
  5943. {
  5944. name: "Megamacro",
  5945. height: math.unit(7, "miles")
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(220, "lb"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/gemini/front.svg"
  5958. }
  5959. },
  5960. back: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(220, "lb"),
  5963. name: "Back",
  5964. image: {
  5965. source: "./media/characters/gemini/back.svg"
  5966. }
  5967. },
  5968. kneeling: {
  5969. height: math.unit(6 / 1.5, "feet"),
  5970. weight: math.unit(220, "lb"),
  5971. name: "Kneeling",
  5972. image: {
  5973. source: "./media/characters/gemini/kneeling.svg",
  5974. bottom: 0.02
  5975. }
  5976. },
  5977. },
  5978. [
  5979. {
  5980. name: "Macro",
  5981. height: math.unit(300, "meters"),
  5982. default: true
  5983. },
  5984. {
  5985. name: "Megamacro",
  5986. height: math.unit(6900, "meters")
  5987. },
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5992. {
  5993. anthro: {
  5994. height: math.unit(2.35, "meters"),
  5995. weight: math.unit(73, "kg"),
  5996. name: "Anthro",
  5997. image: {
  5998. source: "./media/characters/alicia/anthro.svg",
  5999. extra: 2571 / 2385,
  6000. bottom: 75 / 2648
  6001. }
  6002. },
  6003. paw: {
  6004. height: math.unit(1.32, "feet"),
  6005. name: "Paw",
  6006. image: {
  6007. source: "./media/characters/alicia/paw.svg"
  6008. }
  6009. },
  6010. feral: {
  6011. height: math.unit(1.69, "meters"),
  6012. weight: math.unit(73, "kg"),
  6013. name: "Feral",
  6014. image: {
  6015. source: "./media/characters/alicia/feral.svg",
  6016. extra: 2123 / 1715,
  6017. bottom: 222 / 2349
  6018. }
  6019. },
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(2.35, "meters")
  6025. },
  6026. {
  6027. name: "Macro",
  6028. height: math.unit(60, "meters"),
  6029. default: true
  6030. },
  6031. {
  6032. name: "Megamacro",
  6033. height: math.unit(10000, "kilometers")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6039. {
  6040. front: {
  6041. height: math.unit(7, "feet"),
  6042. weight: math.unit(250, "lbs"),
  6043. name: "Front",
  6044. image: {
  6045. source: "./media/characters/archy/front.svg"
  6046. }
  6047. }
  6048. },
  6049. [
  6050. {
  6051. name: "Micro",
  6052. height: math.unit(1, "inch")
  6053. },
  6054. {
  6055. name: "Shorty",
  6056. height: math.unit(5, "feet")
  6057. },
  6058. {
  6059. name: "Normal",
  6060. height: math.unit(7, "feet")
  6061. },
  6062. {
  6063. name: "Macro",
  6064. height: math.unit(600, "meters"),
  6065. default: true
  6066. },
  6067. {
  6068. name: "Megamacro",
  6069. height: math.unit(1, "mile")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(1.65, "meters"),
  6078. weight: math.unit(74, "kg"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/berri/front.svg",
  6082. extra: 857 / 837,
  6083. bottom: 18 / 877
  6084. }
  6085. },
  6086. bum: {
  6087. height: math.unit(1.46, "feet"),
  6088. name: "Bum",
  6089. image: {
  6090. source: "./media/characters/berri/bum.svg"
  6091. }
  6092. },
  6093. mouth: {
  6094. height: math.unit(0.44, "feet"),
  6095. name: "Mouth",
  6096. image: {
  6097. source: "./media/characters/berri/mouth.svg"
  6098. }
  6099. },
  6100. paw: {
  6101. height: math.unit(0.826, "feet"),
  6102. name: "Paw",
  6103. image: {
  6104. source: "./media/characters/berri/paw.svg"
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(1.65, "meters")
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(60, "m"),
  6116. default: true
  6117. },
  6118. {
  6119. name: "Megamacro",
  6120. height: math.unit(9.213, "km")
  6121. },
  6122. {
  6123. name: "Planet Eater",
  6124. height: math.unit(489, "megameters")
  6125. },
  6126. {
  6127. name: "Teramacro",
  6128. height: math.unit(2471635000000, "meters")
  6129. },
  6130. {
  6131. name: "Examacro",
  6132. height: math.unit(8.0624e+26, "meters")
  6133. }
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(1.72, "meters"),
  6141. weight: math.unit(68, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/lexi/front.svg"
  6145. }
  6146. }
  6147. },
  6148. [
  6149. {
  6150. name: "Very Smol",
  6151. height: math.unit(10, "mm")
  6152. },
  6153. {
  6154. name: "Micro",
  6155. height: math.unit(6.8, "cm"),
  6156. default: true
  6157. },
  6158. {
  6159. name: "Normal",
  6160. height: math.unit(1.72, "m")
  6161. }
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6166. {
  6167. front: {
  6168. height: math.unit(1.69, "meters"),
  6169. weight: math.unit(68, "kg"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/martin/front.svg",
  6173. extra: 596 / 581
  6174. }
  6175. }
  6176. },
  6177. [
  6178. {
  6179. name: "Micro",
  6180. height: math.unit(6.85, "cm"),
  6181. default: true
  6182. },
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(1.69, "m")
  6186. }
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6191. {
  6192. front: {
  6193. height: math.unit(1.69, "meters"),
  6194. weight: math.unit(68, "kg"),
  6195. name: "Front",
  6196. image: {
  6197. source: "./media/characters/juno/front.svg"
  6198. }
  6199. }
  6200. },
  6201. [
  6202. {
  6203. name: "Micro",
  6204. height: math.unit(7, "cm")
  6205. },
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(1.89, "m")
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(353, "meters"),
  6213. default: true
  6214. }
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6219. {
  6220. front: {
  6221. height: math.unit(1.93, "meters"),
  6222. weight: math.unit(83, "kg"),
  6223. name: "Front",
  6224. image: {
  6225. source: "./media/characters/samantha/front.svg"
  6226. }
  6227. },
  6228. frontClothed: {
  6229. height: math.unit(1.93, "meters"),
  6230. weight: math.unit(83, "kg"),
  6231. name: "Front (Clothed)",
  6232. image: {
  6233. source: "./media/characters/samantha/front-clothed.svg"
  6234. }
  6235. },
  6236. back: {
  6237. height: math.unit(1.93, "meters"),
  6238. weight: math.unit(83, "kg"),
  6239. name: "Back",
  6240. image: {
  6241. source: "./media/characters/samantha/back.svg"
  6242. }
  6243. },
  6244. },
  6245. [
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(1.93, "m")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(74, "meters"),
  6253. default: true
  6254. },
  6255. {
  6256. name: "Macro+",
  6257. height: math.unit(223, "meters"),
  6258. },
  6259. {
  6260. name: "Megamacro",
  6261. height: math.unit(8381, "meters"),
  6262. },
  6263. {
  6264. name: "Megamacro+",
  6265. height: math.unit(12000, "kilometers")
  6266. },
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6271. {
  6272. front: {
  6273. height: math.unit(1.92, "meters"),
  6274. weight: math.unit(80, "kg"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/dr-clay/front.svg"
  6278. }
  6279. },
  6280. frontClothed: {
  6281. height: math.unit(1.92, "meters"),
  6282. weight: math.unit(80, "kg"),
  6283. name: "Front (Clothed)",
  6284. image: {
  6285. source: "./media/characters/dr-clay/front-clothed.svg"
  6286. }
  6287. }
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(1.92, "m")
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(214, "meters"),
  6297. default: true
  6298. },
  6299. {
  6300. name: "Macro+",
  6301. height: math.unit(12.237, "meters"),
  6302. },
  6303. {
  6304. name: "Megamacro",
  6305. height: math.unit(557, "megameters"),
  6306. },
  6307. {
  6308. name: "Unimaginable",
  6309. height: math.unit(120e9, "lightyears")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(2, "meters"),
  6318. weight: math.unit(80, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6322. }
  6323. }
  6324. },
  6325. [
  6326. {
  6327. name: "Teramacro",
  6328. height: math.unit(500000, "lightyears"),
  6329. default: true
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(2, "meters"),
  6338. weight: math.unit(150, "kg"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/vemus/front.svg",
  6342. extra: 2384 / 2084,
  6343. bottom: 0.0123
  6344. }
  6345. }
  6346. },
  6347. [
  6348. {
  6349. name: "Normal",
  6350. height: math.unit(3.75, "meters"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Big",
  6355. height: math.unit(8, "meters")
  6356. },
  6357. {
  6358. name: "Macro",
  6359. height: math.unit(100, "meters")
  6360. },
  6361. {
  6362. name: "Macro+",
  6363. height: math.unit(1500, "meters")
  6364. },
  6365. {
  6366. name: "Stellar",
  6367. height: math.unit(14e8, "meters")
  6368. },
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6373. {
  6374. front: {
  6375. height: math.unit(2, "meters"),
  6376. weight: math.unit(70, "kg"),
  6377. name: "Front",
  6378. image: {
  6379. source: "./media/characters/beherit/front.svg",
  6380. extra: 1408 / 1242
  6381. }
  6382. }
  6383. },
  6384. [
  6385. {
  6386. name: "Normal",
  6387. height: math.unit(6, "feet")
  6388. },
  6389. {
  6390. name: "Lorg",
  6391. height: math.unit(25, "feet"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Lorger",
  6396. height: math.unit(75, "feet")
  6397. },
  6398. {
  6399. name: "Macro",
  6400. height: math.unit(200, "meters")
  6401. },
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(2, "meters"),
  6409. weight: math.unit(150, "kg"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/everett/front.svg",
  6413. extra: 2038 / 1737,
  6414. bottom: 0.03
  6415. }
  6416. },
  6417. paw: {
  6418. height: math.unit(2 / 3.6, "meters"),
  6419. name: "Paw",
  6420. image: {
  6421. source: "./media/characters/everett/paw.svg"
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(15, "feet"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Lorg",
  6433. height: math.unit(70, "feet"),
  6434. default: true
  6435. },
  6436. {
  6437. name: "Lorger",
  6438. height: math.unit(250, "feet")
  6439. },
  6440. {
  6441. name: "Macro",
  6442. height: math.unit(500, "meters")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(2, "meters"),
  6451. weight: math.unit(86, "kg"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/rose/front.svg",
  6455. extra: 350/335,
  6456. bottom: 10/360
  6457. }
  6458. },
  6459. frontAlt: {
  6460. height: math.unit(1.6, "meters"),
  6461. weight: math.unit(86, "kg"),
  6462. name: "Front (Alt)",
  6463. image: {
  6464. source: "./media/characters/rose/front-alt.svg",
  6465. extra: 299/283,
  6466. bottom: 3/302
  6467. }
  6468. },
  6469. plush: {
  6470. height: math.unit(2, "meters"),
  6471. weight: math.unit(86/3, "kg"),
  6472. name: "Plush",
  6473. image: {
  6474. source: "./media/characters/rose/plush.svg",
  6475. extra: 361/337,
  6476. bottom: 11/372
  6477. }
  6478. },
  6479. },
  6480. [
  6481. {
  6482. name: "Mini-Micro",
  6483. height: math.unit(1, "cm")
  6484. },
  6485. {
  6486. name: "Micro",
  6487. height: math.unit(3.5, "inches"),
  6488. default: true
  6489. },
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(6 + 1 / 6, "feet")
  6493. },
  6494. {
  6495. name: "Mini-Macro",
  6496. height: math.unit(9 + 10 / 12, "feet")
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(2, "meters"),
  6505. weight: math.unit(350, "lbs"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/regal/front.svg"
  6509. }
  6510. },
  6511. back: {
  6512. height: math.unit(2, "meters"),
  6513. weight: math.unit(350, "lbs"),
  6514. name: "Back",
  6515. image: {
  6516. source: "./media/characters/regal/back.svg"
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Macro",
  6523. height: math.unit(350, "feet"),
  6524. default: true
  6525. }
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(4 + 11 / 12, "feet"),
  6533. weight: math.unit(100, "lbs"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/opal/front.svg"
  6537. }
  6538. },
  6539. frontAlt: {
  6540. height: math.unit(4 + 11 / 12, "feet"),
  6541. weight: math.unit(100, "lbs"),
  6542. name: "Front (Alt)",
  6543. image: {
  6544. source: "./media/characters/opal/front-alt.svg"
  6545. }
  6546. },
  6547. },
  6548. [
  6549. {
  6550. name: "Small",
  6551. height: math.unit(4 + 11 / 12, "feet")
  6552. },
  6553. {
  6554. name: "Normal",
  6555. height: math.unit(20, "feet"),
  6556. default: true
  6557. },
  6558. {
  6559. name: "Macro",
  6560. height: math.unit(120, "feet")
  6561. },
  6562. {
  6563. name: "Megamacro",
  6564. height: math.unit(80, "miles")
  6565. },
  6566. {
  6567. name: "True Size",
  6568. height: math.unit(100000, "lightyears")
  6569. },
  6570. ]
  6571. ))
  6572. characterMakers.push(() => makeCharacter(
  6573. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6574. {
  6575. front: {
  6576. height: math.unit(6, "feet"),
  6577. weight: math.unit(200, "lbs"),
  6578. name: "Front",
  6579. image: {
  6580. source: "./media/characters/vector-wuff/front.svg"
  6581. }
  6582. }
  6583. },
  6584. [
  6585. {
  6586. name: "Normal",
  6587. height: math.unit(2.8, "meters")
  6588. },
  6589. {
  6590. name: "Macro",
  6591. height: math.unit(450, "meters"),
  6592. default: true
  6593. },
  6594. {
  6595. name: "Megamacro",
  6596. height: math.unit(15, "kilometers")
  6597. }
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6602. {
  6603. front: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(256, "lbs"),
  6606. name: "Front",
  6607. image: {
  6608. source: "./media/characters/dannik/front.svg"
  6609. }
  6610. }
  6611. },
  6612. [
  6613. {
  6614. name: "Macro",
  6615. height: math.unit(69.57, "meters"),
  6616. default: true
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(120, "lbs"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/azura-saharah/front.svg"
  6629. }
  6630. },
  6631. back: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(120, "lbs"),
  6634. name: "Back",
  6635. image: {
  6636. source: "./media/characters/azura-saharah/back.svg"
  6637. }
  6638. },
  6639. },
  6640. [
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(100, "feet"),
  6644. default: true
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6650. {
  6651. side: {
  6652. height: math.unit(5 + 4 / 12, "feet"),
  6653. weight: math.unit(163, "lbs"),
  6654. name: "Side",
  6655. image: {
  6656. source: "./media/characters/kennedy/side.svg"
  6657. }
  6658. }
  6659. },
  6660. [
  6661. {
  6662. name: "Standard Doggo",
  6663. height: math.unit(5 + 4 / 12, "feet")
  6664. },
  6665. {
  6666. name: "Big Doggo",
  6667. height: math.unit(25 + 3 / 12, "feet"),
  6668. default: true
  6669. },
  6670. ]
  6671. ))
  6672. characterMakers.push(() => makeCharacter(
  6673. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6674. {
  6675. front: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(90, "lbs"),
  6678. name: "Front",
  6679. image: {
  6680. source: "./media/characters/odi-lunar/front.svg"
  6681. }
  6682. }
  6683. },
  6684. [
  6685. {
  6686. name: "Micro",
  6687. height: math.unit(3, "inches"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Normal",
  6692. height: math.unit(5.5, "feet")
  6693. }
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6698. {
  6699. back: {
  6700. height: math.unit(6, "feet"),
  6701. weight: math.unit(220, "lbs"),
  6702. name: "Back",
  6703. image: {
  6704. source: "./media/characters/mandake/back.svg"
  6705. }
  6706. }
  6707. },
  6708. [
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(7, "feet"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(78, "feet")
  6717. },
  6718. {
  6719. name: "Macro+",
  6720. height: math.unit(300, "meters")
  6721. },
  6722. {
  6723. name: "Macro++",
  6724. height: math.unit(2400, "feet")
  6725. },
  6726. {
  6727. name: "Megamacro",
  6728. height: math.unit(5167, "meters")
  6729. },
  6730. {
  6731. name: "Gigamacro",
  6732. height: math.unit(41769, "miles")
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(120, "lbs"),
  6742. name: "Front",
  6743. image: {
  6744. source: "./media/characters/yozey/front.svg"
  6745. }
  6746. },
  6747. frontAlt: {
  6748. height: math.unit(6, "feet"),
  6749. weight: math.unit(120, "lbs"),
  6750. name: "Front (Alt)",
  6751. image: {
  6752. source: "./media/characters/yozey/front-alt.svg"
  6753. }
  6754. },
  6755. side: {
  6756. height: math.unit(6, "feet"),
  6757. weight: math.unit(120, "lbs"),
  6758. name: "Side",
  6759. image: {
  6760. source: "./media/characters/yozey/side.svg"
  6761. }
  6762. },
  6763. },
  6764. [
  6765. {
  6766. name: "Micro",
  6767. height: math.unit(3, "inches"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Normal",
  6772. height: math.unit(6, "feet")
  6773. }
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(103, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/valeska-voss/front.svg"
  6785. }
  6786. }
  6787. },
  6788. [
  6789. {
  6790. name: "Mini-Sized Sub",
  6791. height: math.unit(3.1, "inches")
  6792. },
  6793. {
  6794. name: "Mid-Sized Sub",
  6795. height: math.unit(6.2, "inches")
  6796. },
  6797. {
  6798. name: "Full-Sized Sub",
  6799. height: math.unit(9.3, "inches")
  6800. },
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(5 + 2 / 12, "foot"),
  6804. default: true
  6805. },
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(160, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/gene-zeta/front.svg",
  6817. extra: 3006 / 2826,
  6818. bottom: 182 / 3188
  6819. }
  6820. }
  6821. },
  6822. [
  6823. {
  6824. name: "Micro",
  6825. height: math.unit(6, "inches")
  6826. },
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(5 + 11 / 12, "foot"),
  6830. default: true
  6831. },
  6832. {
  6833. name: "Macro",
  6834. height: math.unit(140, "feet")
  6835. },
  6836. {
  6837. name: "Supercharged",
  6838. height: math.unit(2500, "feet")
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6844. {
  6845. front: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(350, "lbs"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/razinox/front.svg",
  6851. extra: 1686 / 1548,
  6852. bottom: 28.2 / 1868
  6853. }
  6854. },
  6855. back: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(350, "lbs"),
  6858. name: "Back",
  6859. image: {
  6860. source: "./media/characters/razinox/back.svg",
  6861. extra: 1660 / 1590,
  6862. bottom: 15 / 1665
  6863. }
  6864. },
  6865. },
  6866. [
  6867. {
  6868. name: "Normal",
  6869. height: math.unit(10 + 8 / 12, "foot")
  6870. },
  6871. {
  6872. name: "Minimacro",
  6873. height: math.unit(15, "foot")
  6874. },
  6875. {
  6876. name: "Macro",
  6877. height: math.unit(60, "foot"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Megamacro",
  6882. height: math.unit(5, "miles")
  6883. },
  6884. {
  6885. name: "Gigamacro",
  6886. height: math.unit(6000, "miles")
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6892. {
  6893. front: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(150, "lbs"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/cobalt/front.svg"
  6899. }
  6900. }
  6901. },
  6902. [
  6903. {
  6904. name: "Normal",
  6905. height: math.unit(8 + 1 / 12, "foot")
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(111, "foot"),
  6910. default: true
  6911. },
  6912. {
  6913. name: "Supracosmic",
  6914. height: math.unit(1e42, "feet")
  6915. },
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6920. {
  6921. front: {
  6922. height: math.unit(6, "feet"),
  6923. weight: math.unit(140, "lbs"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/amanda/front.svg"
  6927. }
  6928. }
  6929. },
  6930. [
  6931. {
  6932. name: "Micro",
  6933. height: math.unit(5, "inches"),
  6934. default: true
  6935. },
  6936. ]
  6937. ))
  6938. characterMakers.push(() => makeCharacter(
  6939. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6940. {
  6941. front: {
  6942. height: math.unit(2.75, "meters"),
  6943. weight: math.unit(1200, "lb"),
  6944. name: "Front",
  6945. image: {
  6946. source: "./media/characters/teal/front.svg",
  6947. extra: 2463 / 2320,
  6948. bottom: 166 / 2629
  6949. }
  6950. },
  6951. back: {
  6952. height: math.unit(2.75, "meters"),
  6953. weight: math.unit(1200, "lb"),
  6954. name: "Back",
  6955. image: {
  6956. source: "./media/characters/teal/back.svg",
  6957. extra: 2580 / 2489,
  6958. bottom: 151 / 2731
  6959. }
  6960. },
  6961. sitting: {
  6962. height: math.unit(1.9, "meters"),
  6963. weight: math.unit(1200, "lb"),
  6964. name: "Sitting",
  6965. image: {
  6966. source: "./media/characters/teal/sitting.svg",
  6967. extra: 623 / 590,
  6968. bottom: 121 / 744
  6969. }
  6970. },
  6971. standing: {
  6972. height: math.unit(2.75, "meters"),
  6973. weight: math.unit(1200, "lb"),
  6974. name: "Standing",
  6975. image: {
  6976. source: "./media/characters/teal/standing.svg",
  6977. extra: 923 / 893,
  6978. bottom: 60 / 983
  6979. }
  6980. },
  6981. stretching: {
  6982. height: math.unit(3.65, "meters"),
  6983. weight: math.unit(1200, "lb"),
  6984. name: "Stretching",
  6985. image: {
  6986. source: "./media/characters/teal/stretching.svg",
  6987. extra: 1276 / 1244,
  6988. bottom: 0 / 1276
  6989. }
  6990. },
  6991. legged: {
  6992. height: math.unit(1.3, "meters"),
  6993. weight: math.unit(100, "lb"),
  6994. name: "Legged",
  6995. image: {
  6996. source: "./media/characters/teal/legged.svg",
  6997. extra: 462 / 437,
  6998. bottom: 24 / 486
  6999. }
  7000. },
  7001. naga: {
  7002. height: math.unit(5.4, "meters"),
  7003. weight: math.unit(4000, "lb"),
  7004. name: "Naga",
  7005. image: {
  7006. source: "./media/characters/teal/naga.svg",
  7007. extra: 1902 / 1858,
  7008. bottom: 0 / 1902
  7009. }
  7010. },
  7011. hand: {
  7012. height: math.unit(0.52, "meters"),
  7013. name: "Hand",
  7014. image: {
  7015. source: "./media/characters/teal/hand.svg"
  7016. }
  7017. },
  7018. maw: {
  7019. height: math.unit(0.43, "meters"),
  7020. name: "Maw",
  7021. image: {
  7022. source: "./media/characters/teal/maw.svg"
  7023. }
  7024. },
  7025. slit: {
  7026. height: math.unit(0.25, "meters"),
  7027. name: "Slit",
  7028. image: {
  7029. source: "./media/characters/teal/slit.svg"
  7030. }
  7031. },
  7032. },
  7033. [
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(2.75, "meters"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(300, "feet")
  7042. },
  7043. {
  7044. name: "Macro+",
  7045. height: math.unit(2000, "feet")
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7051. {
  7052. frontCat: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(180, "lbs"),
  7055. name: "Front (Cat)",
  7056. image: {
  7057. source: "./media/characters/ravin-amulet/front-cat.svg"
  7058. }
  7059. },
  7060. frontCatAlt: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(180, "lbs"),
  7063. name: "Front (Alt, Cat)",
  7064. image: {
  7065. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7066. }
  7067. },
  7068. frontWerewolf: {
  7069. height: math.unit(6 * 1.2, "feet"),
  7070. weight: math.unit(225, "lbs"),
  7071. name: "Front (Werewolf)",
  7072. image: {
  7073. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7074. }
  7075. },
  7076. backWerewolf: {
  7077. height: math.unit(6 * 1.2, "feet"),
  7078. weight: math.unit(225, "lbs"),
  7079. name: "Back (Werewolf)",
  7080. image: {
  7081. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Nano",
  7088. height: math.unit(1, "micrometer")
  7089. },
  7090. {
  7091. name: "Micro",
  7092. height: math.unit(1, "inch")
  7093. },
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(6, "feet"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(60, "feet")
  7102. }
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(165, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/fluoresce/front.svg"
  7114. }
  7115. }
  7116. },
  7117. [
  7118. {
  7119. name: "Micro",
  7120. height: math.unit(6, "cm")
  7121. },
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(5 + 7 / 12, "feet"),
  7125. default: true
  7126. },
  7127. {
  7128. name: "Macro",
  7129. height: math.unit(56, "feet")
  7130. },
  7131. {
  7132. name: "Megamacro",
  7133. height: math.unit(1.9, "miles")
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(9 + 6 / 12, "feet"),
  7142. weight: math.unit(523, "lbs"),
  7143. name: "Side",
  7144. image: {
  7145. source: "./media/characters/aurora/side.svg"
  7146. }
  7147. }
  7148. },
  7149. [
  7150. {
  7151. name: "Normal",
  7152. height: math.unit(9 + 6 / 12, "feet")
  7153. },
  7154. {
  7155. name: "Macro",
  7156. height: math.unit(96, "feet"),
  7157. default: true
  7158. },
  7159. {
  7160. name: "Macro+",
  7161. height: math.unit(243, "feet")
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7167. {
  7168. front: {
  7169. height: math.unit(194, "cm"),
  7170. weight: math.unit(90, "kg"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/ranek/front.svg"
  7174. }
  7175. },
  7176. side: {
  7177. height: math.unit(194, "cm"),
  7178. weight: math.unit(90, "kg"),
  7179. name: "Side",
  7180. image: {
  7181. source: "./media/characters/ranek/side.svg"
  7182. }
  7183. },
  7184. back: {
  7185. height: math.unit(194, "cm"),
  7186. weight: math.unit(90, "kg"),
  7187. name: "Back",
  7188. image: {
  7189. source: "./media/characters/ranek/back.svg"
  7190. }
  7191. },
  7192. feral: {
  7193. height: math.unit(30, "cm"),
  7194. weight: math.unit(1.6, "lbs"),
  7195. name: "Feral",
  7196. image: {
  7197. source: "./media/characters/ranek/feral.svg"
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(194, "cm"),
  7205. default: true
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(100, "meters")
  7210. },
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7215. {
  7216. front: {
  7217. height: math.unit(5 + 6 / 12, "feet"),
  7218. weight: math.unit(153, "lbs"),
  7219. name: "Front",
  7220. image: {
  7221. source: "./media/characters/andrew-cooper/front.svg"
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Nano",
  7228. height: math.unit(1, "mm")
  7229. },
  7230. {
  7231. name: "Micro",
  7232. height: math.unit(2, "inches")
  7233. },
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(5 + 6 / 12, "feet"),
  7237. default: true
  7238. }
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(6, "feet"),
  7246. weight: math.unit(180, "lbs"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/akane-sato/front.svg",
  7250. extra: 1219 / 1140
  7251. }
  7252. },
  7253. back: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(180, "lbs"),
  7256. name: "Back",
  7257. image: {
  7258. source: "./media/characters/akane-sato/back.svg",
  7259. extra: 1219 / 1170
  7260. }
  7261. },
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(2.5, "meters")
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(250, "meters"),
  7271. default: true
  7272. },
  7273. {
  7274. name: "Megamacro",
  7275. height: math.unit(25, "km")
  7276. },
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7281. {
  7282. front: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(65, "kg"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/rook/front.svg",
  7288. extra: 960 / 950
  7289. }
  7290. }
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(8.8, "feet")
  7296. },
  7297. {
  7298. name: "Macro",
  7299. height: math.unit(88, "feet"),
  7300. default: true
  7301. },
  7302. {
  7303. name: "Megamacro",
  7304. height: math.unit(8, "miles")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(12 + 2 / 12, "feet"),
  7313. weight: math.unit(808, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/prodigy/front.svg"
  7317. }
  7318. }
  7319. },
  7320. [
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(12 + 2 / 12, "feet"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(143, "feet")
  7329. },
  7330. {
  7331. name: "Macro+",
  7332. height: math.unit(400, "feet")
  7333. },
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(225, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/daniel/front.svg"
  7345. }
  7346. },
  7347. leaning: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(225, "lbs"),
  7350. name: "Leaning",
  7351. image: {
  7352. source: "./media/characters/daniel/leaning.svg"
  7353. }
  7354. },
  7355. },
  7356. [
  7357. {
  7358. name: "Macro",
  7359. height: math.unit(1000, "feet"),
  7360. default: true
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(88, "lbs"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/chiros/front.svg",
  7373. extra: 306 / 226
  7374. }
  7375. },
  7376. side: {
  7377. height: math.unit(6, "feet"),
  7378. weight: math.unit(88, "lbs"),
  7379. name: "Side",
  7380. image: {
  7381. source: "./media/characters/chiros/side.svg",
  7382. extra: 306 / 226
  7383. }
  7384. },
  7385. },
  7386. [
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(6, "cm"),
  7390. default: true
  7391. },
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7396. {
  7397. front: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(100, "lbs"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/selka/front.svg",
  7403. extra: 947 / 887
  7404. }
  7405. }
  7406. },
  7407. [
  7408. {
  7409. name: "Normal",
  7410. height: math.unit(5, "cm"),
  7411. default: true
  7412. },
  7413. ]
  7414. ))
  7415. characterMakers.push(() => makeCharacter(
  7416. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7417. {
  7418. front: {
  7419. height: math.unit(8 + 3 / 12, "feet"),
  7420. weight: math.unit(424, "lbs"),
  7421. name: "Front",
  7422. image: {
  7423. source: "./media/characters/verin/front.svg",
  7424. extra: 1845 / 1550
  7425. }
  7426. },
  7427. frontArmored: {
  7428. height: math.unit(8 + 3 / 12, "feet"),
  7429. weight: math.unit(424, "lbs"),
  7430. name: "Front (Armored)",
  7431. image: {
  7432. source: "./media/characters/verin/front-armor.svg",
  7433. extra: 1845 / 1550,
  7434. bottom: 0.01
  7435. }
  7436. },
  7437. back: {
  7438. height: math.unit(8 + 3 / 12, "feet"),
  7439. weight: math.unit(424, "lbs"),
  7440. name: "Back",
  7441. image: {
  7442. source: "./media/characters/verin/back.svg",
  7443. bottom: 0.1,
  7444. extra: 1
  7445. }
  7446. },
  7447. foot: {
  7448. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7449. name: "Foot",
  7450. image: {
  7451. source: "./media/characters/verin/foot.svg"
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(8 + 3 / 12, "feet")
  7459. },
  7460. {
  7461. name: "Minimacro",
  7462. height: math.unit(21, "feet"),
  7463. default: true
  7464. },
  7465. {
  7466. name: "Macro",
  7467. height: math.unit(626, "feet")
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(2.718, "meters"),
  7476. weight: math.unit(150, "lbs"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/sovrim-terraquian/front.svg"
  7480. }
  7481. },
  7482. back: {
  7483. height: math.unit(2.718, "meters"),
  7484. weight: math.unit(150, "lbs"),
  7485. name: "Back",
  7486. image: {
  7487. source: "./media/characters/sovrim-terraquian/back.svg"
  7488. }
  7489. }
  7490. },
  7491. [
  7492. {
  7493. name: "Micro",
  7494. height: math.unit(2, "inches")
  7495. },
  7496. {
  7497. name: "Small",
  7498. height: math.unit(1, "meter")
  7499. },
  7500. {
  7501. name: "Normal",
  7502. height: math.unit(Math.E, "meters"),
  7503. default: true
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(20, "meters")
  7508. },
  7509. {
  7510. name: "Macro+",
  7511. height: math.unit(400, "meters")
  7512. },
  7513. ]
  7514. ))
  7515. characterMakers.push(() => makeCharacter(
  7516. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7517. {
  7518. front: {
  7519. height: math.unit(7, "feet"),
  7520. weight: math.unit(489, "lbs"),
  7521. name: "Front",
  7522. image: {
  7523. source: "./media/characters/reece-silvermane/front.svg",
  7524. bottom: 0.02,
  7525. extra: 1
  7526. }
  7527. },
  7528. },
  7529. [
  7530. {
  7531. name: "Macro",
  7532. height: math.unit(1.5, "miles"),
  7533. default: true
  7534. },
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(78, "kg"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/kane/front.svg",
  7546. extra: 978 / 899
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(2.1, "m"),
  7554. },
  7555. {
  7556. name: "Macro",
  7557. height: math.unit(1, "km"),
  7558. default: true
  7559. },
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(200, "kg"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/tegon/front.svg",
  7571. bottom: 0.01,
  7572. extra: 1
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(1, "inch")
  7580. },
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(6 + 3 / 12, "feet"),
  7584. default: true
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(300, "feet")
  7589. },
  7590. {
  7591. name: "Megamacro",
  7592. height: math.unit(69, "miles")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7598. {
  7599. side: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(2304, "lbs"),
  7602. name: "Side",
  7603. image: {
  7604. source: "./media/characters/arcturax/side.svg",
  7605. extra: 790 / 376,
  7606. bottom: 0.01
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Micro",
  7613. height: math.unit(2, "inch")
  7614. },
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(6, "feet")
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(39, "feet"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(7, "miles")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7632. {
  7633. front: {
  7634. height: math.unit(6, "feet"),
  7635. weight: math.unit(50, "lbs"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/sentri/front.svg",
  7639. extra: 1750 / 1570,
  7640. bottom: 0.025
  7641. }
  7642. },
  7643. frontAlt: {
  7644. height: math.unit(6, "feet"),
  7645. weight: math.unit(50, "lbs"),
  7646. name: "Front (Alt)",
  7647. image: {
  7648. source: "./media/characters/sentri/front-alt.svg",
  7649. extra: 1750 / 1570,
  7650. bottom: 0.025
  7651. }
  7652. },
  7653. },
  7654. [
  7655. {
  7656. name: "Normal",
  7657. height: math.unit(15, "feet"),
  7658. default: true
  7659. },
  7660. {
  7661. name: "Macro",
  7662. height: math.unit(2500, "feet")
  7663. }
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(5 + 8 / 12, "feet"),
  7671. weight: math.unit(130, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/corvin/front.svg",
  7675. extra: 1803 / 1629
  7676. }
  7677. },
  7678. frontShirt: {
  7679. height: math.unit(5 + 8 / 12, "feet"),
  7680. weight: math.unit(130, "lbs"),
  7681. name: "Front (Shirt)",
  7682. image: {
  7683. source: "./media/characters/corvin/front-shirt.svg",
  7684. extra: 1803 / 1629
  7685. }
  7686. },
  7687. frontPoncho: {
  7688. height: math.unit(5 + 8 / 12, "feet"),
  7689. weight: math.unit(130, "lbs"),
  7690. name: "Front (Poncho)",
  7691. image: {
  7692. source: "./media/characters/corvin/front-poncho.svg",
  7693. extra: 1803 / 1629
  7694. }
  7695. },
  7696. side: {
  7697. height: math.unit(5 + 8 / 12, "feet"),
  7698. weight: math.unit(130, "lbs"),
  7699. name: "Side",
  7700. image: {
  7701. source: "./media/characters/corvin/side.svg",
  7702. extra: 1012 / 945
  7703. }
  7704. },
  7705. back: {
  7706. height: math.unit(5 + 8 / 12, "feet"),
  7707. weight: math.unit(130, "lbs"),
  7708. name: "Back",
  7709. image: {
  7710. source: "./media/characters/corvin/back.svg",
  7711. extra: 1803 / 1629
  7712. }
  7713. },
  7714. },
  7715. [
  7716. {
  7717. name: "Micro",
  7718. height: math.unit(3, "inches")
  7719. },
  7720. {
  7721. name: "Normal",
  7722. height: math.unit(5 + 8 / 12, "feet")
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(300, "feet"),
  7727. default: true
  7728. },
  7729. {
  7730. name: "Megamacro",
  7731. height: math.unit(500, "miles")
  7732. }
  7733. ]
  7734. ))
  7735. characterMakers.push(() => makeCharacter(
  7736. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7737. {
  7738. front: {
  7739. height: math.unit(6, "feet"),
  7740. weight: math.unit(135, "lbs"),
  7741. name: "Front",
  7742. image: {
  7743. source: "./media/characters/q/front.svg",
  7744. extra: 854 / 752,
  7745. bottom: 0.005
  7746. }
  7747. },
  7748. back: {
  7749. height: math.unit(6, "feet"),
  7750. weight: math.unit(130, "lbs"),
  7751. name: "Back",
  7752. image: {
  7753. source: "./media/characters/q/back.svg",
  7754. extra: 854 / 752
  7755. }
  7756. },
  7757. },
  7758. [
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(90, "feet"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Extra Macro",
  7766. height: math.unit(300, "feet"),
  7767. },
  7768. {
  7769. name: "BIG WALF",
  7770. height: math.unit(750, "feet"),
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(6, "feet"),
  7779. weight: math.unit(150, "lbs"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/carley/front.svg",
  7783. extra: 3927 / 3540,
  7784. bottom: 29.2 / 735
  7785. }
  7786. }
  7787. },
  7788. [
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(6 + 3 / 12, "feet")
  7792. },
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(185, "feet"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Megamacro",
  7800. height: math.unit(8, "miles"),
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(3, "feet"),
  7809. weight: math.unit(28, "lbs"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/citrine/front.svg"
  7813. }
  7814. }
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(3, "feet"),
  7820. default: true
  7821. }
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7826. {
  7827. front: {
  7828. height: math.unit(14, "feet"),
  7829. weight: math.unit(1450, "kg"),
  7830. capacity: math.unit(15, "people"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/aura-starwind/front.svg",
  7834. extra: 1455 / 1335
  7835. }
  7836. },
  7837. side: {
  7838. height: math.unit(14, "feet"),
  7839. weight: math.unit(1450, "kg"),
  7840. capacity: math.unit(15, "people"),
  7841. name: "Side",
  7842. image: {
  7843. source: "./media/characters/aura-starwind/side.svg",
  7844. extra: 1654 / 1497
  7845. }
  7846. },
  7847. taur: {
  7848. height: math.unit(18, "feet"),
  7849. weight: math.unit(5500, "kg"),
  7850. capacity: math.unit(50, "people"),
  7851. name: "Taur",
  7852. image: {
  7853. source: "./media/characters/aura-starwind/taur.svg",
  7854. extra: 1760 / 1650
  7855. }
  7856. },
  7857. feral: {
  7858. height: math.unit(46, "feet"),
  7859. weight: math.unit(25000, "kg"),
  7860. capacity: math.unit(120, "people"),
  7861. name: "Feral",
  7862. image: {
  7863. source: "./media/characters/aura-starwind/feral.svg"
  7864. }
  7865. },
  7866. },
  7867. [
  7868. {
  7869. name: "Normal",
  7870. height: math.unit(14, "feet"),
  7871. default: true
  7872. },
  7873. {
  7874. name: "Macro",
  7875. height: math.unit(50, "meters")
  7876. },
  7877. {
  7878. name: "Megamacro",
  7879. height: math.unit(5000, "meters")
  7880. },
  7881. {
  7882. name: "Gigamacro",
  7883. height: math.unit(100000, "kilometers")
  7884. },
  7885. ]
  7886. ))
  7887. characterMakers.push(() => makeCharacter(
  7888. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7889. {
  7890. front: {
  7891. height: math.unit(2 + 7 / 12, "feet"),
  7892. weight: math.unit(32, "lbs"),
  7893. name: "Front",
  7894. image: {
  7895. source: "./media/characters/rivet/front.svg",
  7896. extra: 1716 / 1658,
  7897. bottom: 0.03
  7898. }
  7899. },
  7900. foot: {
  7901. height: math.unit(0.551, "feet"),
  7902. name: "Rivet's Foot",
  7903. image: {
  7904. source: "./media/characters/rivet/foot.svg"
  7905. },
  7906. rename: true
  7907. }
  7908. },
  7909. [
  7910. {
  7911. name: "Micro",
  7912. height: math.unit(1.5, "inches"),
  7913. },
  7914. {
  7915. name: "Normal",
  7916. height: math.unit(2 + 7 / 12, "feet"),
  7917. default: true
  7918. },
  7919. {
  7920. name: "Macro",
  7921. height: math.unit(85, "feet")
  7922. },
  7923. {
  7924. name: "Megamacro",
  7925. height: math.unit(2.2, "km")
  7926. }
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(5 + 9 / 12, "feet"),
  7934. weight: math.unit(150, "lbs"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/coffee/front.svg",
  7938. extra: 3666 / 3032,
  7939. bottom: 0.04
  7940. }
  7941. },
  7942. foot: {
  7943. height: math.unit(1.29, "feet"),
  7944. name: "Foot",
  7945. image: {
  7946. source: "./media/characters/coffee/foot.svg"
  7947. }
  7948. },
  7949. },
  7950. [
  7951. {
  7952. name: "Micro",
  7953. height: math.unit(2, "inches"),
  7954. },
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(5 + 9 / 12, "feet"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Macro",
  7962. height: math.unit(800, "feet")
  7963. },
  7964. {
  7965. name: "Megamacro",
  7966. height: math.unit(25, "miles")
  7967. }
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(200, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/chari-gal/front.svg",
  7979. extra: 1568 / 1385,
  7980. bottom: 0.047
  7981. }
  7982. },
  7983. gigantamax: {
  7984. height: math.unit(6 * 16, "feet"),
  7985. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7986. name: "Gigantamax",
  7987. image: {
  7988. source: "./media/characters/chari-gal/gigantamax.svg",
  7989. extra: 1124 / 888,
  7990. bottom: 0.03
  7991. }
  7992. },
  7993. },
  7994. [
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(5 + 7 / 12, "feet")
  7998. },
  7999. {
  8000. name: "Macro",
  8001. height: math.unit(200, "feet"),
  8002. default: true
  8003. }
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(6, "feet"),
  8011. weight: math.unit(150, "lbs"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/nova/front.svg",
  8015. extra: 5000 / 4722,
  8016. bottom: 0.02
  8017. }
  8018. }
  8019. },
  8020. [
  8021. {
  8022. name: "Micro-",
  8023. height: math.unit(0.8, "inches")
  8024. },
  8025. {
  8026. name: "Micro",
  8027. height: math.unit(2, "inches"),
  8028. default: true
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(3 + 1 / 12, "feet"),
  8037. weight: math.unit(21.7, "lbs"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/argent/front.svg",
  8041. extra: 1471 / 1331,
  8042. bottom: 100.8 / 1575.5
  8043. }
  8044. }
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(2, "inches")
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(3 + 1 / 12, "feet"),
  8054. default: true
  8055. },
  8056. {
  8057. name: "Macro",
  8058. height: math.unit(120, "feet")
  8059. },
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8064. {
  8065. lamp: {
  8066. height: math.unit(7 * 1559 / 989, "feet"),
  8067. name: "Magic Lamp",
  8068. image: {
  8069. source: "./media/characters/mira-al-cul/lamp.svg",
  8070. extra: 1617 / 1559
  8071. }
  8072. },
  8073. front: {
  8074. height: math.unit(7, "feet"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/mira-al-cul/front.svg",
  8078. extra: 1044 / 990
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Heavily Restricted",
  8085. height: math.unit(7 * 1559 / 989, "feet")
  8086. },
  8087. {
  8088. name: "Freshly Freed",
  8089. height: math.unit(50 * 1559 / 989, "feet")
  8090. },
  8091. {
  8092. name: "World Encompassing",
  8093. height: math.unit(10000 * 1559 / 989, "miles")
  8094. },
  8095. {
  8096. name: "Galactic",
  8097. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8098. },
  8099. {
  8100. name: "Palmed Universe",
  8101. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8102. default: true
  8103. },
  8104. {
  8105. name: "Multiversal Matriarch",
  8106. height: math.unit(8.87e10, "yottameters")
  8107. },
  8108. {
  8109. name: "Void Mother",
  8110. height: math.unit(3.14e110, "yottaparsecs")
  8111. },
  8112. {
  8113. name: "Toying with Transcendence",
  8114. height: math.unit(1e307, "meters")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8120. {
  8121. front: {
  8122. height: math.unit(17 + 1 / 12, "feet"),
  8123. weight: math.unit(476.2 * 5, "lbs"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/kuro-shi-uchū/front.svg",
  8127. extra: 2329 / 1835,
  8128. bottom: 0.02
  8129. }
  8130. },
  8131. },
  8132. [
  8133. {
  8134. name: "Micro",
  8135. height: math.unit(2, "inches")
  8136. },
  8137. {
  8138. name: "Normal",
  8139. height: math.unit(12, "meters")
  8140. },
  8141. {
  8142. name: "Planetary",
  8143. height: math.unit(0.00929, "AU"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Universal",
  8148. height: math.unit(20, "gigaparsecs")
  8149. },
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(5 + 2 / 12, "feet"),
  8157. weight: math.unit(120, "lbs"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/katherine/front.svg",
  8161. extra: 2075 / 1969
  8162. }
  8163. },
  8164. dress: {
  8165. height: math.unit(5 + 2 / 12, "feet"),
  8166. weight: math.unit(120, "lbs"),
  8167. name: "Dress",
  8168. image: {
  8169. source: "./media/characters/katherine/dress.svg",
  8170. extra: 2258 / 2064
  8171. }
  8172. },
  8173. },
  8174. [
  8175. {
  8176. name: "Micro",
  8177. height: math.unit(1, "inches"),
  8178. default: true
  8179. },
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(5 + 2 / 12, "feet")
  8183. },
  8184. {
  8185. name: "Macro",
  8186. height: math.unit(100, "meters")
  8187. },
  8188. {
  8189. name: "Megamacro",
  8190. height: math.unit(80, "miles")
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8196. {
  8197. front: {
  8198. height: math.unit(7 + 8 / 12, "feet"),
  8199. weight: math.unit(250, "lbs"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/yevis/front.svg",
  8203. extra: 1938 / 1755
  8204. }
  8205. }
  8206. },
  8207. [
  8208. {
  8209. name: "Mortal",
  8210. height: math.unit(7 + 8 / 12, "feet")
  8211. },
  8212. {
  8213. name: "Battle",
  8214. height: math.unit(25 + 11 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Wrath",
  8218. height: math.unit(1654 + 11 / 12, "feet")
  8219. },
  8220. {
  8221. name: "Planet Destroyer",
  8222. height: math.unit(12000, "miles")
  8223. },
  8224. {
  8225. name: "Galaxy Conqueror",
  8226. height: math.unit(1.45, "zettameters"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Universal War",
  8231. height: math.unit(184, "gigaparsecs")
  8232. },
  8233. {
  8234. name: "Eternity War",
  8235. height: math.unit(1.98e55, "yottaparsecs")
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(5 + 8 / 12, "feet"),
  8244. weight: math.unit(63, "kg"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/xavier/front.svg",
  8248. extra: 944 / 883
  8249. }
  8250. },
  8251. frontStretch: {
  8252. height: math.unit(5 + 8 / 12, "feet"),
  8253. weight: math.unit(63, "kg"),
  8254. name: "Stretching",
  8255. image: {
  8256. source: "./media/characters/xavier/front-stretch.svg",
  8257. extra: 962 / 820
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(5 + 8 / 12, "feet")
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(100, "meters"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "McLargeHuge",
  8273. height: math.unit(10, "miles")
  8274. },
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8279. {
  8280. front: {
  8281. height: math.unit(5 + 5 / 12, "feet"),
  8282. weight: math.unit(150, "lb"),
  8283. name: "Front",
  8284. image: {
  8285. source: "./media/characters/joshii/front.svg",
  8286. extra: 765 / 653,
  8287. bottom: 51 / 816
  8288. }
  8289. },
  8290. foot: {
  8291. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8292. name: "Foot",
  8293. image: {
  8294. source: "./media/characters/joshii/foot.svg"
  8295. }
  8296. },
  8297. },
  8298. [
  8299. {
  8300. name: "Micro",
  8301. height: math.unit(2, "inches"),
  8302. default: true
  8303. },
  8304. {
  8305. name: "Normal",
  8306. height: math.unit(5 + 5 / 12, "feet")
  8307. },
  8308. {
  8309. name: "Macro",
  8310. height: math.unit(785, "feet")
  8311. },
  8312. {
  8313. name: "Megamacro",
  8314. height: math.unit(24.5, "miles")
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(6, "feet"),
  8323. weight: math.unit(150, "lb"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/goddess-elizabeth/front.svg",
  8327. extra: 1800 / 1525,
  8328. bottom: 0.005
  8329. }
  8330. },
  8331. foot: {
  8332. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8333. name: "Foot",
  8334. image: {
  8335. source: "./media/characters/goddess-elizabeth/foot.svg"
  8336. }
  8337. },
  8338. mouth: {
  8339. height: math.unit(6, "feet"),
  8340. name: "Mouth",
  8341. image: {
  8342. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Micro",
  8349. height: math.unit(12, "feet")
  8350. },
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(80, "miles"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(15000, "parsecs")
  8359. },
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(5 + 9 / 12, "feet"),
  8367. weight: math.unit(144, "lb"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/kara/front.svg"
  8371. }
  8372. },
  8373. feet: {
  8374. height: math.unit(6 / 6.765, "feet"),
  8375. name: "Kara's Feet",
  8376. rename: true,
  8377. image: {
  8378. source: "./media/characters/kara/feet.svg"
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Normal",
  8385. height: math.unit(5 + 9 / 12, "feet")
  8386. },
  8387. {
  8388. name: "Macro",
  8389. height: math.unit(174, "feet"),
  8390. default: true
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(18, "feet"),
  8399. weight: math.unit(4050, "lb"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/tyrone/front.svg",
  8403. extra: 2405 / 2270,
  8404. bottom: 182 / 2587
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(18, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(300, "feet")
  8417. },
  8418. {
  8419. name: "Megamacro",
  8420. height: math.unit(15, "km")
  8421. },
  8422. {
  8423. name: "Gigamacro",
  8424. height: math.unit(500, "km")
  8425. },
  8426. {
  8427. name: "Teramacro",
  8428. height: math.unit(0.5, "gigameters")
  8429. },
  8430. {
  8431. name: "Omnimacro",
  8432. height: math.unit(1e252, "yottauniverse")
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(7 + 8 / 12, "feet"),
  8441. weight: math.unit(120, "lb"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/danny/front.svg",
  8445. extra: 1490 / 1350
  8446. }
  8447. },
  8448. back: {
  8449. height: math.unit(7 + 8 / 12, "feet"),
  8450. weight: math.unit(120, "lb"),
  8451. name: "Back",
  8452. image: {
  8453. source: "./media/characters/danny/back.svg",
  8454. extra: 1490 / 1350
  8455. }
  8456. },
  8457. },
  8458. [
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(7 + 8 / 12, "feet"),
  8462. default: true
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(3.5, "inches"),
  8471. weight: math.unit(19, "grams"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/mallow/front.svg",
  8475. extra: 471 / 431
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(3.5, "inches"),
  8480. weight: math.unit(19, "grams"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/mallow/back.svg",
  8484. extra: 471 / 431
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(3.5, "inches"),
  8492. default: true
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(9, "feet"),
  8501. weight: math.unit(230, "kg"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/starry-aqua/front.svg"
  8505. }
  8506. },
  8507. back: {
  8508. height: math.unit(9, "feet"),
  8509. weight: math.unit(230, "kg"),
  8510. name: "Back",
  8511. image: {
  8512. source: "./media/characters/starry-aqua/back.svg"
  8513. }
  8514. },
  8515. hand: {
  8516. height: math.unit(9 * 0.1168, "feet"),
  8517. name: "Hand",
  8518. image: {
  8519. source: "./media/characters/starry-aqua/hand.svg"
  8520. }
  8521. },
  8522. foot: {
  8523. height: math.unit(9 * 0.18, "feet"),
  8524. name: "Foot",
  8525. image: {
  8526. source: "./media/characters/starry-aqua/foot.svg"
  8527. }
  8528. }
  8529. },
  8530. [
  8531. {
  8532. name: "Micro",
  8533. height: math.unit(3, "inches")
  8534. },
  8535. {
  8536. name: "Normal",
  8537. height: math.unit(9, "feet")
  8538. },
  8539. {
  8540. name: "Macro",
  8541. height: math.unit(300, "feet"),
  8542. default: true
  8543. },
  8544. {
  8545. name: "Megamacro",
  8546. height: math.unit(3200, "feet")
  8547. }
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(6, "feet"),
  8555. weight: math.unit(230, "lb"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/luka/front.svg",
  8559. extra: 1,
  8560. bottom: 0.025
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Normal",
  8567. height: math.unit(12 + 8 / 12, "feet"),
  8568. default: true
  8569. },
  8570. {
  8571. name: "Minimacro",
  8572. height: math.unit(20, "feet")
  8573. },
  8574. {
  8575. name: "Macro",
  8576. height: math.unit(250, "feet")
  8577. },
  8578. {
  8579. name: "Megamacro",
  8580. height: math.unit(5, "miles")
  8581. },
  8582. {
  8583. name: "Gigamacro",
  8584. height: math.unit(8000, "miles")
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(150, "lb"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/natalie-nightring/front.svg",
  8597. extra: 1,
  8598. bottom: 0.06
  8599. }
  8600. },
  8601. },
  8602. [
  8603. {
  8604. name: "Uh Oh",
  8605. height: math.unit(0.1, "mm")
  8606. },
  8607. {
  8608. name: "Small",
  8609. height: math.unit(3, "inches")
  8610. },
  8611. {
  8612. name: "Human Scale",
  8613. height: math.unit(6, "feet")
  8614. },
  8615. {
  8616. name: "Librarian",
  8617. height: math.unit(50, "feet"),
  8618. default: true
  8619. },
  8620. {
  8621. name: "Immense",
  8622. height: math.unit(200, "miles")
  8623. },
  8624. ]
  8625. ))
  8626. characterMakers.push(() => makeCharacter(
  8627. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8628. {
  8629. front: {
  8630. height: math.unit(6, "feet"),
  8631. weight: math.unit(180, "lbs"),
  8632. name: "Front",
  8633. image: {
  8634. source: "./media/characters/danni-rosie/front.svg",
  8635. extra: 1260 / 1128,
  8636. bottom: 0.022
  8637. }
  8638. },
  8639. },
  8640. [
  8641. {
  8642. name: "Micro",
  8643. height: math.unit(2, "inches"),
  8644. default: true
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8650. {
  8651. front: {
  8652. height: math.unit(5 + 9 / 12, "feet"),
  8653. weight: math.unit(220, "lb"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/samantha-kruse/front.svg",
  8657. extra: (985 / 935),
  8658. bottom: 0.03
  8659. }
  8660. },
  8661. frontUndressed: {
  8662. height: math.unit(5 + 9 / 12, "feet"),
  8663. weight: math.unit(220, "lb"),
  8664. name: "Front (Undressed)",
  8665. image: {
  8666. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8667. extra: (973 / 923),
  8668. bottom: 0.025
  8669. }
  8670. },
  8671. fat: {
  8672. height: math.unit(5 + 9 / 12, "feet"),
  8673. weight: math.unit(900, "lb"),
  8674. name: "Front (Fat)",
  8675. image: {
  8676. source: "./media/characters/samantha-kruse/fat.svg",
  8677. extra: 2688 / 2561
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(5 + 9 / 12, "feet"),
  8685. default: true
  8686. }
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8691. {
  8692. back: {
  8693. height: math.unit(5 + 4 / 12, "feet"),
  8694. weight: math.unit(4963, "lb"),
  8695. name: "Back",
  8696. image: {
  8697. source: "./media/characters/amelia-rosie/back.svg",
  8698. extra: 1113 / 963,
  8699. bottom: 0.01
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Level 0",
  8706. height: math.unit(5 + 4 / 12, "feet")
  8707. },
  8708. {
  8709. name: "Level 1",
  8710. height: math.unit(164597, "feet"),
  8711. default: true
  8712. },
  8713. {
  8714. name: "Level 2",
  8715. height: math.unit(956243, "miles")
  8716. },
  8717. {
  8718. name: "Level 3",
  8719. height: math.unit(29421709423, "miles")
  8720. },
  8721. {
  8722. name: "Level 4",
  8723. height: math.unit(154, "lightyears")
  8724. },
  8725. {
  8726. name: "Level 5",
  8727. height: math.unit(4738272, "lightyears")
  8728. },
  8729. {
  8730. name: "Level 6",
  8731. height: math.unit(145787152896, "lightyears")
  8732. },
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(5 + 11 / 12, "feet"),
  8740. weight: math.unit(65, "kg"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/rook-kitara/front.svg",
  8744. extra: 1347 / 1274,
  8745. bottom: 0.005
  8746. }
  8747. },
  8748. },
  8749. [
  8750. {
  8751. name: "Totally Unfair",
  8752. height: math.unit(1.8, "mm")
  8753. },
  8754. {
  8755. name: "Lap Rookie",
  8756. height: math.unit(1.4, "feet")
  8757. },
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(5 + 11 / 12, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "How Did This Happen",
  8765. height: math.unit(80, "miles")
  8766. }
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(7, "feet"),
  8774. weight: math.unit(300, "lb"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/pisces/front.svg",
  8778. extra: 2255 / 2115,
  8779. bottom: 0.03
  8780. }
  8781. },
  8782. back: {
  8783. height: math.unit(7, "feet"),
  8784. weight: math.unit(300, "lb"),
  8785. name: "Back",
  8786. image: {
  8787. source: "./media/characters/pisces/back.svg",
  8788. extra: 2146 / 2055,
  8789. bottom: 0.04
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(7, "feet"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Swimming Pool",
  8801. height: math.unit(12.2, "meters")
  8802. },
  8803. {
  8804. name: "Olympic Swimming Pool",
  8805. height: math.unit(56.3, "meters")
  8806. },
  8807. {
  8808. name: "Lake Superior",
  8809. height: math.unit(93900, "meters")
  8810. },
  8811. {
  8812. name: "Mediterranean Sea",
  8813. height: math.unit(644457, "meters")
  8814. },
  8815. {
  8816. name: "World's Oceans",
  8817. height: math.unit(4567491, "meters")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(2.3, "meters"),
  8826. weight: math.unit(120, "kg"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/zelas/front.svg"
  8830. }
  8831. },
  8832. side: {
  8833. height: math.unit(2.3, "meters"),
  8834. weight: math.unit(120, "kg"),
  8835. name: "Side",
  8836. image: {
  8837. source: "./media/characters/zelas/side.svg"
  8838. }
  8839. },
  8840. back: {
  8841. height: math.unit(2.3, "meters"),
  8842. weight: math.unit(120, "kg"),
  8843. name: "Back",
  8844. image: {
  8845. source: "./media/characters/zelas/back.svg"
  8846. }
  8847. },
  8848. foot: {
  8849. height: math.unit(1.116, "feet"),
  8850. name: "Foot",
  8851. image: {
  8852. source: "./media/characters/zelas/foot.svg"
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(2.3, "meters")
  8860. },
  8861. {
  8862. name: "Macro",
  8863. height: math.unit(30, "meters"),
  8864. default: true
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(1, "inch"),
  8873. weight: math.unit(0.21, "grams"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/talbot/front.svg",
  8877. extra: 594 / 544
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Micro",
  8884. height: math.unit(1, "inch"),
  8885. default: true
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8891. {
  8892. front: {
  8893. height: math.unit(3 + 3 / 12, "feet"),
  8894. weight: math.unit(51.8, "lb"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/fliss/front.svg",
  8898. extra: 840 / 640
  8899. }
  8900. },
  8901. },
  8902. [
  8903. {
  8904. name: "Teeny Tiny",
  8905. height: math.unit(1, "mm")
  8906. },
  8907. {
  8908. name: "Small",
  8909. height: math.unit(1, "inch"),
  8910. default: true
  8911. },
  8912. {
  8913. name: "Standard Sylveon",
  8914. height: math.unit(3 + 3 / 12, "feet")
  8915. },
  8916. {
  8917. name: "Large Nuisance",
  8918. height: math.unit(33, "feet")
  8919. },
  8920. {
  8921. name: "City Filler",
  8922. height: math.unit(3000, "feet")
  8923. },
  8924. {
  8925. name: "New Horizon",
  8926. height: math.unit(6000, "miles")
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8932. {
  8933. front: {
  8934. height: math.unit(5, "cm"),
  8935. weight: math.unit(1.94, "g"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/fleta/front.svg",
  8939. extra: 835 / 803
  8940. }
  8941. },
  8942. back: {
  8943. height: math.unit(5, "cm"),
  8944. weight: math.unit(1.94, "g"),
  8945. name: "Back",
  8946. image: {
  8947. source: "./media/characters/fleta/back.svg",
  8948. extra: 835 / 803
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Micro",
  8955. height: math.unit(5, "cm"),
  8956. default: true
  8957. },
  8958. ]
  8959. ))
  8960. characterMakers.push(() => makeCharacter(
  8961. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8962. {
  8963. front: {
  8964. height: math.unit(6, "feet"),
  8965. weight: math.unit(225, "lb"),
  8966. name: "Front",
  8967. image: {
  8968. source: "./media/characters/dominic/front.svg",
  8969. extra: 1770 / 1620,
  8970. bottom: 0.025
  8971. }
  8972. },
  8973. back: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(225, "lb"),
  8976. name: "Back",
  8977. image: {
  8978. source: "./media/characters/dominic/back.svg",
  8979. extra: 1745 / 1620,
  8980. bottom: 0.065
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Nano",
  8987. height: math.unit(0.1, "mm")
  8988. },
  8989. {
  8990. name: "Micro-",
  8991. height: math.unit(1, "mm")
  8992. },
  8993. {
  8994. name: "Micro",
  8995. height: math.unit(4, "inches")
  8996. },
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(6 + 4 / 12, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(115, "feet")
  9005. },
  9006. {
  9007. name: "Macro+",
  9008. height: math.unit(955, "feet")
  9009. },
  9010. {
  9011. name: "Megamacro",
  9012. height: math.unit(8990, "feet")
  9013. },
  9014. {
  9015. name: "Gigmacro",
  9016. height: math.unit(9310, "miles")
  9017. },
  9018. {
  9019. name: "Teramacro",
  9020. height: math.unit(1567005010, "miles")
  9021. },
  9022. {
  9023. name: "Examacro",
  9024. height: math.unit(1425, "parsecs")
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(400, "feet"),
  9033. weight: math.unit(44444444, "lb"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/major-colonel/front.svg"
  9037. }
  9038. },
  9039. back: {
  9040. height: math.unit(400, "feet"),
  9041. weight: math.unit(44444444, "lb"),
  9042. name: "Back",
  9043. image: {
  9044. source: "./media/characters/major-colonel/back.svg"
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Macro",
  9051. height: math.unit(400, "feet"),
  9052. default: true
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9058. {
  9059. catFront: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(120, "lb"),
  9062. name: "Front (Cat Side)",
  9063. image: {
  9064. source: "./media/characters/axel-lycan/cat-front.svg",
  9065. extra: 430 / 402,
  9066. bottom: 43 / 472.35
  9067. }
  9068. },
  9069. catBack: {
  9070. height: math.unit(6, "feet"),
  9071. weight: math.unit(120, "lb"),
  9072. name: "Back (Cat Side)",
  9073. image: {
  9074. source: "./media/characters/axel-lycan/cat-back.svg",
  9075. extra: 447 / 419,
  9076. bottom: 23.3 / 469
  9077. }
  9078. },
  9079. wolfFront: {
  9080. height: math.unit(6, "feet"),
  9081. weight: math.unit(120, "lb"),
  9082. name: "Front (Wolf Side)",
  9083. image: {
  9084. source: "./media/characters/axel-lycan/wolf-front.svg",
  9085. extra: 485 / 456,
  9086. bottom: 19 / 504
  9087. }
  9088. },
  9089. wolfBack: {
  9090. height: math.unit(6, "feet"),
  9091. weight: math.unit(120, "lb"),
  9092. name: "Back (Wolf Side)",
  9093. image: {
  9094. source: "./media/characters/axel-lycan/wolf-back.svg",
  9095. extra: 475 / 438,
  9096. bottom: 39.2 / 514
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(1, "km"),
  9104. default: true
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9110. {
  9111. front: {
  9112. height: math.unit(5 + 9 / 12, "feet"),
  9113. weight: math.unit(175, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/vanrel-hyena/front.svg",
  9117. extra: 1086 / 1010,
  9118. bottom: 0.04
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(5 + 9 / 12, "feet"),
  9126. default: true
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(103, "lb"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/abbott-absol/front.svg",
  9139. extra: 2010 / 1842
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Megamicro",
  9146. height: math.unit(0.1, "mm")
  9147. },
  9148. {
  9149. name: "Micro",
  9150. height: math.unit(1, "inch")
  9151. },
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(6, "feet"),
  9155. default: true
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(6, "feet"),
  9164. weight: math.unit(264, "lb"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/hector/front.svg",
  9168. extra: 2280 / 2130,
  9169. bottom: 0.07
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(12.25, "foot"),
  9177. default: true
  9178. },
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(160, "feet")
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9187. {
  9188. front: {
  9189. height: math.unit(6, "feet"),
  9190. weight: math.unit(150, "lb"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/sal/front.svg",
  9194. extra: 1846 / 1699,
  9195. bottom: 0.04
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Megamacro",
  9202. height: math.unit(10, "miles"),
  9203. default: true
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9209. {
  9210. front: {
  9211. height: math.unit(3, "meters"),
  9212. weight: math.unit(450, "kg"),
  9213. name: "front",
  9214. image: {
  9215. source: "./media/characters/ranger/front.svg",
  9216. extra: 2401 / 2243,
  9217. bottom: 0.05
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Normal",
  9224. height: math.unit(3, "meters"),
  9225. default: true
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9231. {
  9232. front: {
  9233. height: math.unit(14, "feet"),
  9234. weight: math.unit(800, "kg"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/theresa/front.svg",
  9238. extra: 3575 / 3346,
  9239. bottom: 0.03
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Normal",
  9246. height: math.unit(14, "feet"),
  9247. default: true
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9253. {
  9254. front: {
  9255. height: math.unit(6, "feet"),
  9256. weight: math.unit(3, "kg"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/ine/front.svg",
  9260. extra: 678 / 539,
  9261. bottom: 0.023
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(2.265, "feet"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(5, "feet"),
  9278. weight: math.unit(30, "kg"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/vial/front.svg",
  9282. extra: 1365 / 1277,
  9283. bottom: 0.04
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(5, "feet"),
  9291. default: true
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9297. {
  9298. side: {
  9299. height: math.unit(3.4, "meters"),
  9300. weight: math.unit(1000, "lb"),
  9301. name: "Side",
  9302. image: {
  9303. source: "./media/characters/rovoska/side.svg",
  9304. extra: 4403 / 1515
  9305. }
  9306. },
  9307. },
  9308. [
  9309. {
  9310. name: "Normal",
  9311. height: math.unit(3.4, "meters"),
  9312. default: true
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(8, "feet"),
  9321. weight: math.unit(315, "lb"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/gunner-rotthbauer/front.svg"
  9325. }
  9326. },
  9327. back: {
  9328. height: math.unit(8, "feet"),
  9329. weight: math.unit(315, "lb"),
  9330. name: "Back",
  9331. image: {
  9332. source: "./media/characters/gunner-rotthbauer/back.svg"
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Micro",
  9339. height: math.unit(3.5, "inches")
  9340. },
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(8, "feet"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(250, "feet")
  9349. },
  9350. {
  9351. name: "Megamacro",
  9352. height: math.unit(1, "AU")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(5 + 5 / 12, "feet"),
  9361. weight: math.unit(140, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/allatia/front.svg",
  9365. extra: 1227 / 1180,
  9366. bottom: 0.027
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(5 + 5 / 12, "feet")
  9374. },
  9375. {
  9376. name: "Macro",
  9377. height: math.unit(250, "feet"),
  9378. default: true
  9379. },
  9380. {
  9381. name: "Megamacro",
  9382. height: math.unit(8, "miles")
  9383. }
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(120, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/tene/front.svg",
  9395. extra: 1728 / 1578,
  9396. bottom: 0.022
  9397. }
  9398. },
  9399. stomping: {
  9400. height: math.unit(2.025, "meters"),
  9401. weight: math.unit(120, "lb"),
  9402. name: "Stomping",
  9403. image: {
  9404. source: "./media/characters/tene/stomping.svg",
  9405. extra: 938 / 873,
  9406. bottom: 0.01
  9407. }
  9408. },
  9409. sitting: {
  9410. height: math.unit(1, "meter"),
  9411. weight: math.unit(120, "lb"),
  9412. name: "Sitting",
  9413. image: {
  9414. source: "./media/characters/tene/sitting.svg",
  9415. extra: 437 / 415,
  9416. bottom: 0.1
  9417. }
  9418. },
  9419. feral: {
  9420. height: math.unit(3.9, "feet"),
  9421. weight: math.unit(250, "lb"),
  9422. name: "Feral",
  9423. image: {
  9424. source: "./media/characters/tene/feral.svg",
  9425. extra: 717 / 458,
  9426. bottom: 0.179
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(6, "feet")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(300, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(5, "miles")
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9448. {
  9449. side: {
  9450. height: math.unit(6, "feet"),
  9451. name: "Side",
  9452. image: {
  9453. source: "./media/characters/evander/side.svg",
  9454. extra: 877 / 477
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(0.83, "meters"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(12, "feet"),
  9471. weight: math.unit(1000, "lb"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9475. extra: 1762 / 1611
  9476. }
  9477. },
  9478. back: {
  9479. height: math.unit(12, "feet"),
  9480. weight: math.unit(1000, "lb"),
  9481. name: "Back",
  9482. image: {
  9483. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9484. extra: 1762 / 1611
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(12, "feet"),
  9492. default: true
  9493. },
  9494. {
  9495. name: "Kaiju",
  9496. height: math.unit(150, "feet")
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9502. {
  9503. front: {
  9504. height: math.unit(6, "feet"),
  9505. weight: math.unit(150, "lb"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/zero-alurus/front.svg"
  9509. }
  9510. },
  9511. back: {
  9512. height: math.unit(6, "feet"),
  9513. weight: math.unit(150, "lb"),
  9514. name: "Back",
  9515. image: {
  9516. source: "./media/characters/zero-alurus/back.svg"
  9517. }
  9518. },
  9519. },
  9520. [
  9521. {
  9522. name: "Normal",
  9523. height: math.unit(5 + 10 / 12, "feet")
  9524. },
  9525. {
  9526. name: "Macro",
  9527. height: math.unit(60, "feet"),
  9528. default: true
  9529. },
  9530. {
  9531. name: "Macro+",
  9532. height: math.unit(450, "feet")
  9533. },
  9534. ]
  9535. ))
  9536. characterMakers.push(() => makeCharacter(
  9537. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9538. {
  9539. front: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(200, "lb"),
  9542. name: "Front",
  9543. image: {
  9544. source: "./media/characters/mega-shi/front.svg",
  9545. extra: 1279 / 1250,
  9546. bottom: 0.02
  9547. }
  9548. },
  9549. back: {
  9550. height: math.unit(6, "feet"),
  9551. weight: math.unit(200, "lb"),
  9552. name: "Back",
  9553. image: {
  9554. source: "./media/characters/mega-shi/back.svg",
  9555. extra: 1279 / 1250,
  9556. bottom: 0.02
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Micro",
  9563. height: math.unit(16 + 6 / 12, "feet")
  9564. },
  9565. {
  9566. name: "Third Dimension",
  9567. height: math.unit(40, "meters")
  9568. },
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(660, "feet"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "Megamacro",
  9576. height: math.unit(10, "miles")
  9577. },
  9578. {
  9579. name: "Planetary Launch",
  9580. height: math.unit(500, "miles")
  9581. },
  9582. {
  9583. name: "Interstellar",
  9584. height: math.unit(1e9, "miles")
  9585. },
  9586. {
  9587. name: "Leaving the Universe",
  9588. height: math.unit(1, "gigaparsec")
  9589. },
  9590. {
  9591. name: "Travelling Universes",
  9592. height: math.unit(30e15, "parsecs")
  9593. },
  9594. ]
  9595. ))
  9596. characterMakers.push(() => makeCharacter(
  9597. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9598. {
  9599. front: {
  9600. height: math.unit(6, "feet"),
  9601. weight: math.unit(150, "lb"),
  9602. name: "Front",
  9603. image: {
  9604. source: "./media/characters/odyssey/front.svg",
  9605. extra: 1782 / 1582,
  9606. bottom: 0.01
  9607. }
  9608. },
  9609. side: {
  9610. height: math.unit(5.7, "feet"),
  9611. weight: math.unit(140, "lb"),
  9612. name: "Side",
  9613. image: {
  9614. source: "./media/characters/odyssey/side.svg",
  9615. extra: 6462 / 5700
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 4 / 12, "feet")
  9623. },
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(1, "km")
  9627. },
  9628. {
  9629. name: "Megamacro",
  9630. height: math.unit(3000, "km")
  9631. },
  9632. {
  9633. name: "Gigamacro",
  9634. height: math.unit(1, "AU"),
  9635. default: true
  9636. },
  9637. {
  9638. name: "Omniversal",
  9639. height: math.unit(100e14, "lightyears")
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(6, "feet"),
  9648. weight: math.unit(300, "lb"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/mekuto/front.svg",
  9652. extra: 921 / 832,
  9653. bottom: 0.03
  9654. }
  9655. },
  9656. hand: {
  9657. height: math.unit(6 / 10.24, "feet"),
  9658. name: "Hand",
  9659. image: {
  9660. source: "./media/characters/mekuto/hand.svg"
  9661. }
  9662. },
  9663. foot: {
  9664. height: math.unit(6 / 5.05, "feet"),
  9665. name: "Foot",
  9666. image: {
  9667. source: "./media/characters/mekuto/foot.svg"
  9668. }
  9669. },
  9670. },
  9671. [
  9672. {
  9673. name: "Minimicro",
  9674. height: math.unit(0.2, "inches")
  9675. },
  9676. {
  9677. name: "Micro",
  9678. height: math.unit(1.5, "inches")
  9679. },
  9680. {
  9681. name: "Normal",
  9682. height: math.unit(5 + 11 / 12, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Minimacro",
  9687. height: math.unit(17 + 9 / 12, "feet")
  9688. },
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(177.5, "feet")
  9692. },
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(152, "miles")
  9696. },
  9697. ]
  9698. ))
  9699. characterMakers.push(() => makeCharacter(
  9700. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9701. {
  9702. front: {
  9703. height: math.unit(6.5, "inches"),
  9704. weight: math.unit(13, "oz"),
  9705. name: "Front",
  9706. image: {
  9707. source: "./media/characters/dafydd-tomos/front.svg",
  9708. extra: 2990 / 2603,
  9709. bottom: 0.03
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Micro",
  9716. height: math.unit(6.5, "inches"),
  9717. default: true
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(150, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/splinter/front.svg",
  9730. extra: 2990 / 2882,
  9731. bottom: 0.04
  9732. }
  9733. },
  9734. back: {
  9735. height: math.unit(6, "feet"),
  9736. weight: math.unit(150, "lb"),
  9737. name: "Back",
  9738. image: {
  9739. source: "./media/characters/splinter/back.svg",
  9740. extra: 2990 / 2882,
  9741. bottom: 0.04
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Normal",
  9748. height: math.unit(6, "feet")
  9749. },
  9750. {
  9751. name: "Macro",
  9752. height: math.unit(230, "meters"),
  9753. default: true
  9754. },
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9759. {
  9760. front: {
  9761. height: math.unit(4 + 10 / 12, "feet"),
  9762. weight: math.unit(480, "lb"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/snow-gabumon/front.svg",
  9766. extra: 1140 / 963,
  9767. bottom: 0.058
  9768. }
  9769. },
  9770. back: {
  9771. height: math.unit(4 + 10 / 12, "feet"),
  9772. weight: math.unit(480, "lb"),
  9773. name: "Back",
  9774. image: {
  9775. source: "./media/characters/snow-gabumon/back.svg",
  9776. extra: 1115 / 962,
  9777. bottom: 0.041
  9778. }
  9779. },
  9780. frontUndresed: {
  9781. height: math.unit(4 + 10 / 12, "feet"),
  9782. weight: math.unit(480, "lb"),
  9783. name: "Front (Undressed)",
  9784. image: {
  9785. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9786. extra: 1061 / 960,
  9787. bottom: 0.045
  9788. }
  9789. },
  9790. },
  9791. [
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(1, "inch")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(4 + 10 / 12, "feet"),
  9799. default: true
  9800. },
  9801. {
  9802. name: "Macro",
  9803. height: math.unit(200, "feet")
  9804. },
  9805. {
  9806. name: "Megamacro",
  9807. height: math.unit(120, "miles")
  9808. },
  9809. {
  9810. name: "Gigamacro",
  9811. height: math.unit(9800, "miles")
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(1.7, "meters"),
  9820. weight: math.unit(140, "lb"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/moody/front.svg",
  9824. extra: 3226 / 3007,
  9825. bottom: 0.087
  9826. }
  9827. },
  9828. },
  9829. [
  9830. {
  9831. name: "Micro",
  9832. height: math.unit(1, "mm")
  9833. },
  9834. {
  9835. name: "Normal",
  9836. height: math.unit(1.7, "meters"),
  9837. default: true
  9838. },
  9839. {
  9840. name: "Macro",
  9841. height: math.unit(80, "meters")
  9842. },
  9843. {
  9844. name: "Macro+",
  9845. height: math.unit(500, "meters")
  9846. },
  9847. ]
  9848. ))
  9849. characterMakers.push(() => makeCharacter(
  9850. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9851. {
  9852. front: {
  9853. height: math.unit(6, "feet"),
  9854. weight: math.unit(150, "lb"),
  9855. name: "Front",
  9856. image: {
  9857. source: "./media/characters/zyas/front.svg",
  9858. extra: 1180 / 1120,
  9859. bottom: 0.045
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(10, "feet"),
  9867. default: true
  9868. },
  9869. {
  9870. name: "Macro",
  9871. height: math.unit(500, "feet")
  9872. },
  9873. {
  9874. name: "Megamacro",
  9875. height: math.unit(5, "miles")
  9876. },
  9877. {
  9878. name: "Teramacro",
  9879. height: math.unit(150000, "miles")
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(150, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/cuon/front.svg",
  9892. extra: 1390 / 1320,
  9893. bottom: 0.008
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Micro",
  9900. height: math.unit(3, "inches")
  9901. },
  9902. {
  9903. name: "Normal",
  9904. height: math.unit(18 + 9 / 12, "feet"),
  9905. default: true
  9906. },
  9907. {
  9908. name: "Macro",
  9909. height: math.unit(360, "feet")
  9910. },
  9911. {
  9912. name: "Megamacro",
  9913. height: math.unit(360, "miles")
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(2.4, "meters"),
  9922. weight: math.unit(70, "kg"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/nyanuxk/front.svg",
  9926. extra: 1172 / 1084,
  9927. bottom: 0.065
  9928. }
  9929. },
  9930. side: {
  9931. height: math.unit(2.4, "meters"),
  9932. weight: math.unit(70, "kg"),
  9933. name: "Side",
  9934. image: {
  9935. source: "./media/characters/nyanuxk/side.svg",
  9936. extra: 1190 / 1132,
  9937. bottom: 0.007
  9938. }
  9939. },
  9940. back: {
  9941. height: math.unit(2.4, "meters"),
  9942. weight: math.unit(70, "kg"),
  9943. name: "Back",
  9944. image: {
  9945. source: "./media/characters/nyanuxk/back.svg",
  9946. extra: 1200 / 1141,
  9947. bottom: 0.015
  9948. }
  9949. },
  9950. foot: {
  9951. height: math.unit(0.52, "meters"),
  9952. name: "Foot",
  9953. image: {
  9954. source: "./media/characters/nyanuxk/foot.svg"
  9955. }
  9956. },
  9957. },
  9958. [
  9959. {
  9960. name: "Micro",
  9961. height: math.unit(2, "cm")
  9962. },
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(2.4, "meters"),
  9966. default: true
  9967. },
  9968. {
  9969. name: "Smaller Macro",
  9970. height: math.unit(120, "meters")
  9971. },
  9972. {
  9973. name: "Bigger Macro",
  9974. height: math.unit(1.2, "km")
  9975. },
  9976. {
  9977. name: "Megamacro",
  9978. height: math.unit(15, "kilometers")
  9979. },
  9980. {
  9981. name: "Gigamacro",
  9982. height: math.unit(2000, "km")
  9983. },
  9984. {
  9985. name: "Teramacro",
  9986. height: math.unit(500000, "km")
  9987. },
  9988. ]
  9989. ))
  9990. characterMakers.push(() => makeCharacter(
  9991. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9992. {
  9993. side: {
  9994. height: math.unit(6, "feet"),
  9995. name: "Side",
  9996. image: {
  9997. source: "./media/characters/ailbhe/side.svg",
  9998. extra: 757 / 464,
  9999. bottom: 0.041
  10000. }
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(1.07, "meters"),
  10007. default: true
  10008. },
  10009. ]
  10010. ))
  10011. characterMakers.push(() => makeCharacter(
  10012. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10013. {
  10014. front: {
  10015. height: math.unit(6, "feet"),
  10016. weight: math.unit(120, "kg"),
  10017. name: "Front",
  10018. image: {
  10019. source: "./media/characters/zevulfius/front.svg",
  10020. extra: 965 / 903
  10021. }
  10022. },
  10023. side: {
  10024. height: math.unit(6, "feet"),
  10025. weight: math.unit(120, "kg"),
  10026. name: "Side",
  10027. image: {
  10028. source: "./media/characters/zevulfius/side.svg",
  10029. extra: 939 / 900
  10030. }
  10031. },
  10032. back: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(120, "kg"),
  10035. name: "Back",
  10036. image: {
  10037. source: "./media/characters/zevulfius/back.svg",
  10038. extra: 918 / 854,
  10039. bottom: 0.005
  10040. }
  10041. },
  10042. foot: {
  10043. height: math.unit(6 / 3.72, "feet"),
  10044. name: "Foot",
  10045. image: {
  10046. source: "./media/characters/zevulfius/foot.svg"
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(750, "meters")
  10054. },
  10055. {
  10056. name: "Megamacro",
  10057. height: math.unit(20, "km"),
  10058. default: true
  10059. },
  10060. {
  10061. name: "Gigamacro",
  10062. height: math.unit(2000, "km")
  10063. },
  10064. {
  10065. name: "Teramacro",
  10066. height: math.unit(250000, "km")
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10072. {
  10073. front: {
  10074. height: math.unit(100, "feet"),
  10075. weight: math.unit(350, "kg"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/rikes/front.svg",
  10079. extra: 1565 / 1483,
  10080. bottom: 0.017
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Macro",
  10087. height: math.unit(100, "feet"),
  10088. default: true
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10094. {
  10095. anthro: {
  10096. height: math.unit(8, "feet"),
  10097. weight: math.unit(120, "kg"),
  10098. name: "Anthro",
  10099. image: {
  10100. source: "./media/characters/adam-silver-mane/anthro.svg",
  10101. extra: 5743 / 5339,
  10102. bottom: 0.07
  10103. }
  10104. },
  10105. taur: {
  10106. height: math.unit(16, "feet"),
  10107. weight: math.unit(1500, "kg"),
  10108. name: "Taur",
  10109. image: {
  10110. source: "./media/characters/adam-silver-mane/taur.svg",
  10111. extra: 1713 / 1571,
  10112. bottom: 0.01
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(8, "feet")
  10120. },
  10121. {
  10122. name: "Minimacro",
  10123. height: math.unit(80, "feet")
  10124. },
  10125. {
  10126. name: "Macro",
  10127. height: math.unit(800, "feet"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(8000, "feet")
  10133. },
  10134. {
  10135. name: "Gigamacro",
  10136. height: math.unit(800, "miles")
  10137. },
  10138. {
  10139. name: "Teramacro",
  10140. height: math.unit(80000, "miles")
  10141. },
  10142. {
  10143. name: "Celestial",
  10144. height: math.unit(8e6, "miles")
  10145. },
  10146. {
  10147. name: "Star Dragon",
  10148. height: math.unit(800000, "parsecs")
  10149. },
  10150. {
  10151. name: "Godly",
  10152. height: math.unit(800, "teraparsecs")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(150, "lb"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/ky'owin/front.svg",
  10165. extra: 3888 / 3068,
  10166. bottom: 0.015
  10167. }
  10168. },
  10169. },
  10170. [
  10171. {
  10172. name: "Normal",
  10173. height: math.unit(6 + 8 / 12, "feet")
  10174. },
  10175. {
  10176. name: "Large",
  10177. height: math.unit(68, "feet")
  10178. },
  10179. {
  10180. name: "Macro",
  10181. height: math.unit(132, "feet")
  10182. },
  10183. {
  10184. name: "Macro+",
  10185. height: math.unit(340, "feet")
  10186. },
  10187. {
  10188. name: "Macro++",
  10189. height: math.unit(680, "feet"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Megamacro",
  10194. height: math.unit(1, "mile")
  10195. },
  10196. {
  10197. name: "Megamacro+",
  10198. height: math.unit(10, "miles")
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(4, "feet"),
  10207. weight: math.unit(50, "lb"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/mal/front.svg",
  10211. extra: 785 / 724,
  10212. bottom: 0.07
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Micro",
  10219. height: math.unit(4, "inches")
  10220. },
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(4, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Macro",
  10228. height: math.unit(200, "feet")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(150, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/jordan-deware/front.svg",
  10241. extra: 1191 / 1012
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Nano",
  10248. height: math.unit(0.01, "mm")
  10249. },
  10250. {
  10251. name: "Minimicro",
  10252. height: math.unit(1, "mm")
  10253. },
  10254. {
  10255. name: "Micro",
  10256. height: math.unit(0.5, "inches")
  10257. },
  10258. {
  10259. name: "Normal",
  10260. height: math.unit(4, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Minimacro",
  10265. height: math.unit(40, "meters")
  10266. },
  10267. {
  10268. name: "Small Macro",
  10269. height: math.unit(400, "meters")
  10270. },
  10271. {
  10272. name: "Macro",
  10273. height: math.unit(4, "miles")
  10274. },
  10275. {
  10276. name: "Megamacro",
  10277. height: math.unit(40, "miles")
  10278. },
  10279. {
  10280. name: "Megamacro+",
  10281. height: math.unit(400, "miles")
  10282. },
  10283. {
  10284. name: "Gigamacro",
  10285. height: math.unit(400000, "miles")
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10291. {
  10292. side: {
  10293. height: math.unit(6, "feet"),
  10294. weight: math.unit(150, "lb"),
  10295. name: "Side",
  10296. image: {
  10297. source: "./media/characters/kimiko/side.svg",
  10298. extra: 600 / 358
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(15, "feet"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Macro",
  10310. height: math.unit(220, "feet")
  10311. },
  10312. {
  10313. name: "Macro+",
  10314. height: math.unit(1450, "feet")
  10315. },
  10316. {
  10317. name: "Megamacro",
  10318. height: math.unit(11500, "feet")
  10319. },
  10320. {
  10321. name: "Gigamacro",
  10322. height: math.unit(9500, "miles")
  10323. },
  10324. {
  10325. name: "Teramacro",
  10326. height: math.unit(2208005005, "miles")
  10327. },
  10328. {
  10329. name: "Examacro",
  10330. height: math.unit(2750, "parsecs")
  10331. },
  10332. {
  10333. name: "Zettamacro",
  10334. height: math.unit(101500, "parsecs")
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(6, "feet"),
  10343. weight: math.unit(70, "kg"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/andrew-sleepy/front.svg"
  10347. }
  10348. },
  10349. side: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(70, "kg"),
  10352. name: "Side",
  10353. image: {
  10354. source: "./media/characters/andrew-sleepy/side.svg"
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Micro",
  10361. height: math.unit(1, "mm"),
  10362. default: true
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(6, "feet"),
  10371. weight: math.unit(150, "lb"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/judio/front.svg",
  10375. extra: 1258 / 1110
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Normal",
  10382. height: math.unit(5 + 6 / 12, "feet")
  10383. },
  10384. {
  10385. name: "Macro",
  10386. height: math.unit(1000, "feet"),
  10387. default: true
  10388. },
  10389. {
  10390. name: "Megamacro",
  10391. height: math.unit(10, "miles")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(6, "feet"),
  10400. weight: math.unit(68, "kg"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/nomaxice/front.svg",
  10404. extra: 1498 / 1073,
  10405. bottom: 0.075
  10406. }
  10407. },
  10408. foot: {
  10409. height: math.unit(1.1, "feet"),
  10410. name: "Foot",
  10411. image: {
  10412. source: "./media/characters/nomaxice/foot.svg"
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Micro",
  10419. height: math.unit(8, "cm")
  10420. },
  10421. {
  10422. name: "Norm",
  10423. height: math.unit(1.82, "m")
  10424. },
  10425. {
  10426. name: "Norm+",
  10427. height: math.unit(8.8, "feet")
  10428. },
  10429. {
  10430. name: "Big",
  10431. height: math.unit(8, "meters"),
  10432. default: true
  10433. },
  10434. {
  10435. name: "Macro",
  10436. height: math.unit(18, "meters")
  10437. },
  10438. {
  10439. name: "Macro+",
  10440. height: math.unit(88, "meters")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10446. {
  10447. front: {
  10448. height: math.unit(12, "feet"),
  10449. weight: math.unit(1.5, "tons"),
  10450. name: "Front",
  10451. image: {
  10452. source: "./media/characters/dydros/front.svg",
  10453. extra: 863 / 800,
  10454. bottom: 0.015
  10455. }
  10456. },
  10457. back: {
  10458. height: math.unit(12, "feet"),
  10459. weight: math.unit(1.5, "tons"),
  10460. name: "Back",
  10461. image: {
  10462. source: "./media/characters/dydros/back.svg",
  10463. extra: 900 / 843,
  10464. bottom: 0.005
  10465. }
  10466. },
  10467. },
  10468. [
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(12, "feet"),
  10472. default: true
  10473. },
  10474. ]
  10475. ))
  10476. characterMakers.push(() => makeCharacter(
  10477. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10478. {
  10479. front: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(100, "kg"),
  10482. name: "Front",
  10483. image: {
  10484. source: "./media/characters/riggi/front.svg",
  10485. extra: 5787 / 5303
  10486. }
  10487. },
  10488. hyper: {
  10489. height: math.unit(6 * 5 / 3, "feet"),
  10490. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10491. name: "Hyper",
  10492. image: {
  10493. source: "./media/characters/riggi/hyper.svg",
  10494. extra: 3595 / 3485
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Small Macro",
  10501. height: math.unit(50, "feet")
  10502. },
  10503. {
  10504. name: "Default",
  10505. height: math.unit(200, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Loom",
  10510. height: math.unit(10000, "feet")
  10511. },
  10512. {
  10513. name: "Cruising Altitude",
  10514. height: math.unit(30000, "feet")
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(100, "miles")
  10519. },
  10520. {
  10521. name: "Continent Sized",
  10522. height: math.unit(2800, "miles")
  10523. },
  10524. {
  10525. name: "Earth Sized",
  10526. height: math.unit(8000, "miles")
  10527. },
  10528. ]
  10529. ))
  10530. characterMakers.push(() => makeCharacter(
  10531. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10532. {
  10533. front: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(250, "lb"),
  10536. name: "Front",
  10537. image: {
  10538. source: "./media/characters/alexi/front.svg",
  10539. extra: 3483 / 3291,
  10540. bottom: 0.04
  10541. }
  10542. },
  10543. back: {
  10544. height: math.unit(6, "feet"),
  10545. weight: math.unit(250, "lb"),
  10546. name: "Back",
  10547. image: {
  10548. source: "./media/characters/alexi/back.svg",
  10549. extra: 3533 / 3356,
  10550. bottom: 0.021
  10551. }
  10552. },
  10553. frontTransforming: {
  10554. height: math.unit(8.58, "feet"),
  10555. weight: math.unit(1300, "lb"),
  10556. name: "Transforming",
  10557. image: {
  10558. source: "./media/characters/alexi/front-transforming.svg",
  10559. extra: 437 / 409,
  10560. bottom: 19 / 458.66
  10561. }
  10562. },
  10563. frontTransformed: {
  10564. height: math.unit(12.5, "feet"),
  10565. weight: math.unit(4000, "lb"),
  10566. name: "Transformed",
  10567. image: {
  10568. source: "./media/characters/alexi/front-transformed.svg",
  10569. extra: 639 / 614,
  10570. bottom: 30.55 / 671
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(14, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Minimacro",
  10582. height: math.unit(30, "meters")
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(500, "meters")
  10587. },
  10588. {
  10589. name: "Megamacro",
  10590. height: math.unit(9000, "km")
  10591. },
  10592. {
  10593. name: "Teramacro",
  10594. height: math.unit(384000, "km")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(150, "lb"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/kayroo/front.svg",
  10607. extra: 1153 / 1038,
  10608. bottom: 0.06
  10609. }
  10610. },
  10611. foot: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(150, "lb"),
  10614. name: "Foot",
  10615. image: {
  10616. source: "./media/characters/kayroo/foot.svg"
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(8, "feet"),
  10624. default: true
  10625. },
  10626. {
  10627. name: "Minimacro",
  10628. height: math.unit(250, "feet")
  10629. },
  10630. {
  10631. name: "Macro",
  10632. height: math.unit(2800, "feet")
  10633. },
  10634. {
  10635. name: "Megamacro",
  10636. height: math.unit(5200, "feet")
  10637. },
  10638. {
  10639. name: "Gigamacro",
  10640. height: math.unit(27000, "feet")
  10641. },
  10642. {
  10643. name: "Omega",
  10644. height: math.unit(45000, "feet")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10650. {
  10651. front: {
  10652. height: math.unit(18, "feet"),
  10653. weight: math.unit(5800, "lb"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/rhys/front.svg",
  10657. extra: 3386 / 3090,
  10658. bottom: 0.07
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Normal",
  10665. height: math.unit(18, "feet"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Working Size",
  10670. height: math.unit(200, "feet")
  10671. },
  10672. {
  10673. name: "Demolition Size",
  10674. height: math.unit(2000, "feet")
  10675. },
  10676. {
  10677. name: "Maximum Licensed Size",
  10678. height: math.unit(5, "miles")
  10679. },
  10680. {
  10681. name: "Maximum Observed Size",
  10682. height: math.unit(10, "yottameters")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(250, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/toto/front.svg",
  10695. extra: 527 / 479,
  10696. bottom: 0.05
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Micro",
  10703. height: math.unit(3, "feet")
  10704. },
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(10, "feet")
  10708. },
  10709. {
  10710. name: "Macro",
  10711. height: math.unit(150, "feet"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Megamacro",
  10716. height: math.unit(1200, "feet")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "King", species: ["lion"], tags: ["anthro"] },
  10722. {
  10723. back: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(150, "lb"),
  10726. name: "Back",
  10727. image: {
  10728. source: "./media/characters/king/back.svg"
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Micro",
  10735. height: math.unit(2, "inches")
  10736. },
  10737. {
  10738. name: "Normal",
  10739. height: math.unit(8, "feet")
  10740. },
  10741. {
  10742. name: "Macro",
  10743. height: math.unit(200, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Megamacro",
  10748. height: math.unit(50, "miles")
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10754. {
  10755. anthro: {
  10756. height: math.unit(6 + 5 / 12, "feet"),
  10757. weight: math.unit(280, "lb"),
  10758. name: "Anthro",
  10759. image: {
  10760. source: "./media/characters/cordite/anthro.svg",
  10761. extra: 1986 / 1905,
  10762. bottom: 0.025
  10763. }
  10764. },
  10765. feral: {
  10766. height: math.unit(2, "feet"),
  10767. weight: math.unit(90, "lb"),
  10768. name: "Feral",
  10769. image: {
  10770. source: "./media/characters/cordite/feral.svg",
  10771. extra: 1260 / 755,
  10772. bottom: 0.05
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(6 + 5 / 12, "feet"),
  10780. default: true
  10781. },
  10782. ]
  10783. ))
  10784. characterMakers.push(() => makeCharacter(
  10785. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10786. {
  10787. front: {
  10788. height: math.unit(6, "feet"),
  10789. weight: math.unit(150, "lb"),
  10790. name: "Front",
  10791. image: {
  10792. source: "./media/characters/pianostrong/front.svg",
  10793. extra: 6577 / 6254,
  10794. bottom: 0.02
  10795. }
  10796. },
  10797. side: {
  10798. height: math.unit(6, "feet"),
  10799. weight: math.unit(150, "lb"),
  10800. name: "Side",
  10801. image: {
  10802. source: "./media/characters/pianostrong/side.svg",
  10803. extra: 6106 / 5730
  10804. }
  10805. },
  10806. back: {
  10807. height: math.unit(6, "feet"),
  10808. weight: math.unit(150, "lb"),
  10809. name: "Back",
  10810. image: {
  10811. source: "./media/characters/pianostrong/back.svg",
  10812. extra: 6085 / 5733,
  10813. bottom: 0.01
  10814. }
  10815. },
  10816. },
  10817. [
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(100, "feet")
  10821. },
  10822. {
  10823. name: "Macro+",
  10824. height: math.unit(300, "feet"),
  10825. default: true
  10826. },
  10827. {
  10828. name: "Macro++",
  10829. height: math.unit(1000, "feet")
  10830. },
  10831. ]
  10832. ))
  10833. characterMakers.push(() => makeCharacter(
  10834. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10835. {
  10836. front: {
  10837. height: math.unit(6, "feet"),
  10838. weight: math.unit(150, "lb"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/kona/front.svg",
  10842. extra: 2960 / 2629,
  10843. bottom: 0.005
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Normal",
  10850. height: math.unit(11 + 8 / 12, "feet")
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(850, "feet"),
  10855. default: true
  10856. },
  10857. {
  10858. name: "Macro+",
  10859. height: math.unit(1.5, "km"),
  10860. default: true
  10861. },
  10862. {
  10863. name: "Megamacro",
  10864. height: math.unit(80, "miles")
  10865. },
  10866. {
  10867. name: "Gigamacro",
  10868. height: math.unit(3500, "miles")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10874. {
  10875. side: {
  10876. height: math.unit(1.9, "meters"),
  10877. weight: math.unit(326, "kg"),
  10878. name: "Side",
  10879. image: {
  10880. source: "./media/characters/levi/side.svg",
  10881. extra: 1704 / 1334,
  10882. bottom: 0.02
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Normal",
  10889. height: math.unit(1.9, "meters"),
  10890. default: true
  10891. },
  10892. {
  10893. name: "Macro",
  10894. height: math.unit(20, "meters")
  10895. },
  10896. {
  10897. name: "Macro+",
  10898. height: math.unit(200, "meters")
  10899. },
  10900. {
  10901. name: "Megamacro",
  10902. height: math.unit(2, "km")
  10903. },
  10904. {
  10905. name: "Megamacro+",
  10906. height: math.unit(20, "km")
  10907. },
  10908. {
  10909. name: "Gigamacro",
  10910. height: math.unit(2500, "km")
  10911. },
  10912. {
  10913. name: "Gigamacro+",
  10914. height: math.unit(120000, "km")
  10915. },
  10916. {
  10917. name: "Teramacro",
  10918. height: math.unit(7.77e6, "km")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(6 + 4 / 12, "feet"),
  10927. weight: math.unit(188, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/bmc/front.svg",
  10931. extra: 1067 / 1022,
  10932. bottom: 0.047
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Human-sized",
  10939. height: math.unit(6 + 4 / 12, "feet")
  10940. },
  10941. {
  10942. name: "Small",
  10943. height: math.unit(250, "feet")
  10944. },
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(1250, "feet"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Good Day",
  10952. height: math.unit(88, "miles")
  10953. },
  10954. {
  10955. name: "Largest Measured Size",
  10956. height: math.unit(11.2e6, "lightyears")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10962. {
  10963. front: {
  10964. height: math.unit(20, "feet"),
  10965. weight: math.unit(2016, "kg"),
  10966. name: "Front",
  10967. image: {
  10968. source: "./media/characters/sven-the-kaiju/front.svg",
  10969. extra: 1479 / 1449,
  10970. bottom: 0.05
  10971. }
  10972. },
  10973. },
  10974. [
  10975. {
  10976. name: "Fairy",
  10977. height: math.unit(6, "inches")
  10978. },
  10979. {
  10980. name: "Normal",
  10981. height: math.unit(20, "feet"),
  10982. default: true
  10983. },
  10984. {
  10985. name: "Rampage",
  10986. height: math.unit(200, "feet")
  10987. },
  10988. {
  10989. name: "Archfey Forest Guardian",
  10990. height: math.unit(1, "mile")
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(4, "meters"),
  10999. weight: math.unit(2, "tons"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/marik/front.svg",
  11003. extra: 1057 / 1003,
  11004. bottom: 0.08
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Normal",
  11011. height: math.unit(4, "meters"),
  11012. default: true
  11013. },
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(20, "meters")
  11017. },
  11018. {
  11019. name: "Megamacro",
  11020. height: math.unit(50, "km")
  11021. },
  11022. {
  11023. name: "Gigamacro",
  11024. height: math.unit(100, "km")
  11025. },
  11026. {
  11027. name: "Alpha Macro",
  11028. height: math.unit(7.88e7, "yottameters")
  11029. },
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11034. {
  11035. front: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(110, "lb"),
  11038. name: "Front",
  11039. image: {
  11040. source: "./media/characters/mel/front.svg",
  11041. extra: 736 / 617,
  11042. bottom: 0.017
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Pico",
  11049. height: math.unit(3, "pm")
  11050. },
  11051. {
  11052. name: "Nano",
  11053. height: math.unit(3, "nm")
  11054. },
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(0.3, "mm"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Micro+",
  11062. height: math.unit(3, "mm")
  11063. },
  11064. {
  11065. name: "Normal",
  11066. height: math.unit(5 + 10.5 / 12, "feet")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11072. {
  11073. kaiju: {
  11074. height: math.unit(1.75, "meters"),
  11075. weight: math.unit(55, "kg"),
  11076. name: "Kaiju",
  11077. image: {
  11078. source: "./media/characters/lykonous/kaiju.svg",
  11079. extra: 1055 / 946,
  11080. bottom: 0.135
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(2.5, "meters"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Kaiju Dragon",
  11092. height: math.unit(60, "meters")
  11093. },
  11094. {
  11095. name: "Mega Kaiju",
  11096. height: math.unit(120, "km")
  11097. },
  11098. {
  11099. name: "Giga Kaiju",
  11100. height: math.unit(200, "megameters")
  11101. },
  11102. {
  11103. name: "Terra Kaiju",
  11104. height: math.unit(400, "gigameters")
  11105. },
  11106. {
  11107. name: "Kaiju Dragon God",
  11108. height: math.unit(13000, "exaparsecs")
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11114. {
  11115. front: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(150, "lb"),
  11118. name: "Front",
  11119. image: {
  11120. source: "./media/characters/blü/front.svg",
  11121. extra: 1883 / 1564,
  11122. bottom: 0.031
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(13, "feet"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Big Boi",
  11134. height: math.unit(150, "meters")
  11135. },
  11136. {
  11137. name: "Mini Stomper",
  11138. height: math.unit(300, "meters")
  11139. },
  11140. {
  11141. name: "Macro",
  11142. height: math.unit(1000, "meters")
  11143. },
  11144. {
  11145. name: "Megamacro",
  11146. height: math.unit(11000, "meters")
  11147. },
  11148. {
  11149. name: "Gigamacro",
  11150. height: math.unit(11000, "km")
  11151. },
  11152. {
  11153. name: "Teramacro",
  11154. height: math.unit(420000, "km")
  11155. },
  11156. {
  11157. name: "Examacro",
  11158. height: math.unit(120, "parsecs")
  11159. },
  11160. {
  11161. name: "God Tho",
  11162. height: math.unit(98000000000, "parsecs")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11168. {
  11169. taurFront: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(200, "lb"),
  11172. name: "Taur (Front)",
  11173. image: {
  11174. source: "./media/characters/scales/taur-front.svg",
  11175. extra: 1,
  11176. bottom: 0.05
  11177. }
  11178. },
  11179. taurBack: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(200, "lb"),
  11182. name: "Taur (Back)",
  11183. image: {
  11184. source: "./media/characters/scales/taur-back.svg",
  11185. extra: 1,
  11186. bottom: 0.08
  11187. }
  11188. },
  11189. anthro: {
  11190. height: math.unit(6 * 7 / 12, "feet"),
  11191. weight: math.unit(100, "lb"),
  11192. name: "Anthro",
  11193. image: {
  11194. source: "./media/characters/scales/anthro.svg",
  11195. extra: 1,
  11196. bottom: 0.06
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(12, "feet"),
  11204. default: true
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11210. {
  11211. front: {
  11212. height: math.unit(6, "feet"),
  11213. weight: math.unit(150, "lb"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/koragos/front.svg",
  11217. extra: 841 / 794,
  11218. bottom: 0.035
  11219. }
  11220. },
  11221. back: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Back",
  11225. image: {
  11226. source: "./media/characters/koragos/back.svg",
  11227. extra: 841 / 810,
  11228. bottom: 0.022
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Normal",
  11235. height: math.unit(6 + 11 / 12, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(490, "feet")
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(10, "miles")
  11245. },
  11246. {
  11247. name: "Gigamacro",
  11248. height: math.unit(50, "miles")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(250, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/xylrem/front.svg",
  11261. extra: 3323 / 3050,
  11262. bottom: 0.065
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Micro",
  11269. height: math.unit(4, "feet")
  11270. },
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(16, "feet"),
  11274. default: true
  11275. },
  11276. {
  11277. name: "Macro",
  11278. height: math.unit(2720, "feet")
  11279. },
  11280. {
  11281. name: "Megamacro",
  11282. height: math.unit(25000, "miles")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(8, "feet"),
  11291. weight: math.unit(250, "kg"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/ikideru/front.svg",
  11295. extra: 930 / 870,
  11296. bottom: 0.087
  11297. }
  11298. },
  11299. back: {
  11300. height: math.unit(8, "feet"),
  11301. weight: math.unit(250, "kg"),
  11302. name: "Back",
  11303. image: {
  11304. source: "./media/characters/ikideru/back.svg",
  11305. extra: 919 / 852,
  11306. bottom: 0.055
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Rare",
  11313. height: math.unit(8, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Playful Loom",
  11318. height: math.unit(80, "feet")
  11319. },
  11320. {
  11321. name: "City Leaner",
  11322. height: math.unit(230, "feet")
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(2500, "feet")
  11327. },
  11328. {
  11329. name: "Gigamacro",
  11330. height: math.unit(26400, "feet")
  11331. },
  11332. {
  11333. name: "Tectonic Shifter",
  11334. height: math.unit(1.7, "megameters")
  11335. },
  11336. {
  11337. name: "Planet Carer",
  11338. height: math.unit(21, "megameters")
  11339. },
  11340. {
  11341. name: "God",
  11342. height: math.unit(11157.22, "parsecs")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(120, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/neo/front.svg"
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(2, "inches"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Human Size",
  11366. height: math.unit(5 + 8 / 12, "feet")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(13 + 10 / 12, "feet"),
  11375. weight: math.unit(5320, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/chauncey-chantz/front.svg",
  11379. extra: 1587 / 1435,
  11380. bottom: 0.02
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(13 + 10 / 12, "feet"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Macro",
  11392. height: math.unit(45, "feet")
  11393. },
  11394. {
  11395. name: "Megamacro",
  11396. height: math.unit(250, "miles")
  11397. },
  11398. {
  11399. name: "Planetary",
  11400. height: math.unit(10000, "miles")
  11401. },
  11402. {
  11403. name: "Galactic",
  11404. height: math.unit(40000, "parsecs")
  11405. },
  11406. {
  11407. name: "Universal",
  11408. height: math.unit(1, "yottameter")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11414. {
  11415. front: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(150, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/epifox/front.svg",
  11421. extra: 1,
  11422. bottom: 0.075
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Micro",
  11429. height: math.unit(6, "inches")
  11430. },
  11431. {
  11432. name: "Normal",
  11433. height: math.unit(12, "feet"),
  11434. default: true
  11435. },
  11436. {
  11437. name: "Macro",
  11438. height: math.unit(3810, "feet")
  11439. },
  11440. {
  11441. name: "Megamacro",
  11442. height: math.unit(500, "miles")
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(1.8796, "m"),
  11451. weight: math.unit(230, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/colin-t/front.svg",
  11455. extra: 1272 / 1193,
  11456. bottom: 0.07
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Micro",
  11463. height: math.unit(0.571, "meters")
  11464. },
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(1.8796, "meters"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Tall",
  11472. height: math.unit(4, "meters")
  11473. },
  11474. {
  11475. name: "Macro",
  11476. height: math.unit(67.241, "meters")
  11477. },
  11478. {
  11479. name: "Megamacro",
  11480. height: math.unit(371.856, "meters")
  11481. },
  11482. {
  11483. name: "Planetary",
  11484. height: math.unit(12631.5689, "km")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(1.85, "meters"),
  11493. weight: math.unit(80, "kg"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/matvei/front.svg",
  11497. extra: 614 / 594,
  11498. bottom: 0.01
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Normal",
  11505. height: math.unit(1.85, "meters"),
  11506. default: true
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11512. {
  11513. front: {
  11514. height: math.unit(5 + 9 / 12, "feet"),
  11515. weight: math.unit(70, "lb"),
  11516. name: "Front",
  11517. image: {
  11518. source: "./media/characters/quincy/front.svg",
  11519. extra: 3041 / 2751
  11520. }
  11521. },
  11522. back: {
  11523. height: math.unit(5 + 9 / 12, "feet"),
  11524. weight: math.unit(70, "lb"),
  11525. name: "Back",
  11526. image: {
  11527. source: "./media/characters/quincy/back.svg",
  11528. extra: 3041 / 2751
  11529. }
  11530. },
  11531. flying: {
  11532. height: math.unit(5 + 4 / 12, "feet"),
  11533. weight: math.unit(70, "lb"),
  11534. name: "Flying",
  11535. image: {
  11536. source: "./media/characters/quincy/flying.svg",
  11537. extra: 1044 / 930
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(3, "cm")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(5 + 9 / 12, "feet")
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(200, "meters"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(1000, "meters")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(4 + 7 / 12, "feet"),
  11566. weight: math.unit(50, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/vanrel/front.svg",
  11570. extra: 1,
  11571. bottom: 0.02
  11572. }
  11573. },
  11574. frontAlt: {
  11575. height: math.unit(4 + 7 / 12, "feet"),
  11576. weight: math.unit(50, "lb"),
  11577. name: "Front-alt",
  11578. image: {
  11579. source: "./media/characters/vanrel/front-alt.svg",
  11580. extra: 1,
  11581. bottom: 15 / 1511
  11582. }
  11583. },
  11584. elemental: {
  11585. height: math.unit(3, "feet"),
  11586. weight: math.unit(50, "lb"),
  11587. name: "Elemental",
  11588. image: {
  11589. source: "./media/characters/vanrel/elemental.svg",
  11590. extra: 192.3 / 162.8,
  11591. bottom: 1.79 / 194.17
  11592. }
  11593. },
  11594. side: {
  11595. height: math.unit(4 + 7 / 12, "feet"),
  11596. weight: math.unit(50, "lb"),
  11597. name: "Side",
  11598. image: {
  11599. source: "./media/characters/vanrel/side.svg",
  11600. extra: 1,
  11601. bottom: 0.025
  11602. }
  11603. },
  11604. tome: {
  11605. height: math.unit(1.35, "feet"),
  11606. weight: math.unit(10, "lb"),
  11607. name: "Vanrel's Tome",
  11608. rename: true,
  11609. image: {
  11610. source: "./media/characters/vanrel/tome.svg"
  11611. }
  11612. },
  11613. beans: {
  11614. height: math.unit(0.89, "feet"),
  11615. name: "Beans",
  11616. image: {
  11617. source: "./media/characters/vanrel/beans.svg"
  11618. }
  11619. },
  11620. },
  11621. [
  11622. {
  11623. name: "Normal",
  11624. height: math.unit(4 + 7 / 12, "feet"),
  11625. default: true
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11631. {
  11632. front: {
  11633. height: math.unit(7 + 5 / 12, "feet"),
  11634. weight: math.unit(150, "lb"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/kuiper-vanrel/front.svg",
  11638. extra: 1118 / 1068,
  11639. bottom: 0.09
  11640. }
  11641. },
  11642. foot: {
  11643. height: math.unit(0.55, "meters"),
  11644. name: "Foot",
  11645. image: {
  11646. source: "./media/characters/kuiper-vanrel/foot.svg",
  11647. }
  11648. },
  11649. battle: {
  11650. height: math.unit(6.824, "feet"),
  11651. weight: math.unit(150, "lb"),
  11652. name: "Battle",
  11653. image: {
  11654. source: "./media/characters/kuiper-vanrel/battle.svg",
  11655. extra: 1466 / 1327,
  11656. bottom: 29 / 1492.5
  11657. }
  11658. },
  11659. battleAlt: {
  11660. height: math.unit(6.824, "feet"),
  11661. weight: math.unit(150, "lb"),
  11662. name: "Battle (Alt)",
  11663. image: {
  11664. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11665. extra: 2081 / 1965,
  11666. bottom: 40 / 2121
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Normal",
  11673. height: math.unit(7 + 5 / 12, "feet"),
  11674. default: true
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11680. {
  11681. front: {
  11682. height: math.unit(8 + 5 / 12, "feet"),
  11683. weight: math.unit(150, "lb"),
  11684. name: "Front",
  11685. image: {
  11686. source: "./media/characters/keset-vanrel/front.svg",
  11687. extra: 1150 / 1084,
  11688. bottom: 0.05
  11689. }
  11690. },
  11691. hand: {
  11692. height: math.unit(0.6, "meters"),
  11693. name: "Hand",
  11694. image: {
  11695. source: "./media/characters/keset-vanrel/hand.svg"
  11696. }
  11697. },
  11698. foot: {
  11699. height: math.unit(0.94978, "meters"),
  11700. name: "Foot",
  11701. image: {
  11702. source: "./media/characters/keset-vanrel/foot.svg"
  11703. }
  11704. },
  11705. battle: {
  11706. height: math.unit(7.408, "feet"),
  11707. weight: math.unit(150, "lb"),
  11708. name: "Battle",
  11709. image: {
  11710. source: "./media/characters/keset-vanrel/battle.svg",
  11711. extra: 1890 / 1386,
  11712. bottom: 73.28 / 1970
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(8 + 5 / 12, "feet"),
  11720. default: true
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(6, "feet"),
  11729. weight: math.unit(150, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/neos/front.svg",
  11733. extra: 1696 / 992,
  11734. bottom: 0.14
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(54, "cm"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Macro",
  11746. height: math.unit(100, "m")
  11747. },
  11748. {
  11749. name: "Megamacro",
  11750. height: math.unit(10, "km")
  11751. },
  11752. {
  11753. name: "Megamacro+",
  11754. height: math.unit(100, "km")
  11755. },
  11756. {
  11757. name: "Gigamacro",
  11758. height: math.unit(100, "Mm")
  11759. },
  11760. {
  11761. name: "Teramacro",
  11762. height: math.unit(100, "Gm")
  11763. },
  11764. {
  11765. name: "Examacro",
  11766. height: math.unit(100, "Em")
  11767. },
  11768. {
  11769. name: "Godly",
  11770. height: math.unit(10000, "Ym")
  11771. },
  11772. {
  11773. name: "Beyond Godly",
  11774. height: math.unit(25, "multiverses")
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11780. {
  11781. feminine: {
  11782. height: math.unit(5, "feet"),
  11783. weight: math.unit(100, "lb"),
  11784. name: "Feminine",
  11785. image: {
  11786. source: "./media/characters/sammy-mouse/feminine.svg",
  11787. extra: 2526 / 2425,
  11788. bottom: 0.123
  11789. }
  11790. },
  11791. masculine: {
  11792. height: math.unit(5, "feet"),
  11793. weight: math.unit(100, "lb"),
  11794. name: "Masculine",
  11795. image: {
  11796. source: "./media/characters/sammy-mouse/masculine.svg",
  11797. extra: 2526 / 2425,
  11798. bottom: 0.123
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Micro",
  11805. height: math.unit(5, "inches")
  11806. },
  11807. {
  11808. name: "Normal",
  11809. height: math.unit(5, "feet"),
  11810. default: true
  11811. },
  11812. {
  11813. name: "Macro",
  11814. height: math.unit(60, "feet")
  11815. },
  11816. ]
  11817. ))
  11818. characterMakers.push(() => makeCharacter(
  11819. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11820. {
  11821. front: {
  11822. height: math.unit(4, "feet"),
  11823. weight: math.unit(50, "lb"),
  11824. name: "Front",
  11825. image: {
  11826. source: "./media/characters/kole/front.svg",
  11827. extra: 1423 / 1303,
  11828. bottom: 0.025
  11829. }
  11830. },
  11831. back: {
  11832. height: math.unit(4, "feet"),
  11833. weight: math.unit(50, "lb"),
  11834. name: "Back",
  11835. image: {
  11836. source: "./media/characters/kole/back.svg",
  11837. extra: 1426 / 1280,
  11838. bottom: 0.02
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Normal",
  11845. height: math.unit(4, "feet"),
  11846. default: true
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(2 + 6 / 12, "feet"),
  11855. weight: math.unit(20, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/rufran/front.svg",
  11859. extra: 2041 / 1839,
  11860. bottom: 0.055
  11861. }
  11862. },
  11863. back: {
  11864. height: math.unit(2 + 6 / 12, "feet"),
  11865. weight: math.unit(20, "lb"),
  11866. name: "Back",
  11867. image: {
  11868. source: "./media/characters/rufran/back.svg",
  11869. extra: 2054 / 1839,
  11870. bottom: 0.01
  11871. }
  11872. },
  11873. hand: {
  11874. height: math.unit(0.2166, "meters"),
  11875. name: "Hand",
  11876. image: {
  11877. source: "./media/characters/rufran/hand.svg"
  11878. }
  11879. },
  11880. foot: {
  11881. height: math.unit(0.185, "meters"),
  11882. name: "Foot",
  11883. image: {
  11884. source: "./media/characters/rufran/foot.svg"
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Micro",
  11891. height: math.unit(1, "inch")
  11892. },
  11893. {
  11894. name: "Normal",
  11895. height: math.unit(2 + 6 / 12, "feet"),
  11896. default: true
  11897. },
  11898. {
  11899. name: "Big",
  11900. height: math.unit(60, "feet")
  11901. },
  11902. {
  11903. name: "Macro",
  11904. height: math.unit(325, "feet")
  11905. },
  11906. ]
  11907. ))
  11908. characterMakers.push(() => makeCharacter(
  11909. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11910. {
  11911. front: {
  11912. height: math.unit(0.3, "meters"),
  11913. weight: math.unit(3.5, "kg"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/chip/front.svg",
  11917. extra: 748 / 674
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Micro",
  11924. height: math.unit(1, "inch"),
  11925. default: true
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11931. {
  11932. side: {
  11933. height: math.unit(2.3, "meters"),
  11934. weight: math.unit(3500, "lb"),
  11935. name: "Side",
  11936. image: {
  11937. source: "./media/characters/torvid/side.svg",
  11938. extra: 1972 / 722,
  11939. bottom: 0.035
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Normal",
  11946. height: math.unit(2.3, "meters"),
  11947. default: true
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11953. {
  11954. front: {
  11955. height: math.unit(2, "meters"),
  11956. weight: math.unit(150.5, "kg"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/susan/front.svg",
  11960. extra: 693 / 635,
  11961. bottom: 0.05
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Megamacro",
  11968. height: math.unit(505, "miles"),
  11969. default: true
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/raindrops/front.svg",
  11982. extra: 2655 / 2461,
  11983. bottom: 49 / 2705
  11984. }
  11985. },
  11986. back: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(150, "lb"),
  11989. name: "Back",
  11990. image: {
  11991. source: "./media/characters/raindrops/back.svg",
  11992. extra: 2574 / 2400,
  11993. bottom: 65 / 2634
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Micro",
  12000. height: math.unit(6, "inches")
  12001. },
  12002. {
  12003. name: "Normal",
  12004. height: math.unit(6 + 2 / 12, "feet")
  12005. },
  12006. {
  12007. name: "Macro",
  12008. height: math.unit(131, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(15, "miles")
  12014. },
  12015. {
  12016. name: "Gigamacro",
  12017. height: math.unit(4000, "miles")
  12018. },
  12019. {
  12020. name: "Teramacro",
  12021. height: math.unit(315000, "miles")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12027. {
  12028. front: {
  12029. height: math.unit(2.794, "meters"),
  12030. weight: math.unit(325, "kg"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/tezwa/front.svg",
  12034. extra: 2083 / 1906,
  12035. bottom: 0.031
  12036. }
  12037. },
  12038. foot: {
  12039. height: math.unit(0.687, "meters"),
  12040. name: "Foot",
  12041. image: {
  12042. source: "./media/characters/tezwa/foot.svg"
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Normal",
  12049. height: math.unit(9 + 2 / 12, "feet"),
  12050. default: true
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(58, "feet"),
  12059. weight: math.unit(89000, "lb"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/typhus/front.svg",
  12063. extra: 816 / 800,
  12064. bottom: 0.065
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Macro",
  12071. height: math.unit(58, "feet"),
  12072. default: true
  12073. },
  12074. ]
  12075. ))
  12076. characterMakers.push(() => makeCharacter(
  12077. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12078. {
  12079. front: {
  12080. height: math.unit(12, "feet"),
  12081. weight: math.unit(6, "tonnes"),
  12082. name: "Front",
  12083. image: {
  12084. source: "./media/characters/lyra-von-wulf/front.svg",
  12085. extra: 1,
  12086. bottom: 0.10
  12087. }
  12088. },
  12089. frontMecha: {
  12090. height: math.unit(12, "feet"),
  12091. weight: math.unit(12, "tonnes"),
  12092. name: "Front (Mecha)",
  12093. image: {
  12094. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12095. extra: 1,
  12096. bottom: 0.042
  12097. }
  12098. },
  12099. maw: {
  12100. height: math.unit(2.2, "feet"),
  12101. name: "Maw",
  12102. image: {
  12103. source: "./media/characters/lyra-von-wulf/maw.svg"
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(12, "feet"),
  12111. default: true
  12112. },
  12113. {
  12114. name: "Classic",
  12115. height: math.unit(50, "feet")
  12116. },
  12117. {
  12118. name: "Macro",
  12119. height: math.unit(500, "feet")
  12120. },
  12121. {
  12122. name: "Megamacro",
  12123. height: math.unit(1, "mile")
  12124. },
  12125. {
  12126. name: "Gigamacro",
  12127. height: math.unit(400, "miles")
  12128. },
  12129. {
  12130. name: "Teramacro",
  12131. height: math.unit(22000, "miles")
  12132. },
  12133. {
  12134. name: "Solarmacro",
  12135. height: math.unit(8600000, "miles")
  12136. },
  12137. {
  12138. name: "Galactic",
  12139. height: math.unit(1057000, "lightyears")
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12145. {
  12146. front: {
  12147. height: math.unit(6 + 10 / 12, "feet"),
  12148. weight: math.unit(150, "lb"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/dixon/front.svg",
  12152. extra: 3361 / 3209,
  12153. bottom: 0.01
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(6 + 10 / 12, "feet"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Big",
  12165. height: math.unit(12, "meters")
  12166. },
  12167. {
  12168. name: "Macro",
  12169. height: math.unit(500, "meters")
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(2, "km")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(185, "cm"),
  12182. weight: math.unit(68, "kg"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/kauko/front.svg",
  12186. extra: 1455 / 1421,
  12187. bottom: 0.03
  12188. }
  12189. },
  12190. back: {
  12191. height: math.unit(185, "cm"),
  12192. weight: math.unit(68, "kg"),
  12193. name: "Back",
  12194. image: {
  12195. source: "./media/characters/kauko/back.svg",
  12196. extra: 1455 / 1421,
  12197. bottom: 0.004
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(185, "cm"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(150, "kg"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/varg/front.svg",
  12218. extra: 1108 / 1018,
  12219. bottom: 0.0375
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(5, "meters")
  12227. },
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(200, "meters")
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(20, "kilometers")
  12235. },
  12236. {
  12237. name: "True Size",
  12238. height: math.unit(211, "km"),
  12239. default: true
  12240. },
  12241. {
  12242. name: "Gigamacro",
  12243. height: math.unit(1000, "km")
  12244. },
  12245. {
  12246. name: "Gigamacro+",
  12247. height: math.unit(8000, "km")
  12248. },
  12249. {
  12250. name: "Teramacro",
  12251. height: math.unit(1000000, "km")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12257. {
  12258. front: {
  12259. height: math.unit(7 + 7 / 12, "feet"),
  12260. weight: math.unit(267, "lb"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/dayza/front.svg",
  12264. extra: 1262 / 1200,
  12265. bottom: 0.035
  12266. }
  12267. },
  12268. side: {
  12269. height: math.unit(7 + 7 / 12, "feet"),
  12270. weight: math.unit(267, "lb"),
  12271. name: "Side",
  12272. image: {
  12273. source: "./media/characters/dayza/side.svg",
  12274. extra: 1295 / 1245,
  12275. bottom: 0.05
  12276. }
  12277. },
  12278. back: {
  12279. height: math.unit(7 + 7 / 12, "feet"),
  12280. weight: math.unit(267, "lb"),
  12281. name: "Back",
  12282. image: {
  12283. source: "./media/characters/dayza/back.svg",
  12284. extra: 1241 / 1170
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Normal",
  12291. height: math.unit(7 + 7 / 12, "feet"),
  12292. default: true
  12293. },
  12294. {
  12295. name: "Macro",
  12296. height: math.unit(155, "feet")
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12302. {
  12303. front: {
  12304. height: math.unit(6 + 5 / 12, "feet"),
  12305. weight: math.unit(160, "lb"),
  12306. name: "Front",
  12307. image: {
  12308. source: "./media/characters/xanthos/front.svg",
  12309. extra: 1,
  12310. bottom: 0.04
  12311. }
  12312. },
  12313. back: {
  12314. height: math.unit(6 + 5 / 12, "feet"),
  12315. weight: math.unit(160, "lb"),
  12316. name: "Back",
  12317. image: {
  12318. source: "./media/characters/xanthos/back.svg",
  12319. extra: 1,
  12320. bottom: 0.03
  12321. }
  12322. },
  12323. hand: {
  12324. height: math.unit(0.928, "feet"),
  12325. name: "Hand",
  12326. image: {
  12327. source: "./media/characters/xanthos/hand.svg"
  12328. }
  12329. },
  12330. foot: {
  12331. height: math.unit(1.286, "feet"),
  12332. name: "Foot",
  12333. image: {
  12334. source: "./media/characters/xanthos/foot.svg"
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Normal",
  12341. height: math.unit(6 + 5 / 12, "feet"),
  12342. default: true
  12343. },
  12344. {
  12345. name: "Normal+",
  12346. height: math.unit(6, "meters")
  12347. },
  12348. {
  12349. name: "Macro",
  12350. height: math.unit(40, "feet")
  12351. },
  12352. {
  12353. name: "Macro+",
  12354. height: math.unit(200, "meters")
  12355. },
  12356. {
  12357. name: "Megamacro",
  12358. height: math.unit(20, "km")
  12359. },
  12360. {
  12361. name: "Megamacro+",
  12362. height: math.unit(100, "km")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6 + 3 / 12, "feet"),
  12371. weight: math.unit(215, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/grynn/front.svg",
  12375. extra: 4627 / 4209,
  12376. bottom: 0.047
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Micro",
  12383. height: math.unit(6, "inches")
  12384. },
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(6 + 3 / 12, "feet"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Big",
  12392. height: math.unit(104, "feet")
  12393. },
  12394. {
  12395. name: "Macro",
  12396. height: math.unit(944, "feet")
  12397. },
  12398. {
  12399. name: "Macro+",
  12400. height: math.unit(9480, "feet")
  12401. },
  12402. {
  12403. name: "Megamacro",
  12404. height: math.unit(78752, "feet")
  12405. },
  12406. {
  12407. name: "Megamacro+",
  12408. height: math.unit(630128, "feet")
  12409. },
  12410. {
  12411. name: "Megamacro++",
  12412. height: math.unit(3150695, "feet")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(7 + 5 / 12, "feet"),
  12421. weight: math.unit(450, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/mocha-aura/front.svg",
  12425. extra: 1907 / 1817,
  12426. bottom: 0.04
  12427. }
  12428. },
  12429. back: {
  12430. height: math.unit(7 + 5 / 12, "feet"),
  12431. weight: math.unit(450, "lb"),
  12432. name: "Back",
  12433. image: {
  12434. source: "./media/characters/mocha-aura/back.svg",
  12435. extra: 1900 / 1825,
  12436. bottom: 0.045
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Nano",
  12443. height: math.unit(1, "nm")
  12444. },
  12445. {
  12446. name: "Megamicro",
  12447. height: math.unit(1, "mm")
  12448. },
  12449. {
  12450. name: "Micro",
  12451. height: math.unit(3, "inches")
  12452. },
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(7 + 5 / 12, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Macro",
  12460. height: math.unit(30, "feet")
  12461. },
  12462. {
  12463. name: "Megamacro",
  12464. height: math.unit(3500, "feet")
  12465. },
  12466. {
  12467. name: "Teramacro",
  12468. height: math.unit(500000, "miles")
  12469. },
  12470. {
  12471. name: "Petamacro",
  12472. height: math.unit(50000000000000000, "parsecs")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/ilisha-devya/front.svg",
  12485. extra: 1,
  12486. bottom: 0.175
  12487. }
  12488. },
  12489. back: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(150, "lb"),
  12492. name: "Back",
  12493. image: {
  12494. source: "./media/characters/ilisha-devya/back.svg",
  12495. extra: 1,
  12496. bottom: 0.015
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Macro",
  12503. height: math.unit(500, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Megamacro",
  12508. height: math.unit(10, "miles")
  12509. },
  12510. {
  12511. name: "Gigamacro",
  12512. height: math.unit(100000, "miles")
  12513. },
  12514. {
  12515. name: "Examacro",
  12516. height: math.unit(1e9, "lightyears")
  12517. },
  12518. {
  12519. name: "Omniversal",
  12520. height: math.unit(1e33, "lightyears")
  12521. },
  12522. {
  12523. name: "Beyond Infinite",
  12524. height: math.unit(1e100, "lightyears")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12530. {
  12531. Side: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(150, "lb"),
  12534. name: "Side",
  12535. image: {
  12536. source: "./media/characters/mira/side.svg",
  12537. extra: 900 / 799,
  12538. bottom: 0.02
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Human Size",
  12545. height: math.unit(6, "feet")
  12546. },
  12547. {
  12548. name: "Macro",
  12549. height: math.unit(100, "feet"),
  12550. default: true
  12551. },
  12552. {
  12553. name: "Megamacro",
  12554. height: math.unit(10, "miles")
  12555. },
  12556. {
  12557. name: "Gigamacro",
  12558. height: math.unit(25000, "miles")
  12559. },
  12560. {
  12561. name: "Teramacro",
  12562. height: math.unit(300, "AU")
  12563. },
  12564. {
  12565. name: "Full Size",
  12566. height: math.unit(4.5e10, "lightyears")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(150, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/holly/front.svg",
  12579. extra: 639 / 606
  12580. }
  12581. },
  12582. back: {
  12583. height: math.unit(6, "feet"),
  12584. weight: math.unit(150, "lb"),
  12585. name: "Back",
  12586. image: {
  12587. source: "./media/characters/holly/back.svg",
  12588. extra: 623 / 598
  12589. }
  12590. },
  12591. frontWorking: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(150, "lb"),
  12594. name: "Front (Working)",
  12595. image: {
  12596. source: "./media/characters/holly/front-working.svg",
  12597. extra: 607 / 577,
  12598. bottom: 0.048
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(12 + 3 / 12, "feet"),
  12606. default: true
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12612. {
  12613. front: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Front",
  12617. image: {
  12618. source: "./media/characters/porter/front.svg",
  12619. extra: 1,
  12620. bottom: 0.01
  12621. }
  12622. },
  12623. frontRobes: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(150, "lb"),
  12626. name: "Front (Robes)",
  12627. image: {
  12628. source: "./media/characters/porter/front-robes.svg",
  12629. extra: 1.01,
  12630. bottom: 0.01
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(11 + 9 / 12, "feet"),
  12638. default: true
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12644. {
  12645. legendary: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Legendary",
  12649. image: {
  12650. source: "./media/characters/lucy/legendary.svg",
  12651. extra: 1355 / 1100,
  12652. bottom: 0.045
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Legendary",
  12659. height: math.unit(86882 * 2, "miles"),
  12660. default: true
  12661. },
  12662. ]
  12663. ))
  12664. characterMakers.push(() => makeCharacter(
  12665. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12666. {
  12667. front: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Front",
  12671. image: {
  12672. source: "./media/characters/drusilla/front.svg",
  12673. extra: 678 / 635,
  12674. bottom: 0.03
  12675. }
  12676. },
  12677. back: {
  12678. height: math.unit(6, "feet"),
  12679. weight: math.unit(150, "lb"),
  12680. name: "Back",
  12681. image: {
  12682. source: "./media/characters/drusilla/back.svg",
  12683. extra: 678 / 635,
  12684. bottom: 0.005
  12685. }
  12686. },
  12687. },
  12688. [
  12689. {
  12690. name: "Macro",
  12691. height: math.unit(100, "feet")
  12692. },
  12693. {
  12694. name: "Canon Height",
  12695. height: math.unit(2000, "feet"),
  12696. default: true
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(180, "lb"),
  12706. name: "Front",
  12707. image: {
  12708. source: "./media/characters/renard-thatch/front.svg",
  12709. extra: 2411 / 2275,
  12710. bottom: 0.01
  12711. }
  12712. },
  12713. frontPosing: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(180, "lb"),
  12716. name: "Front (Posing)",
  12717. image: {
  12718. source: "./media/characters/renard-thatch/front-posing.svg",
  12719. extra: 2381 / 2261,
  12720. bottom: 0.01
  12721. }
  12722. },
  12723. back: {
  12724. height: math.unit(6, "feet"),
  12725. weight: math.unit(180, "lb"),
  12726. name: "Back",
  12727. image: {
  12728. source: "./media/characters/renard-thatch/back.svg",
  12729. extra: 2428 / 2288
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Micro",
  12736. height: math.unit(3, "inches")
  12737. },
  12738. {
  12739. name: "Default",
  12740. height: math.unit(6, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(75, "feet")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(1450, "feet"),
  12754. weight: math.unit(1.21e6, "tons"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/sekvra/front.svg",
  12758. extra: 1,
  12759. bottom: 0.03
  12760. }
  12761. },
  12762. frontClothed: {
  12763. height: math.unit(1450, "feet"),
  12764. weight: math.unit(1.21e6, "tons"),
  12765. name: "Front (Clothed)",
  12766. image: {
  12767. source: "./media/characters/sekvra/front-clothed.svg",
  12768. extra: 1,
  12769. bottom: 0.03
  12770. }
  12771. },
  12772. side: {
  12773. height: math.unit(1450, "feet"),
  12774. weight: math.unit(1.21e6, "tons"),
  12775. name: "Side",
  12776. image: {
  12777. source: "./media/characters/sekvra/side.svg",
  12778. extra: 1,
  12779. bottom: 0.025
  12780. }
  12781. },
  12782. back: {
  12783. height: math.unit(1450, "feet"),
  12784. weight: math.unit(1.21e6, "tons"),
  12785. name: "Back",
  12786. image: {
  12787. source: "./media/characters/sekvra/back.svg",
  12788. extra: 1,
  12789. bottom: 0.005
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(1450, "feet"),
  12797. default: true
  12798. },
  12799. {
  12800. name: "Megamacro",
  12801. height: math.unit(15000, "feet")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12807. {
  12808. front: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(150, "lb"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/carmine/front.svg",
  12814. extra: 1,
  12815. bottom: 0.035
  12816. }
  12817. },
  12818. frontArmor: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(150, "lb"),
  12821. name: "Front (Armor)",
  12822. image: {
  12823. source: "./media/characters/carmine/front-armor.svg",
  12824. extra: 1,
  12825. bottom: 0.035
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Large",
  12832. height: math.unit(1, "mile")
  12833. },
  12834. {
  12835. name: "Huge",
  12836. height: math.unit(40, "miles"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Colossal",
  12841. height: math.unit(2500, "miles")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(6, "feet"),
  12850. weight: math.unit(150, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/elyssia/front.svg",
  12854. extra: 2201 / 2035,
  12855. bottom: 0.05
  12856. }
  12857. },
  12858. frontClothed: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Front (Clothed)",
  12862. image: {
  12863. source: "./media/characters/elyssia/front-clothed.svg",
  12864. extra: 2201 / 2035,
  12865. bottom: 0.05
  12866. }
  12867. },
  12868. back: {
  12869. height: math.unit(6, "feet"),
  12870. weight: math.unit(150, "lb"),
  12871. name: "Back",
  12872. image: {
  12873. source: "./media/characters/elyssia/back.svg",
  12874. extra: 2201 / 2035,
  12875. bottom: 0.013
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Smaller",
  12882. height: math.unit(150, "feet")
  12883. },
  12884. {
  12885. name: "Standard",
  12886. height: math.unit(1400, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Distracted",
  12891. height: math.unit(15000, "feet")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(7 + 4 / 12, "feet"),
  12900. weight: math.unit(500, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/geno-maxwell/front.svg",
  12904. extra: 2207 / 2040,
  12905. bottom: 0.015
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Micro",
  12912. height: math.unit(3, "inches")
  12913. },
  12914. {
  12915. name: "Normal",
  12916. height: math.unit(7 + 4 / 12, "feet"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(220, "feet")
  12922. },
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(11, "miles")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(7 + 4 / 12, "feet"),
  12934. weight: math.unit(500, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/regena-maxwell/front.svg",
  12938. extra: 3115 / 2770,
  12939. bottom: 0.02
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Normal",
  12946. height: math.unit(7 + 4 / 12, "feet"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Macro",
  12951. height: math.unit(220, "feet")
  12952. },
  12953. {
  12954. name: "Megamacro",
  12955. height: math.unit(11, "miles")
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(150, "lb"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12968. extra: 860 / 690,
  12969. bottom: 0.03
  12970. }
  12971. },
  12972. },
  12973. [
  12974. {
  12975. name: "Normal",
  12976. height: math.unit(1.7, "meters"),
  12977. default: true
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(6, "feet"),
  12986. weight: math.unit(150, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/quilly/front.svg",
  12990. extra: 890 / 776
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Gigamacro",
  12997. height: math.unit(404090, "miles"),
  12998. default: true
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13004. {
  13005. front: {
  13006. height: math.unit(7 + 8 / 12, "feet"),
  13007. weight: math.unit(350, "lb"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/tempest/front.svg",
  13011. extra: 1175 / 1086,
  13012. bottom: 0.02
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(7 + 8 / 12, "feet"),
  13020. default: true
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13026. {
  13027. side: {
  13028. height: math.unit(4 + 5 / 12, "feet"),
  13029. weight: math.unit(80, "lb"),
  13030. name: "Side",
  13031. image: {
  13032. source: "./media/characters/rodger/side.svg",
  13033. extra: 1235 / 1118
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Micro",
  13040. height: math.unit(1, "inch")
  13041. },
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(4 + 5 / 12, "feet"),
  13045. default: true
  13046. },
  13047. {
  13048. name: "Macro",
  13049. height: math.unit(120, "feet")
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13055. {
  13056. front: {
  13057. height: math.unit(6, "feet"),
  13058. weight: math.unit(150, "lb"),
  13059. name: "Front",
  13060. image: {
  13061. source: "./media/characters/danyel/front.svg",
  13062. extra: 1185 / 1123,
  13063. bottom: 0.05
  13064. }
  13065. },
  13066. },
  13067. [
  13068. {
  13069. name: "Shrunken",
  13070. height: math.unit(0.5, "mm")
  13071. },
  13072. {
  13073. name: "Micro",
  13074. height: math.unit(1, "mm"),
  13075. default: true
  13076. },
  13077. {
  13078. name: "Upsized",
  13079. height: math.unit(5 + 5 / 12, "feet")
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13085. {
  13086. front: {
  13087. height: math.unit(5 + 6 / 12, "feet"),
  13088. weight: math.unit(200, "lb"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/vivian-bijoux/front.svg",
  13092. extra: 1,
  13093. bottom: 0.072
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(5 + 6 / 12, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Bad Dream",
  13105. height: math.unit(500, "feet")
  13106. },
  13107. {
  13108. name: "Nightmare",
  13109. height: math.unit(500, "miles")
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(6 + 1 / 12, "feet"),
  13118. weight: math.unit(260, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/zeta/front.svg",
  13122. extra: 1968 / 1889,
  13123. bottom: 0.06
  13124. }
  13125. },
  13126. back: {
  13127. height: math.unit(6 + 1 / 12, "feet"),
  13128. weight: math.unit(260, "lb"),
  13129. name: "Back",
  13130. image: {
  13131. source: "./media/characters/zeta/back.svg",
  13132. extra: 1944 / 1858,
  13133. bottom: 0.03
  13134. }
  13135. },
  13136. hand: {
  13137. height: math.unit(1.112, "feet"),
  13138. name: "Hand",
  13139. image: {
  13140. source: "./media/characters/zeta/hand.svg"
  13141. }
  13142. },
  13143. foot: {
  13144. height: math.unit(1.48, "feet"),
  13145. name: "Foot",
  13146. image: {
  13147. source: "./media/characters/zeta/foot.svg"
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Micro",
  13154. height: math.unit(6, "inches")
  13155. },
  13156. {
  13157. name: "Normal",
  13158. height: math.unit(6 + 1 / 12, "feet"),
  13159. default: true
  13160. },
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(20, "feet")
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13169. {
  13170. front: {
  13171. height: math.unit(6, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/jamie-larsen/front.svg",
  13176. extra: 962 / 933,
  13177. bottom: 0.02
  13178. }
  13179. },
  13180. back: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Back",
  13184. image: {
  13185. source: "./media/characters/jamie-larsen/back.svg",
  13186. extra: 997 / 946
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Macro",
  13193. height: math.unit(28 + 7 / 12, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Macro+",
  13198. height: math.unit(180, "feet")
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(10, "miles")
  13203. },
  13204. {
  13205. name: "Gigamacro",
  13206. height: math.unit(200000, "miles")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(120, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/vance/front.svg",
  13219. extra: 1980 / 1890,
  13220. bottom: 0.09
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(120, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/vance/back.svg",
  13229. extra: 2081 / 1994,
  13230. bottom: 0.014
  13231. }
  13232. },
  13233. hand: {
  13234. height: math.unit(0.88, "feet"),
  13235. name: "Hand",
  13236. image: {
  13237. source: "./media/characters/vance/hand.svg"
  13238. }
  13239. },
  13240. foot: {
  13241. height: math.unit(0.64, "feet"),
  13242. name: "Foot",
  13243. image: {
  13244. source: "./media/characters/vance/foot.svg"
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Small",
  13251. height: math.unit(90, "feet"),
  13252. default: true
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(100, "meters")
  13257. },
  13258. {
  13259. name: "Megamacro",
  13260. height: math.unit(15, "miles")
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(180, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/xochitl/front.svg",
  13273. extra: 2297 / 2261,
  13274. bottom: 0.065
  13275. }
  13276. },
  13277. back: {
  13278. height: math.unit(6, "feet"),
  13279. weight: math.unit(180, "lb"),
  13280. name: "Back",
  13281. image: {
  13282. source: "./media/characters/xochitl/back.svg",
  13283. extra: 2386 / 2354,
  13284. bottom: 0.01
  13285. }
  13286. },
  13287. foot: {
  13288. height: math.unit(6 / 5 * 1.15, "feet"),
  13289. weight: math.unit(150, "lb"),
  13290. name: "Foot",
  13291. image: {
  13292. source: "./media/characters/xochitl/foot.svg"
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Macro",
  13299. height: math.unit(80, "feet")
  13300. },
  13301. {
  13302. name: "Macro+",
  13303. height: math.unit(400, "feet"),
  13304. default: true
  13305. },
  13306. {
  13307. name: "Gigamacro",
  13308. height: math.unit(80000, "miles")
  13309. },
  13310. {
  13311. name: "Gigamacro+",
  13312. height: math.unit(400000, "miles")
  13313. },
  13314. {
  13315. name: "Teramacro",
  13316. height: math.unit(300, "AU")
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(6, "feet"),
  13325. weight: math.unit(150, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/vincent/front.svg",
  13329. extra: 1130 / 1080,
  13330. bottom: 0.055
  13331. }
  13332. },
  13333. beak: {
  13334. height: math.unit(6 * 0.1, "feet"),
  13335. name: "Beak",
  13336. image: {
  13337. source: "./media/characters/vincent/beak.svg"
  13338. }
  13339. },
  13340. hand: {
  13341. height: math.unit(6 * 0.85, "feet"),
  13342. weight: math.unit(150, "lb"),
  13343. name: "Hand",
  13344. image: {
  13345. source: "./media/characters/vincent/hand.svg"
  13346. }
  13347. },
  13348. foot: {
  13349. height: math.unit(6 * 0.19, "feet"),
  13350. weight: math.unit(150, "lb"),
  13351. name: "Foot",
  13352. image: {
  13353. source: "./media/characters/vincent/foot.svg"
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Base",
  13360. height: math.unit(6 + 5 / 12, "feet"),
  13361. default: true
  13362. },
  13363. {
  13364. name: "Macro",
  13365. height: math.unit(300, "feet")
  13366. },
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(2, "miles")
  13370. },
  13371. {
  13372. name: "Gigamacro",
  13373. height: math.unit(1000, "miles")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(6 + 2 / 12, "feet"),
  13382. weight: math.unit(265, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/jay/front.svg",
  13386. extra: 1510 / 1430,
  13387. bottom: 0.042
  13388. }
  13389. },
  13390. back: {
  13391. height: math.unit(6 + 2 / 12, "feet"),
  13392. weight: math.unit(265, "lb"),
  13393. name: "Back",
  13394. image: {
  13395. source: "./media/characters/jay/back.svg",
  13396. extra: 1510 / 1430,
  13397. bottom: 0.025
  13398. }
  13399. },
  13400. clothed: {
  13401. height: math.unit(6 + 2 / 12, "feet"),
  13402. weight: math.unit(265, "lb"),
  13403. name: "Front (Clothed)",
  13404. image: {
  13405. source: "./media/characters/jay/clothed.svg",
  13406. extra: 744 / 699,
  13407. bottom: 0.043
  13408. }
  13409. },
  13410. head: {
  13411. height: math.unit(1.772, "feet"),
  13412. name: "Head",
  13413. image: {
  13414. source: "./media/characters/jay/head.svg"
  13415. }
  13416. },
  13417. sizeRay: {
  13418. height: math.unit(1.331, "feet"),
  13419. name: "Size Ray",
  13420. image: {
  13421. source: "./media/characters/jay/size-ray.svg"
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Micro",
  13428. height: math.unit(1, "inch")
  13429. },
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(6 + 2 / 12, "feet"),
  13433. default: true
  13434. },
  13435. {
  13436. name: "Macro",
  13437. height: math.unit(1, "mile")
  13438. },
  13439. {
  13440. name: "Megamacro",
  13441. height: math.unit(100, "miles")
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(2, "meters"),
  13450. weight: math.unit(500, "kg"),
  13451. name: "Front",
  13452. image: {
  13453. source: "./media/characters/coatl/front.svg",
  13454. extra: 3948 / 3500,
  13455. bottom: 0.082
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(4, "meters")
  13463. },
  13464. {
  13465. name: "Macro",
  13466. height: math.unit(100, "meters"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Macro+",
  13471. height: math.unit(300, "meters")
  13472. },
  13473. {
  13474. name: "Megamacro",
  13475. height: math.unit(3, "gigameters")
  13476. },
  13477. {
  13478. name: "Megamacro+",
  13479. height: math.unit(300, "terameters")
  13480. },
  13481. {
  13482. name: "Megamacro++",
  13483. height: math.unit(3, "lightyears")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(50, "kg"),
  13493. name: "front",
  13494. image: {
  13495. source: "./media/characters/shiroryu/front.svg",
  13496. extra: 1990 / 1935
  13497. }
  13498. },
  13499. },
  13500. [
  13501. {
  13502. name: "Mortal Mingling",
  13503. height: math.unit(3, "meters")
  13504. },
  13505. {
  13506. name: "Kaiju-ish",
  13507. height: math.unit(250, "meters")
  13508. },
  13509. {
  13510. name: "Somewhat Godly",
  13511. height: math.unit(400, "km"),
  13512. default: true
  13513. },
  13514. {
  13515. name: "Planetary",
  13516. height: math.unit(300, "megameters")
  13517. },
  13518. {
  13519. name: "Galaxy-dwarfing",
  13520. height: math.unit(450, "kiloparsecs")
  13521. },
  13522. {
  13523. name: "Universe Eater",
  13524. height: math.unit(150, "gigaparsecs")
  13525. },
  13526. {
  13527. name: "Almost Immeasurable",
  13528. height: math.unit(1.3e266, "yottaparsecs")
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13534. {
  13535. front: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Front",
  13539. image: {
  13540. source: "./media/characters/umeko/front.svg",
  13541. extra: 1,
  13542. bottom: 0.019
  13543. }
  13544. },
  13545. frontArmored: {
  13546. height: math.unit(6, "feet"),
  13547. weight: math.unit(150, "lb"),
  13548. name: "Front (Armored)",
  13549. image: {
  13550. source: "./media/characters/umeko/front-armored.svg",
  13551. extra: 1,
  13552. bottom: 0.021
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Macro",
  13559. height: math.unit(220, "feet"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Guardian Dragon",
  13564. height: math.unit(50, "miles")
  13565. },
  13566. {
  13567. name: "Cosmic",
  13568. height: math.unit(800000, "miles")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(150, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/cassidy/front.svg",
  13581. extra: 1,
  13582. bottom: 0.043
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Canon Height",
  13589. height: math.unit(120, "feet"),
  13590. default: true
  13591. },
  13592. {
  13593. name: "Macro+",
  13594. height: math.unit(400, "feet")
  13595. },
  13596. {
  13597. name: "Macro++",
  13598. height: math.unit(4000, "feet")
  13599. },
  13600. {
  13601. name: "Megamacro",
  13602. height: math.unit(3, "miles")
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(6, "feet"),
  13611. weight: math.unit(150, "lb"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/isaac/front.svg",
  13615. extra: 896 / 815,
  13616. bottom: 0.11
  13617. }
  13618. },
  13619. },
  13620. [
  13621. {
  13622. name: "Human Size",
  13623. height: math.unit(8, "feet"),
  13624. default: true
  13625. },
  13626. {
  13627. name: "Macro",
  13628. height: math.unit(400, "feet")
  13629. },
  13630. {
  13631. name: "Megamacro",
  13632. height: math.unit(50, "miles")
  13633. },
  13634. {
  13635. name: "Canon Height",
  13636. height: math.unit(200, "AU")
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(6, "feet"),
  13645. weight: math.unit(72, "kg"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/sleekit/front.svg",
  13649. extra: 4693 / 4487,
  13650. bottom: 0.012
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Minimum Height",
  13657. height: math.unit(10, "meters")
  13658. },
  13659. {
  13660. name: "Smaller",
  13661. height: math.unit(25, "meters")
  13662. },
  13663. {
  13664. name: "Larger",
  13665. height: math.unit(38, "meters"),
  13666. default: true
  13667. },
  13668. {
  13669. name: "Maximum height",
  13670. height: math.unit(100, "meters")
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/nillia/front.svg",
  13683. extra: 2195 / 2037,
  13684. bottom: 0.005
  13685. }
  13686. },
  13687. back: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Back",
  13691. image: {
  13692. source: "./media/characters/nillia/back.svg",
  13693. extra: 2195 / 2037,
  13694. bottom: 0.005
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Canon Height",
  13701. height: math.unit(489, "feet"),
  13702. default: true
  13703. }
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/mesmyriza/front.svg",
  13715. extra: 2067 / 1784,
  13716. bottom: 0.035
  13717. }
  13718. },
  13719. foot: {
  13720. height: math.unit(6 / (250 / 35), "feet"),
  13721. name: "Foot",
  13722. image: {
  13723. source: "./media/characters/mesmyriza/foot.svg"
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Macro",
  13730. height: math.unit(457, "meters"),
  13731. default: true
  13732. },
  13733. {
  13734. name: "Megamacro",
  13735. height: math.unit(8, "megameters")
  13736. },
  13737. ]
  13738. ))
  13739. characterMakers.push(() => makeCharacter(
  13740. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13741. {
  13742. front: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(250, "lb"),
  13745. name: "Front",
  13746. image: {
  13747. source: "./media/characters/saudade/front.svg",
  13748. extra: 1172 / 1139,
  13749. bottom: 0.035
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Micro",
  13756. height: math.unit(3, "inches")
  13757. },
  13758. {
  13759. name: "Normal",
  13760. height: math.unit(6, "feet"),
  13761. default: true
  13762. },
  13763. {
  13764. name: "Macro",
  13765. height: math.unit(50, "feet")
  13766. },
  13767. {
  13768. name: "Megamacro",
  13769. height: math.unit(2800, "feet")
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(5 + 4 / 12, "feet"),
  13778. weight: math.unit(100, "lb"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/keireer/front.svg",
  13782. extra: 716 / 666,
  13783. bottom: 0.05
  13784. }
  13785. },
  13786. },
  13787. [
  13788. {
  13789. name: "Normal",
  13790. height: math.unit(5 + 4 / 12, "feet"),
  13791. default: true
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(90, "kg"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/mirja/front.svg",
  13804. extra: 1789 / 1683,
  13805. bottom: 0.05
  13806. }
  13807. },
  13808. frontDressed: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(90, "lb"),
  13811. name: "Front (Dressed)",
  13812. image: {
  13813. source: "./media/characters/mirja/front-dressed.svg",
  13814. extra: 1789 / 1683,
  13815. bottom: 0.05
  13816. }
  13817. },
  13818. back: {
  13819. height: math.unit(6, "feet"),
  13820. weight: math.unit(90, "lb"),
  13821. name: "Back",
  13822. image: {
  13823. source: "./media/characters/mirja/back.svg",
  13824. extra: 953 / 917,
  13825. bottom: 0.017
  13826. }
  13827. },
  13828. },
  13829. [
  13830. {
  13831. name: "\"Incognito\"",
  13832. height: math.unit(3, "meters")
  13833. },
  13834. {
  13835. name: "Strolling Size",
  13836. height: math.unit(15, "km")
  13837. },
  13838. {
  13839. name: "Larger Strolling Size",
  13840. height: math.unit(400, "km")
  13841. },
  13842. {
  13843. name: "Preferred Size",
  13844. height: math.unit(5000, "km")
  13845. },
  13846. {
  13847. name: "True Size",
  13848. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13849. default: true
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13855. {
  13856. front: {
  13857. height: math.unit(15, "feet"),
  13858. weight: math.unit(880, "kg"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/nightraver/front.svg",
  13862. extra: 2444 / 2160,
  13863. bottom: 0.027
  13864. }
  13865. },
  13866. back: {
  13867. height: math.unit(15, "feet"),
  13868. weight: math.unit(880, "kg"),
  13869. name: "Back",
  13870. image: {
  13871. source: "./media/characters/nightraver/back.svg",
  13872. extra: 2309 / 2180,
  13873. bottom: 0.005
  13874. }
  13875. },
  13876. sole: {
  13877. height: math.unit(2.878, "feet"),
  13878. name: "Sole",
  13879. image: {
  13880. source: "./media/characters/nightraver/sole.svg"
  13881. }
  13882. },
  13883. foot: {
  13884. height: math.unit(2.285, "feet"),
  13885. name: "Foot",
  13886. image: {
  13887. source: "./media/characters/nightraver/foot.svg"
  13888. }
  13889. },
  13890. maw: {
  13891. height: math.unit(2.67, "feet"),
  13892. name: "Maw",
  13893. image: {
  13894. source: "./media/characters/nightraver/maw.svg"
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Micro",
  13901. height: math.unit(1, "cm")
  13902. },
  13903. {
  13904. name: "Normal",
  13905. height: math.unit(15, "feet"),
  13906. default: true
  13907. },
  13908. {
  13909. name: "Macro",
  13910. height: math.unit(300, "feet")
  13911. },
  13912. {
  13913. name: "Megamacro",
  13914. height: math.unit(300, "miles")
  13915. },
  13916. {
  13917. name: "Gigamacro",
  13918. height: math.unit(10000, "miles")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13924. {
  13925. side: {
  13926. height: math.unit(2, "inches"),
  13927. weight: math.unit(5, "grams"),
  13928. name: "Side",
  13929. image: {
  13930. source: "./media/characters/arc/side.svg"
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Micro",
  13937. height: math.unit(2, "inches"),
  13938. default: true
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13944. {
  13945. front: {
  13946. height: math.unit(1.1938, "meters"),
  13947. weight: math.unit(54, "kg"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/nebula-shahar/front.svg",
  13951. extra: 1642 / 1436,
  13952. bottom: 0.06
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Megamicro",
  13959. height: math.unit(0.3, "mm")
  13960. },
  13961. {
  13962. name: "Micro",
  13963. height: math.unit(3, "cm")
  13964. },
  13965. {
  13966. name: "Normal",
  13967. height: math.unit(138, "cm"),
  13968. default: true
  13969. },
  13970. {
  13971. name: "Macro",
  13972. height: math.unit(30, "m")
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(5.24, "feet"),
  13981. weight: math.unit(150, "lb"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/shayla/front.svg",
  13985. extra: 1512 / 1414,
  13986. bottom: 0.01
  13987. }
  13988. },
  13989. back: {
  13990. height: math.unit(5.24, "feet"),
  13991. weight: math.unit(150, "lb"),
  13992. name: "Back",
  13993. image: {
  13994. source: "./media/characters/shayla/back.svg",
  13995. extra: 1512 / 1414
  13996. }
  13997. },
  13998. hand: {
  13999. height: math.unit(0.7781496062992126, "feet"),
  14000. name: "Hand",
  14001. image: {
  14002. source: "./media/characters/shayla/hand.svg"
  14003. }
  14004. },
  14005. foot: {
  14006. height: math.unit(1.4206036745406823, "feet"),
  14007. name: "Foot",
  14008. image: {
  14009. source: "./media/characters/shayla/foot.svg"
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Micro",
  14016. height: math.unit(0.32, "feet")
  14017. },
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(5.24, "feet"),
  14021. default: true
  14022. },
  14023. {
  14024. name: "Macro",
  14025. height: math.unit(492.12, "feet")
  14026. },
  14027. {
  14028. name: "Megamacro",
  14029. height: math.unit(186.41, "miles")
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14035. {
  14036. front: {
  14037. height: math.unit(2.2, "m"),
  14038. weight: math.unit(120, "kg"),
  14039. name: "Front",
  14040. image: {
  14041. source: "./media/characters/pia-jr/front.svg",
  14042. extra: 1000 / 970,
  14043. bottom: 0.035
  14044. }
  14045. },
  14046. hand: {
  14047. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14048. name: "Hand",
  14049. image: {
  14050. source: "./media/characters/pia-jr/hand.svg"
  14051. }
  14052. },
  14053. paw: {
  14054. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14055. name: "Paw",
  14056. image: {
  14057. source: "./media/characters/pia-jr/paw.svg"
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Micro",
  14064. height: math.unit(1.2, "cm")
  14065. },
  14066. {
  14067. name: "Normal",
  14068. height: math.unit(2.2, "m"),
  14069. default: true
  14070. },
  14071. {
  14072. name: "Macro",
  14073. height: math.unit(180, "m")
  14074. },
  14075. {
  14076. name: "Megamacro",
  14077. height: math.unit(420, "km")
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(2, "m"),
  14086. weight: math.unit(115, "kg"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/pia-sr/front.svg",
  14090. extra: 760 / 730,
  14091. bottom: 0.015
  14092. }
  14093. },
  14094. back: {
  14095. height: math.unit(2, "m"),
  14096. weight: math.unit(115, "kg"),
  14097. name: "Back",
  14098. image: {
  14099. source: "./media/characters/pia-sr/back.svg",
  14100. extra: 760 / 730,
  14101. bottom: 0.01
  14102. }
  14103. },
  14104. hand: {
  14105. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14106. name: "Hand",
  14107. image: {
  14108. source: "./media/characters/pia-sr/hand.svg"
  14109. }
  14110. },
  14111. foot: {
  14112. height: math.unit(1.83, "feet"),
  14113. name: "Foot",
  14114. image: {
  14115. source: "./media/characters/pia-sr/foot.svg"
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Micro",
  14122. height: math.unit(88, "mm")
  14123. },
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(2, "m"),
  14127. default: true
  14128. },
  14129. {
  14130. name: "Macro",
  14131. height: math.unit(200, "m")
  14132. },
  14133. {
  14134. name: "Megamacro",
  14135. height: math.unit(420, "km")
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(8 + 2 / 12, "feet"),
  14144. weight: math.unit(300, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/kibibyte/front.svg",
  14148. extra: 2221 / 2098,
  14149. bottom: 0.04
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(8 + 2 / 12, "feet"),
  14157. default: true
  14158. },
  14159. {
  14160. name: "Socialable Macro",
  14161. height: math.unit(50, "feet")
  14162. },
  14163. {
  14164. name: "Macro",
  14165. height: math.unit(300, "feet")
  14166. },
  14167. {
  14168. name: "Megamacro",
  14169. height: math.unit(500, "miles")
  14170. },
  14171. ]
  14172. ))
  14173. characterMakers.push(() => makeCharacter(
  14174. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14175. {
  14176. front: {
  14177. height: math.unit(6, "feet"),
  14178. weight: math.unit(150, "lb"),
  14179. name: "Front",
  14180. image: {
  14181. source: "./media/characters/felix/front.svg",
  14182. extra: 762 / 722,
  14183. bottom: 0.02
  14184. }
  14185. },
  14186. frontClothed: {
  14187. height: math.unit(6, "feet"),
  14188. weight: math.unit(150, "lb"),
  14189. name: "Front (Clothed)",
  14190. image: {
  14191. source: "./media/characters/felix/front-clothed.svg",
  14192. extra: 762 / 722,
  14193. bottom: 0.02
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(6 + 8 / 12, "feet"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(2600, "feet")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(450, "miles")
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(6 + 1 / 12, "feet"),
  14218. weight: math.unit(250, "lb"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/tobo/front.svg",
  14222. extra: 608 / 586,
  14223. bottom: 0.023
  14224. }
  14225. },
  14226. back: {
  14227. height: math.unit(6 + 1 / 12, "feet"),
  14228. weight: math.unit(250, "lb"),
  14229. name: "Back",
  14230. image: {
  14231. source: "./media/characters/tobo/back.svg",
  14232. extra: 608 / 586
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Nano",
  14239. height: math.unit(2, "nm")
  14240. },
  14241. {
  14242. name: "Megamicro",
  14243. height: math.unit(0.1, "mm")
  14244. },
  14245. {
  14246. name: "Micro",
  14247. height: math.unit(1, "inch"),
  14248. default: true
  14249. },
  14250. {
  14251. name: "Human-sized",
  14252. height: math.unit(6 + 1 / 12, "feet")
  14253. },
  14254. {
  14255. name: "Macro",
  14256. height: math.unit(250, "feet")
  14257. },
  14258. {
  14259. name: "Megamacro",
  14260. height: math.unit(75, "miles")
  14261. },
  14262. {
  14263. name: "Texas-sized",
  14264. height: math.unit(750, "miles")
  14265. },
  14266. {
  14267. name: "Teramacro",
  14268. height: math.unit(50000, "miles")
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14274. {
  14275. front: {
  14276. height: math.unit(6, "feet"),
  14277. weight: math.unit(269, "lb"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/danny-kapowsky/front.svg",
  14281. extra: 766 / 736,
  14282. bottom: 0.044
  14283. }
  14284. },
  14285. back: {
  14286. height: math.unit(6, "feet"),
  14287. weight: math.unit(269, "lb"),
  14288. name: "Back",
  14289. image: {
  14290. source: "./media/characters/danny-kapowsky/back.svg",
  14291. extra: 797 / 760,
  14292. bottom: 0.025
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Macro",
  14299. height: math.unit(150, "feet"),
  14300. default: true
  14301. },
  14302. {
  14303. name: "Macro+",
  14304. height: math.unit(200, "feet")
  14305. },
  14306. {
  14307. name: "Macro++",
  14308. height: math.unit(300, "feet")
  14309. },
  14310. {
  14311. name: "Macro+++",
  14312. height: math.unit(400, "feet")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14318. {
  14319. side: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(170, "lb"),
  14322. name: "Side",
  14323. image: {
  14324. source: "./media/characters/finn/side.svg",
  14325. extra: 1953 / 1807,
  14326. bottom: 0.057
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Megamacro",
  14333. height: math.unit(14445, "feet"),
  14334. default: true
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14340. {
  14341. front: {
  14342. height: math.unit(5 + 6 / 12, "feet"),
  14343. weight: math.unit(125, "lb"),
  14344. name: "Front",
  14345. image: {
  14346. source: "./media/characters/roy/front.svg",
  14347. extra: 1,
  14348. bottom: 0.11
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Micro",
  14355. height: math.unit(3, "inches"),
  14356. default: true
  14357. },
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(5 + 6 / 12, "feet")
  14361. },
  14362. {
  14363. name: "Lesser Macro",
  14364. height: math.unit(60, "feet")
  14365. },
  14366. {
  14367. name: "Greater Macro",
  14368. height: math.unit(120, "feet")
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14374. {
  14375. front: {
  14376. height: math.unit(6, "feet"),
  14377. weight: math.unit(100, "lb"),
  14378. name: "Front",
  14379. image: {
  14380. source: "./media/characters/aevsivs/front.svg",
  14381. extra: 1,
  14382. bottom: 0.03
  14383. }
  14384. },
  14385. back: {
  14386. height: math.unit(6, "feet"),
  14387. weight: math.unit(100, "lb"),
  14388. name: "Back",
  14389. image: {
  14390. source: "./media/characters/aevsivs/back.svg"
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Micro",
  14397. height: math.unit(2, "inches"),
  14398. default: true
  14399. },
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(5, "feet")
  14403. },
  14404. ]
  14405. ))
  14406. characterMakers.push(() => makeCharacter(
  14407. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14408. {
  14409. front: {
  14410. height: math.unit(5 + 7 / 12, "feet"),
  14411. weight: math.unit(159, "lb"),
  14412. name: "Front",
  14413. image: {
  14414. source: "./media/characters/hildegard/front.svg",
  14415. extra: 289 / 269,
  14416. bottom: 7.63 / 297.8
  14417. }
  14418. },
  14419. back: {
  14420. height: math.unit(5 + 7 / 12, "feet"),
  14421. weight: math.unit(159, "lb"),
  14422. name: "Back",
  14423. image: {
  14424. source: "./media/characters/hildegard/back.svg",
  14425. extra: 280 / 260,
  14426. bottom: 2.3 / 282
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Normal",
  14433. height: math.unit(5 + 7 / 12, "feet"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14440. {
  14441. bernard: {
  14442. height: math.unit(2 + 7 / 12, "feet"),
  14443. weight: math.unit(66, "lb"),
  14444. name: "Bernard",
  14445. rename: true,
  14446. image: {
  14447. source: "./media/characters/bernard-wilder/bernard.svg",
  14448. extra: 192 / 128,
  14449. bottom: 0.05
  14450. }
  14451. },
  14452. wilder: {
  14453. height: math.unit(5 + 8 / 12, "feet"),
  14454. weight: math.unit(143, "lb"),
  14455. name: "Wilder",
  14456. rename: true,
  14457. image: {
  14458. source: "./media/characters/bernard-wilder/wilder.svg",
  14459. extra: 361 / 312,
  14460. bottom: 0.02
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Normal",
  14467. height: math.unit(2 + 7 / 12, "feet"),
  14468. default: true
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14474. {
  14475. anthro: {
  14476. height: math.unit(6 + 1 / 12, "feet"),
  14477. weight: math.unit(155, "lb"),
  14478. name: "Anthro",
  14479. image: {
  14480. source: "./media/characters/hearth/anthro.svg",
  14481. extra: 260 / 250,
  14482. bottom: 0.02
  14483. }
  14484. },
  14485. feral: {
  14486. height: math.unit(3.78, "feet"),
  14487. weight: math.unit(35, "kg"),
  14488. name: "Feral",
  14489. image: {
  14490. source: "./media/characters/hearth/feral.svg",
  14491. extra: 153 / 135,
  14492. bottom: 0.03
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(6 + 1 / 12, "feet"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(182, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/ingrid/front.svg",
  14513. extra: 294 / 268,
  14514. bottom: 0.027
  14515. }
  14516. },
  14517. },
  14518. [
  14519. {
  14520. name: "Normal",
  14521. height: math.unit(6, "feet"),
  14522. default: true
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14528. {
  14529. eevee: {
  14530. height: math.unit(2 + 10 / 12, "feet"),
  14531. weight: math.unit(86, "lb"),
  14532. name: "Malgam",
  14533. image: {
  14534. source: "./media/characters/malgam/eevee.svg",
  14535. extra: 218 / 180,
  14536. bottom: 0.2
  14537. }
  14538. },
  14539. sylveon: {
  14540. height: math.unit(4, "feet"),
  14541. weight: math.unit(101, "lb"),
  14542. name: "Future Malgam",
  14543. rename: true,
  14544. image: {
  14545. source: "./media/characters/malgam/sylveon.svg",
  14546. extra: 371 / 325,
  14547. bottom: 0.015
  14548. }
  14549. },
  14550. gigantamax: {
  14551. height: math.unit(50, "feet"),
  14552. name: "Gigantamax Malgam",
  14553. rename: true,
  14554. image: {
  14555. source: "./media/characters/malgam/gigantamax.svg"
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(2 + 10 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(5 + 11 / 12, "feet"),
  14572. weight: math.unit(188, "lb"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/fleur/front.svg",
  14576. extra: 309 / 283,
  14577. bottom: 0.007
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Normal",
  14584. height: math.unit(5 + 11 / 12, "feet"),
  14585. default: true
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(5 + 4 / 12, "feet"),
  14594. weight: math.unit(122, "lb"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/jude/front.svg",
  14598. extra: 288 / 273,
  14599. bottom: 0.03
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(5 + 4 / 12, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(5 + 11 / 12, "feet"),
  14616. weight: math.unit(190, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/seara/front.svg",
  14620. extra: 1,
  14621. bottom: 0.05
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(5 + 11 / 12, "feet"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(16 + 5 / 12, "feet"),
  14638. weight: math.unit(524, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/caspian/front.svg",
  14642. extra: 1,
  14643. bottom: 0.04
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(16 + 5 / 12, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(5 + 7 / 12, "feet"),
  14660. weight: math.unit(170, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/mika/front.svg",
  14664. extra: 1,
  14665. bottom: 0.016
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(5 + 7 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(6 + 2 / 12, "feet"),
  14682. weight: math.unit(268, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/sol/front.svg",
  14686. extra: 247 / 231,
  14687. bottom: 0.05
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(6 + 2 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14701. {
  14702. buizel: {
  14703. height: math.unit(2 + 5 / 12, "feet"),
  14704. weight: math.unit(87, "lb"),
  14705. name: "Buizel",
  14706. image: {
  14707. source: "./media/characters/umiko/buizel.svg",
  14708. extra: 172 / 157,
  14709. bottom: 0.01
  14710. }
  14711. },
  14712. floatzel: {
  14713. height: math.unit(5 + 9 / 12, "feet"),
  14714. weight: math.unit(250, "lb"),
  14715. name: "Floatzel",
  14716. image: {
  14717. source: "./media/characters/umiko/floatzel.svg",
  14718. extra: 262 / 248
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(2 + 5 / 12, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14732. {
  14733. front: {
  14734. height: math.unit(6 + 2 / 12, "feet"),
  14735. weight: math.unit(146, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/iliac/front.svg",
  14739. extra: 389 / 365,
  14740. bottom: 0.035
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(6 + 2 / 12, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(6, "feet"),
  14757. weight: math.unit(170, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/topaz/front.svg",
  14761. extra: 317 / 303,
  14762. bottom: 0.055
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(6, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(5 + 11 / 12, "feet"),
  14779. weight: math.unit(144, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/gabriel/front.svg",
  14783. extra: 285 / 262,
  14784. bottom: 0.004
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(5 + 11 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14798. {
  14799. side: {
  14800. height: math.unit(6 + 5 / 12, "feet"),
  14801. weight: math.unit(300, "lb"),
  14802. name: "Side",
  14803. image: {
  14804. source: "./media/characters/tempest-suicune/side.svg",
  14805. extra: 195 / 154,
  14806. bottom: 0.04
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(6 + 5 / 12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(7 + 2 / 12, "feet"),
  14823. weight: math.unit(322, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/vulcan/front.svg",
  14827. extra: 154 / 147,
  14828. bottom: 0.04
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(7 + 2 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(5 + 10 / 12, "feet"),
  14845. weight: math.unit(264, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/gault/front.svg",
  14849. extra: 161 / 140,
  14850. bottom: 0.028
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(5 + 10 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(6, "feet"),
  14867. weight: math.unit(150, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/shard/front.svg",
  14871. extra: 273 / 238,
  14872. bottom: 0.02
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(3 + 6 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(5 + 11 / 12, "feet"),
  14889. weight: math.unit(146, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/ashe/front.svg",
  14893. extra: 400 / 373,
  14894. bottom: 0.01
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(5 + 11 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(5 + 5 / 12, "feet"),
  14911. weight: math.unit(135, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/beatrix/front.svg",
  14915. extra: 392 / 379,
  14916. bottom: 0.01
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(6, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(6, "feet"),
  14933. weight: math.unit(150, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/ignatius/front.svg",
  14937. extra: 245 / 222,
  14938. bottom: 0.01
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(5 + 5 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(6 + 2 / 12, "feet"),
  14955. weight: math.unit(138, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/mei-li/front.svg",
  14959. extra: 237 / 229,
  14960. bottom: 0.03
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(6 + 2 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(2 + 4 / 12, "feet"),
  14977. weight: math.unit(62, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/puru/front.svg",
  14981. extra: 206 / 149,
  14982. bottom: 0.06
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(2 + 4 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  14996. {
  14997. anthro: {
  14998. height: math.unit(5 + 8/12, "feet"),
  14999. weight: math.unit(200, "lb"),
  15000. energyNeed: math.unit(2000, "kcal"),
  15001. name: "Anthro",
  15002. image: {
  15003. source: "./media/characters/kee/anthro.svg",
  15004. extra: 3251/3184,
  15005. bottom: 250/3501
  15006. }
  15007. },
  15008. taur: {
  15009. height: math.unit(11, "feet"),
  15010. weight: math.unit(500, "lb"),
  15011. energyNeed: math.unit(5000, "kcal"),
  15012. name: "Taur",
  15013. image: {
  15014. source: "./media/characters/kee/taur.svg",
  15015. extra: 1362/1320,
  15016. bottom: 83/1445
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(5 + 8/12, "feet"),
  15024. default: true
  15025. },
  15026. {
  15027. name: "Macro",
  15028. height: math.unit(35, "feet")
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15034. {
  15035. anthro: {
  15036. height: math.unit(7, "feet"),
  15037. weight: math.unit(190, "lb"),
  15038. name: "Anthro",
  15039. image: {
  15040. source: "./media/characters/cobalt-dracha/anthro.svg",
  15041. extra: 231 / 225,
  15042. bottom: 0.04
  15043. }
  15044. },
  15045. feral: {
  15046. height: math.unit(9 + 7 / 12, "feet"),
  15047. weight: math.unit(294, "lb"),
  15048. name: "Feral",
  15049. image: {
  15050. source: "./media/characters/cobalt-dracha/feral.svg",
  15051. extra: 692 / 633,
  15052. bottom: 0.05
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(7, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15066. {
  15067. fallen: {
  15068. height: math.unit(11 + 8 / 12, "feet"),
  15069. weight: math.unit(485, "lb"),
  15070. name: "Java (Fallen)",
  15071. rename: true,
  15072. image: {
  15073. source: "./media/characters/java/fallen.svg",
  15074. extra: 226 / 208,
  15075. bottom: 0.005
  15076. }
  15077. },
  15078. godkin: {
  15079. height: math.unit(10 + 6 / 12, "feet"),
  15080. weight: math.unit(328, "lb"),
  15081. name: "Java (Godkin)",
  15082. rename: true,
  15083. image: {
  15084. source: "./media/characters/java/godkin.svg",
  15085. extra: 270 / 262,
  15086. bottom: 0.02
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Normal",
  15093. height: math.unit(11 + 8 / 12, "feet"),
  15094. default: true
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15100. {
  15101. front: {
  15102. height: math.unit(7 + 8 / 12, "feet"),
  15103. weight: math.unit(320, "lb"),
  15104. name: "Front",
  15105. image: {
  15106. source: "./media/characters/skoll/front.svg",
  15107. extra: 232 / 220,
  15108. bottom: 0.02
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(7 + 8 / 12, "feet"),
  15116. default: true
  15117. },
  15118. ]
  15119. ))
  15120. characterMakers.push(() => makeCharacter(
  15121. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15122. {
  15123. front: {
  15124. height: math.unit(5 + 9 / 12, "feet"),
  15125. weight: math.unit(170, "lb"),
  15126. name: "Front",
  15127. image: {
  15128. source: "./media/characters/purna/front.svg",
  15129. extra: 239 / 229,
  15130. bottom: 0.01
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(5 + 9 / 12, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(5 + 9 / 12, "feet"),
  15147. weight: math.unit(142, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/kuva/front.svg",
  15151. extra: 281 / 271,
  15152. bottom: 0.006
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(5 + 9 / 12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15166. {
  15167. anthro: {
  15168. height: math.unit(9 + 2 / 12, "feet"),
  15169. weight: math.unit(270, "lb"),
  15170. name: "Anthro",
  15171. image: {
  15172. source: "./media/characters/embra/anthro.svg",
  15173. extra: 200 / 187,
  15174. bottom: 0.02
  15175. }
  15176. },
  15177. feral: {
  15178. height: math.unit(18 + 8 / 12, "feet"),
  15179. weight: math.unit(576, "lb"),
  15180. name: "Feral",
  15181. image: {
  15182. source: "./media/characters/embra/feral.svg",
  15183. extra: 152 / 137,
  15184. bottom: 0.037
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(9 + 2 / 12, "feet"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15198. {
  15199. anthro: {
  15200. height: math.unit(10 + 9 / 12, "feet"),
  15201. weight: math.unit(224, "lb"),
  15202. name: "Anthro",
  15203. image: {
  15204. source: "./media/characters/grottos/anthro.svg",
  15205. extra: 350 / 332,
  15206. bottom: 0.045
  15207. }
  15208. },
  15209. feral: {
  15210. height: math.unit(20 + 7 / 12, "feet"),
  15211. weight: math.unit(629, "lb"),
  15212. name: "Feral",
  15213. image: {
  15214. source: "./media/characters/grottos/feral.svg",
  15215. extra: 207 / 190,
  15216. bottom: 0.05
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Normal",
  15223. height: math.unit(10 + 9 / 12, "feet"),
  15224. default: true
  15225. },
  15226. ]
  15227. ))
  15228. characterMakers.push(() => makeCharacter(
  15229. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15230. {
  15231. anthro: {
  15232. height: math.unit(9 + 6 / 12, "feet"),
  15233. weight: math.unit(298, "lb"),
  15234. name: "Anthro",
  15235. image: {
  15236. source: "./media/characters/frifna/anthro.svg",
  15237. extra: 282 / 269,
  15238. bottom: 0.015
  15239. }
  15240. },
  15241. feral: {
  15242. height: math.unit(16 + 2 / 12, "feet"),
  15243. weight: math.unit(624, "lb"),
  15244. name: "Feral",
  15245. image: {
  15246. source: "./media/characters/frifna/feral.svg"
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(9 + 6 / 12, "feet"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15260. {
  15261. front: {
  15262. height: math.unit(6 + 2 / 12, "feet"),
  15263. weight: math.unit(168, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/elise/front.svg",
  15267. extra: 276 / 271
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(6 + 2 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(5 + 10 / 12, "feet"),
  15284. weight: math.unit(210, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/glade/front.svg",
  15288. extra: 258 / 247,
  15289. bottom: 0.008
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(5 + 10 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(5 + 10 / 12, "feet"),
  15306. weight: math.unit(129, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/rina/front.svg",
  15310. extra: 266 / 255,
  15311. bottom: 0.005
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 10 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(6 + 1 / 12, "feet"),
  15328. weight: math.unit(192, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/veronica/front.svg",
  15332. extra: 319 / 309,
  15333. bottom: 0.005
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(6 + 1 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(9 + 3 / 12, "feet"),
  15350. weight: math.unit(1100, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/braxton/front.svg",
  15354. extra: 1057 / 984,
  15355. bottom: 0.05
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(9 + 3 / 12, "feet")
  15363. },
  15364. {
  15365. name: "Giant",
  15366. height: math.unit(300, "feet"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Macro",
  15371. height: math.unit(700, "feet")
  15372. },
  15373. {
  15374. name: "Megamacro",
  15375. height: math.unit(6000, "feet")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(6 + 7 / 12, "feet"),
  15384. weight: math.unit(150, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/blue-feyonics/front.svg",
  15388. extra: 1403 / 1306,
  15389. bottom: 0.047
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(6 + 7 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(1.8, "meters"),
  15406. weight: math.unit(60, "kg"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/maxwell/front.svg",
  15410. extra: 2060 / 1873
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Micro",
  15417. height: math.unit(1, "mm")
  15418. },
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(1.8, "meter"),
  15422. default: true
  15423. },
  15424. {
  15425. name: "Macro",
  15426. height: math.unit(30, "meters")
  15427. },
  15428. {
  15429. name: "Megamacro",
  15430. height: math.unit(10, "km")
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/jack/front.svg",
  15443. extra: 1754 / 1640,
  15444. bottom: 0.01
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(80000, "feet"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Max size",
  15456. height: math.unit(10, "lightyears")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15462. {
  15463. upright: {
  15464. height: math.unit(7, "feet"),
  15465. weight: math.unit(170, "lb"),
  15466. name: "Upright",
  15467. image: {
  15468. source: "./media/characters/cafat/upright.svg",
  15469. bottom: 0.01
  15470. }
  15471. },
  15472. uprightFull: {
  15473. height: math.unit(7, "feet"),
  15474. weight: math.unit(170, "lb"),
  15475. name: "Upright (Full)",
  15476. image: {
  15477. source: "./media/characters/cafat/upright-full.svg",
  15478. bottom: 0.01
  15479. }
  15480. },
  15481. side: {
  15482. height: math.unit(5, "feet"),
  15483. weight: math.unit(150, "lb"),
  15484. name: "Side",
  15485. image: {
  15486. source: "./media/characters/cafat/side.svg"
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Small",
  15493. height: math.unit(7, "feet"),
  15494. default: true
  15495. },
  15496. {
  15497. name: "Large",
  15498. height: math.unit(15.5, "feet")
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(6, "feet"),
  15507. weight: math.unit(150, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/verin-raharra/front.svg",
  15511. extra: 5019 / 4835,
  15512. bottom: 0.023
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(7 + 5 / 12, "feet"),
  15520. default: true
  15521. },
  15522. {
  15523. name: "Upsized",
  15524. height: math.unit(20, "feet")
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(7, "feet"),
  15533. weight: math.unit(230, "lb"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/nakata/front.svg",
  15537. extra: 1.005,
  15538. bottom: 0.01
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(7, "feet"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Big",
  15550. height: math.unit(14, "feet")
  15551. },
  15552. {
  15553. name: "Macro",
  15554. height: math.unit(400, "feet")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(4.91, "feet"),
  15563. weight: math.unit(100, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/lily/front.svg",
  15567. extra: 1585 / 1415,
  15568. bottom: 0.02
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(4.91, "feet"),
  15576. default: true
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15582. {
  15583. laying: {
  15584. height: math.unit(4 + 4 / 12, "feet"),
  15585. weight: math.unit(600, "lb"),
  15586. name: "Laying",
  15587. image: {
  15588. source: "./media/characters/sheila/laying.svg",
  15589. extra: 1333 / 1265,
  15590. bottom: 0.16
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(4 + 4 / 12, "feet"),
  15598. default: true
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(190, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/sax/front.svg",
  15611. extra: 1187 / 973,
  15612. bottom: 0.042
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Micro",
  15619. height: math.unit(4, "inches"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/pandora/front.svg",
  15633. extra: 2720 / 2556,
  15634. bottom: 0.015
  15635. }
  15636. },
  15637. back: {
  15638. height: math.unit(6, "feet"),
  15639. weight: math.unit(150, "lb"),
  15640. name: "Back",
  15641. image: {
  15642. source: "./media/characters/pandora/back.svg",
  15643. extra: 2720 / 2556,
  15644. bottom: 0.01
  15645. }
  15646. },
  15647. beans: {
  15648. height: math.unit(6 / 8, "feet"),
  15649. name: "Beans",
  15650. image: {
  15651. source: "./media/characters/pandora/beans.svg"
  15652. }
  15653. },
  15654. skirt: {
  15655. height: math.unit(6, "feet"),
  15656. weight: math.unit(150, "lb"),
  15657. name: "Skirt",
  15658. image: {
  15659. source: "./media/characters/pandora/skirt.svg",
  15660. extra: 1622 / 1525,
  15661. bottom: 0.015
  15662. }
  15663. },
  15664. hoodie: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(150, "lb"),
  15667. name: "Hoodie",
  15668. image: {
  15669. source: "./media/characters/pandora/hoodie.svg",
  15670. extra: 1622 / 1525,
  15671. bottom: 0.015
  15672. }
  15673. },
  15674. casual: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(150, "lb"),
  15677. name: "Casual",
  15678. image: {
  15679. source: "./media/characters/pandora/casual.svg",
  15680. extra: 1622 / 1525,
  15681. bottom: 0.015
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(6, "feet")
  15689. },
  15690. {
  15691. name: "Big Steppy",
  15692. height: math.unit(1, "km"),
  15693. default: true
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15699. {
  15700. side: {
  15701. height: math.unit(10, "feet"),
  15702. weight: math.unit(800, "kg"),
  15703. name: "Side",
  15704. image: {
  15705. source: "./media/characters/venio-darcony/side.svg",
  15706. extra: 1373 / 1003,
  15707. bottom: 0.037
  15708. }
  15709. },
  15710. front: {
  15711. height: math.unit(19, "feet"),
  15712. weight: math.unit(800, "kg"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/venio-darcony/front.svg"
  15716. }
  15717. },
  15718. back: {
  15719. height: math.unit(19, "feet"),
  15720. weight: math.unit(800, "kg"),
  15721. name: "Back",
  15722. image: {
  15723. source: "./media/characters/venio-darcony/back.svg"
  15724. }
  15725. },
  15726. sideNsfw: {
  15727. height: math.unit(10, "feet"),
  15728. weight: math.unit(800, "kg"),
  15729. name: "Side (NSFW)",
  15730. image: {
  15731. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15732. extra: 1373 / 1003,
  15733. bottom: 0.037
  15734. }
  15735. },
  15736. frontNsfw: {
  15737. height: math.unit(19, "feet"),
  15738. weight: math.unit(800, "kg"),
  15739. name: "Front (NSFW)",
  15740. image: {
  15741. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15742. }
  15743. },
  15744. backNsfw: {
  15745. height: math.unit(19, "feet"),
  15746. weight: math.unit(800, "kg"),
  15747. name: "Back (NSFW)",
  15748. image: {
  15749. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15750. }
  15751. },
  15752. sideArmored: {
  15753. height: math.unit(10, "feet"),
  15754. weight: math.unit(800, "kg"),
  15755. name: "Side (Armored)",
  15756. image: {
  15757. source: "./media/characters/venio-darcony/side-armored.svg",
  15758. extra: 1373 / 1003,
  15759. bottom: 0.037
  15760. }
  15761. },
  15762. frontArmored: {
  15763. height: math.unit(19, "feet"),
  15764. weight: math.unit(900, "kg"),
  15765. name: "Front (Armored)",
  15766. image: {
  15767. source: "./media/characters/venio-darcony/front-armored.svg"
  15768. }
  15769. },
  15770. backArmored: {
  15771. height: math.unit(19, "feet"),
  15772. weight: math.unit(900, "kg"),
  15773. name: "Back (Armored)",
  15774. image: {
  15775. source: "./media/characters/venio-darcony/back-armored.svg"
  15776. }
  15777. },
  15778. sword: {
  15779. height: math.unit(10, "feet"),
  15780. weight: math.unit(50, "lb"),
  15781. name: "Sword",
  15782. image: {
  15783. source: "./media/characters/venio-darcony/sword.svg"
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(10, "feet")
  15791. },
  15792. {
  15793. name: "Macro",
  15794. height: math.unit(130, "feet"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Macro+",
  15799. height: math.unit(240, "feet")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(6, "feet"),
  15808. weight: math.unit(150, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/veski/front.svg",
  15812. extra: 1299 / 1225,
  15813. bottom: 0.04
  15814. }
  15815. },
  15816. back: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(150, "lb"),
  15819. name: "Back",
  15820. image: {
  15821. source: "./media/characters/veski/back.svg",
  15822. extra: 1299 / 1225,
  15823. bottom: 0.008
  15824. }
  15825. },
  15826. maw: {
  15827. height: math.unit(1.5 * 1.21, "feet"),
  15828. name: "Maw",
  15829. image: {
  15830. source: "./media/characters/veski/maw.svg"
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Macro",
  15837. height: math.unit(2, "km"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(5 + 7 / 12, "feet"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/isabelle/front.svg",
  15850. extra: 2130 / 1976,
  15851. bottom: 0.05
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Supermicro",
  15858. height: math.unit(10, "micrometers")
  15859. },
  15860. {
  15861. name: "Micro",
  15862. height: math.unit(1, "inch")
  15863. },
  15864. {
  15865. name: "Tiny",
  15866. height: math.unit(5, "inches")
  15867. },
  15868. {
  15869. name: "Standard",
  15870. height: math.unit(5 + 7 / 12, "inches")
  15871. },
  15872. {
  15873. name: "Macro",
  15874. height: math.unit(80, "meters"),
  15875. default: true
  15876. },
  15877. {
  15878. name: "Megamacro",
  15879. height: math.unit(250, "meters")
  15880. },
  15881. {
  15882. name: "Gigamacro",
  15883. height: math.unit(5, "km")
  15884. },
  15885. {
  15886. name: "Cosmic",
  15887. height: math.unit(2.5e6, "miles")
  15888. },
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15893. {
  15894. front: {
  15895. height: math.unit(6, "feet"),
  15896. weight: math.unit(150, "lb"),
  15897. name: "Front",
  15898. image: {
  15899. source: "./media/characters/hanzo/front.svg",
  15900. extra: 374 / 344,
  15901. bottom: 0.02
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(8, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(7, "feet"),
  15918. weight: math.unit(130, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/anna/front.svg",
  15922. extra: 169 / 145,
  15923. bottom: 0.06
  15924. }
  15925. },
  15926. full: {
  15927. height: math.unit(4.96, "feet"),
  15928. weight: math.unit(220, "lb"),
  15929. name: "Full",
  15930. image: {
  15931. source: "./media/characters/anna/full.svg",
  15932. extra: 138 / 114,
  15933. bottom: 0.15
  15934. }
  15935. },
  15936. tongue: {
  15937. height: math.unit(2.53, "feet"),
  15938. name: "Tongue",
  15939. image: {
  15940. source: "./media/characters/anna/tongue.svg"
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Normal",
  15947. height: math.unit(7, "feet"),
  15948. default: true
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15954. {
  15955. front: {
  15956. height: math.unit(7, "feet"),
  15957. weight: math.unit(150, "lb"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/ian-corvid/front.svg",
  15961. extra: 150 / 142,
  15962. bottom: 0.02
  15963. }
  15964. },
  15965. back: {
  15966. height: math.unit(7, "feet"),
  15967. weight: math.unit(150, "lb"),
  15968. name: "Back",
  15969. image: {
  15970. source: "./media/characters/ian-corvid/back.svg",
  15971. extra: 150 / 143,
  15972. bottom: 0.01
  15973. }
  15974. },
  15975. stomping: {
  15976. height: math.unit(7, "feet"),
  15977. weight: math.unit(150, "lb"),
  15978. name: "Stomping",
  15979. image: {
  15980. source: "./media/characters/ian-corvid/stomping.svg",
  15981. extra: 76 / 72
  15982. }
  15983. },
  15984. sitting: {
  15985. height: math.unit(7 / 1.8, "feet"),
  15986. weight: math.unit(150, "lb"),
  15987. name: "Sitting",
  15988. image: {
  15989. source: "./media/characters/ian-corvid/sitting.svg",
  15990. extra: 1400 / 1269,
  15991. bottom: 0.15
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Tiny Microw",
  15998. height: math.unit(1, "inch")
  15999. },
  16000. {
  16001. name: "Microw",
  16002. height: math.unit(6, "inches")
  16003. },
  16004. {
  16005. name: "Crow",
  16006. height: math.unit(7 + 1 / 12, "feet"),
  16007. default: true
  16008. },
  16009. {
  16010. name: "Macrow",
  16011. height: math.unit(176, "feet")
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(5 + 7 / 12, "feet"),
  16020. weight: math.unit(147, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/natalie-kellon/front.svg",
  16024. extra: 1214 / 1141,
  16025. bottom: 0.02
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Micro",
  16032. height: math.unit(1 / 16, "inch")
  16033. },
  16034. {
  16035. name: "Tiny",
  16036. height: math.unit(4, "inches")
  16037. },
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(5 + 7 / 12, "feet"),
  16041. default: true
  16042. },
  16043. {
  16044. name: "Amazon",
  16045. height: math.unit(12, "feet")
  16046. },
  16047. {
  16048. name: "Giantess",
  16049. height: math.unit(160, "meters")
  16050. },
  16051. {
  16052. name: "Titaness",
  16053. height: math.unit(800, "meters")
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(150, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/alluria/front.svg",
  16066. extra: 806 / 738,
  16067. bottom: 0.01
  16068. }
  16069. },
  16070. side: {
  16071. height: math.unit(6, "feet"),
  16072. weight: math.unit(150, "lb"),
  16073. name: "Side",
  16074. image: {
  16075. source: "./media/characters/alluria/side.svg",
  16076. extra: 800 / 750,
  16077. }
  16078. },
  16079. back: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(150, "lb"),
  16082. name: "Back",
  16083. image: {
  16084. source: "./media/characters/alluria/back.svg",
  16085. extra: 806 / 738,
  16086. }
  16087. },
  16088. frontMaid: {
  16089. height: math.unit(6, "feet"),
  16090. weight: math.unit(150, "lb"),
  16091. name: "Front (Maid)",
  16092. image: {
  16093. source: "./media/characters/alluria/front-maid.svg",
  16094. extra: 806 / 738,
  16095. bottom: 0.01
  16096. }
  16097. },
  16098. sideMaid: {
  16099. height: math.unit(6, "feet"),
  16100. weight: math.unit(150, "lb"),
  16101. name: "Side (Maid)",
  16102. image: {
  16103. source: "./media/characters/alluria/side-maid.svg",
  16104. extra: 800 / 750,
  16105. bottom: 0.005
  16106. }
  16107. },
  16108. backMaid: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Back (Maid)",
  16112. image: {
  16113. source: "./media/characters/alluria/back-maid.svg",
  16114. extra: 806 / 738,
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Micro",
  16121. height: math.unit(6, "inches"),
  16122. default: true
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16128. {
  16129. front: {
  16130. height: math.unit(6, "feet"),
  16131. weight: math.unit(150, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/kyle/front.svg",
  16135. extra: 1069 / 962,
  16136. bottom: 77.228 / 1727.45
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Macro",
  16143. height: math.unit(150, "feet"),
  16144. default: true
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(6, "feet"),
  16153. weight: math.unit(300, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/duncan/front.svg",
  16157. extra: 1650 / 1482,
  16158. bottom: 0.05
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Macro",
  16165. height: math.unit(100, "feet"),
  16166. default: true
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(5 + 4 / 12, "feet"),
  16175. weight: math.unit(220, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/memory/front.svg",
  16179. extra: 3641 / 3545,
  16180. bottom: 0.03
  16181. }
  16182. },
  16183. back: {
  16184. height: math.unit(5 + 4 / 12, "feet"),
  16185. weight: math.unit(220, "lb"),
  16186. name: "Back",
  16187. image: {
  16188. source: "./media/characters/memory/back.svg",
  16189. extra: 3641 / 3545,
  16190. bottom: 0.025
  16191. }
  16192. },
  16193. frontSkirt: {
  16194. height: math.unit(5 + 4 / 12, "feet"),
  16195. weight: math.unit(220, "lb"),
  16196. name: "Front (Skirt)",
  16197. image: {
  16198. source: "./media/characters/memory/front-skirt.svg",
  16199. extra: 3641 / 3545,
  16200. bottom: 0.03
  16201. }
  16202. },
  16203. frontDress: {
  16204. height: math.unit(5 + 4 / 12, "feet"),
  16205. weight: math.unit(220, "lb"),
  16206. name: "Front (Dress)",
  16207. image: {
  16208. source: "./media/characters/memory/front-dress.svg",
  16209. extra: 3641 / 3545,
  16210. bottom: 0.03
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Micro",
  16217. height: math.unit(6, "inches"),
  16218. default: true
  16219. },
  16220. {
  16221. name: "Normal",
  16222. height: math.unit(5 + 4 / 12, "feet")
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(4 + 11 / 12, "feet"),
  16231. weight: math.unit(100, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/luno/front.svg",
  16235. extra: 1535 / 1487,
  16236. bottom: 0.03
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Micro",
  16243. height: math.unit(3, "inches")
  16244. },
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(4 + 11 / 12, "feet"),
  16248. default: true
  16249. },
  16250. {
  16251. name: "Macro",
  16252. height: math.unit(300, "feet")
  16253. },
  16254. {
  16255. name: "Megamacro",
  16256. height: math.unit(700, "miles")
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(6 + 2 / 12, "feet"),
  16265. weight: math.unit(170, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/jamesy/front.svg",
  16269. extra: 440 / 382,
  16270. bottom: 0.005
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Micro",
  16277. height: math.unit(3, "inches")
  16278. },
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(6 + 2 / 12, "feet"),
  16282. default: true
  16283. },
  16284. {
  16285. name: "Macro",
  16286. height: math.unit(300, "feet")
  16287. },
  16288. {
  16289. name: "Megamacro",
  16290. height: math.unit(700, "miles")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(160, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/mark/front.svg",
  16303. extra: 3300 / 3100,
  16304. bottom: 136.42 / 3440.47
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(120, "meters")
  16312. },
  16313. {
  16314. name: "Bigger Macro",
  16315. height: math.unit(350, "meters")
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(8, "km"),
  16320. default: true
  16321. },
  16322. {
  16323. name: "Continental",
  16324. height: math.unit(4550, "km")
  16325. },
  16326. {
  16327. name: "Planetary",
  16328. height: math.unit(65000, "km")
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(6, "feet"),
  16337. weight: math.unit(400, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/mac/front.svg",
  16341. extra: 1048 / 987.7,
  16342. bottom: 60 / 1107.6,
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Macro",
  16349. height: math.unit(500, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(5 + 2 / 12, "feet"),
  16359. weight: math.unit(190, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/bari/front.svg",
  16363. extra: 3156 / 2880,
  16364. bottom: 0.03
  16365. }
  16366. },
  16367. back: {
  16368. height: math.unit(5 + 2 / 12, "feet"),
  16369. weight: math.unit(190, "lb"),
  16370. name: "Back",
  16371. image: {
  16372. source: "./media/characters/bari/back.svg",
  16373. extra: 3260 / 2834,
  16374. bottom: 0.025
  16375. }
  16376. },
  16377. frontPlush: {
  16378. height: math.unit(5 + 2 / 12, "feet"),
  16379. weight: math.unit(190, "lb"),
  16380. name: "Front (Plush)",
  16381. image: {
  16382. source: "./media/characters/bari/front-plush.svg",
  16383. extra: 1112 / 1061,
  16384. bottom: 0.002
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Micro",
  16391. height: math.unit(3, "inches")
  16392. },
  16393. {
  16394. name: "Normal",
  16395. height: math.unit(5 + 2 / 12, "feet"),
  16396. default: true
  16397. },
  16398. {
  16399. name: "Macro",
  16400. height: math.unit(20, "feet")
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(6 + 1 / 12, "feet"),
  16409. weight: math.unit(275, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/hunter-misha-raven/front.svg"
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Mortal",
  16419. height: math.unit(6 + 1 / 12, "feet")
  16420. },
  16421. {
  16422. name: "Divine",
  16423. height: math.unit(1.12134e34, "parsecs"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(6 + 3 / 12, "feet"),
  16433. weight: math.unit(220, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/max-calore/front.svg",
  16437. extra: 1700 / 1648,
  16438. bottom: 0.01
  16439. }
  16440. },
  16441. back: {
  16442. height: math.unit(6 + 3 / 12, "feet"),
  16443. weight: math.unit(220, "lb"),
  16444. name: "Back",
  16445. image: {
  16446. source: "./media/characters/max-calore/back.svg",
  16447. extra: 1700 / 1648,
  16448. bottom: 0.01
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(6 + 3 / 12, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16462. {
  16463. side: {
  16464. height: math.unit(2 + 8 / 12, "feet"),
  16465. weight: math.unit(99, "lb"),
  16466. name: "Side",
  16467. image: {
  16468. source: "./media/characters/aspen/side.svg",
  16469. extra: 152 / 138,
  16470. bottom: 0.032
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(2 + 8 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16484. {
  16485. side: {
  16486. height: math.unit(3 + 2 / 12, "feet"),
  16487. weight: math.unit(224, "lb"),
  16488. name: "Side",
  16489. image: {
  16490. source: "./media/characters/sheila-feral-wolf/side.svg",
  16491. extra: 179 / 166,
  16492. bottom: 0.03
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(3 + 2 / 12, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16506. {
  16507. side: {
  16508. height: math.unit(1 + 9 / 12, "feet"),
  16509. weight: math.unit(38, "lb"),
  16510. name: "Side",
  16511. image: {
  16512. source: "./media/characters/michelle/side.svg",
  16513. extra: 147 / 136.7,
  16514. bottom: 0.03
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(1 + 9 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(1 + 1 / 12, "feet"),
  16531. weight: math.unit(18, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/nino/front.svg"
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(1 + 1 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(1, "feet"),
  16551. weight: math.unit(16, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/viola/front.svg"
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(1, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(6 + 5 / 12, "feet"),
  16571. weight: math.unit(580, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/atlas/front.svg",
  16575. extra: 298.5 / 290,
  16576. bottom: 0.015
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(6 + 5 / 12, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16590. {
  16591. side: {
  16592. height: math.unit(1 + 10 / 12, "feet"),
  16593. weight: math.unit(25, "lb"),
  16594. name: "Side",
  16595. image: {
  16596. source: "./media/characters/davy/side.svg",
  16597. extra: 200 / 170,
  16598. bottom: 0.01
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(1 + 10 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16612. {
  16613. side: {
  16614. height: math.unit(4 + 8 / 12, "feet"),
  16615. weight: math.unit(166, "lb"),
  16616. name: "Side",
  16617. image: {
  16618. source: "./media/characters/fiona/side.svg",
  16619. extra: 232 / 220,
  16620. bottom: 0.03
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(4 + 8 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16634. {
  16635. front: {
  16636. height: math.unit(2, "feet"),
  16637. weight: math.unit(62, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/lyla/front.svg",
  16641. bottom: 0.1
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(2, "feet"),
  16649. default: true
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16655. {
  16656. side: {
  16657. height: math.unit(1.8, "feet"),
  16658. weight: math.unit(44, "lb"),
  16659. name: "Side",
  16660. image: {
  16661. source: "./media/characters/perseus/side.svg",
  16662. bottom: 0.21
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(1.8, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16676. {
  16677. side: {
  16678. height: math.unit(4 + 2 / 12, "feet"),
  16679. weight: math.unit(20, "lb"),
  16680. name: "Side",
  16681. image: {
  16682. source: "./media/characters/remus/side.svg"
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(4 + 2 / 12, "feet"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(4 + 11 / 12, "feet"),
  16699. weight: math.unit(114, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/raf/front.svg",
  16703. bottom: 20.5 / 1863
  16704. }
  16705. },
  16706. side: {
  16707. height: math.unit(4 + 11 / 12, "feet"),
  16708. weight: math.unit(114, "lb"),
  16709. name: "Side",
  16710. image: {
  16711. source: "./media/characters/raf/side.svg",
  16712. bottom: 22 / 1822
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Micro",
  16719. height: math.unit(2, "inches")
  16720. },
  16721. {
  16722. name: "Normal",
  16723. height: math.unit(4 + 11 / 12, "feet"),
  16724. default: true
  16725. },
  16726. {
  16727. name: "Macro",
  16728. height: math.unit(70, "feet")
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(1.5, "meters"),
  16737. weight: math.unit(68, "kg"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/liam-einarr/front.svg",
  16741. extra: 2822 / 2666
  16742. }
  16743. },
  16744. back: {
  16745. height: math.unit(1.5, "meters"),
  16746. weight: math.unit(68, "kg"),
  16747. name: "Back",
  16748. image: {
  16749. source: "./media/characters/liam-einarr/back.svg",
  16750. extra: 2822 / 2666,
  16751. bottom: 0.015
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(1.5, "meters"),
  16759. default: true
  16760. },
  16761. {
  16762. name: "Macro",
  16763. height: math.unit(150, "meters")
  16764. },
  16765. {
  16766. name: "Megamacro",
  16767. height: math.unit(35, "km")
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(75, "kg"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/linda/front.svg",
  16780. extra: 930 / 874,
  16781. bottom: 0.004
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(6, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6 + 8 / 12, "feet"),
  16798. weight: math.unit(220, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/caylex/front.svg",
  16802. extra: 821 / 772,
  16803. bottom: 0.07
  16804. }
  16805. },
  16806. back: {
  16807. height: math.unit(6 + 8 / 12, "feet"),
  16808. weight: math.unit(220, "lb"),
  16809. name: "Back",
  16810. image: {
  16811. source: "./media/characters/caylex/back.svg",
  16812. extra: 821 / 772,
  16813. bottom: 0.022
  16814. }
  16815. },
  16816. hand: {
  16817. height: math.unit(1.25, "feet"),
  16818. name: "Hand",
  16819. image: {
  16820. source: "./media/characters/caylex/hand.svg"
  16821. }
  16822. },
  16823. foot: {
  16824. height: math.unit(1.6, "feet"),
  16825. name: "Foot",
  16826. image: {
  16827. source: "./media/characters/caylex/foot.svg"
  16828. }
  16829. },
  16830. armored: {
  16831. height: math.unit(6 + 8 / 12, "feet"),
  16832. weight: math.unit(250, "lb"),
  16833. name: "Armored",
  16834. image: {
  16835. source: "./media/characters/caylex/armored.svg",
  16836. extra: 1420 / 1310,
  16837. bottom: 0.045
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(6 + 8 / 12, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Normal+",
  16849. height: math.unit(12, "feet")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(7 + 6 / 12, "feet"),
  16858. weight: math.unit(288, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/alana/front.svg",
  16862. extra: 679 / 653,
  16863. bottom: 22.5 / 701
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(7 + 6 / 12, "feet")
  16871. },
  16872. {
  16873. name: "Large",
  16874. height: math.unit(50, "feet")
  16875. },
  16876. {
  16877. name: "Macro",
  16878. height: math.unit(100, "feet"),
  16879. default: true
  16880. },
  16881. {
  16882. name: "Macro+",
  16883. height: math.unit(200, "feet")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(6 + 1 / 12, "feet"),
  16892. weight: math.unit(210, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/hasani/front.svg",
  16896. extra: 244 / 232,
  16897. bottom: 0.01
  16898. }
  16899. },
  16900. back: {
  16901. height: math.unit(6 + 1 / 12, "feet"),
  16902. weight: math.unit(210, "lb"),
  16903. name: "Back",
  16904. image: {
  16905. source: "./media/characters/hasani/back.svg",
  16906. extra: 244 / 232,
  16907. bottom: 0.01
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(6 + 1 / 12, "feet")
  16915. },
  16916. {
  16917. name: "Macro",
  16918. height: math.unit(175, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(1.82, "meters"),
  16928. weight: math.unit(140, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/nita/front.svg",
  16932. extra: 2473 / 2363,
  16933. bottom: 0.01
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(1.82, "m")
  16941. },
  16942. {
  16943. name: "Macro",
  16944. height: math.unit(300, "m")
  16945. },
  16946. {
  16947. name: "Mistake Canon",
  16948. height: math.unit(0.5, "miles"),
  16949. default: true
  16950. },
  16951. {
  16952. name: "Big Mistake",
  16953. height: math.unit(13, "miles")
  16954. },
  16955. {
  16956. name: "Playing God",
  16957. height: math.unit(2450, "miles")
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(4, "feet"),
  16966. weight: math.unit(120, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/shiriko/front.svg",
  16970. extra: 195 / 188
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(4, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16984. {
  16985. front: {
  16986. height: math.unit(6, "feet"),
  16987. name: "front",
  16988. image: {
  16989. source: "./media/characters/deja/front.svg",
  16990. extra: 926 / 840,
  16991. bottom: 0.07
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Planck Length",
  16998. height: math.unit(1.6e-35, "meters")
  16999. },
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(30.48, "meters"),
  17003. default: true
  17004. },
  17005. {
  17006. name: "Universal",
  17007. height: math.unit(8.8e26, "meters")
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17013. {
  17014. side: {
  17015. height: math.unit(8, "feet"),
  17016. weight: math.unit(6300, "lb"),
  17017. name: "Side",
  17018. image: {
  17019. source: "./media/characters/anima/side.svg",
  17020. bottom: 0.035
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(8, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(8, "feet"),
  17037. weight: math.unit(350, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/bianca/front.svg",
  17041. extra: 234 / 225,
  17042. bottom: 0.03
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(8, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(6, "feet"),
  17059. weight: math.unit(150, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/adinia/front.svg",
  17063. extra: 1845 / 1672,
  17064. bottom: 0.02
  17065. }
  17066. },
  17067. back: {
  17068. height: math.unit(6, "feet"),
  17069. weight: math.unit(150, "lb"),
  17070. name: "Back",
  17071. image: {
  17072. source: "./media/characters/adinia/back.svg",
  17073. extra: 1845 / 1672,
  17074. bottom: 0.002
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(11 + 5 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(3, "meters"),
  17091. weight: math.unit(200, "kg"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/lykasa/front.svg",
  17095. extra: 1076 / 976,
  17096. bottom: 0.06
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(3, "meters")
  17104. },
  17105. {
  17106. name: "Kaiju",
  17107. height: math.unit(120, "meters"),
  17108. default: true
  17109. },
  17110. {
  17111. name: "Mega Kaiju",
  17112. height: math.unit(240, "km")
  17113. },
  17114. {
  17115. name: "Giga Kaiju",
  17116. height: math.unit(400, "megameters")
  17117. },
  17118. {
  17119. name: "Tera Kaiju",
  17120. height: math.unit(800, "gigameters")
  17121. },
  17122. {
  17123. name: "Kaiju Dragon Goddess",
  17124. height: math.unit(26, "zettaparsecs")
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17130. {
  17131. side: {
  17132. height: math.unit(283 / 124 * 6, "feet"),
  17133. weight: math.unit(35000, "lb"),
  17134. name: "Side",
  17135. image: {
  17136. source: "./media/characters/malfaren/side.svg",
  17137. extra: 2500 / 1010,
  17138. bottom: 0.01
  17139. }
  17140. },
  17141. front: {
  17142. height: math.unit(22.36, "feet"),
  17143. weight: math.unit(35000, "lb"),
  17144. name: "Front",
  17145. image: {
  17146. source: "./media/characters/malfaren/front.svg",
  17147. extra: 1631 / 1476,
  17148. bottom: 0.01
  17149. }
  17150. },
  17151. maw: {
  17152. height: math.unit(6.9, "feet"),
  17153. name: "Maw",
  17154. image: {
  17155. source: "./media/characters/malfaren/maw.svg"
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Big",
  17162. height: math.unit(283 / 162 * 6, "feet"),
  17163. },
  17164. {
  17165. name: "Bigger",
  17166. height: math.unit(283 / 124 * 6, "feet")
  17167. },
  17168. {
  17169. name: "Massive",
  17170. height: math.unit(283 / 92 * 6, "feet"),
  17171. default: true
  17172. },
  17173. {
  17174. name: "👀💦",
  17175. height: math.unit(283 / 73 * 6, "feet"),
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(1.7, "m"),
  17184. weight: math.unit(70, "kg"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/kernel/front.svg",
  17188. extra: 222 / 210,
  17189. bottom: 0.007
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Nano",
  17196. height: math.unit(17, "micrometers")
  17197. },
  17198. {
  17199. name: "Micro",
  17200. height: math.unit(1.7, "mm")
  17201. },
  17202. {
  17203. name: "Small",
  17204. height: math.unit(1.7, "cm")
  17205. },
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(1.7, "m"),
  17209. default: true
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(1.75, "meters"),
  17218. weight: math.unit(65, "kg"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/jayne-folest/front.svg",
  17222. extra: 2115 / 2007,
  17223. bottom: 0.02
  17224. }
  17225. },
  17226. back: {
  17227. height: math.unit(1.75, "meters"),
  17228. weight: math.unit(65, "kg"),
  17229. name: "Back",
  17230. image: {
  17231. source: "./media/characters/jayne-folest/back.svg",
  17232. extra: 2115 / 2007,
  17233. bottom: 0.005
  17234. }
  17235. },
  17236. frontClothed: {
  17237. height: math.unit(1.75, "meters"),
  17238. weight: math.unit(65, "kg"),
  17239. name: "Front (Clothed)",
  17240. image: {
  17241. source: "./media/characters/jayne-folest/front-clothed.svg",
  17242. extra: 2115 / 2007,
  17243. bottom: 0.035
  17244. }
  17245. },
  17246. hand: {
  17247. height: math.unit(1 / 1.260, "feet"),
  17248. name: "Hand",
  17249. image: {
  17250. source: "./media/characters/jayne-folest/hand.svg"
  17251. }
  17252. },
  17253. foot: {
  17254. height: math.unit(1 / 0.918, "feet"),
  17255. name: "Foot",
  17256. image: {
  17257. source: "./media/characters/jayne-folest/foot.svg"
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Micro",
  17264. height: math.unit(4, "cm")
  17265. },
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(1.75, "meters")
  17269. },
  17270. {
  17271. name: "Macro",
  17272. height: math.unit(47.5, "meters"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17279. {
  17280. front: {
  17281. height: math.unit(180, "cm"),
  17282. weight: math.unit(70, "kg"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/algier/front.svg",
  17286. extra: 596 / 572,
  17287. bottom: 0.04
  17288. }
  17289. },
  17290. back: {
  17291. height: math.unit(180, "cm"),
  17292. weight: math.unit(70, "kg"),
  17293. name: "Back",
  17294. image: {
  17295. source: "./media/characters/algier/back.svg",
  17296. extra: 596 / 572,
  17297. bottom: 0.025
  17298. }
  17299. },
  17300. frontdressed: {
  17301. height: math.unit(180, "cm"),
  17302. weight: math.unit(150, "kg"),
  17303. name: "Front-dressed",
  17304. image: {
  17305. source: "./media/characters/algier/front-dressed.svg",
  17306. extra: 596 / 572,
  17307. bottom: 0.038
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Micro",
  17314. height: math.unit(5, "cm")
  17315. },
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(180, "cm"),
  17319. default: true
  17320. },
  17321. {
  17322. name: "Macro",
  17323. height: math.unit(64, "m")
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17329. {
  17330. upright: {
  17331. height: math.unit(7, "feet"),
  17332. weight: math.unit(300, "lb"),
  17333. name: "Upright",
  17334. image: {
  17335. source: "./media/characters/pretzel/upright.svg",
  17336. extra: 534 / 522,
  17337. bottom: 0.065
  17338. }
  17339. },
  17340. sprawling: {
  17341. height: math.unit(3.75, "feet"),
  17342. weight: math.unit(300, "lb"),
  17343. name: "Sprawling",
  17344. image: {
  17345. source: "./media/characters/pretzel/sprawling.svg",
  17346. extra: 314 / 281,
  17347. bottom: 0.1
  17348. }
  17349. },
  17350. tongue: {
  17351. height: math.unit(2, "feet"),
  17352. name: "Tongue",
  17353. image: {
  17354. source: "./media/characters/pretzel/tongue.svg"
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(7, "feet"),
  17362. default: true
  17363. },
  17364. {
  17365. name: "Oversized",
  17366. height: math.unit(15, "feet")
  17367. },
  17368. {
  17369. name: "Huge",
  17370. height: math.unit(30, "feet")
  17371. },
  17372. {
  17373. name: "Macro",
  17374. height: math.unit(250, "feet")
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17380. {
  17381. sideFront: {
  17382. height: math.unit(5 + 2 / 12, "feet"),
  17383. weight: math.unit(120, "lb"),
  17384. name: "Front Side",
  17385. image: {
  17386. source: "./media/characters/roxi/side-front.svg",
  17387. extra: 2924 / 2717,
  17388. bottom: 0.08
  17389. }
  17390. },
  17391. sideBack: {
  17392. height: math.unit(5 + 2 / 12, "feet"),
  17393. weight: math.unit(120, "lb"),
  17394. name: "Back Side",
  17395. image: {
  17396. source: "./media/characters/roxi/side-back.svg",
  17397. extra: 2904 / 2693,
  17398. bottom: 0.06
  17399. }
  17400. },
  17401. front: {
  17402. height: math.unit(5 + 2 / 12, "feet"),
  17403. weight: math.unit(120, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/roxi/front.svg",
  17407. extra: 2028 / 1907,
  17408. bottom: 0.01
  17409. }
  17410. },
  17411. frontAlt: {
  17412. height: math.unit(5 + 2 / 12, "feet"),
  17413. weight: math.unit(120, "lb"),
  17414. name: "Front (Alt)",
  17415. image: {
  17416. source: "./media/characters/roxi/front-alt.svg",
  17417. extra: 1828 / 1798,
  17418. bottom: 0.01
  17419. }
  17420. },
  17421. sitting: {
  17422. height: math.unit(2.8, "feet"),
  17423. weight: math.unit(120, "lb"),
  17424. name: "Sitting",
  17425. image: {
  17426. source: "./media/characters/roxi/sitting.svg",
  17427. extra: 2660 / 2462,
  17428. bottom: 0.1
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(5 + 2 / 12, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17442. {
  17443. side: {
  17444. height: math.unit(55, "feet"),
  17445. weight: math.unit(153, "tons"),
  17446. name: "Side",
  17447. image: {
  17448. source: "./media/characters/shadow/side.svg",
  17449. extra: 701 / 628,
  17450. bottom: 0.02
  17451. }
  17452. },
  17453. flying: {
  17454. height: math.unit(145, "feet"),
  17455. weight: math.unit(153, "tons"),
  17456. name: "Flying",
  17457. image: {
  17458. source: "./media/characters/shadow/flying.svg"
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(55, "feet"),
  17466. default: true
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(6, "feet"),
  17475. weight: math.unit(200, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/marcie/front.svg",
  17479. extra: 960 / 876,
  17480. bottom: 58 / 1017.87
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Macro",
  17487. height: math.unit(1, "mile"),
  17488. default: true
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(7, "feet"),
  17497. weight: math.unit(200, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/kachina/front.svg",
  17501. extra: 1290.68 / 1119,
  17502. bottom: 36.5 / 1327.18
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(7, "feet"),
  17510. default: true
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17516. {
  17517. looking: {
  17518. height: math.unit(2, "meters"),
  17519. weight: math.unit(300, "kg"),
  17520. name: "Looking",
  17521. image: {
  17522. source: "./media/characters/kash/looking.svg",
  17523. extra: 474 / 344,
  17524. bottom: 0.03
  17525. }
  17526. },
  17527. side: {
  17528. height: math.unit(2, "meters"),
  17529. weight: math.unit(300, "kg"),
  17530. name: "Side",
  17531. image: {
  17532. source: "./media/characters/kash/side.svg",
  17533. extra: 302 / 251,
  17534. bottom: 0.03
  17535. }
  17536. },
  17537. front: {
  17538. height: math.unit(2, "meters"),
  17539. weight: math.unit(300, "kg"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/kash/front.svg",
  17543. extra: 495 / 360,
  17544. bottom: 0.015
  17545. }
  17546. },
  17547. },
  17548. [
  17549. {
  17550. name: "Normal",
  17551. height: math.unit(2, "meters"),
  17552. default: true
  17553. },
  17554. {
  17555. name: "Big",
  17556. height: math.unit(3, "meters")
  17557. },
  17558. {
  17559. name: "Large",
  17560. height: math.unit(5, "meters")
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17566. {
  17567. feeding: {
  17568. height: math.unit(6.7, "feet"),
  17569. weight: math.unit(350, "lb"),
  17570. name: "Feeding",
  17571. image: {
  17572. source: "./media/characters/lalim/feeding.svg",
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(6.7, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(9.5, "feet"),
  17589. weight: math.unit(600, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/de'vout/front.svg",
  17593. extra: 1443 / 1328,
  17594. bottom: 0.025
  17595. }
  17596. },
  17597. back: {
  17598. height: math.unit(9.5, "feet"),
  17599. weight: math.unit(600, "lb"),
  17600. name: "Back",
  17601. image: {
  17602. source: "./media/characters/de'vout/back.svg",
  17603. extra: 1443 / 1328
  17604. }
  17605. },
  17606. frontDressed: {
  17607. height: math.unit(9.5, "feet"),
  17608. weight: math.unit(600, "lb"),
  17609. name: "Front (Dressed",
  17610. image: {
  17611. source: "./media/characters/de'vout/front-dressed.svg",
  17612. extra: 1443 / 1328,
  17613. bottom: 0.025
  17614. }
  17615. },
  17616. backDressed: {
  17617. height: math.unit(9.5, "feet"),
  17618. weight: math.unit(600, "lb"),
  17619. name: "Back (Dressed",
  17620. image: {
  17621. source: "./media/characters/de'vout/back-dressed.svg",
  17622. extra: 1443 / 1328
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(9.5, "feet"),
  17630. default: true
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(8, "feet"),
  17639. weight: math.unit(225, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/talana/front.svg",
  17643. extra: 1410 / 1300,
  17644. bottom: 0.015
  17645. }
  17646. },
  17647. frontDressed: {
  17648. height: math.unit(8, "feet"),
  17649. weight: math.unit(225, "lb"),
  17650. name: "Front (Dressed",
  17651. image: {
  17652. source: "./media/characters/talana/front-dressed.svg",
  17653. extra: 1410 / 1300,
  17654. bottom: 0.015
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(8, "feet"),
  17662. default: true
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17668. {
  17669. side: {
  17670. height: math.unit(7.2, "feet"),
  17671. weight: math.unit(150, "lb"),
  17672. name: "Side",
  17673. image: {
  17674. source: "./media/characters/xeauvok/side.svg",
  17675. extra: 1975 / 1523,
  17676. bottom: 0.07
  17677. }
  17678. },
  17679. },
  17680. [
  17681. {
  17682. name: "Normal",
  17683. height: math.unit(7.2, "feet"),
  17684. default: true
  17685. },
  17686. ]
  17687. ))
  17688. characterMakers.push(() => makeCharacter(
  17689. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17690. {
  17691. side: {
  17692. height: math.unit(10, "feet"),
  17693. weight: math.unit(900, "kg"),
  17694. name: "Side",
  17695. image: {
  17696. source: "./media/characters/zara/side.svg",
  17697. extra: 504 / 498
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(10, "feet"),
  17705. default: true
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17711. {
  17712. side: {
  17713. height: math.unit(6, "feet"),
  17714. weight: math.unit(150, "lb"),
  17715. name: "Side",
  17716. image: {
  17717. source: "./media/characters/richard-dragon/side.svg",
  17718. extra: 845 / 340,
  17719. bottom: 0.017
  17720. }
  17721. },
  17722. maw: {
  17723. height: math.unit(2.97, "feet"),
  17724. name: "Maw",
  17725. image: {
  17726. source: "./media/characters/richard-dragon/maw.svg"
  17727. }
  17728. },
  17729. },
  17730. [
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17735. {
  17736. front: {
  17737. height: math.unit(4, "feet"),
  17738. weight: math.unit(100, "lb"),
  17739. name: "Front",
  17740. image: {
  17741. source: "./media/characters/richard-smeargle/front.svg",
  17742. extra: 2952 / 2820,
  17743. bottom: 0.028
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(4, "feet"),
  17751. default: true
  17752. },
  17753. {
  17754. name: "Dynamax",
  17755. height: math.unit(20, "meters")
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6, "feet"),
  17764. weight: math.unit(110, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/klay/front.svg",
  17768. extra: 962 / 883,
  17769. bottom: 0.04
  17770. }
  17771. },
  17772. back: {
  17773. height: math.unit(6, "feet"),
  17774. weight: math.unit(110, "lb"),
  17775. name: "Back",
  17776. image: {
  17777. source: "./media/characters/klay/back.svg",
  17778. extra: 962 / 883
  17779. }
  17780. },
  17781. beans: {
  17782. height: math.unit(1.15, "feet"),
  17783. name: "Beans",
  17784. image: {
  17785. source: "./media/characters/klay/beans.svg"
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Micro",
  17792. height: math.unit(6, "inches")
  17793. },
  17794. {
  17795. name: "Mini",
  17796. height: math.unit(3, "feet")
  17797. },
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(6, "feet"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Big",
  17805. height: math.unit(25, "feet")
  17806. },
  17807. {
  17808. name: "Macro",
  17809. height: math.unit(100, "feet")
  17810. },
  17811. {
  17812. name: "Megamacro",
  17813. height: math.unit(400, "feet")
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17819. {
  17820. front: {
  17821. height: math.unit(6, "feet"),
  17822. weight: math.unit(160, "lb"),
  17823. name: "Front",
  17824. image: {
  17825. source: "./media/characters/marcus/front.svg",
  17826. extra: 734 / 676,
  17827. bottom: 0.03
  17828. }
  17829. },
  17830. },
  17831. [
  17832. {
  17833. name: "Little",
  17834. height: math.unit(6, "feet")
  17835. },
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(110, "feet"),
  17839. default: true
  17840. },
  17841. {
  17842. name: "Macro",
  17843. height: math.unit(250, "feet")
  17844. },
  17845. {
  17846. name: "Megamacro",
  17847. height: math.unit(1000, "feet")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(7, "feet"),
  17856. weight: math.unit(275, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/claude-delroute/front.svg",
  17860. extra: 230 / 214,
  17861. bottom: 0.007
  17862. }
  17863. },
  17864. side: {
  17865. height: math.unit(7, "feet"),
  17866. weight: math.unit(275, "lb"),
  17867. name: "Side",
  17868. image: {
  17869. source: "./media/characters/claude-delroute/side.svg",
  17870. extra: 222 / 214,
  17871. bottom: 0.01
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(7, "feet"),
  17876. weight: math.unit(275, "lb"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/claude-delroute/back.svg",
  17880. extra: 230 / 214,
  17881. bottom: 0.015
  17882. }
  17883. },
  17884. maw: {
  17885. height: math.unit(0.6407, "meters"),
  17886. name: "Maw",
  17887. image: {
  17888. source: "./media/characters/claude-delroute/maw.svg"
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Normal",
  17895. height: math.unit(7, "feet"),
  17896. default: true
  17897. },
  17898. {
  17899. name: "Lorge",
  17900. height: math.unit(20, "feet")
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17906. {
  17907. front: {
  17908. height: math.unit(8 + 4 / 12, "feet"),
  17909. weight: math.unit(600, "lb"),
  17910. name: "Front",
  17911. image: {
  17912. source: "./media/characters/dragonien/front.svg",
  17913. extra: 100 / 94,
  17914. bottom: 3.3 / 103.3445
  17915. }
  17916. },
  17917. back: {
  17918. height: math.unit(8 + 4 / 12, "feet"),
  17919. weight: math.unit(600, "lb"),
  17920. name: "Back",
  17921. image: {
  17922. source: "./media/characters/dragonien/back.svg",
  17923. extra: 776 / 746,
  17924. bottom: 6.4 / 782.0616
  17925. }
  17926. },
  17927. foot: {
  17928. height: math.unit(1.54, "feet"),
  17929. name: "Foot",
  17930. image: {
  17931. source: "./media/characters/dragonien/foot.svg",
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(8 + 4 / 12, "feet"),
  17939. default: true
  17940. },
  17941. {
  17942. name: "Macro",
  17943. height: math.unit(200, "feet")
  17944. },
  17945. {
  17946. name: "Megamacro",
  17947. height: math.unit(1, "mile")
  17948. },
  17949. {
  17950. name: "Gigamacro",
  17951. height: math.unit(1000, "miles")
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17957. {
  17958. front: {
  17959. height: math.unit(5 + 2 / 12, "feet"),
  17960. weight: math.unit(110, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/desta/front.svg",
  17964. extra: 767 / 726,
  17965. bottom: 11.7 / 779
  17966. }
  17967. },
  17968. back: {
  17969. height: math.unit(5 + 2 / 12, "feet"),
  17970. weight: math.unit(110, "lb"),
  17971. name: "Back",
  17972. image: {
  17973. source: "./media/characters/desta/back.svg",
  17974. extra: 777 / 728,
  17975. bottom: 6 / 784
  17976. }
  17977. },
  17978. frontAlt: {
  17979. height: math.unit(5 + 2 / 12, "feet"),
  17980. weight: math.unit(110, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/desta/front-alt.svg",
  17984. extra: 1482 / 1417
  17985. }
  17986. },
  17987. side: {
  17988. height: math.unit(5 + 2 / 12, "feet"),
  17989. weight: math.unit(110, "lb"),
  17990. name: "Side",
  17991. image: {
  17992. source: "./media/characters/desta/side.svg",
  17993. extra: 2579 / 2491,
  17994. bottom: 0.053
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Micro",
  18001. height: math.unit(6, "inches")
  18002. },
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(5 + 2 / 12, "feet"),
  18006. default: true
  18007. },
  18008. {
  18009. name: "Macro",
  18010. height: math.unit(62, "feet")
  18011. },
  18012. {
  18013. name: "Megamacro",
  18014. height: math.unit(1800, "feet")
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(10, "feet"),
  18023. weight: math.unit(700, "lb"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/storm-alystar/front.svg",
  18027. extra: 2112 / 1898,
  18028. bottom: 0.034
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Micro",
  18035. height: math.unit(3.5, "inches")
  18036. },
  18037. {
  18038. name: "Normal",
  18039. height: math.unit(10, "feet"),
  18040. default: true
  18041. },
  18042. {
  18043. name: "Macro",
  18044. height: math.unit(400, "feet")
  18045. },
  18046. {
  18047. name: "Deific",
  18048. height: math.unit(60, "miles")
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18054. {
  18055. front: {
  18056. height: math.unit(2.35, "meters"),
  18057. weight: math.unit(119, "kg"),
  18058. name: "Front",
  18059. image: {
  18060. source: "./media/characters/ilia/front.svg",
  18061. extra: 1285 / 1255,
  18062. bottom: 0.06
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Normal",
  18069. height: math.unit(2.35, "meters")
  18070. },
  18071. {
  18072. name: "Macro",
  18073. height: math.unit(140, "meters"),
  18074. default: true
  18075. },
  18076. {
  18077. name: "Megamacro",
  18078. height: math.unit(100, "miles")
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18084. {
  18085. front: {
  18086. height: math.unit(6 + 5 / 12, "feet"),
  18087. weight: math.unit(190, "lb"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/kingdead/front.svg",
  18091. extra: 1228 / 1177
  18092. }
  18093. },
  18094. },
  18095. [
  18096. {
  18097. name: "Micro",
  18098. height: math.unit(7, "inches")
  18099. },
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(6 + 5 / 12, "feet")
  18103. },
  18104. {
  18105. name: "Macro",
  18106. height: math.unit(150, "feet"),
  18107. default: true
  18108. },
  18109. {
  18110. name: "Megamacro",
  18111. height: math.unit(200, "miles")
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(8, "feet"),
  18120. weight: math.unit(600, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/kyrehx/front.svg",
  18124. extra: 1195 / 1095,
  18125. bottom: 0.034
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Micro",
  18132. height: math.unit(2, "inches")
  18133. },
  18134. {
  18135. name: "Normal",
  18136. height: math.unit(8, "feet"),
  18137. default: true
  18138. },
  18139. {
  18140. name: "Macro",
  18141. height: math.unit(255, "feet")
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18147. {
  18148. front: {
  18149. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18150. weight: math.unit(184, "lb"),
  18151. name: "Front",
  18152. image: {
  18153. source: "./media/characters/xang/front.svg",
  18154. extra: 845 / 755
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Normal",
  18161. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18162. default: true
  18163. },
  18164. {
  18165. name: "Macro",
  18166. height: math.unit(0.935 * 146, "feet")
  18167. },
  18168. {
  18169. name: "Megamacro",
  18170. height: math.unit(0.935 * 3, "miles")
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18176. {
  18177. frontDressed: {
  18178. height: math.unit(5 + 7 / 12, "feet"),
  18179. weight: math.unit(140, "lb"),
  18180. name: "Front (Dressed)",
  18181. image: {
  18182. source: "./media/characters/doc-weardno/front-dressed.svg",
  18183. extra: 263 / 234
  18184. }
  18185. },
  18186. backDressed: {
  18187. height: math.unit(5 + 7 / 12, "feet"),
  18188. weight: math.unit(140, "lb"),
  18189. name: "Back (Dressed)",
  18190. image: {
  18191. source: "./media/characters/doc-weardno/back-dressed.svg",
  18192. extra: 266 / 238
  18193. }
  18194. },
  18195. front: {
  18196. height: math.unit(5 + 7 / 12, "feet"),
  18197. weight: math.unit(140, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/doc-weardno/front.svg",
  18201. extra: 254 / 233
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Micro",
  18208. height: math.unit(3, "inches")
  18209. },
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(5 + 7 / 12, "feet"),
  18213. default: true
  18214. },
  18215. {
  18216. name: "Macro",
  18217. height: math.unit(25, "feet")
  18218. },
  18219. {
  18220. name: "Megamacro",
  18221. height: math.unit(2, "miles")
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(6 + 2 / 12, "feet"),
  18230. weight: math.unit(153, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/seth-whilst/front.svg",
  18234. bottom: 0.07
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Micro",
  18241. height: math.unit(5, "inches")
  18242. },
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(6 + 2 / 12, "feet"),
  18246. default: true
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(3, "inches"),
  18255. weight: math.unit(8, "grams"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/pocket-jabari/front.svg",
  18259. extra: 1024 / 974,
  18260. bottom: 0.039
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Minimicro",
  18267. height: math.unit(8, "mm")
  18268. },
  18269. {
  18270. name: "Micro",
  18271. height: math.unit(3, "inches"),
  18272. default: true
  18273. },
  18274. {
  18275. name: "Normal",
  18276. height: math.unit(3, "feet")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(15, "feet"),
  18285. weight: math.unit(3280, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/sapphy/front.svg",
  18289. extra: 671 / 577,
  18290. bottom: 0.085
  18291. }
  18292. },
  18293. back: {
  18294. height: math.unit(15, "feet"),
  18295. weight: math.unit(3280, "lb"),
  18296. name: "Back",
  18297. image: {
  18298. source: "./media/characters/sapphy/back.svg",
  18299. extra: 631 / 607,
  18300. bottom: 0.045
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(15, "feet")
  18308. },
  18309. {
  18310. name: "Casual Macro",
  18311. height: math.unit(120, "feet")
  18312. },
  18313. {
  18314. name: "Macro",
  18315. height: math.unit(2150, "feet"),
  18316. default: true
  18317. },
  18318. {
  18319. name: "Megamacro",
  18320. height: math.unit(8, "miles")
  18321. },
  18322. {
  18323. name: "Galaxy Mom",
  18324. height: math.unit(6, "megalightyears")
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18330. {
  18331. front: {
  18332. height: math.unit(6, "feet"),
  18333. weight: math.unit(170, "lb"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/kiro/front.svg",
  18337. extra: 1064 / 1012,
  18338. bottom: 0.052
  18339. }
  18340. },
  18341. },
  18342. [
  18343. {
  18344. name: "Micro",
  18345. height: math.unit(6, "inches")
  18346. },
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(6, "feet"),
  18350. default: true
  18351. },
  18352. {
  18353. name: "Macro",
  18354. height: math.unit(72, "feet")
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(5 + 9 / 12, "feet"),
  18363. weight: math.unit(175, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/irishfox/front.svg",
  18367. extra: 1912 / 1680,
  18368. bottom: 0.02
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Nano",
  18375. height: math.unit(1, "mm")
  18376. },
  18377. {
  18378. name: "Micro",
  18379. height: math.unit(2, "inches")
  18380. },
  18381. {
  18382. name: "Normal",
  18383. height: math.unit(5 + 9 / 12, "feet"),
  18384. default: true
  18385. },
  18386. {
  18387. name: "Macro",
  18388. height: math.unit(45, "feet")
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18394. {
  18395. front: {
  18396. height: math.unit(6 + 1 / 12, "feet"),
  18397. weight: math.unit(75, "lb"),
  18398. name: "Front",
  18399. image: {
  18400. source: "./media/characters/aronai-sieyes/front.svg",
  18401. extra: 1556 / 1480,
  18402. bottom: 0.015
  18403. }
  18404. },
  18405. side: {
  18406. height: math.unit(6 + 1 / 12, "feet"),
  18407. weight: math.unit(75, "lb"),
  18408. name: "Side",
  18409. image: {
  18410. source: "./media/characters/aronai-sieyes/side.svg",
  18411. extra: 1433 / 1390,
  18412. bottom: 0.0393
  18413. }
  18414. },
  18415. back: {
  18416. height: math.unit(6 + 1 / 12, "feet"),
  18417. weight: math.unit(75, "lb"),
  18418. name: "Back",
  18419. image: {
  18420. source: "./media/characters/aronai-sieyes/back.svg",
  18421. extra: 1544 / 1494,
  18422. bottom: 0.02
  18423. }
  18424. },
  18425. frontClothed: {
  18426. height: math.unit(6 + 1 / 12, "feet"),
  18427. weight: math.unit(75, "lb"),
  18428. name: "Front (Clothed)",
  18429. image: {
  18430. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18431. extra: 1582 / 1527
  18432. }
  18433. },
  18434. feral: {
  18435. height: math.unit(18, "feet"),
  18436. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18437. name: "Feral",
  18438. image: {
  18439. source: "./media/characters/aronai-sieyes/feral.svg",
  18440. extra: 1530 / 1240,
  18441. bottom: 0.035
  18442. }
  18443. },
  18444. },
  18445. [
  18446. {
  18447. name: "Micro",
  18448. height: math.unit(2, "inches")
  18449. },
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(6 + 1 / 12, "feet"),
  18453. default: true
  18454. }
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18459. {
  18460. front: {
  18461. height: math.unit(12, "feet"),
  18462. weight: math.unit(410, "kg"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/xuna/front.svg",
  18466. extra: 2184 / 1980
  18467. }
  18468. },
  18469. side: {
  18470. height: math.unit(12, "feet"),
  18471. weight: math.unit(410, "kg"),
  18472. name: "Side",
  18473. image: {
  18474. source: "./media/characters/xuna/side.svg",
  18475. extra: 2184 / 1980
  18476. }
  18477. },
  18478. back: {
  18479. height: math.unit(12, "feet"),
  18480. weight: math.unit(410, "kg"),
  18481. name: "Back",
  18482. image: {
  18483. source: "./media/characters/xuna/back.svg",
  18484. extra: 2184 / 1980
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Nano glow",
  18491. height: math.unit(10, "nm")
  18492. },
  18493. {
  18494. name: "Micro floof",
  18495. height: math.unit(0.3, "m")
  18496. },
  18497. {
  18498. name: "Huggable softy boi",
  18499. height: math.unit(3.6576, "m"),
  18500. default: true
  18501. },
  18502. {
  18503. name: "Admirable floof",
  18504. height: math.unit(80, "meters")
  18505. },
  18506. {
  18507. name: "Gentle macro",
  18508. height: math.unit(300, "meters")
  18509. },
  18510. {
  18511. name: "Very careful floof",
  18512. height: math.unit(3200, "meters")
  18513. },
  18514. {
  18515. name: "The mega floof",
  18516. height: math.unit(36000, "meters")
  18517. },
  18518. {
  18519. name: "Giga-fur-Wicker",
  18520. height: math.unit(4800000, "meters")
  18521. },
  18522. {
  18523. name: "Licky world",
  18524. height: math.unit(20000000, "meters")
  18525. },
  18526. {
  18527. name: "Floofy cyan sun",
  18528. height: math.unit(1500000000, "meters")
  18529. },
  18530. {
  18531. name: "Milky Wicker",
  18532. height: math.unit(1000000000000000000000, "meters")
  18533. },
  18534. {
  18535. name: "The observing Wicker",
  18536. height: math.unit(999999999999999999999999999, "meters")
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18542. {
  18543. front: {
  18544. height: math.unit(5 + 9 / 12, "feet"),
  18545. weight: math.unit(150, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/arokha-sieyes/front.svg",
  18549. extra: 1425 / 1284,
  18550. bottom: 0.05
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(5 + 9 / 12, "feet")
  18558. },
  18559. {
  18560. name: "Macro",
  18561. height: math.unit(30, "meters"),
  18562. default: true
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18568. {
  18569. front: {
  18570. height: math.unit(6, "feet"),
  18571. weight: math.unit(180, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/arokh-sieyes/front.svg",
  18575. extra: 1830 / 1769,
  18576. bottom: 0.01
  18577. }
  18578. },
  18579. },
  18580. [
  18581. {
  18582. name: "Normal",
  18583. height: math.unit(6, "feet")
  18584. },
  18585. {
  18586. name: "Macro",
  18587. height: math.unit(30, "meters"),
  18588. default: true
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18594. {
  18595. side: {
  18596. height: math.unit(13 + 1 / 12, "feet"),
  18597. weight: math.unit(8.5, "tonnes"),
  18598. name: "Side",
  18599. image: {
  18600. source: "./media/characters/goldeneye/side.svg",
  18601. extra: 1182 / 778,
  18602. bottom: 0.067
  18603. }
  18604. },
  18605. paw: {
  18606. height: math.unit(3.4, "feet"),
  18607. name: "Paw",
  18608. image: {
  18609. source: "./media/characters/goldeneye/paw.svg"
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(13 + 1 / 12, "feet"),
  18617. default: true
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18623. {
  18624. front: {
  18625. height: math.unit(6 + 1 / 12, "feet"),
  18626. weight: math.unit(210, "lb"),
  18627. name: "Front",
  18628. image: {
  18629. source: "./media/characters/leonardo-lycheborne/front.svg",
  18630. extra: 390 / 365,
  18631. bottom: 0.032
  18632. }
  18633. },
  18634. side: {
  18635. height: math.unit(6 + 1 / 12, "feet"),
  18636. weight: math.unit(210, "lb"),
  18637. name: "Side",
  18638. image: {
  18639. source: "./media/characters/leonardo-lycheborne/side.svg",
  18640. extra: 390 / 365,
  18641. bottom: 0.005
  18642. }
  18643. },
  18644. back: {
  18645. height: math.unit(6 + 1 / 12, "feet"),
  18646. weight: math.unit(210, "lb"),
  18647. name: "Back",
  18648. image: {
  18649. source: "./media/characters/leonardo-lycheborne/back.svg",
  18650. extra: 392 / 366,
  18651. bottom: 0.01
  18652. }
  18653. },
  18654. hand: {
  18655. height: math.unit(1.08, "feet"),
  18656. name: "Hand",
  18657. image: {
  18658. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18659. }
  18660. },
  18661. foot: {
  18662. height: math.unit(1.32, "feet"),
  18663. name: "Foot",
  18664. image: {
  18665. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18666. }
  18667. },
  18668. were: {
  18669. height: math.unit(20, "feet"),
  18670. weight: math.unit(7800, "lb"),
  18671. name: "Were",
  18672. image: {
  18673. source: "./media/characters/leonardo-lycheborne/were.svg",
  18674. extra: 308 / 294,
  18675. bottom: 0.048
  18676. }
  18677. },
  18678. feral: {
  18679. height: math.unit(7.5, "feet"),
  18680. weight: math.unit(600, "lb"),
  18681. name: "Feral",
  18682. image: {
  18683. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18684. extra: 210 / 186,
  18685. bottom: 0.108
  18686. }
  18687. },
  18688. taur: {
  18689. height: math.unit(11, "feet"),
  18690. weight: math.unit(3300, "lb"),
  18691. name: "Taur",
  18692. image: {
  18693. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18694. extra: 320 / 303,
  18695. bottom: 0.025
  18696. }
  18697. },
  18698. barghest: {
  18699. height: math.unit(11, "feet"),
  18700. weight: math.unit(1300, "lb"),
  18701. name: "Barghest",
  18702. image: {
  18703. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18704. extra: 323 / 302,
  18705. bottom: 0.027
  18706. }
  18707. },
  18708. dick: {
  18709. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18710. name: "Dick",
  18711. image: {
  18712. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18713. }
  18714. },
  18715. dickWere: {
  18716. height: math.unit((20) / 3.8, "feet"),
  18717. name: "Dick (Were)",
  18718. image: {
  18719. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(6 + 1 / 12, "feet"),
  18727. default: true
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(10, "feet"),
  18736. weight: math.unit(350, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/jet/front.svg",
  18740. extra: 2050 / 1980,
  18741. bottom: 0.013
  18742. }
  18743. },
  18744. back: {
  18745. height: math.unit(10, "feet"),
  18746. weight: math.unit(350, "lb"),
  18747. name: "Back",
  18748. image: {
  18749. source: "./media/characters/jet/back.svg",
  18750. extra: 2050 / 1980,
  18751. bottom: 0.013
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Micro",
  18758. height: math.unit(6, "inches")
  18759. },
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(10, "feet"),
  18763. default: true
  18764. },
  18765. {
  18766. name: "Macro",
  18767. height: math.unit(100, "feet")
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(15, "feet"),
  18776. weight: math.unit(2800, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/tanarath/front.svg",
  18780. extra: 2392 / 2220,
  18781. bottom: 0.03
  18782. }
  18783. },
  18784. back: {
  18785. height: math.unit(15, "feet"),
  18786. weight: math.unit(2800, "lb"),
  18787. name: "Back",
  18788. image: {
  18789. source: "./media/characters/tanarath/back.svg",
  18790. extra: 2392 / 2220,
  18791. bottom: 0.03
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(15, "feet"),
  18799. default: true
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(7 + 1 / 12, "feet"),
  18808. weight: math.unit(175, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/patty-cattybatty/front.svg",
  18812. extra: 908 / 874,
  18813. bottom: 0.025
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Micro",
  18820. height: math.unit(1, "inch")
  18821. },
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(7 + 1 / 12, "feet")
  18825. },
  18826. {
  18827. name: "Mini Macro",
  18828. height: math.unit(155, "feet")
  18829. },
  18830. {
  18831. name: "Macro",
  18832. height: math.unit(1077, "feet")
  18833. },
  18834. {
  18835. name: "Mega Macro",
  18836. height: math.unit(47650, "feet"),
  18837. default: true
  18838. },
  18839. {
  18840. name: "Giga Macro",
  18841. height: math.unit(440, "miles")
  18842. },
  18843. {
  18844. name: "Tera Macro",
  18845. height: math.unit(8700, "miles")
  18846. },
  18847. {
  18848. name: "Planetary Macro",
  18849. height: math.unit(32700, "miles")
  18850. },
  18851. {
  18852. name: "Solar Macro",
  18853. height: math.unit(550000, "miles")
  18854. },
  18855. {
  18856. name: "Celestial Macro",
  18857. height: math.unit(2.5, "AU")
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18863. {
  18864. front: {
  18865. height: math.unit(4 + 5 / 12, "feet"),
  18866. weight: math.unit(90, "lb"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/cappu/front.svg",
  18870. extra: 1247 / 1152,
  18871. bottom: 0.012
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Normal",
  18878. height: math.unit(4 + 5 / 12, "feet"),
  18879. default: true
  18880. },
  18881. ]
  18882. ))
  18883. characterMakers.push(() => makeCharacter(
  18884. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18885. {
  18886. frontDressed: {
  18887. height: math.unit(70, "cm"),
  18888. weight: math.unit(6, "kg"),
  18889. name: "Front (Dressed)",
  18890. image: {
  18891. source: "./media/characters/sebi/front-dressed.svg",
  18892. extra: 713.5 / 686.5,
  18893. bottom: 0.003
  18894. }
  18895. },
  18896. front: {
  18897. height: math.unit(70, "cm"),
  18898. weight: math.unit(5, "kg"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/sebi/front.svg",
  18902. extra: 713.5 / 686.5,
  18903. bottom: 0.003
  18904. }
  18905. }
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(70, "cm"),
  18911. default: true
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(8, "meters")
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18921. {
  18922. front: {
  18923. height: math.unit(6, "feet"),
  18924. weight: math.unit(150, "lb"),
  18925. name: "Front",
  18926. image: {
  18927. source: "./media/characters/typhek/front.svg",
  18928. extra: 1948 / 1929,
  18929. bottom: 0.025
  18930. }
  18931. },
  18932. side: {
  18933. height: math.unit(6, "feet"),
  18934. weight: math.unit(150, "lb"),
  18935. name: "Side",
  18936. image: {
  18937. source: "./media/characters/typhek/side.svg",
  18938. extra: 2034 / 2010,
  18939. bottom: 0.003
  18940. }
  18941. },
  18942. back: {
  18943. height: math.unit(6, "feet"),
  18944. weight: math.unit(150, "lb"),
  18945. name: "Back",
  18946. image: {
  18947. source: "./media/characters/typhek/back.svg",
  18948. extra: 2005 / 1978,
  18949. bottom: 0.004
  18950. }
  18951. },
  18952. palm: {
  18953. height: math.unit(1.2, "feet"),
  18954. name: "Palm",
  18955. image: {
  18956. source: "./media/characters/typhek/palm.svg"
  18957. }
  18958. },
  18959. fist: {
  18960. height: math.unit(1.1, "feet"),
  18961. name: "Fist",
  18962. image: {
  18963. source: "./media/characters/typhek/fist.svg"
  18964. }
  18965. },
  18966. foot: {
  18967. height: math.unit(1.57, "feet"),
  18968. name: "Foot",
  18969. image: {
  18970. source: "./media/characters/typhek/foot.svg"
  18971. }
  18972. },
  18973. sole: {
  18974. height: math.unit(2.05, "feet"),
  18975. name: "Sole",
  18976. image: {
  18977. source: "./media/characters/typhek/sole.svg"
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Macro",
  18984. height: math.unit(40, "stories"),
  18985. default: true
  18986. },
  18987. {
  18988. name: "Megamacro",
  18989. height: math.unit(1, "mile")
  18990. },
  18991. {
  18992. name: "Gigamacro",
  18993. height: math.unit(4000, "solarradii")
  18994. },
  18995. {
  18996. name: "Universal",
  18997. height: math.unit(1.1, "universes")
  18998. }
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19003. {
  19004. side: {
  19005. height: math.unit(5 + 7 / 12, "feet"),
  19006. weight: math.unit(150, "lb"),
  19007. name: "Side",
  19008. image: {
  19009. source: "./media/characters/kassy/side.svg",
  19010. extra: 1280 / 1225,
  19011. bottom: 0.002
  19012. }
  19013. },
  19014. front: {
  19015. height: math.unit(5 + 7 / 12, "feet"),
  19016. weight: math.unit(150, "lb"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/kassy/front.svg",
  19020. extra: 1280 / 1225,
  19021. bottom: 0.025
  19022. }
  19023. },
  19024. back: {
  19025. height: math.unit(5 + 7 / 12, "feet"),
  19026. weight: math.unit(150, "lb"),
  19027. name: "Back",
  19028. image: {
  19029. source: "./media/characters/kassy/back.svg",
  19030. extra: 1280 / 1225,
  19031. bottom: 0.002
  19032. }
  19033. },
  19034. foot: {
  19035. height: math.unit(1.266, "feet"),
  19036. name: "Foot",
  19037. image: {
  19038. source: "./media/characters/kassy/foot.svg"
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(5 + 7 / 12, "feet")
  19046. },
  19047. {
  19048. name: "Macro",
  19049. height: math.unit(137, "feet"),
  19050. default: true
  19051. },
  19052. {
  19053. name: "Megamacro",
  19054. height: math.unit(1, "mile")
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(6 + 1 / 12, "feet"),
  19063. weight: math.unit(200, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/neil/front.svg",
  19067. extra: 1326 / 1250,
  19068. bottom: 0.023
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(6 + 1 / 12, "feet"),
  19076. default: true
  19077. },
  19078. {
  19079. name: "Macro",
  19080. height: math.unit(200, "feet")
  19081. },
  19082. ]
  19083. ))
  19084. characterMakers.push(() => makeCharacter(
  19085. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19086. {
  19087. front: {
  19088. height: math.unit(5 + 9 / 12, "feet"),
  19089. weight: math.unit(190, "lb"),
  19090. name: "Front",
  19091. image: {
  19092. source: "./media/characters/atticus/front.svg",
  19093. extra: 2934 / 2785,
  19094. bottom: 0.025
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(5 + 9 / 12, "feet"),
  19102. default: true
  19103. },
  19104. {
  19105. name: "Macro",
  19106. height: math.unit(180, "feet")
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19112. {
  19113. side: {
  19114. height: math.unit(9, "feet"),
  19115. weight: math.unit(650, "lb"),
  19116. name: "Side",
  19117. image: {
  19118. source: "./media/characters/milo/side.svg",
  19119. extra: 2644 / 2310,
  19120. bottom: 0.032
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(9, "feet"),
  19128. default: true
  19129. },
  19130. {
  19131. name: "Macro",
  19132. height: math.unit(300, "feet")
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19138. {
  19139. side: {
  19140. height: math.unit(8, "meters"),
  19141. weight: math.unit(90000, "kg"),
  19142. name: "Side",
  19143. image: {
  19144. source: "./media/characters/ijzer/side.svg",
  19145. extra: 2756 / 1600,
  19146. bottom: 0.01
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Small",
  19153. height: math.unit(3, "meters")
  19154. },
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(8, "meters"),
  19158. default: true
  19159. },
  19160. {
  19161. name: "Normal+",
  19162. height: math.unit(10, "meters")
  19163. },
  19164. {
  19165. name: "Bigger",
  19166. height: math.unit(24, "meters")
  19167. },
  19168. {
  19169. name: "Huge",
  19170. height: math.unit(80, "meters")
  19171. },
  19172. ]
  19173. ))
  19174. characterMakers.push(() => makeCharacter(
  19175. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19176. {
  19177. front: {
  19178. height: math.unit(6 + 2 / 12, "feet"),
  19179. weight: math.unit(153, "lb"),
  19180. name: "Front",
  19181. image: {
  19182. source: "./media/characters/luca-cervicum/front.svg",
  19183. extra: 370 / 327,
  19184. bottom: 0.015
  19185. }
  19186. },
  19187. back: {
  19188. height: math.unit(6 + 2 / 12, "feet"),
  19189. weight: math.unit(153, "lb"),
  19190. name: "Back",
  19191. image: {
  19192. source: "./media/characters/luca-cervicum/back.svg",
  19193. extra: 367 / 333,
  19194. bottom: 0.005
  19195. }
  19196. },
  19197. frontGear: {
  19198. height: math.unit(6 + 2 / 12, "feet"),
  19199. weight: math.unit(173, "lb"),
  19200. name: "Front (Gear)",
  19201. image: {
  19202. source: "./media/characters/luca-cervicum/front-gear.svg",
  19203. extra: 377 / 333,
  19204. bottom: 0.006
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(6 + 2 / 12, "feet"),
  19212. default: true
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(6 + 1 / 12, "feet"),
  19221. weight: math.unit(304, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/oliver/front.svg",
  19225. extra: 157 / 143,
  19226. bottom: 0.08
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(6 + 1 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(5 + 7 / 12, "feet"),
  19243. weight: math.unit(140, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/shane/front.svg",
  19247. extra: 304 / 289,
  19248. bottom: 0.005
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(5 + 7 / 12, "feet"),
  19256. default: true
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(5 + 9 / 12, "feet"),
  19265. weight: math.unit(178, "lb"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/shin/front.svg",
  19269. extra: 159 / 151,
  19270. bottom: 0.015
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(5 + 9 / 12, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(5 + 10 / 12, "feet"),
  19287. weight: math.unit(168, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/xerxes/front.svg",
  19291. extra: 282 / 260,
  19292. bottom: 0.045
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(5 + 10 / 12, "feet"),
  19300. default: true
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(6 + 7 / 12, "feet"),
  19309. weight: math.unit(208, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/chaska/front.svg",
  19313. extra: 332 / 319,
  19314. bottom: 0.015
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(6 + 7 / 12, "feet"),
  19322. default: true
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(5 + 8 / 12, "feet"),
  19331. weight: math.unit(208, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/enuk/front.svg",
  19335. extra: 437 / 406,
  19336. bottom: 0.02
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(5 + 8 / 12, "feet"),
  19344. default: true
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19350. {
  19351. front: {
  19352. height: math.unit(5 + 10 / 12, "feet"),
  19353. weight: math.unit(252, "lb"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/bruun/front.svg",
  19357. extra: 197 / 187,
  19358. bottom: 0.012
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(5 + 10 / 12, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(6 + 10 / 12, "feet"),
  19375. weight: math.unit(255, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/alexeev/front.svg",
  19379. extra: 213 / 200,
  19380. bottom: 0.05
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(6 + 10 / 12, "feet"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(2 + 8 / 12, "feet"),
  19397. weight: math.unit(22, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/evelyn/front.svg",
  19401. extra: 208 / 180
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(2 + 8 / 12, "feet"),
  19409. default: true
  19410. },
  19411. ]
  19412. ))
  19413. characterMakers.push(() => makeCharacter(
  19414. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19415. {
  19416. front: {
  19417. height: math.unit(5 + 9 / 12, "feet"),
  19418. weight: math.unit(139, "lb"),
  19419. name: "Front",
  19420. image: {
  19421. source: "./media/characters/inca/front.svg",
  19422. extra: 294 / 291,
  19423. bottom: 0.03
  19424. }
  19425. },
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(5 + 9 / 12, "feet"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(5 + 1 / 12, "feet"),
  19440. weight: math.unit(84, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/magdalene/front.svg",
  19444. extra: 293 / 273
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(5 + 1 / 12, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(6 + 3 / 12, "feet"),
  19461. weight: math.unit(185, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/mera/front.svg",
  19465. extra: 291 / 277,
  19466. bottom: 0.03
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(6 + 3 / 12, "feet"),
  19474. default: true
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(6 + 7 / 12, "feet"),
  19483. weight: math.unit(160, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/ceres/front.svg",
  19487. extra: 1023 / 950,
  19488. bottom: 0.027
  19489. }
  19490. },
  19491. back: {
  19492. height: math.unit(6 + 7 / 12, "feet"),
  19493. weight: math.unit(160, "lb"),
  19494. name: "Back",
  19495. image: {
  19496. source: "./media/characters/ceres/back.svg",
  19497. extra: 1023 / 950
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(6 + 7 / 12, "feet"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(5 + 10 / 12, "feet"),
  19514. weight: math.unit(150, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/kris/front.svg",
  19518. extra: 885 / 803,
  19519. bottom: 0.03
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(5 + 10 / 12, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(7, "feet"),
  19536. weight: math.unit(120, "kg"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/taluthus/front.svg",
  19540. extra: 903 / 833,
  19541. bottom: 0.015
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(7, "feet"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Macro",
  19553. height: math.unit(300, "feet")
  19554. },
  19555. ]
  19556. ))
  19557. characterMakers.push(() => makeCharacter(
  19558. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19559. {
  19560. front: {
  19561. height: math.unit(5 + 9 / 12, "feet"),
  19562. weight: math.unit(145, "lb"),
  19563. name: "Front",
  19564. image: {
  19565. source: "./media/characters/dawn/front.svg",
  19566. extra: 2094 / 2016,
  19567. bottom: 0.025
  19568. }
  19569. },
  19570. back: {
  19571. height: math.unit(5 + 9 / 12, "feet"),
  19572. weight: math.unit(160, "lb"),
  19573. name: "Back",
  19574. image: {
  19575. source: "./media/characters/dawn/back.svg",
  19576. extra: 2112 / 2080,
  19577. bottom: 0.005
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(6 + 7 / 12, "feet"),
  19585. default: true
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19591. {
  19592. anthro: {
  19593. height: math.unit(8 + 3 / 12, "feet"),
  19594. weight: math.unit(450, "lb"),
  19595. name: "Anthro",
  19596. image: {
  19597. source: "./media/characters/arador/anthro.svg",
  19598. extra: 1835 / 1718,
  19599. bottom: 0.025
  19600. }
  19601. },
  19602. feral: {
  19603. height: math.unit(4, "feet"),
  19604. weight: math.unit(200, "lb"),
  19605. name: "Feral",
  19606. image: {
  19607. source: "./media/characters/arador/feral.svg",
  19608. extra: 1683 / 1514,
  19609. bottom: 0.07
  19610. }
  19611. },
  19612. },
  19613. [
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(8 + 3 / 12, "feet")
  19617. },
  19618. {
  19619. name: "Macro",
  19620. height: math.unit(82.5, "feet"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(5 + 10 / 12, "feet"),
  19630. weight: math.unit(125, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/dharsi/front.svg",
  19634. extra: 716 / 630,
  19635. bottom: 0.035
  19636. }
  19637. },
  19638. },
  19639. [
  19640. {
  19641. name: "Nano",
  19642. height: math.unit(100, "nm")
  19643. },
  19644. {
  19645. name: "Micro",
  19646. height: math.unit(2, "inches")
  19647. },
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(5 + 10 / 12, "feet"),
  19651. default: true
  19652. },
  19653. {
  19654. name: "Macro",
  19655. height: math.unit(1000, "feet")
  19656. },
  19657. {
  19658. name: "Megamacro",
  19659. height: math.unit(10, "miles")
  19660. },
  19661. {
  19662. name: "Gigamacro",
  19663. height: math.unit(3000, "miles")
  19664. },
  19665. {
  19666. name: "Teramacro",
  19667. height: math.unit(500000, "miles")
  19668. },
  19669. {
  19670. name: "Teramacro+",
  19671. height: math.unit(30, "galaxies")
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(6, "feet"),
  19680. weight: math.unit(150, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/deathy/front.svg",
  19684. extra: 1552 / 1463,
  19685. bottom: 0.025
  19686. }
  19687. },
  19688. side: {
  19689. height: math.unit(6, "feet"),
  19690. weight: math.unit(150, "lb"),
  19691. name: "Side",
  19692. image: {
  19693. source: "./media/characters/deathy/side.svg",
  19694. extra: 1604 / 1455,
  19695. bottom: 0.025
  19696. }
  19697. },
  19698. back: {
  19699. height: math.unit(6, "feet"),
  19700. weight: math.unit(150, "lb"),
  19701. name: "Back",
  19702. image: {
  19703. source: "./media/characters/deathy/back.svg",
  19704. extra: 1580 / 1463,
  19705. bottom: 0.005
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Micro",
  19712. height: math.unit(5, "millimeters")
  19713. },
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(6 + 5 / 12, "feet"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19723. {
  19724. front: {
  19725. height: math.unit(16, "feet"),
  19726. weight: math.unit(4000, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/juniper/front.svg",
  19730. bottom: 0.04
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Normal",
  19737. height: math.unit(16, "feet"),
  19738. default: true
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19744. {
  19745. front: {
  19746. height: math.unit(6, "feet"),
  19747. weight: math.unit(150, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/hipster/front.svg",
  19751. extra: 1312 / 1209,
  19752. bottom: 0.025
  19753. }
  19754. },
  19755. back: {
  19756. height: math.unit(6, "feet"),
  19757. weight: math.unit(150, "lb"),
  19758. name: "Back",
  19759. image: {
  19760. source: "./media/characters/hipster/back.svg",
  19761. extra: 1281 / 1196,
  19762. bottom: 0.01
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Micro",
  19769. height: math.unit(1, "mm")
  19770. },
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(4, "inches"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Macro",
  19778. height: math.unit(500, "feet")
  19779. },
  19780. {
  19781. name: "Megamacro",
  19782. height: math.unit(1000, "miles")
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19788. {
  19789. front: {
  19790. height: math.unit(6, "feet"),
  19791. weight: math.unit(150, "lb"),
  19792. name: "Front",
  19793. image: {
  19794. source: "./media/characters/tendirmuldr/front.svg",
  19795. extra: 1878 / 1772,
  19796. bottom: 0.015
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Megamacro",
  19803. height: math.unit(1500, "miles"),
  19804. default: true
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19810. {
  19811. front: {
  19812. height: math.unit(14, "feet"),
  19813. weight: math.unit(12000, "lb"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/mort/front.svg",
  19817. extra: 365 / 318,
  19818. bottom: 0.01
  19819. }
  19820. },
  19821. side: {
  19822. height: math.unit(14, "feet"),
  19823. weight: math.unit(12000, "lb"),
  19824. name: "Side",
  19825. image: {
  19826. source: "./media/characters/mort/side.svg",
  19827. extra: 365 / 318,
  19828. bottom: 0.052
  19829. },
  19830. default: true
  19831. },
  19832. back: {
  19833. height: math.unit(14, "feet"),
  19834. weight: math.unit(12000, "lb"),
  19835. name: "Back",
  19836. image: {
  19837. source: "./media/characters/mort/back.svg",
  19838. extra: 371 / 332,
  19839. bottom: 0.18
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(14, "feet"),
  19847. default: true
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19853. {
  19854. front: {
  19855. height: math.unit(8, "feet"),
  19856. weight: math.unit(1, "ton"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/lycoa/front.svg",
  19860. extra: 1875 / 1789,
  19861. bottom: 0.022
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(8, "feet"),
  19866. weight: math.unit(1, "ton"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/lycoa/back.svg",
  19870. extra: 1835 / 1781,
  19871. bottom: 0.03
  19872. }
  19873. },
  19874. head: {
  19875. height: math.unit(2.1, "feet"),
  19876. name: "Head",
  19877. image: {
  19878. source: "./media/characters/lycoa/head.svg"
  19879. }
  19880. },
  19881. tailmaw: {
  19882. height: math.unit(1.9, "feet"),
  19883. name: "Tailmaw",
  19884. image: {
  19885. source: "./media/characters/lycoa/tailmaw.svg"
  19886. }
  19887. },
  19888. tentacles: {
  19889. height: math.unit(2.1, "feet"),
  19890. name: "Tentacles",
  19891. image: {
  19892. source: "./media/characters/lycoa/tentacles.svg"
  19893. }
  19894. },
  19895. dick: {
  19896. height: math.unit(1.73, "feet"),
  19897. name: "Dick",
  19898. image: {
  19899. source: "./media/characters/lycoa/dick.svg"
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(8, "feet"),
  19907. default: true
  19908. },
  19909. {
  19910. name: "Macro",
  19911. height: math.unit(30, "feet")
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19917. {
  19918. front: {
  19919. height: math.unit(4 + 2 / 12, "feet"),
  19920. weight: math.unit(70, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/naldara/front.svg",
  19924. extra: 841 / 720,
  19925. bottom: 0.04
  19926. }
  19927. },
  19928. naga: {
  19929. height: math.unit(23, "feet"),
  19930. weight: math.unit(15000, "kg"),
  19931. name: "Naga",
  19932. image: {
  19933. source: "./media/characters/naldara/naga.svg",
  19934. extra: 3290 / 2959,
  19935. bottom: 124 / 3432
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(4 + 2 / 12, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19949. {
  19950. front: {
  19951. height: math.unit(13 + 7 / 12, "feet"),
  19952. weight: math.unit(1500, "lb"),
  19953. name: "Front",
  19954. image: {
  19955. source: "./media/characters/briar/front.svg",
  19956. extra: 626 / 596,
  19957. bottom: 0.08
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(13 + 7 / 12, "feet"),
  19965. default: true
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19971. {
  19972. side: {
  19973. height: math.unit(10, "feet"),
  19974. weight: math.unit(500, "lb"),
  19975. name: "Side",
  19976. image: {
  19977. source: "./media/characters/vanguard/side.svg",
  19978. extra: 502 / 425,
  19979. bottom: 0.087
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(10, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(7.5, "feet"),
  19996. weight: math.unit(2, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/artemis/front.svg",
  20000. extra: 1192 / 1075,
  20001. bottom: 0.07
  20002. }
  20003. },
  20004. frontNsfw: {
  20005. height: math.unit(7.5, "feet"),
  20006. weight: math.unit(2, "lb"),
  20007. name: "Front (NSFW)",
  20008. image: {
  20009. source: "./media/characters/artemis/front-nsfw.svg",
  20010. extra: 1192 / 1075,
  20011. bottom: 0.07
  20012. }
  20013. },
  20014. frontNsfwer: {
  20015. height: math.unit(7.5, "feet"),
  20016. weight: math.unit(2, "lb"),
  20017. name: "Front (NSFW-er)",
  20018. image: {
  20019. source: "./media/characters/artemis/front-nsfwer.svg",
  20020. extra: 1192 / 1075,
  20021. bottom: 0.07
  20022. }
  20023. },
  20024. side: {
  20025. height: math.unit(7.5, "feet"),
  20026. weight: math.unit(2, "lb"),
  20027. name: "Side",
  20028. image: {
  20029. source: "./media/characters/artemis/side.svg",
  20030. extra: 1192 / 1075,
  20031. bottom: 0.07
  20032. }
  20033. },
  20034. sideNsfw: {
  20035. height: math.unit(7.5, "feet"),
  20036. weight: math.unit(2, "lb"),
  20037. name: "Side (NSFW)",
  20038. image: {
  20039. source: "./media/characters/artemis/side-nsfw.svg",
  20040. extra: 1192 / 1075,
  20041. bottom: 0.07
  20042. }
  20043. },
  20044. sideNsfwer: {
  20045. height: math.unit(7.5, "feet"),
  20046. weight: math.unit(2, "lb"),
  20047. name: "Side (NSFW-er)",
  20048. image: {
  20049. source: "./media/characters/artemis/side-nsfwer.svg",
  20050. extra: 1192 / 1075,
  20051. bottom: 0.07
  20052. }
  20053. },
  20054. maw: {
  20055. height: math.unit(1.1, "feet"),
  20056. name: "Maw",
  20057. image: {
  20058. source: "./media/characters/artemis/maw.svg"
  20059. }
  20060. },
  20061. stomach: {
  20062. height: math.unit(0.95, "feet"),
  20063. name: "Stomach",
  20064. image: {
  20065. source: "./media/characters/artemis/stomach.svg"
  20066. }
  20067. },
  20068. dickCanine: {
  20069. height: math.unit(1, "feet"),
  20070. name: "Dick (Canine)",
  20071. image: {
  20072. source: "./media/characters/artemis/dick-canine.svg"
  20073. }
  20074. },
  20075. dickEquine: {
  20076. height: math.unit(0.85, "feet"),
  20077. name: "Dick (Equine)",
  20078. image: {
  20079. source: "./media/characters/artemis/dick-equine.svg"
  20080. }
  20081. },
  20082. dickExotic: {
  20083. height: math.unit(0.85, "feet"),
  20084. name: "Dick (Exotic)",
  20085. image: {
  20086. source: "./media/characters/artemis/dick-exotic.svg"
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(7.5, "feet"),
  20094. default: true
  20095. },
  20096. {
  20097. name: "Enlarged",
  20098. height: math.unit(12, "feet")
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(5 + 3 / 12, "feet"),
  20107. weight: math.unit(160, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/kira/front.svg",
  20111. extra: 906 / 786,
  20112. bottom: 0.01
  20113. }
  20114. },
  20115. back: {
  20116. height: math.unit(5 + 3 / 12, "feet"),
  20117. weight: math.unit(160, "lb"),
  20118. name: "Back",
  20119. image: {
  20120. source: "./media/characters/kira/back.svg",
  20121. extra: 882 / 757,
  20122. bottom: 0.005
  20123. }
  20124. },
  20125. frontDressed: {
  20126. height: math.unit(5 + 3 / 12, "feet"),
  20127. weight: math.unit(160, "lb"),
  20128. name: "Front (Dressed)",
  20129. image: {
  20130. source: "./media/characters/kira/front-dressed.svg",
  20131. extra: 906 / 786,
  20132. bottom: 0.01
  20133. }
  20134. },
  20135. beans: {
  20136. height: math.unit(0.92, "feet"),
  20137. name: "Beans",
  20138. image: {
  20139. source: "./media/characters/kira/beans.svg"
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(5 + 3 / 12, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(5 + 4 / 12, "feet"),
  20156. weight: math.unit(145, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/scramble/front.svg",
  20160. extra: 763 / 727,
  20161. bottom: 0.05
  20162. }
  20163. },
  20164. back: {
  20165. height: math.unit(5 + 4 / 12, "feet"),
  20166. weight: math.unit(145, "lb"),
  20167. name: "Back",
  20168. image: {
  20169. source: "./media/characters/scramble/back.svg",
  20170. extra: 826 / 737,
  20171. bottom: 0.002
  20172. }
  20173. },
  20174. },
  20175. [
  20176. {
  20177. name: "Normal",
  20178. height: math.unit(5 + 4 / 12, "feet"),
  20179. default: true
  20180. },
  20181. ]
  20182. ))
  20183. characterMakers.push(() => makeCharacter(
  20184. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20185. {
  20186. side: {
  20187. height: math.unit(6 + 2 / 12, "feet"),
  20188. weight: math.unit(190, "lb"),
  20189. name: "Side",
  20190. image: {
  20191. source: "./media/characters/biscuit/side.svg",
  20192. extra: 858 / 791,
  20193. bottom: 0.044
  20194. }
  20195. },
  20196. },
  20197. [
  20198. {
  20199. name: "Normal",
  20200. height: math.unit(6 + 2 / 12, "feet"),
  20201. default: true
  20202. },
  20203. ]
  20204. ))
  20205. characterMakers.push(() => makeCharacter(
  20206. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20207. {
  20208. front: {
  20209. height: math.unit(5 + 2 / 12, "feet"),
  20210. weight: math.unit(120, "lb"),
  20211. name: "Front",
  20212. image: {
  20213. source: "./media/characters/poffin/front.svg",
  20214. extra: 786 / 680,
  20215. bottom: 0.005
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(5 + 2 / 12, "feet"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20229. {
  20230. front: {
  20231. height: math.unit(6 + 3 / 12, "feet"),
  20232. weight: math.unit(519, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/dhari/front.svg",
  20236. extra: 1048 / 946,
  20237. bottom: 0.015
  20238. }
  20239. },
  20240. back: {
  20241. height: math.unit(6 + 3 / 12, "feet"),
  20242. weight: math.unit(519, "lb"),
  20243. name: "Back",
  20244. image: {
  20245. source: "./media/characters/dhari/back.svg",
  20246. extra: 1048 / 931,
  20247. bottom: 0.005
  20248. }
  20249. },
  20250. frontDressed: {
  20251. height: math.unit(6 + 3 / 12, "feet"),
  20252. weight: math.unit(519, "lb"),
  20253. name: "Front (Dressed)",
  20254. image: {
  20255. source: "./media/characters/dhari/front-dressed.svg",
  20256. extra: 1713 / 1546,
  20257. bottom: 0.02
  20258. }
  20259. },
  20260. backDressed: {
  20261. height: math.unit(6 + 3 / 12, "feet"),
  20262. weight: math.unit(519, "lb"),
  20263. name: "Back (Dressed)",
  20264. image: {
  20265. source: "./media/characters/dhari/back-dressed.svg",
  20266. extra: 1699 / 1537,
  20267. bottom: 0.01
  20268. }
  20269. },
  20270. maw: {
  20271. height: math.unit(0.95, "feet"),
  20272. name: "Maw",
  20273. image: {
  20274. source: "./media/characters/dhari/maw.svg"
  20275. }
  20276. },
  20277. wereFront: {
  20278. height: math.unit(12 + 8 / 12, "feet"),
  20279. weight: math.unit(4000, "lb"),
  20280. name: "Front (Were)",
  20281. image: {
  20282. source: "./media/characters/dhari/were-front.svg",
  20283. extra: 1065 / 969,
  20284. bottom: 0.015
  20285. }
  20286. },
  20287. wereBack: {
  20288. height: math.unit(12 + 8 / 12, "feet"),
  20289. weight: math.unit(4000, "lb"),
  20290. name: "Back (Were)",
  20291. image: {
  20292. source: "./media/characters/dhari/were-back.svg",
  20293. extra: 1065 / 969,
  20294. bottom: 0.012
  20295. }
  20296. },
  20297. wereMaw: {
  20298. height: math.unit(0.625, "meters"),
  20299. name: "Maw (Were)",
  20300. image: {
  20301. source: "./media/characters/dhari/were-maw.svg"
  20302. }
  20303. },
  20304. },
  20305. [
  20306. {
  20307. name: "Normal",
  20308. height: math.unit(6 + 3 / 12, "feet"),
  20309. default: true
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20315. {
  20316. anthro: {
  20317. height: math.unit(5 + 7 / 12, "feet"),
  20318. weight: math.unit(175, "lb"),
  20319. name: "Anthro",
  20320. image: {
  20321. source: "./media/characters/rena-dyne/anthro.svg",
  20322. extra: 1849 / 1785,
  20323. bottom: 0.005
  20324. }
  20325. },
  20326. taur: {
  20327. height: math.unit(15 + 6 / 12, "feet"),
  20328. weight: math.unit(8000, "lb"),
  20329. name: "Taur",
  20330. image: {
  20331. source: "./media/characters/rena-dyne/taur.svg",
  20332. extra: 2315 / 2234,
  20333. bottom: 0.033
  20334. }
  20335. },
  20336. },
  20337. [
  20338. {
  20339. name: "Normal",
  20340. height: math.unit(5 + 7 / 12, "feet"),
  20341. default: true
  20342. },
  20343. ]
  20344. ))
  20345. characterMakers.push(() => makeCharacter(
  20346. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20347. {
  20348. front: {
  20349. height: math.unit(8, "feet"),
  20350. weight: math.unit(600, "lb"),
  20351. name: "Front",
  20352. image: {
  20353. source: "./media/characters/weremeep/front.svg",
  20354. extra: 967 / 862,
  20355. bottom: 0.01
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(8, "feet"),
  20363. default: true
  20364. },
  20365. {
  20366. name: "Lorg",
  20367. height: math.unit(12, "feet")
  20368. },
  20369. {
  20370. name: "Oh Lawd She Comin'",
  20371. height: math.unit(20, "feet")
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20377. {
  20378. front: {
  20379. height: math.unit(4, "feet"),
  20380. weight: math.unit(90, "lb"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/reza/front.svg",
  20384. extra: 1183 / 1111,
  20385. bottom: 0.017
  20386. }
  20387. },
  20388. back: {
  20389. height: math.unit(4, "feet"),
  20390. weight: math.unit(90, "lb"),
  20391. name: "Back",
  20392. image: {
  20393. source: "./media/characters/reza/back.svg",
  20394. extra: 1183 / 1111,
  20395. bottom: 0.01
  20396. }
  20397. },
  20398. drake: {
  20399. height: math.unit(30, "feet"),
  20400. weight: math.unit(246960, "lb"),
  20401. name: "Drake",
  20402. image: {
  20403. source: "./media/characters/reza/drake.svg",
  20404. extra: 2350 / 2024,
  20405. bottom: 60.7 / 2403
  20406. }
  20407. },
  20408. },
  20409. [
  20410. {
  20411. name: "Normal",
  20412. height: math.unit(4, "feet"),
  20413. default: true
  20414. },
  20415. ]
  20416. ))
  20417. characterMakers.push(() => makeCharacter(
  20418. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20419. {
  20420. side: {
  20421. height: math.unit(15, "feet"),
  20422. weight: math.unit(14, "tons"),
  20423. name: "Side",
  20424. image: {
  20425. source: "./media/characters/athea/side.svg",
  20426. extra: 960 / 540,
  20427. bottom: 0.003
  20428. }
  20429. },
  20430. sitting: {
  20431. height: math.unit(6 * 2.85, "feet"),
  20432. weight: math.unit(14, "tons"),
  20433. name: "Sitting",
  20434. image: {
  20435. source: "./media/characters/athea/sitting.svg",
  20436. extra: 621 / 581,
  20437. bottom: 0.075
  20438. }
  20439. },
  20440. maw: {
  20441. height: math.unit(7.59498031496063, "feet"),
  20442. name: "Maw",
  20443. image: {
  20444. source: "./media/characters/athea/maw.svg"
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Lap Cat",
  20451. height: math.unit(2.5, "feet")
  20452. },
  20453. {
  20454. name: "Minimacro",
  20455. height: math.unit(15, "feet"),
  20456. default: true
  20457. },
  20458. {
  20459. name: "Macro",
  20460. height: math.unit(120, "feet")
  20461. },
  20462. {
  20463. name: "Macro+",
  20464. height: math.unit(640, "feet")
  20465. },
  20466. {
  20467. name: "Colossus",
  20468. height: math.unit(2.2, "miles")
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(8 + 8 / 12, "feet"),
  20477. weight: math.unit(130, "kg"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/seroko/front.svg",
  20481. extra: 1385 / 1280,
  20482. bottom: 0.025
  20483. }
  20484. },
  20485. back: {
  20486. height: math.unit(8 + 8 / 12, "feet"),
  20487. weight: math.unit(130, "kg"),
  20488. name: "Back",
  20489. image: {
  20490. source: "./media/characters/seroko/back.svg",
  20491. extra: 1369 / 1238,
  20492. bottom: 0.018
  20493. }
  20494. },
  20495. frontDressed: {
  20496. height: math.unit(8 + 8 / 12, "feet"),
  20497. weight: math.unit(130, "kg"),
  20498. name: "Front (Dressed)",
  20499. image: {
  20500. source: "./media/characters/seroko/front-dressed.svg",
  20501. extra: 1366 / 1275,
  20502. bottom: 0.03
  20503. }
  20504. },
  20505. },
  20506. [
  20507. {
  20508. name: "Normal",
  20509. height: math.unit(8 + 8 / 12, "feet"),
  20510. default: true
  20511. },
  20512. ]
  20513. ))
  20514. characterMakers.push(() => makeCharacter(
  20515. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20516. {
  20517. front: {
  20518. height: math.unit(5.5, "feet"),
  20519. weight: math.unit(160, "lb"),
  20520. name: "Front",
  20521. image: {
  20522. source: "./media/characters/quatzi/front.svg",
  20523. extra: 2346 / 2242,
  20524. bottom: 0.015
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(5.5, "feet"),
  20532. default: true
  20533. },
  20534. {
  20535. name: "Big",
  20536. height: math.unit(7.7, "feet")
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(5 + 11 / 12, "feet"),
  20545. weight: math.unit(180, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/sen/front.svg",
  20549. extra: 1321 / 1254,
  20550. bottom: 0.015
  20551. }
  20552. },
  20553. side: {
  20554. height: math.unit(5 + 11 / 12, "feet"),
  20555. weight: math.unit(180, "lb"),
  20556. name: "Side",
  20557. image: {
  20558. source: "./media/characters/sen/side.svg",
  20559. extra: 1321 / 1254,
  20560. bottom: 0.007
  20561. }
  20562. },
  20563. back: {
  20564. height: math.unit(5 + 11 / 12, "feet"),
  20565. weight: math.unit(180, "lb"),
  20566. name: "Back",
  20567. image: {
  20568. source: "./media/characters/sen/back.svg",
  20569. extra: 1321 / 1254
  20570. }
  20571. },
  20572. },
  20573. [
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(5 + 11 / 12, "feet"),
  20577. default: true
  20578. },
  20579. ]
  20580. ))
  20581. characterMakers.push(() => makeCharacter(
  20582. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20583. {
  20584. front: {
  20585. height: math.unit(166.6, "cm"),
  20586. weight: math.unit(66.6, "kg"),
  20587. name: "Front",
  20588. image: {
  20589. source: "./media/characters/fruity/front.svg",
  20590. extra: 1510 / 1386,
  20591. bottom: 0.04
  20592. }
  20593. },
  20594. back: {
  20595. height: math.unit(166.6, "cm"),
  20596. weight: math.unit(66.6, "lb"),
  20597. name: "Back",
  20598. image: {
  20599. source: "./media/characters/fruity/back.svg",
  20600. extra: 1563 / 1435,
  20601. bottom: 0.005
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(166.6, "cm"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Demonic",
  20613. height: math.unit(166.6, "feet")
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20619. {
  20620. side: {
  20621. height: math.unit(10, "feet"),
  20622. weight: math.unit(500, "lb"),
  20623. name: "Side",
  20624. image: {
  20625. source: "./media/characters/zost/side.svg",
  20626. extra: 966 / 880,
  20627. bottom: 0.075
  20628. }
  20629. },
  20630. mawFront: {
  20631. height: math.unit(1.08, "meters"),
  20632. name: "Maw (Front)",
  20633. image: {
  20634. source: "./media/characters/zost/maw-front.svg"
  20635. }
  20636. },
  20637. mawSide: {
  20638. height: math.unit(2.66, "feet"),
  20639. name: "Maw (Side)",
  20640. image: {
  20641. source: "./media/characters/zost/maw-side.svg"
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(10, "feet"),
  20649. default: true
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20655. {
  20656. front: {
  20657. height: math.unit(5 + 4 / 12, "feet"),
  20658. weight: math.unit(120, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/luci/front.svg",
  20662. extra: 1985 / 1884,
  20663. bottom: 0.04
  20664. }
  20665. },
  20666. back: {
  20667. height: math.unit(5 + 4 / 12, "feet"),
  20668. weight: math.unit(120, "lb"),
  20669. name: "Back",
  20670. image: {
  20671. source: "./media/characters/luci/back.svg",
  20672. extra: 1892 / 1791,
  20673. bottom: 0.002
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(5 + 4 / 12, "feet"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(1500, "feet"),
  20690. weight: math.unit(3.8e6, "tons"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/2th/front.svg",
  20694. extra: 3489 / 3350,
  20695. bottom: 0.1
  20696. }
  20697. },
  20698. foot: {
  20699. height: math.unit(461, "feet"),
  20700. name: "Foot",
  20701. image: {
  20702. source: "./media/characters/2th/foot.svg"
  20703. }
  20704. },
  20705. },
  20706. [
  20707. {
  20708. name: "\"Micro\"",
  20709. height: math.unit(15 + 7 / 12, "feet")
  20710. },
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(1500, "feet"),
  20714. default: true
  20715. },
  20716. {
  20717. name: "Macro",
  20718. height: math.unit(5000, "feet")
  20719. },
  20720. {
  20721. name: "Megamacro",
  20722. height: math.unit(15, "miles")
  20723. },
  20724. {
  20725. name: "Gigamacro",
  20726. height: math.unit(4000, "miles")
  20727. },
  20728. {
  20729. name: "Galactic",
  20730. height: math.unit(50, "AU")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(5 + 6 / 12, "feet"),
  20739. weight: math.unit(220, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/amethyst/front.svg",
  20743. extra: 2078 / 2040,
  20744. bottom: 0.045
  20745. }
  20746. },
  20747. back: {
  20748. height: math.unit(5 + 6 / 12, "feet"),
  20749. weight: math.unit(220, "lb"),
  20750. name: "Back",
  20751. image: {
  20752. source: "./media/characters/amethyst/back.svg",
  20753. extra: 2021 / 1989,
  20754. bottom: 0.02
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(5 + 6 / 12, "feet"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20768. {
  20769. front: {
  20770. height: math.unit(4 + 11 / 12, "feet"),
  20771. weight: math.unit(120, "lb"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/yumi-akiyama/front.svg",
  20775. extra: 1327 / 1235,
  20776. bottom: 0.02
  20777. }
  20778. },
  20779. back: {
  20780. height: math.unit(4 + 11 / 12, "feet"),
  20781. weight: math.unit(120, "lb"),
  20782. name: "Back",
  20783. image: {
  20784. source: "./media/characters/yumi-akiyama/back.svg",
  20785. extra: 1287 / 1245,
  20786. bottom: 0.002
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Galactic",
  20793. height: math.unit(50, "galaxies"),
  20794. default: true
  20795. },
  20796. {
  20797. name: "Universal",
  20798. height: math.unit(100, "universes")
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20804. {
  20805. front: {
  20806. height: math.unit(8, "feet"),
  20807. weight: math.unit(500, "lb"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/rifter-yrmori/front.svg",
  20811. extra: 1180 / 1125,
  20812. bottom: 0.02
  20813. }
  20814. },
  20815. back: {
  20816. height: math.unit(8, "feet"),
  20817. weight: math.unit(500, "lb"),
  20818. name: "Back",
  20819. image: {
  20820. source: "./media/characters/rifter-yrmori/back.svg",
  20821. extra: 1190 / 1145,
  20822. bottom: 0.001
  20823. }
  20824. },
  20825. wings: {
  20826. height: math.unit(7.75, "feet"),
  20827. weight: math.unit(500, "lb"),
  20828. name: "Wings",
  20829. image: {
  20830. source: "./media/characters/rifter-yrmori/wings.svg",
  20831. extra: 1357 / 1285
  20832. }
  20833. },
  20834. maw: {
  20835. height: math.unit(0.8, "feet"),
  20836. name: "Maw",
  20837. image: {
  20838. source: "./media/characters/rifter-yrmori/maw.svg"
  20839. }
  20840. },
  20841. mawfront: {
  20842. height: math.unit(1.45, "feet"),
  20843. name: "Maw (Front)",
  20844. image: {
  20845. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(8, "feet"),
  20853. default: true
  20854. },
  20855. {
  20856. name: "Macro",
  20857. height: math.unit(42, "meters")
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20863. {
  20864. were: {
  20865. height: math.unit(25 + 6 / 12, "feet"),
  20866. weight: math.unit(10000, "lb"),
  20867. name: "Were",
  20868. image: {
  20869. source: "./media/characters/tahajin/were.svg",
  20870. extra: 801 / 770,
  20871. bottom: 0.042
  20872. }
  20873. },
  20874. aquatic: {
  20875. height: math.unit(6 + 4 / 12, "feet"),
  20876. weight: math.unit(160, "lb"),
  20877. name: "Aquatic",
  20878. image: {
  20879. source: "./media/characters/tahajin/aquatic.svg",
  20880. extra: 572 / 542,
  20881. bottom: 0.04
  20882. }
  20883. },
  20884. chow: {
  20885. height: math.unit(8 + 11 / 12, "feet"),
  20886. weight: math.unit(450, "lb"),
  20887. name: "Chow",
  20888. image: {
  20889. source: "./media/characters/tahajin/chow.svg",
  20890. extra: 660 / 640,
  20891. bottom: 0.015
  20892. }
  20893. },
  20894. demiNaga: {
  20895. height: math.unit(6 + 8 / 12, "feet"),
  20896. weight: math.unit(300, "lb"),
  20897. name: "Demi Naga",
  20898. image: {
  20899. source: "./media/characters/tahajin/demi-naga.svg",
  20900. extra: 643 / 615,
  20901. bottom: 0.1
  20902. }
  20903. },
  20904. data: {
  20905. height: math.unit(5, "inches"),
  20906. weight: math.unit(0.1, "lb"),
  20907. name: "Data",
  20908. image: {
  20909. source: "./media/characters/tahajin/data.svg"
  20910. }
  20911. },
  20912. fluu: {
  20913. height: math.unit(5 + 7 / 12, "feet"),
  20914. weight: math.unit(140, "lb"),
  20915. name: "Fluu",
  20916. image: {
  20917. source: "./media/characters/tahajin/fluu.svg",
  20918. extra: 628 / 592,
  20919. bottom: 0.02
  20920. }
  20921. },
  20922. starWarrior: {
  20923. height: math.unit(4 + 5 / 12, "feet"),
  20924. weight: math.unit(50, "lb"),
  20925. name: "Star Warrior",
  20926. image: {
  20927. source: "./media/characters/tahajin/star-warrior.svg"
  20928. }
  20929. },
  20930. },
  20931. [
  20932. {
  20933. name: "Normal",
  20934. height: math.unit(25 + 6 / 12, "feet"),
  20935. default: true
  20936. },
  20937. ]
  20938. ))
  20939. characterMakers.push(() => makeCharacter(
  20940. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20941. {
  20942. front: {
  20943. height: math.unit(8, "feet"),
  20944. weight: math.unit(350, "lb"),
  20945. name: "Front",
  20946. image: {
  20947. source: "./media/characters/gabira/front.svg",
  20948. extra: 608 / 580,
  20949. bottom: 0.03
  20950. }
  20951. },
  20952. back: {
  20953. height: math.unit(8, "feet"),
  20954. weight: math.unit(350, "lb"),
  20955. name: "Back",
  20956. image: {
  20957. source: "./media/characters/gabira/back.svg",
  20958. extra: 608 / 580,
  20959. bottom: 0.03
  20960. }
  20961. },
  20962. },
  20963. [
  20964. {
  20965. name: "Normal",
  20966. height: math.unit(8, "feet"),
  20967. default: true
  20968. },
  20969. ]
  20970. ))
  20971. characterMakers.push(() => makeCharacter(
  20972. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20973. {
  20974. front: {
  20975. height: math.unit(5 + 3 / 12, "feet"),
  20976. weight: math.unit(137, "lb"),
  20977. name: "Front",
  20978. image: {
  20979. source: "./media/characters/sasha-katraine/front.svg",
  20980. bottom: 0.045
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Micro",
  20987. height: math.unit(5, "inches")
  20988. },
  20989. {
  20990. name: "Normal",
  20991. height: math.unit(5 + 3 / 12, "feet"),
  20992. default: true
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20998. {
  20999. side: {
  21000. height: math.unit(4, "inches"),
  21001. weight: math.unit(200, "grams"),
  21002. name: "Side",
  21003. image: {
  21004. source: "./media/characters/der/side.svg",
  21005. extra: 719 / 400,
  21006. bottom: 30.6 / 749.9187
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "Micro",
  21013. height: math.unit(4, "inches"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21020. {
  21021. side: {
  21022. height: math.unit(30, "meters"),
  21023. weight: math.unit(700, "tonnes"),
  21024. name: "Side",
  21025. image: {
  21026. source: "./media/characters/fixerdragon/side.svg",
  21027. extra: (1293.0514 - 116.03) / 1106.86,
  21028. bottom: 116.03 / 1293.0514
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Planck",
  21035. height: math.unit(1.6e-35, "meters")
  21036. },
  21037. {
  21038. name: "Micro",
  21039. height: math.unit(0.4, "meters")
  21040. },
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(30, "meters"),
  21044. default: true
  21045. },
  21046. {
  21047. name: "Megamacro",
  21048. height: math.unit(1.2, "megameters")
  21049. },
  21050. {
  21051. name: "Teramacro",
  21052. height: math.unit(130, "terameters")
  21053. },
  21054. {
  21055. name: "Yottamacro",
  21056. height: math.unit(6200, "yottameters")
  21057. },
  21058. ]
  21059. ));
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(8, "feet"),
  21065. weight: math.unit(250, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/kite/front.svg",
  21069. extra: 2796 / 2659,
  21070. bottom: 0.002
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(8, "feet"),
  21078. default: true
  21079. },
  21080. {
  21081. name: "Macro",
  21082. height: math.unit(360, "feet")
  21083. },
  21084. {
  21085. name: "Megamacro",
  21086. height: math.unit(1500, "feet")
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21092. {
  21093. front: {
  21094. height: math.unit(5 + 10 / 12, "feet"),
  21095. weight: math.unit(150, "lb"),
  21096. name: "Front",
  21097. image: {
  21098. source: "./media/characters/poojawa-vynar/front.svg",
  21099. extra: (1506.1547 - 55) / 1356.6,
  21100. bottom: 55 / 1506.1547
  21101. }
  21102. },
  21103. frontTailless: {
  21104. height: math.unit(5 + 10 / 12, "feet"),
  21105. weight: math.unit(150, "lb"),
  21106. name: "Front (Tailless)",
  21107. image: {
  21108. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21109. extra: (1506.1547 - 55) / 1356.6,
  21110. bottom: 55 / 1506.1547
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Normal",
  21117. height: math.unit(5 + 10 / 12, "feet"),
  21118. default: true
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21124. {
  21125. front: {
  21126. height: math.unit(293, "meters"),
  21127. weight: math.unit(70400, "tons"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/violette/front.svg",
  21131. extra: 1227 / 1180,
  21132. bottom: 0.005
  21133. }
  21134. },
  21135. back: {
  21136. height: math.unit(293, "meters"),
  21137. weight: math.unit(70400, "tons"),
  21138. name: "Back",
  21139. image: {
  21140. source: "./media/characters/violette/back.svg",
  21141. extra: 1227 / 1180,
  21142. bottom: 0.005
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Macro",
  21149. height: math.unit(293, "meters"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(1050, "feet"),
  21159. weight: math.unit(200000, "tons"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/alessandra/front.svg",
  21163. extra: 960 / 912,
  21164. bottom: 0.06
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Macro",
  21171. height: math.unit(1050, "feet")
  21172. },
  21173. {
  21174. name: "Macro+",
  21175. height: math.unit(900, "meters"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(5, "feet"),
  21185. weight: math.unit(187, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/person/front.svg",
  21189. extra: 3087 / 2945,
  21190. bottom: 91 / 3181
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Micro",
  21197. height: math.unit(3, "inches")
  21198. },
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(5, "feet"),
  21202. default: true
  21203. },
  21204. {
  21205. name: "Macro",
  21206. height: math.unit(90, "feet")
  21207. },
  21208. {
  21209. name: "Max Size",
  21210. height: math.unit(280, "feet")
  21211. },
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21216. {
  21217. front: {
  21218. height: math.unit(4.5, "meters"),
  21219. weight: math.unit(3200, "lb"),
  21220. name: "Front",
  21221. image: {
  21222. source: "./media/characters/ty/front.svg",
  21223. extra: 1038 / 960,
  21224. bottom: 31.156 / 1068
  21225. }
  21226. },
  21227. back: {
  21228. height: math.unit(4.5, "meters"),
  21229. weight: math.unit(3200, "lb"),
  21230. name: "Back",
  21231. image: {
  21232. source: "./media/characters/ty/back.svg",
  21233. extra: 1044 / 966,
  21234. bottom: 7.48 / 1049
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(4.5, "meters"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21248. {
  21249. front: {
  21250. height: math.unit(5 + 4 / 12, "feet"),
  21251. weight: math.unit(115, "lb"),
  21252. name: "Front",
  21253. image: {
  21254. source: "./media/characters/rocky/front.svg",
  21255. extra: 1012 / 975,
  21256. bottom: 54 / 1066
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(5 + 4 / 12, "feet"),
  21264. default: true
  21265. },
  21266. ]
  21267. ))
  21268. characterMakers.push(() => makeCharacter(
  21269. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21270. {
  21271. upright: {
  21272. height: math.unit(6, "meters"),
  21273. weight: math.unit(4000, "kg"),
  21274. name: "Upright",
  21275. image: {
  21276. source: "./media/characters/ruin/upright.svg",
  21277. extra: 668 / 661,
  21278. bottom: 42 / 799.8396
  21279. }
  21280. },
  21281. },
  21282. [
  21283. {
  21284. name: "Normal",
  21285. height: math.unit(6, "meters"),
  21286. default: true
  21287. },
  21288. ]
  21289. ))
  21290. characterMakers.push(() => makeCharacter(
  21291. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21292. {
  21293. front: {
  21294. height: math.unit(5, "feet"),
  21295. weight: math.unit(106, "lb"),
  21296. name: "Front",
  21297. image: {
  21298. source: "./media/characters/robin/front.svg",
  21299. extra: 862 / 799,
  21300. bottom: 42.4 / 914.8856
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(5, "feet"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21314. {
  21315. side: {
  21316. height: math.unit(3, "feet"),
  21317. weight: math.unit(225, "lb"),
  21318. name: "Side",
  21319. image: {
  21320. source: "./media/characters/saian/side.svg",
  21321. extra: 566 / 356,
  21322. bottom: 79.7 / 643
  21323. }
  21324. },
  21325. maw: {
  21326. height: math.unit(2.85, "feet"),
  21327. name: "Maw",
  21328. image: {
  21329. source: "./media/characters/saian/maw.svg"
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(3, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21343. {
  21344. side: {
  21345. height: math.unit(8, "feet"),
  21346. weight: math.unit(300, "lb"),
  21347. name: "Side",
  21348. image: {
  21349. source: "./media/characters/equus-silvermane/side.svg",
  21350. extra: 2176 / 2050,
  21351. bottom: 65.7 / 2245
  21352. }
  21353. },
  21354. front: {
  21355. height: math.unit(8, "feet"),
  21356. weight: math.unit(300, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/equus-silvermane/front.svg",
  21360. extra: 4633 / 4400,
  21361. bottom: 71.3 / 4706.915
  21362. }
  21363. },
  21364. sideStepping: {
  21365. height: math.unit(8, "feet"),
  21366. weight: math.unit(300, "lb"),
  21367. name: "Side (Stepping)",
  21368. image: {
  21369. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21370. extra: 1968 / 1860,
  21371. bottom: 16.4 / 1989
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(8, "feet")
  21379. },
  21380. {
  21381. name: "Minimacro",
  21382. height: math.unit(75, "feet"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Macro",
  21387. height: math.unit(150, "feet")
  21388. },
  21389. {
  21390. name: "Macro+",
  21391. height: math.unit(1000, "feet")
  21392. },
  21393. {
  21394. name: "Megamacro",
  21395. height: math.unit(1, "mile")
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21401. {
  21402. side: {
  21403. height: math.unit(20, "feet"),
  21404. weight: math.unit(30000, "kg"),
  21405. name: "Side",
  21406. image: {
  21407. source: "./media/characters/windar/side.svg",
  21408. extra: 1491 / 1248,
  21409. bottom: 82.56 / 1568
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(20, "feet"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21423. {
  21424. side: {
  21425. height: math.unit(15.66, "feet"),
  21426. weight: math.unit(150, "lb"),
  21427. name: "Side",
  21428. image: {
  21429. source: "./media/characters/melody/side.svg",
  21430. extra: 1097 / 944,
  21431. bottom: 11.8 / 1109
  21432. }
  21433. },
  21434. sideOutfit: {
  21435. height: math.unit(15.66, "feet"),
  21436. weight: math.unit(150, "lb"),
  21437. name: "Side (Outfit)",
  21438. image: {
  21439. source: "./media/characters/melody/side-outfit.svg",
  21440. extra: 1097 / 944,
  21441. bottom: 11.8 / 1109
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(15.66, "feet"),
  21449. default: true
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21455. {
  21456. front: {
  21457. height: math.unit(8, "feet"),
  21458. weight: math.unit(325, "lb"),
  21459. name: "Front",
  21460. image: {
  21461. source: "./media/characters/windera/front.svg",
  21462. extra: 3180 / 2845,
  21463. bottom: 178 / 3365
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(8, "feet"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21477. {
  21478. front: {
  21479. height: math.unit(28.75, "feet"),
  21480. weight: math.unit(2000, "kg"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/sonear/front.svg",
  21484. extra: 1041.1 / 964.9,
  21485. bottom: 53.7 / 1096.6
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(28.75, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21499. {
  21500. side: {
  21501. height: math.unit(25.5, "feet"),
  21502. weight: math.unit(23000, "kg"),
  21503. name: "Side",
  21504. image: {
  21505. source: "./media/characters/kanara/side.svg"
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Normal",
  21512. height: math.unit(25.5, "feet"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21519. {
  21520. side: {
  21521. height: math.unit(10, "feet"),
  21522. weight: math.unit(1000, "kg"),
  21523. name: "Side",
  21524. image: {
  21525. source: "./media/characters/ereus/side.svg",
  21526. extra: 1157 / 959,
  21527. bottom: 153 / 1312.5
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(10, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21541. {
  21542. side: {
  21543. height: math.unit(4.5, "feet"),
  21544. weight: math.unit(500, "lb"),
  21545. name: "Side",
  21546. image: {
  21547. source: "./media/characters/e-ter/side.svg",
  21548. extra: 1550 / 1248,
  21549. bottom: 146 / 1694
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(4.5, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21563. {
  21564. side: {
  21565. height: math.unit(9.7, "feet"),
  21566. weight: math.unit(4000, "kg"),
  21567. name: "Side",
  21568. image: {
  21569. source: "./media/characters/yamie/side.svg"
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Normal",
  21576. height: math.unit(9.7, "feet"),
  21577. default: true
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21583. {
  21584. front: {
  21585. height: math.unit(50, "feet"),
  21586. weight: math.unit(50000, "kg"),
  21587. name: "Front",
  21588. image: {
  21589. source: "./media/characters/anders/front.svg",
  21590. extra: 570 / 539,
  21591. bottom: 14.7 / 586.7
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Large",
  21598. height: math.unit(50, "feet")
  21599. },
  21600. {
  21601. name: "Macro",
  21602. height: math.unit(2000, "feet"),
  21603. default: true
  21604. },
  21605. {
  21606. name: "Megamacro",
  21607. height: math.unit(12, "miles")
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21613. {
  21614. front: {
  21615. height: math.unit(7 + 2 / 12, "feet"),
  21616. weight: math.unit(300, "lb"),
  21617. name: "Front",
  21618. image: {
  21619. source: "./media/characters/reban/front.svg",
  21620. extra: 516 / 487,
  21621. bottom: 42.82 / 558.356
  21622. }
  21623. },
  21624. dick: {
  21625. height: math.unit(7 / 5, "feet"),
  21626. name: "Dick",
  21627. image: {
  21628. source: "./media/characters/reban/dick.svg"
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Natural Height",
  21635. height: math.unit(7 + 2 / 12, "feet")
  21636. },
  21637. {
  21638. name: "Macro",
  21639. height: math.unit(500, "feet"),
  21640. default: true
  21641. },
  21642. {
  21643. name: "Canon Height",
  21644. height: math.unit(50, "AU")
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21650. {
  21651. front: {
  21652. height: math.unit(6, "feet"),
  21653. weight: math.unit(150, "lb"),
  21654. name: "Front",
  21655. image: {
  21656. source: "./media/characters/terrance-keayes/front.svg",
  21657. extra: 1.005,
  21658. bottom: 151 / 1615
  21659. }
  21660. },
  21661. side: {
  21662. height: math.unit(6, "feet"),
  21663. weight: math.unit(150, "lb"),
  21664. name: "Side",
  21665. image: {
  21666. source: "./media/characters/terrance-keayes/side.svg",
  21667. extra: 1.005,
  21668. bottom: 129.4 / 1544
  21669. }
  21670. },
  21671. back: {
  21672. height: math.unit(6, "feet"),
  21673. weight: math.unit(150, "lb"),
  21674. name: "Back",
  21675. image: {
  21676. source: "./media/characters/terrance-keayes/back.svg",
  21677. extra: 1.005,
  21678. bottom: 58.4 / 1557.3
  21679. }
  21680. },
  21681. dick: {
  21682. height: math.unit(6 * 0.208, "feet"),
  21683. name: "Dick",
  21684. image: {
  21685. source: "./media/characters/terrance-keayes/dick.svg"
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Canon Height",
  21692. height: math.unit(35, "miles"),
  21693. default: true
  21694. },
  21695. ]
  21696. ))
  21697. characterMakers.push(() => makeCharacter(
  21698. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21699. {
  21700. front: {
  21701. height: math.unit(6, "feet"),
  21702. weight: math.unit(150, "lb"),
  21703. name: "Front",
  21704. image: {
  21705. source: "./media/characters/ofelia/front.svg",
  21706. extra: 546 / 541,
  21707. bottom: 39 / 583
  21708. }
  21709. },
  21710. back: {
  21711. height: math.unit(6, "feet"),
  21712. weight: math.unit(150, "lb"),
  21713. name: "Back",
  21714. image: {
  21715. source: "./media/characters/ofelia/back.svg",
  21716. extra: 564 / 559.5,
  21717. bottom: 8.69 / 573.02
  21718. }
  21719. },
  21720. maw: {
  21721. height: math.unit(1, "feet"),
  21722. name: "Maw",
  21723. image: {
  21724. source: "./media/characters/ofelia/maw.svg"
  21725. }
  21726. },
  21727. foot: {
  21728. height: math.unit(1.949, "feet"),
  21729. name: "Foot",
  21730. image: {
  21731. source: "./media/characters/ofelia/foot.svg"
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Canon Height",
  21738. height: math.unit(2000, "miles"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(6, "feet"),
  21748. weight: math.unit(150, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/samuel/front.svg",
  21752. extra: 265 / 258,
  21753. bottom: 2 / 266.1566
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Macro",
  21760. height: math.unit(100, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Full Size",
  21765. height: math.unit(1000, "miles")
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(6, "feet"),
  21774. weight: math.unit(300, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/beishir-kiel/front.svg",
  21778. extra: 569 / 547,
  21779. bottom: 41.9 / 609
  21780. }
  21781. },
  21782. maw: {
  21783. height: math.unit(6 * 0.202, "feet"),
  21784. name: "Maw",
  21785. image: {
  21786. source: "./media/characters/beishir-kiel/maw.svg"
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Macro",
  21793. height: math.unit(300, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(5 + 8 / 12, "feet"),
  21803. weight: math.unit(120, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/logan-grey/front.svg",
  21807. extra: 2539 / 2393,
  21808. bottom: 97.6 / 2636.37
  21809. }
  21810. },
  21811. frontAlt: {
  21812. height: math.unit(5 + 8 / 12, "feet"),
  21813. weight: math.unit(120, "lb"),
  21814. name: "Front (Alt)",
  21815. image: {
  21816. source: "./media/characters/logan-grey/front-alt.svg",
  21817. extra: 958 / 893,
  21818. bottom: 15 / 970.768
  21819. }
  21820. },
  21821. back: {
  21822. height: math.unit(5 + 8 / 12, "feet"),
  21823. weight: math.unit(120, "lb"),
  21824. name: "Back",
  21825. image: {
  21826. source: "./media/characters/logan-grey/back.svg",
  21827. extra: 958 / 893,
  21828. bottom: 2.1881 / 970.9788
  21829. }
  21830. },
  21831. dick: {
  21832. height: math.unit(1.437, "feet"),
  21833. name: "Dick",
  21834. image: {
  21835. source: "./media/characters/logan-grey/dick.svg"
  21836. }
  21837. },
  21838. },
  21839. [
  21840. {
  21841. name: "Normal",
  21842. height: math.unit(5 + 8 / 12, "feet")
  21843. },
  21844. {
  21845. name: "The 500 Foot Femboy",
  21846. height: math.unit(500, "feet"),
  21847. default: true
  21848. },
  21849. {
  21850. name: "Megmacro",
  21851. height: math.unit(20, "miles")
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21857. {
  21858. front: {
  21859. height: math.unit(8 + 2 / 12, "feet"),
  21860. weight: math.unit(275, "lb"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/draganta/front.svg",
  21864. extra: 1177 / 1135,
  21865. bottom: 33.46 / 1212.1
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(8 + 6 / 12, "feet"),
  21873. default: true
  21874. },
  21875. {
  21876. name: "Macro",
  21877. height: math.unit(150, "feet")
  21878. },
  21879. {
  21880. name: "Megamacro",
  21881. height: math.unit(1000, "miles")
  21882. },
  21883. ]
  21884. ))
  21885. characterMakers.push(() => makeCharacter(
  21886. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21887. {
  21888. front: {
  21889. height: math.unit(1.72, "m"),
  21890. weight: math.unit(80, "lb"),
  21891. name: "Front",
  21892. image: {
  21893. source: "./media/characters/voski/front.svg",
  21894. extra: 2076.22 / 2022.4,
  21895. bottom: 102.7 / 2177.3866
  21896. }
  21897. },
  21898. frontNsfw: {
  21899. height: math.unit(1.72, "m"),
  21900. weight: math.unit(80, "lb"),
  21901. name: "Front (NSFW)",
  21902. image: {
  21903. source: "./media/characters/voski/front-nsfw.svg",
  21904. extra: 2076.22 / 2022.4,
  21905. bottom: 102.7 / 2177.3866
  21906. }
  21907. },
  21908. back: {
  21909. height: math.unit(1.72, "m"),
  21910. weight: math.unit(80, "lb"),
  21911. name: "Back",
  21912. image: {
  21913. source: "./media/characters/voski/back.svg",
  21914. extra: 2104 / 2051,
  21915. bottom: 10.45 / 2113.63
  21916. }
  21917. },
  21918. },
  21919. [
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(1.72, "m")
  21923. },
  21924. {
  21925. name: "Macro",
  21926. height: math.unit(55, "m"),
  21927. default: true
  21928. },
  21929. {
  21930. name: "Macro+",
  21931. height: math.unit(300, "m")
  21932. },
  21933. {
  21934. name: "Macro++",
  21935. height: math.unit(700, "m")
  21936. },
  21937. {
  21938. name: "Macro+++",
  21939. height: math.unit(4500, "m")
  21940. },
  21941. {
  21942. name: "Macro++++",
  21943. height: math.unit(45, "km")
  21944. },
  21945. {
  21946. name: "Macro+++++",
  21947. height: math.unit(1220, "km")
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(2.3, "m"),
  21956. weight: math.unit(304, "kg"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/icowom-lee/front.svg",
  21960. extra: 985 / 955,
  21961. bottom: 25.4 / 1012
  21962. }
  21963. },
  21964. fronttentacles: {
  21965. height: math.unit(2.3, "m"),
  21966. weight: math.unit(304, "kg"),
  21967. name: "Front-tentacles",
  21968. image: {
  21969. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21970. extra: 985 / 955,
  21971. bottom: 25.4 / 1012
  21972. }
  21973. },
  21974. back: {
  21975. height: math.unit(2.3, "m"),
  21976. weight: math.unit(304, "kg"),
  21977. name: "Back",
  21978. image: {
  21979. source: "./media/characters/icowom-lee/back.svg",
  21980. extra: 975 / 954,
  21981. bottom: 9.5 / 985
  21982. }
  21983. },
  21984. backtentacles: {
  21985. height: math.unit(2.3, "m"),
  21986. weight: math.unit(304, "kg"),
  21987. name: "Back-tentacles",
  21988. image: {
  21989. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21990. extra: 975 / 954,
  21991. bottom: 9.5 / 985
  21992. }
  21993. },
  21994. frontDressed: {
  21995. height: math.unit(2.3, "m"),
  21996. weight: math.unit(304, "kg"),
  21997. name: "Front (Dressed)",
  21998. image: {
  21999. source: "./media/characters/icowom-lee/front-dressed.svg",
  22000. extra: 3076 / 2933,
  22001. bottom: 51.4 / 3125.1889
  22002. }
  22003. },
  22004. rump: {
  22005. height: math.unit(0.776, "meters"),
  22006. name: "Rump",
  22007. image: {
  22008. source: "./media/characters/icowom-lee/rump.svg"
  22009. }
  22010. },
  22011. genitals: {
  22012. height: math.unit(0.78, "meters"),
  22013. name: "Genitals",
  22014. image: {
  22015. source: "./media/characters/icowom-lee/genitals.svg"
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(2.3, "meters"),
  22023. default: true
  22024. },
  22025. {
  22026. name: "Macro",
  22027. height: math.unit(94, "meters"),
  22028. default: true
  22029. },
  22030. ]
  22031. ))
  22032. characterMakers.push(() => makeCharacter(
  22033. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22034. {
  22035. front: {
  22036. height: math.unit(22, "meters"),
  22037. weight: math.unit(21000, "kg"),
  22038. name: "Front",
  22039. image: {
  22040. source: "./media/characters/shock-diamond/front.svg",
  22041. extra: 2204 / 2053,
  22042. bottom: 65 / 2239.47
  22043. }
  22044. },
  22045. frontNude: {
  22046. height: math.unit(22, "meters"),
  22047. weight: math.unit(21000, "kg"),
  22048. name: "Front (Nude)",
  22049. image: {
  22050. source: "./media/characters/shock-diamond/front-nude.svg",
  22051. extra: 2514 / 2285,
  22052. bottom: 13 / 2527.56
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Normal",
  22059. height: math.unit(3, "meters")
  22060. },
  22061. {
  22062. name: "Macro",
  22063. height: math.unit(22, "meters"),
  22064. default: true
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(5 + 4 / 12, "feet"),
  22073. weight: math.unit(120, "lb"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/rory/front.svg",
  22077. extra: 589 / 556,
  22078. bottom: 45.7 / 635.76
  22079. }
  22080. },
  22081. frontNude: {
  22082. height: math.unit(5 + 4 / 12, "feet"),
  22083. weight: math.unit(120, "lb"),
  22084. name: "Front (Nude)",
  22085. image: {
  22086. source: "./media/characters/rory/front-nude.svg",
  22087. extra: 589 / 556,
  22088. bottom: 45.7 / 635.76
  22089. }
  22090. },
  22091. side: {
  22092. height: math.unit(5 + 4 / 12, "feet"),
  22093. weight: math.unit(120, "lb"),
  22094. name: "Side",
  22095. image: {
  22096. source: "./media/characters/rory/side.svg",
  22097. extra: 597 / 564,
  22098. bottom: 55 / 653
  22099. }
  22100. },
  22101. back: {
  22102. height: math.unit(5 + 4 / 12, "feet"),
  22103. weight: math.unit(120, "lb"),
  22104. name: "Back",
  22105. image: {
  22106. source: "./media/characters/rory/back.svg",
  22107. extra: 620 / 585,
  22108. bottom: 8.86 / 630.43
  22109. }
  22110. },
  22111. dick: {
  22112. height: math.unit(0.86, "feet"),
  22113. name: "Dick",
  22114. image: {
  22115. source: "./media/characters/rory/dick.svg"
  22116. }
  22117. },
  22118. },
  22119. [
  22120. {
  22121. name: "Normal",
  22122. height: math.unit(5 + 4 / 12, "feet"),
  22123. default: true
  22124. },
  22125. {
  22126. name: "Macro",
  22127. height: math.unit(100, "feet")
  22128. },
  22129. {
  22130. name: "Macro+",
  22131. height: math.unit(140, "feet")
  22132. },
  22133. {
  22134. name: "Macro++",
  22135. height: math.unit(300, "feet")
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(5 + 9 / 12, "feet"),
  22144. weight: math.unit(190, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/sprisk/front.svg",
  22148. extra: 1225 / 1180,
  22149. bottom: 42.7 / 1266.4
  22150. }
  22151. },
  22152. frontNsfw: {
  22153. height: math.unit(5 + 9 / 12, "feet"),
  22154. weight: math.unit(190, "lb"),
  22155. name: "Front (NSFW)",
  22156. image: {
  22157. source: "./media/characters/sprisk/front-nsfw.svg",
  22158. extra: 1225 / 1180,
  22159. bottom: 42.7 / 1266.4
  22160. }
  22161. },
  22162. back: {
  22163. height: math.unit(5 + 9 / 12, "feet"),
  22164. weight: math.unit(190, "lb"),
  22165. name: "Back",
  22166. image: {
  22167. source: "./media/characters/sprisk/back.svg",
  22168. extra: 1247 / 1200,
  22169. bottom: 5.6 / 1253.04
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Tiny",
  22176. height: math.unit(2, "inches")
  22177. },
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(5 + 9 / 12, "feet"),
  22181. default: true
  22182. },
  22183. {
  22184. name: "Mini Macro",
  22185. height: math.unit(18, "feet")
  22186. },
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(100, "feet")
  22190. },
  22191. {
  22192. name: "MACRO",
  22193. height: math.unit(50, "miles")
  22194. },
  22195. {
  22196. name: "M A C R O",
  22197. height: math.unit(300, "miles")
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22203. {
  22204. side: {
  22205. height: math.unit(15.6, "meters"),
  22206. weight: math.unit(700000, "kg"),
  22207. name: "Side",
  22208. image: {
  22209. source: "./media/characters/bunsen/side.svg",
  22210. extra: 1644 / 358
  22211. }
  22212. },
  22213. foot: {
  22214. height: math.unit(1.611 * 1644 / 358, "meter"),
  22215. name: "Foot",
  22216. image: {
  22217. source: "./media/characters/bunsen/foot.svg"
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Small",
  22224. height: math.unit(10, "feet")
  22225. },
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(15.6, "meters"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(4 + 11 / 12, "feet"),
  22238. weight: math.unit(140, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/sesh/front.svg",
  22242. extra: 3420 / 3231,
  22243. bottom: 72 / 3949.5
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(4 + 11 / 12, "feet")
  22251. },
  22252. {
  22253. name: "Grown",
  22254. height: math.unit(15, "feet"),
  22255. default: true
  22256. },
  22257. {
  22258. name: "Macro",
  22259. height: math.unit(1500, "feet")
  22260. },
  22261. {
  22262. name: "Megamacro",
  22263. height: math.unit(30, "miles")
  22264. },
  22265. {
  22266. name: "Continental",
  22267. height: math.unit(3000, "miles")
  22268. },
  22269. {
  22270. name: "Gravity Mass",
  22271. height: math.unit(300000, "miles")
  22272. },
  22273. {
  22274. name: "Planet Buster",
  22275. height: math.unit(30000000, "miles")
  22276. },
  22277. {
  22278. name: "Big",
  22279. height: math.unit(3000000000, "miles")
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22285. {
  22286. front: {
  22287. height: math.unit(9, "feet"),
  22288. weight: math.unit(350, "lb"),
  22289. name: "Front",
  22290. image: {
  22291. source: "./media/characters/pepper/front.svg",
  22292. extra: 1448 / 1312,
  22293. bottom: 9.4 / 1457.88
  22294. }
  22295. },
  22296. back: {
  22297. height: math.unit(9, "feet"),
  22298. weight: math.unit(350, "lb"),
  22299. name: "Back",
  22300. image: {
  22301. source: "./media/characters/pepper/back.svg",
  22302. extra: 1423 / 1300,
  22303. bottom: 4.6 / 1429
  22304. }
  22305. },
  22306. maw: {
  22307. height: math.unit(0.932, "feet"),
  22308. name: "Maw",
  22309. image: {
  22310. source: "./media/characters/pepper/maw.svg"
  22311. }
  22312. },
  22313. },
  22314. [
  22315. {
  22316. name: "Normal",
  22317. height: math.unit(9, "feet"),
  22318. default: true
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(6, "feet"),
  22327. weight: math.unit(150, "lb"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/maelstrom/front.svg",
  22331. extra: 2100 / 1883,
  22332. bottom: 94 / 2196.7
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Less Kaiju",
  22339. height: math.unit(200, "feet")
  22340. },
  22341. {
  22342. name: "Kaiju",
  22343. height: math.unit(400, "feet"),
  22344. default: true
  22345. },
  22346. {
  22347. name: "Kaiju-er",
  22348. height: math.unit(600, "feet")
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(6 + 5 / 12, "feet"),
  22357. weight: math.unit(180, "lb"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/lexir/front.svg",
  22361. extra: 180 / 172,
  22362. bottom: 12 / 192
  22363. }
  22364. },
  22365. back: {
  22366. height: math.unit(6 + 5 / 12, "feet"),
  22367. weight: math.unit(180, "lb"),
  22368. name: "Back",
  22369. image: {
  22370. source: "./media/characters/lexir/back.svg",
  22371. extra: 183.84 / 175.5,
  22372. bottom: 3.1 / 187
  22373. }
  22374. },
  22375. },
  22376. [
  22377. {
  22378. name: "Very Smal",
  22379. height: math.unit(1, "nm")
  22380. },
  22381. {
  22382. name: "Normal",
  22383. height: math.unit(6 + 5 / 12, "feet"),
  22384. default: true
  22385. },
  22386. {
  22387. name: "Macro",
  22388. height: math.unit(1, "mile")
  22389. },
  22390. {
  22391. name: "Megamacro",
  22392. height: math.unit(50, "miles")
  22393. },
  22394. ]
  22395. ))
  22396. characterMakers.push(() => makeCharacter(
  22397. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22398. {
  22399. front: {
  22400. height: math.unit(1.5, "meters"),
  22401. weight: math.unit(100, "lb"),
  22402. name: "Front",
  22403. image: {
  22404. source: "./media/characters/maksio/front.svg",
  22405. extra: 1549 / 1531,
  22406. bottom: 123.7 / 1674.5429
  22407. }
  22408. },
  22409. back: {
  22410. height: math.unit(1.5, "meters"),
  22411. weight: math.unit(100, "lb"),
  22412. name: "Back",
  22413. image: {
  22414. source: "./media/characters/maksio/back.svg",
  22415. extra: 1541 / 1509,
  22416. bottom: 97 / 1639
  22417. }
  22418. },
  22419. hand: {
  22420. height: math.unit(0.621, "feet"),
  22421. name: "Hand",
  22422. image: {
  22423. source: "./media/characters/maksio/hand.svg"
  22424. }
  22425. },
  22426. foot: {
  22427. height: math.unit(1.611, "feet"),
  22428. name: "Foot",
  22429. image: {
  22430. source: "./media/characters/maksio/foot.svg"
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Shrunken",
  22437. height: math.unit(10, "cm")
  22438. },
  22439. {
  22440. name: "Normal",
  22441. height: math.unit(150, "cm"),
  22442. default: true
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(100, "feet"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/erza-bear/front.svg",
  22454. extra: 2449 / 2390,
  22455. bottom: 46 / 2494
  22456. }
  22457. },
  22458. back: {
  22459. height: math.unit(100, "feet"),
  22460. name: "Back",
  22461. image: {
  22462. source: "./media/characters/erza-bear/back.svg",
  22463. extra: 2489 / 2430,
  22464. bottom: 85.4 / 2480
  22465. }
  22466. },
  22467. tail: {
  22468. height: math.unit(42, "feet"),
  22469. name: "Tail",
  22470. image: {
  22471. source: "./media/characters/erza-bear/tail.svg"
  22472. }
  22473. },
  22474. tongue: {
  22475. height: math.unit(8, "feet"),
  22476. name: "Tongue",
  22477. image: {
  22478. source: "./media/characters/erza-bear/tongue.svg"
  22479. }
  22480. },
  22481. dick: {
  22482. height: math.unit(10.5, "feet"),
  22483. name: "Dick",
  22484. image: {
  22485. source: "./media/characters/erza-bear/dick.svg"
  22486. }
  22487. },
  22488. dickVertical: {
  22489. height: math.unit(16.9, "feet"),
  22490. name: "Dick (Vertical)",
  22491. image: {
  22492. source: "./media/characters/erza-bear/dick-vertical.svg"
  22493. }
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Macro",
  22499. height: math.unit(100, "feet"),
  22500. default: true
  22501. },
  22502. ]
  22503. ))
  22504. characterMakers.push(() => makeCharacter(
  22505. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22506. {
  22507. front: {
  22508. height: math.unit(172, "cm"),
  22509. weight: math.unit(73, "kg"),
  22510. name: "Front",
  22511. image: {
  22512. source: "./media/characters/violet-flor/front.svg",
  22513. extra: 1530 / 1442,
  22514. bottom: 61.9 / 1588.8
  22515. }
  22516. },
  22517. back: {
  22518. height: math.unit(180, "cm"),
  22519. weight: math.unit(73, "kg"),
  22520. name: "Back",
  22521. image: {
  22522. source: "./media/characters/violet-flor/back.svg",
  22523. extra: 1692 / 1630,
  22524. bottom: 20 / 1712
  22525. }
  22526. },
  22527. },
  22528. [
  22529. {
  22530. name: "Normal",
  22531. height: math.unit(172, "cm"),
  22532. default: true
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(6, "feet"),
  22541. weight: math.unit(220, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/lynn-rhea/front.svg",
  22545. extra: 310 / 273
  22546. }
  22547. },
  22548. back: {
  22549. height: math.unit(6, "feet"),
  22550. weight: math.unit(220, "lb"),
  22551. name: "Back",
  22552. image: {
  22553. source: "./media/characters/lynn-rhea/back.svg",
  22554. extra: 310 / 273
  22555. }
  22556. },
  22557. dicks: {
  22558. height: math.unit(0.9, "feet"),
  22559. name: "Dicks",
  22560. image: {
  22561. source: "./media/characters/lynn-rhea/dicks.svg"
  22562. }
  22563. },
  22564. slit: {
  22565. height: math.unit(0.4, "feet"),
  22566. name: "Slit",
  22567. image: {
  22568. source: "./media/characters/lynn-rhea/slit.svg"
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Micro",
  22575. height: math.unit(1, "inch")
  22576. },
  22577. {
  22578. name: "Macro",
  22579. height: math.unit(60, "feet"),
  22580. default: true
  22581. },
  22582. {
  22583. name: "Megamacro",
  22584. height: math.unit(2, "miles")
  22585. },
  22586. {
  22587. name: "Gigamacro",
  22588. height: math.unit(3, "earths")
  22589. },
  22590. {
  22591. name: "Galactic",
  22592. height: math.unit(0.8, "galaxies")
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22598. {
  22599. front: {
  22600. height: math.unit(1600, "feet"),
  22601. weight: math.unit(85758785169, "kg"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/valathos/front.svg",
  22605. extra: 1451 / 1339
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Macro",
  22612. height: math.unit(1600, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22619. {
  22620. front: {
  22621. height: math.unit(7 + 5 / 12, "feet"),
  22622. weight: math.unit(300, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/azula/front.svg",
  22626. extra: 3208 / 2880,
  22627. bottom: 80.2 / 3277
  22628. }
  22629. },
  22630. back: {
  22631. height: math.unit(7 + 5 / 12, "feet"),
  22632. weight: math.unit(300, "lb"),
  22633. name: "Back",
  22634. image: {
  22635. source: "./media/characters/azula/back.svg",
  22636. extra: 3169 / 2822,
  22637. bottom: 150.6 / 3321
  22638. }
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Normal",
  22644. height: math.unit(7 + 5 / 12, "feet"),
  22645. default: true
  22646. },
  22647. {
  22648. name: "Big",
  22649. height: math.unit(20, "feet")
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(5 + 1 / 12, "feet"),
  22658. weight: math.unit(110, "lb"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/rupert/front.svg",
  22662. extra: 1549 / 1495,
  22663. bottom: 54.2 / 1604.4
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Normal",
  22670. height: math.unit(5 + 1 / 12, "feet"),
  22671. default: true
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22677. {
  22678. front: {
  22679. height: math.unit(8 + 4 / 12, "feet"),
  22680. weight: math.unit(350, "lb"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/sheera-castellar/front.svg",
  22684. extra: 1957 / 1894,
  22685. bottom: 26.97 / 1975.017
  22686. }
  22687. },
  22688. side: {
  22689. height: math.unit(8 + 4 / 12, "feet"),
  22690. weight: math.unit(350, "lb"),
  22691. name: "Side",
  22692. image: {
  22693. source: "./media/characters/sheera-castellar/side.svg",
  22694. extra: 1957 / 1894
  22695. }
  22696. },
  22697. back: {
  22698. height: math.unit(8 + 4 / 12, "feet"),
  22699. weight: math.unit(350, "lb"),
  22700. name: "Back",
  22701. image: {
  22702. source: "./media/characters/sheera-castellar/back.svg",
  22703. extra: 1957 / 1894
  22704. }
  22705. },
  22706. angled: {
  22707. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22708. weight: math.unit(350, "lb"),
  22709. name: "Angled",
  22710. image: {
  22711. source: "./media/characters/sheera-castellar/angled.svg",
  22712. extra: 1807 / 1707,
  22713. bottom: 68 / 1875
  22714. }
  22715. },
  22716. genitals: {
  22717. height: math.unit(2.2, "feet"),
  22718. name: "Genitals",
  22719. image: {
  22720. source: "./media/characters/sheera-castellar/genitals.svg"
  22721. }
  22722. },
  22723. taur: {
  22724. height: math.unit(10 + 6/12, "feet"),
  22725. name: "Taur",
  22726. image: {
  22727. source: "./media/characters/sheera-castellar/taur.svg",
  22728. extra: 2017/1909,
  22729. bottom: 185/2202
  22730. }
  22731. },
  22732. },
  22733. [
  22734. {
  22735. name: "Normal",
  22736. height: math.unit(8 + 4 / 12, "feet")
  22737. },
  22738. {
  22739. name: "Macro",
  22740. height: math.unit(150, "feet"),
  22741. default: true
  22742. },
  22743. {
  22744. name: "Macro+",
  22745. height: math.unit(800, "feet")
  22746. },
  22747. ]
  22748. ))
  22749. characterMakers.push(() => makeCharacter(
  22750. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22751. {
  22752. front: {
  22753. height: math.unit(6, "feet"),
  22754. weight: math.unit(150, "lb"),
  22755. name: "Front",
  22756. image: {
  22757. source: "./media/characters/jaipur/front.svg",
  22758. extra: 3860 / 3731,
  22759. bottom: 287 / 4140
  22760. }
  22761. },
  22762. back: {
  22763. height: math.unit(6, "feet"),
  22764. weight: math.unit(150, "lb"),
  22765. name: "Back",
  22766. image: {
  22767. source: "./media/characters/jaipur/back.svg",
  22768. extra: 4060 / 3930,
  22769. bottom: 151 / 4200
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(1.85, "meters"),
  22777. default: true
  22778. },
  22779. {
  22780. name: "Macro",
  22781. height: math.unit(150, "meters")
  22782. },
  22783. {
  22784. name: "Macro+",
  22785. height: math.unit(0.5, "miles")
  22786. },
  22787. {
  22788. name: "Macro++",
  22789. height: math.unit(2.5, "miles")
  22790. },
  22791. {
  22792. name: "Macro+++",
  22793. height: math.unit(12, "miles")
  22794. },
  22795. {
  22796. name: "Macro++++",
  22797. height: math.unit(120, "miles")
  22798. },
  22799. {
  22800. name: "Macro+++++",
  22801. height: math.unit(1200, "miles")
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(6, "feet"),
  22810. weight: math.unit(150, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/sheila-wolf/front.svg",
  22814. extra: 1931 / 1808,
  22815. bottom: 29.5 / 1960
  22816. }
  22817. },
  22818. dick: {
  22819. height: math.unit(1.464, "feet"),
  22820. name: "Dick",
  22821. image: {
  22822. source: "./media/characters/sheila-wolf/dick.svg"
  22823. }
  22824. },
  22825. muzzle: {
  22826. height: math.unit(0.513, "feet"),
  22827. name: "Muzzle",
  22828. image: {
  22829. source: "./media/characters/sheila-wolf/muzzle.svg"
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Macro",
  22836. height: math.unit(70, "feet"),
  22837. default: true
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(32, "meters"),
  22846. weight: math.unit(300000, "kg"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/almor/front.svg",
  22850. extra: 1408 / 1322,
  22851. bottom: 94.6 / 1506.5
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Macro",
  22858. height: math.unit(32, "meters"),
  22859. default: true
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22865. {
  22866. front: {
  22867. height: math.unit(7, "feet"),
  22868. weight: math.unit(200, "lb"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/silver/front.svg",
  22872. extra: 472.1 / 450.5,
  22873. bottom: 26.5 / 499.424
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(7, "feet"),
  22881. default: true
  22882. },
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(800, "feet")
  22886. },
  22887. {
  22888. name: "Megamacro",
  22889. height: math.unit(250, "miles")
  22890. },
  22891. ]
  22892. ))
  22893. characterMakers.push(() => makeCharacter(
  22894. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22895. {
  22896. front: {
  22897. height: math.unit(6, "feet"),
  22898. weight: math.unit(150, "lb"),
  22899. name: "Front",
  22900. image: {
  22901. source: "./media/characters/pliskin/front.svg",
  22902. extra: 1469 / 1359,
  22903. bottom: 70 / 1540
  22904. }
  22905. },
  22906. },
  22907. [
  22908. {
  22909. name: "Micro",
  22910. height: math.unit(3, "inches")
  22911. },
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(5 + 11 / 12, "feet"),
  22915. default: true
  22916. },
  22917. {
  22918. name: "Macro",
  22919. height: math.unit(120, "feet")
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22925. {
  22926. front: {
  22927. height: math.unit(6, "feet"),
  22928. weight: math.unit(150, "lb"),
  22929. name: "Front",
  22930. image: {
  22931. source: "./media/characters/sammy/front.svg",
  22932. extra: 1193 / 1089,
  22933. bottom: 30.5 / 1226
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Macro",
  22940. height: math.unit(1700, "feet"),
  22941. default: true
  22942. },
  22943. {
  22944. name: "Examacro",
  22945. height: math.unit(2.5e9, "lightyears")
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22951. {
  22952. front: {
  22953. height: math.unit(21, "meters"),
  22954. weight: math.unit(12, "tonnes"),
  22955. name: "Front",
  22956. image: {
  22957. source: "./media/characters/kuru/front.svg",
  22958. extra: 4301 / 3785,
  22959. bottom: 371.3 / 4691
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Macro",
  22966. height: math.unit(21, "meters"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(23, "meters"),
  22976. weight: math.unit(12.2, "tonnes"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/rakka/front.svg",
  22980. extra: 4670 / 4169,
  22981. bottom: 301 / 4968.7
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Macro",
  22988. height: math.unit(23, "meters"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(6, "feet"),
  22998. weight: math.unit(150, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/rhys-feline/front.svg",
  23002. extra: 2488 / 2308,
  23003. bottom: 35.67 / 2519.19
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Really Small",
  23010. height: math.unit(1, "nm")
  23011. },
  23012. {
  23013. name: "Micro",
  23014. height: math.unit(4, "inches")
  23015. },
  23016. {
  23017. name: "Normal",
  23018. height: math.unit(4 + 10 / 12, "feet"),
  23019. default: true
  23020. },
  23021. {
  23022. name: "Macro",
  23023. height: math.unit(100, "feet")
  23024. },
  23025. {
  23026. name: "Megamacto",
  23027. height: math.unit(50, "miles")
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23033. {
  23034. side: {
  23035. height: math.unit(30, "feet"),
  23036. weight: math.unit(35000, "kg"),
  23037. name: "Side",
  23038. image: {
  23039. source: "./media/characters/alydar/side.svg",
  23040. extra: 234 / 222,
  23041. bottom: 6.5 / 241
  23042. }
  23043. },
  23044. front: {
  23045. height: math.unit(30, "feet"),
  23046. weight: math.unit(35000, "kg"),
  23047. name: "Front",
  23048. image: {
  23049. source: "./media/characters/alydar/front.svg",
  23050. extra: 223.37 / 210.2,
  23051. bottom: 22.3 / 246.76
  23052. }
  23053. },
  23054. top: {
  23055. height: math.unit(64.54, "feet"),
  23056. weight: math.unit(35000, "kg"),
  23057. name: "Top",
  23058. image: {
  23059. source: "./media/characters/alydar/top.svg"
  23060. }
  23061. },
  23062. anthro: {
  23063. height: math.unit(30, "feet"),
  23064. weight: math.unit(9000, "kg"),
  23065. name: "Anthro",
  23066. image: {
  23067. source: "./media/characters/alydar/anthro.svg",
  23068. extra: 432 / 421,
  23069. bottom: 7.18 / 440
  23070. }
  23071. },
  23072. maw: {
  23073. height: math.unit(11.693, "feet"),
  23074. name: "Maw",
  23075. image: {
  23076. source: "./media/characters/alydar/maw.svg"
  23077. }
  23078. },
  23079. head: {
  23080. height: math.unit(11.693, "feet"),
  23081. name: "Head",
  23082. image: {
  23083. source: "./media/characters/alydar/head.svg"
  23084. }
  23085. },
  23086. headAlt: {
  23087. height: math.unit(12.861, "feet"),
  23088. name: "Head (Alt)",
  23089. image: {
  23090. source: "./media/characters/alydar/head-alt.svg"
  23091. }
  23092. },
  23093. wing: {
  23094. height: math.unit(20.712, "feet"),
  23095. name: "Wing",
  23096. image: {
  23097. source: "./media/characters/alydar/wing.svg"
  23098. }
  23099. },
  23100. wingFeather: {
  23101. height: math.unit(9.662, "feet"),
  23102. name: "Wing Feather",
  23103. image: {
  23104. source: "./media/characters/alydar/wing-feather.svg"
  23105. }
  23106. },
  23107. countourFeather: {
  23108. height: math.unit(4.154, "feet"),
  23109. name: "Contour Feather",
  23110. image: {
  23111. source: "./media/characters/alydar/contour-feather.svg"
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Diplomatic",
  23118. height: math.unit(13, "feet"),
  23119. default: true
  23120. },
  23121. {
  23122. name: "Small",
  23123. height: math.unit(30, "feet")
  23124. },
  23125. {
  23126. name: "Normal",
  23127. height: math.unit(95, "feet"),
  23128. default: true
  23129. },
  23130. {
  23131. name: "Large",
  23132. height: math.unit(285, "feet")
  23133. },
  23134. {
  23135. name: "Incomprehensible",
  23136. height: math.unit(450, "megameters")
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23142. {
  23143. side: {
  23144. height: math.unit(11, "feet"),
  23145. weight: math.unit(1750, "kg"),
  23146. name: "Side",
  23147. image: {
  23148. source: "./media/characters/selicia/side.svg",
  23149. extra: 440 / 396,
  23150. bottom: 24.8 / 465.979
  23151. }
  23152. },
  23153. maw: {
  23154. height: math.unit(4.665, "feet"),
  23155. name: "Maw",
  23156. image: {
  23157. source: "./media/characters/selicia/maw.svg"
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Normal",
  23164. height: math.unit(11, "feet"),
  23165. default: true
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23171. {
  23172. side: {
  23173. height: math.unit(2 + 6 / 12, "feet"),
  23174. weight: math.unit(30, "lb"),
  23175. name: "Side",
  23176. image: {
  23177. source: "./media/characters/layla/side.svg",
  23178. extra: 244 / 188,
  23179. bottom: 18.2 / 262.1
  23180. }
  23181. },
  23182. back: {
  23183. height: math.unit(2 + 6 / 12, "feet"),
  23184. weight: math.unit(30, "lb"),
  23185. name: "Back",
  23186. image: {
  23187. source: "./media/characters/layla/back.svg",
  23188. extra: 308 / 241.5,
  23189. bottom: 8.9 / 316.8
  23190. }
  23191. },
  23192. cumming: {
  23193. height: math.unit(2 + 6 / 12, "feet"),
  23194. weight: math.unit(30, "lb"),
  23195. name: "Cumming",
  23196. image: {
  23197. source: "./media/characters/layla/cumming.svg",
  23198. extra: 342 / 279,
  23199. bottom: 595 / 938
  23200. }
  23201. },
  23202. dickFlaccid: {
  23203. height: math.unit(2.595, "feet"),
  23204. name: "Flaccid Genitals",
  23205. image: {
  23206. source: "./media/characters/layla/dick-flaccid.svg"
  23207. }
  23208. },
  23209. dickErect: {
  23210. height: math.unit(2.359, "feet"),
  23211. name: "Erect Genitals",
  23212. image: {
  23213. source: "./media/characters/layla/dick-erect.svg"
  23214. }
  23215. },
  23216. dragon: {
  23217. height: math.unit(40, "feet"),
  23218. name: "Dragon",
  23219. image: {
  23220. source: "./media/characters/layla/dragon.svg",
  23221. extra: 610/535,
  23222. bottom: 367/977
  23223. }
  23224. },
  23225. taur: {
  23226. height: math.unit(30, "feet"),
  23227. name: "Taur",
  23228. image: {
  23229. source: "./media/characters/layla/taur.svg",
  23230. extra: 1268/1199,
  23231. bottom: 112/1380
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Micro",
  23238. height: math.unit(1, "inch")
  23239. },
  23240. {
  23241. name: "Small",
  23242. height: math.unit(1, "foot")
  23243. },
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(2 + 6 / 12, "feet"),
  23247. default: true
  23248. },
  23249. {
  23250. name: "Macro",
  23251. height: math.unit(200, "feet")
  23252. },
  23253. {
  23254. name: "Megamacro",
  23255. height: math.unit(1000, "miles")
  23256. },
  23257. {
  23258. name: "Planetary",
  23259. height: math.unit(8000, "miles")
  23260. },
  23261. {
  23262. name: "True Layla",
  23263. height: math.unit(200000 * 7, "multiverses")
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23269. {
  23270. back: {
  23271. height: math.unit(10.5, "feet"),
  23272. weight: math.unit(800, "lb"),
  23273. name: "Back",
  23274. image: {
  23275. source: "./media/characters/knox/back.svg",
  23276. extra: 1486 / 1089,
  23277. bottom: 107 / 1601.4
  23278. }
  23279. },
  23280. side: {
  23281. height: math.unit(10.5, "feet"),
  23282. weight: math.unit(800, "lb"),
  23283. name: "Side",
  23284. image: {
  23285. source: "./media/characters/knox/side.svg",
  23286. extra: 244 / 218,
  23287. bottom: 14 / 260
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Compact",
  23294. height: math.unit(10.5, "feet"),
  23295. default: true
  23296. },
  23297. {
  23298. name: "Dynamax",
  23299. height: math.unit(210, "feet")
  23300. },
  23301. {
  23302. name: "Full Macro",
  23303. height: math.unit(850, "feet")
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(6, "feet"),
  23312. weight: math.unit(152, "lb"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/shin-pikachu/front.svg",
  23316. extra: 1574 / 1480,
  23317. bottom: 53.3 / 1626
  23318. }
  23319. },
  23320. hand: {
  23321. height: math.unit(1.055, "feet"),
  23322. name: "Hand",
  23323. image: {
  23324. source: "./media/characters/shin-pikachu/hand.svg"
  23325. }
  23326. },
  23327. foot: {
  23328. height: math.unit(1.1, "feet"),
  23329. name: "Foot",
  23330. image: {
  23331. source: "./media/characters/shin-pikachu/foot.svg"
  23332. }
  23333. },
  23334. collar: {
  23335. height: math.unit(0.386, "feet"),
  23336. name: "Collar",
  23337. image: {
  23338. source: "./media/characters/shin-pikachu/collar.svg"
  23339. }
  23340. },
  23341. },
  23342. [
  23343. {
  23344. name: "Smallest",
  23345. height: math.unit(0.5, "inches")
  23346. },
  23347. {
  23348. name: "Micro",
  23349. height: math.unit(6, "inches")
  23350. },
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(6, "feet"),
  23354. default: true
  23355. },
  23356. {
  23357. name: "Macro",
  23358. height: math.unit(150, "feet")
  23359. },
  23360. ]
  23361. ))
  23362. characterMakers.push(() => makeCharacter(
  23363. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23364. {
  23365. front: {
  23366. height: math.unit(28, "feet"),
  23367. weight: math.unit(10500, "lb"),
  23368. name: "Front",
  23369. image: {
  23370. source: "./media/characters/kayda/front.svg",
  23371. extra: 1536 / 1428,
  23372. bottom: 68.7 / 1603
  23373. }
  23374. },
  23375. back: {
  23376. height: math.unit(28, "feet"),
  23377. weight: math.unit(10500, "lb"),
  23378. name: "Back",
  23379. image: {
  23380. source: "./media/characters/kayda/back.svg",
  23381. extra: 1557 / 1464,
  23382. bottom: 39.5 / 1597.49
  23383. }
  23384. },
  23385. dick: {
  23386. height: math.unit(3.858, "feet"),
  23387. name: "Dick",
  23388. image: {
  23389. source: "./media/characters/kayda/dick.svg"
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Macro",
  23396. height: math.unit(28, "feet"),
  23397. default: true
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(10 + 11 / 12, "feet"),
  23406. weight: math.unit(1400, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/brian/front.svg",
  23410. extra: 737 / 692,
  23411. bottom: 55.4 / 785
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(10 + 11 / 12, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(5 + 8 / 12, "feet"),
  23428. weight: math.unit(140, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/khemri/front.svg",
  23432. extra: 4780 / 4059,
  23433. bottom: 80.1 / 4859.25
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Micro",
  23440. height: math.unit(6, "inches")
  23441. },
  23442. {
  23443. name: "Normal",
  23444. height: math.unit(5 + 8 / 12, "feet"),
  23445. default: true
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23451. {
  23452. front: {
  23453. height: math.unit(13, "feet"),
  23454. weight: math.unit(1700, "lb"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/felix-braveheart/front.svg",
  23458. extra: 1222 / 1157,
  23459. bottom: 53.2 / 1280
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(13, "feet"),
  23464. weight: math.unit(1700, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/felix-braveheart/back.svg",
  23468. extra: 1277 / 1203,
  23469. bottom: 50.2 / 1327
  23470. }
  23471. },
  23472. feral: {
  23473. height: math.unit(6, "feet"),
  23474. weight: math.unit(400, "lb"),
  23475. name: "Feral",
  23476. image: {
  23477. source: "./media/characters/felix-braveheart/feral.svg",
  23478. extra: 682 / 625,
  23479. bottom: 6.9 / 688
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(13, "feet"),
  23487. default: true
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23493. {
  23494. side: {
  23495. height: math.unit(5 + 11 / 12, "feet"),
  23496. weight: math.unit(1400, "lb"),
  23497. name: "Side",
  23498. image: {
  23499. source: "./media/characters/shadow-blade/side.svg",
  23500. extra: 1726 / 1267,
  23501. bottom: 58.4 / 1785
  23502. }
  23503. },
  23504. },
  23505. [
  23506. {
  23507. name: "Normal",
  23508. height: math.unit(5 + 11 / 12, "feet"),
  23509. default: true
  23510. },
  23511. ]
  23512. ))
  23513. characterMakers.push(() => makeCharacter(
  23514. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23515. {
  23516. front: {
  23517. height: math.unit(1 + 6 / 12, "feet"),
  23518. weight: math.unit(25, "lb"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/karla-halldor/front.svg",
  23522. extra: 1459 / 1383,
  23523. bottom: 12 / 1472
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(1 + 6 / 12, "feet"),
  23531. default: true
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23537. {
  23538. front: {
  23539. height: math.unit(6 + 2 / 12, "feet"),
  23540. weight: math.unit(160, "lb"),
  23541. name: "Front",
  23542. image: {
  23543. source: "./media/characters/ariam/front.svg",
  23544. extra: 714 / 617,
  23545. bottom: 23.4 / 737,
  23546. }
  23547. },
  23548. squatting: {
  23549. height: math.unit(4.1, "feet"),
  23550. weight: math.unit(160, "lb"),
  23551. name: "Squatting",
  23552. image: {
  23553. source: "./media/characters/ariam/squatting.svg",
  23554. extra: 2617 / 2112,
  23555. bottom: 61.2 / 2681,
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Normal",
  23562. height: math.unit(6 + 2 / 12, "feet"),
  23563. default: true
  23564. },
  23565. {
  23566. name: "Normal+",
  23567. height: math.unit(4, "meters")
  23568. },
  23569. {
  23570. name: "Macro",
  23571. height: math.unit(50, "meters")
  23572. },
  23573. {
  23574. name: "Macro+",
  23575. height: math.unit(100, "meters")
  23576. },
  23577. {
  23578. name: "Megamacro",
  23579. height: math.unit(20, "km")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(1.67, "meters"),
  23588. weight: math.unit(140, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23592. extra: 438 / 410,
  23593. bottom: 0.75 / 439
  23594. }
  23595. },
  23596. },
  23597. [
  23598. {
  23599. name: "Shrunken",
  23600. height: math.unit(7.6, "cm")
  23601. },
  23602. {
  23603. name: "Human Scale",
  23604. height: math.unit(1.67, "meters")
  23605. },
  23606. {
  23607. name: "Wolxi Scale",
  23608. height: math.unit(36.7, "meters"),
  23609. default: true
  23610. },
  23611. ]
  23612. ))
  23613. characterMakers.push(() => makeCharacter(
  23614. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23615. {
  23616. front: {
  23617. height: math.unit(1.73, "meters"),
  23618. weight: math.unit(240, "lb"),
  23619. name: "Front",
  23620. image: {
  23621. source: "./media/characters/izue-two-mothers/front.svg",
  23622. extra: 469 / 437,
  23623. bottom: 1.24 / 470.6
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Shrunken",
  23630. height: math.unit(7.86, "cm")
  23631. },
  23632. {
  23633. name: "Human Scale",
  23634. height: math.unit(1.73, "meters")
  23635. },
  23636. {
  23637. name: "Wolxi Scale",
  23638. height: math.unit(38, "meters"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(1.55, "meters"),
  23648. weight: math.unit(120, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/teeku-love-shack/front.svg",
  23652. extra: 387 / 362,
  23653. bottom: 1.51 / 388
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Shrunken",
  23660. height: math.unit(7, "cm")
  23661. },
  23662. {
  23663. name: "Human Scale",
  23664. height: math.unit(1.55, "meters")
  23665. },
  23666. {
  23667. name: "Wolxi Scale",
  23668. height: math.unit(34.1, "meters"),
  23669. default: true
  23670. },
  23671. ]
  23672. ))
  23673. characterMakers.push(() => makeCharacter(
  23674. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23675. {
  23676. front: {
  23677. height: math.unit(1.83, "meters"),
  23678. weight: math.unit(135, "lb"),
  23679. name: "Front",
  23680. image: {
  23681. source: "./media/characters/dejma-the-red/front.svg",
  23682. extra: 480 / 458,
  23683. bottom: 1.8 / 482
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Shrunken",
  23690. height: math.unit(8.3, "cm")
  23691. },
  23692. {
  23693. name: "Human Scale",
  23694. height: math.unit(1.83, "meters")
  23695. },
  23696. {
  23697. name: "Wolxi Scale",
  23698. height: math.unit(40, "meters"),
  23699. default: true
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23705. {
  23706. front: {
  23707. height: math.unit(1.78, "meters"),
  23708. weight: math.unit(65, "kg"),
  23709. name: "Front",
  23710. image: {
  23711. source: "./media/characters/aki/front.svg",
  23712. extra: 452 / 415
  23713. }
  23714. },
  23715. frontNsfw: {
  23716. height: math.unit(1.78, "meters"),
  23717. weight: math.unit(65, "kg"),
  23718. name: "Front (NSFW)",
  23719. image: {
  23720. source: "./media/characters/aki/front-nsfw.svg",
  23721. extra: 452 / 415
  23722. }
  23723. },
  23724. back: {
  23725. height: math.unit(1.78, "meters"),
  23726. weight: math.unit(65, "kg"),
  23727. name: "Back",
  23728. image: {
  23729. source: "./media/characters/aki/back.svg",
  23730. extra: 452 / 415
  23731. }
  23732. },
  23733. rump: {
  23734. height: math.unit(2.05, "feet"),
  23735. name: "Rump",
  23736. image: {
  23737. source: "./media/characters/aki/rump.svg"
  23738. }
  23739. },
  23740. dick: {
  23741. height: math.unit(0.95, "feet"),
  23742. name: "Dick",
  23743. image: {
  23744. source: "./media/characters/aki/dick.svg"
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Micro",
  23751. height: math.unit(15, "cm")
  23752. },
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(178, "cm"),
  23756. default: true
  23757. },
  23758. {
  23759. name: "Macro",
  23760. height: math.unit(214, "m")
  23761. },
  23762. {
  23763. name: "Macro+",
  23764. height: math.unit(534, "m")
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23770. {
  23771. front: {
  23772. height: math.unit(5 + 5 / 12, "feet"),
  23773. weight: math.unit(120, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/ari/front.svg",
  23777. extra: 714.5 / 682,
  23778. bottom: 8 / 722.5
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Normal",
  23785. height: math.unit(5 + 5 / 12, "feet")
  23786. },
  23787. {
  23788. name: "Macro",
  23789. height: math.unit(100, "feet"),
  23790. default: true
  23791. },
  23792. {
  23793. name: "Megamacro",
  23794. height: math.unit(100, "miles")
  23795. },
  23796. {
  23797. name: "Gigamacro",
  23798. height: math.unit(80000, "miles")
  23799. },
  23800. ]
  23801. ))
  23802. characterMakers.push(() => makeCharacter(
  23803. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23804. {
  23805. side: {
  23806. height: math.unit(9, "feet"),
  23807. weight: math.unit(400, "kg"),
  23808. name: "Side",
  23809. image: {
  23810. source: "./media/characters/bolt/side.svg",
  23811. extra: 1126 / 896,
  23812. bottom: 60 / 1187.3,
  23813. }
  23814. },
  23815. },
  23816. [
  23817. {
  23818. name: "Micro",
  23819. height: math.unit(5, "inches")
  23820. },
  23821. {
  23822. name: "Normal",
  23823. height: math.unit(9, "feet"),
  23824. default: true
  23825. },
  23826. {
  23827. name: "Macro",
  23828. height: math.unit(700, "feet")
  23829. },
  23830. {
  23831. name: "Max Size",
  23832. height: math.unit(1.52e22, "yottameters")
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23838. {
  23839. front: {
  23840. height: math.unit(4.53, "meters"),
  23841. weight: math.unit(3, "tons"),
  23842. name: "Front",
  23843. image: {
  23844. source: "./media/characters/draekon-sylviar/front.svg",
  23845. extra: 1228 / 1068,
  23846. bottom: 41 / 1270
  23847. }
  23848. },
  23849. tail: {
  23850. height: math.unit(1.772, "meter"),
  23851. name: "Tail",
  23852. image: {
  23853. source: "./media/characters/draekon-sylviar/tail.svg"
  23854. }
  23855. },
  23856. head: {
  23857. height: math.unit(1.331, "meter"),
  23858. name: "Head",
  23859. image: {
  23860. source: "./media/characters/draekon-sylviar/head.svg"
  23861. }
  23862. },
  23863. hand: {
  23864. height: math.unit(0.564, "meter"),
  23865. name: "Hand",
  23866. image: {
  23867. source: "./media/characters/draekon-sylviar/hand.svg"
  23868. }
  23869. },
  23870. foot: {
  23871. height: math.unit(0.621, "meter"),
  23872. name: "Foot",
  23873. image: {
  23874. source: "./media/characters/draekon-sylviar/foot.svg",
  23875. bottom: 32 / 324
  23876. }
  23877. },
  23878. dick: {
  23879. height: math.unit(61, "cm"),
  23880. name: "Dick",
  23881. image: {
  23882. source: "./media/characters/draekon-sylviar/dick.svg"
  23883. }
  23884. },
  23885. dickseparated: {
  23886. height: math.unit(61, "cm"),
  23887. name: "Dick-separated",
  23888. image: {
  23889. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Small",
  23896. height: math.unit(4.53 / 2, "meters"),
  23897. default: true
  23898. },
  23899. {
  23900. name: "Normal",
  23901. height: math.unit(4.53, "meters"),
  23902. default: true
  23903. },
  23904. {
  23905. name: "Large",
  23906. height: math.unit(4.53 * 2, "meters"),
  23907. },
  23908. ]
  23909. ))
  23910. characterMakers.push(() => makeCharacter(
  23911. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23912. {
  23913. front: {
  23914. height: math.unit(6 + 2 / 12, "feet"),
  23915. weight: math.unit(180, "lb"),
  23916. name: "Front",
  23917. image: {
  23918. source: "./media/characters/brawler/front.svg",
  23919. extra: 3301 / 3027,
  23920. bottom: 138 / 3439
  23921. }
  23922. },
  23923. },
  23924. [
  23925. {
  23926. name: "Normal",
  23927. height: math.unit(6 + 2 / 12, "feet"),
  23928. default: true
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23934. {
  23935. front: {
  23936. height: math.unit(11, "feet"),
  23937. weight: math.unit(1000, "lb"),
  23938. name: "Front",
  23939. image: {
  23940. source: "./media/characters/alex/front.svg",
  23941. bottom: 44.5 / 620
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Micro",
  23948. height: math.unit(5, "inches")
  23949. },
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(11, "feet"),
  23953. default: true
  23954. },
  23955. {
  23956. name: "Macro",
  23957. height: math.unit(9.5e9, "feet")
  23958. },
  23959. {
  23960. name: "Max Size",
  23961. height: math.unit(1.4e283, "yottameters")
  23962. },
  23963. ]
  23964. ))
  23965. characterMakers.push(() => makeCharacter(
  23966. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23967. {
  23968. female: {
  23969. height: math.unit(29.9, "m"),
  23970. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23971. name: "Female",
  23972. image: {
  23973. source: "./media/characters/zenari/female.svg",
  23974. extra: 3281.6 / 3217,
  23975. bottom: 72.2 / 3353
  23976. }
  23977. },
  23978. male: {
  23979. height: math.unit(27.7, "m"),
  23980. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23981. name: "Male",
  23982. image: {
  23983. source: "./media/characters/zenari/male.svg",
  23984. extra: 3008 / 2991,
  23985. bottom: 54.6 / 3069
  23986. }
  23987. },
  23988. },
  23989. [
  23990. {
  23991. name: "Macro",
  23992. height: math.unit(29.7, "meters"),
  23993. default: true
  23994. },
  23995. ]
  23996. ))
  23997. characterMakers.push(() => makeCharacter(
  23998. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23999. {
  24000. female: {
  24001. height: math.unit(23.8, "m"),
  24002. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24003. name: "Female",
  24004. image: {
  24005. source: "./media/characters/mactarian/female.svg",
  24006. extra: 2662 / 2569,
  24007. bottom: 73 / 2736
  24008. }
  24009. },
  24010. male: {
  24011. height: math.unit(23.8, "m"),
  24012. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24013. name: "Male",
  24014. image: {
  24015. source: "./media/characters/mactarian/male.svg",
  24016. extra: 2673 / 2600,
  24017. bottom: 76 / 2750
  24018. }
  24019. },
  24020. },
  24021. [
  24022. {
  24023. name: "Macro",
  24024. height: math.unit(23.8, "meters"),
  24025. default: true
  24026. },
  24027. ]
  24028. ))
  24029. characterMakers.push(() => makeCharacter(
  24030. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24031. {
  24032. female: {
  24033. height: math.unit(19.3, "m"),
  24034. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24035. name: "Female",
  24036. image: {
  24037. source: "./media/characters/umok/female.svg",
  24038. extra: 2186 / 2078,
  24039. bottom: 87 / 2277
  24040. }
  24041. },
  24042. male: {
  24043. height: math.unit(19.5, "m"),
  24044. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24045. name: "Male",
  24046. image: {
  24047. source: "./media/characters/umok/male.svg",
  24048. extra: 2233 / 2140,
  24049. bottom: 24.4 / 2258
  24050. }
  24051. },
  24052. },
  24053. [
  24054. {
  24055. name: "Macro",
  24056. height: math.unit(19.3, "meters"),
  24057. default: true
  24058. },
  24059. ]
  24060. ))
  24061. characterMakers.push(() => makeCharacter(
  24062. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24063. {
  24064. female: {
  24065. height: math.unit(26.15, "m"),
  24066. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24067. name: "Female",
  24068. image: {
  24069. source: "./media/characters/joraxian/female.svg",
  24070. extra: 2912 / 2824,
  24071. bottom: 36 / 2956
  24072. }
  24073. },
  24074. male: {
  24075. height: math.unit(25.4, "m"),
  24076. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24077. name: "Male",
  24078. image: {
  24079. source: "./media/characters/joraxian/male.svg",
  24080. extra: 2877 / 2721,
  24081. bottom: 82 / 2967
  24082. }
  24083. },
  24084. },
  24085. [
  24086. {
  24087. name: "Macro",
  24088. height: math.unit(26.15, "meters"),
  24089. default: true
  24090. },
  24091. ]
  24092. ))
  24093. characterMakers.push(() => makeCharacter(
  24094. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24095. {
  24096. female: {
  24097. height: math.unit(21.6, "m"),
  24098. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24099. name: "Female",
  24100. image: {
  24101. source: "./media/characters/sthara/female.svg",
  24102. extra: 2516 / 2347,
  24103. bottom: 21.5 / 2537
  24104. }
  24105. },
  24106. male: {
  24107. height: math.unit(24, "m"),
  24108. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24109. name: "Male",
  24110. image: {
  24111. source: "./media/characters/sthara/male.svg",
  24112. extra: 2732 / 2607,
  24113. bottom: 23 / 2732
  24114. }
  24115. },
  24116. },
  24117. [
  24118. {
  24119. name: "Macro",
  24120. height: math.unit(21.6, "meters"),
  24121. default: true
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24127. {
  24128. front: {
  24129. height: math.unit(6 + 4 / 12, "feet"),
  24130. weight: math.unit(175, "lb"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/luka-bryzant/front.svg",
  24134. extra: 311 / 289,
  24135. bottom: 4 / 315
  24136. }
  24137. },
  24138. back: {
  24139. height: math.unit(6 + 4 / 12, "feet"),
  24140. weight: math.unit(175, "lb"),
  24141. name: "Back",
  24142. image: {
  24143. source: "./media/characters/luka-bryzant/back.svg",
  24144. extra: 311 / 289,
  24145. bottom: 3.8 / 313.7
  24146. }
  24147. },
  24148. },
  24149. [
  24150. {
  24151. name: "Micro",
  24152. height: math.unit(10, "inches")
  24153. },
  24154. {
  24155. name: "Normal",
  24156. height: math.unit(6 + 4 / 12, "feet"),
  24157. default: true
  24158. },
  24159. {
  24160. name: "Large",
  24161. height: math.unit(12, "feet")
  24162. },
  24163. ]
  24164. ))
  24165. characterMakers.push(() => makeCharacter(
  24166. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24167. {
  24168. front: {
  24169. height: math.unit(5 + 7 / 12, "feet"),
  24170. weight: math.unit(185, "lb"),
  24171. name: "Front",
  24172. image: {
  24173. source: "./media/characters/aman-aquila/front.svg",
  24174. extra: 1013 / 976,
  24175. bottom: 45.6 / 1057
  24176. }
  24177. },
  24178. side: {
  24179. height: math.unit(5 + 7 / 12, "feet"),
  24180. weight: math.unit(185, "lb"),
  24181. name: "Side",
  24182. image: {
  24183. source: "./media/characters/aman-aquila/side.svg",
  24184. extra: 1054 / 1011,
  24185. bottom: 15 / 1070
  24186. }
  24187. },
  24188. back: {
  24189. height: math.unit(5 + 7 / 12, "feet"),
  24190. weight: math.unit(185, "lb"),
  24191. name: "Back",
  24192. image: {
  24193. source: "./media/characters/aman-aquila/back.svg",
  24194. extra: 1026 / 970,
  24195. bottom: 12 / 1039
  24196. }
  24197. },
  24198. head: {
  24199. height: math.unit(1.211, "feet"),
  24200. name: "Head",
  24201. image: {
  24202. source: "./media/characters/aman-aquila/head.svg",
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Minimicro",
  24209. height: math.unit(0.057, "inches")
  24210. },
  24211. {
  24212. name: "Micro",
  24213. height: math.unit(7, "inches")
  24214. },
  24215. {
  24216. name: "Mini",
  24217. height: math.unit(3 + 7 / 12, "feet")
  24218. },
  24219. {
  24220. name: "Normal",
  24221. height: math.unit(5 + 7 / 12, "feet"),
  24222. default: true
  24223. },
  24224. {
  24225. name: "Macro",
  24226. height: math.unit(157 + 7 / 12, "feet")
  24227. },
  24228. {
  24229. name: "Megamacro",
  24230. height: math.unit(1557 + 7 / 12, "feet")
  24231. },
  24232. {
  24233. name: "Gigamacro",
  24234. height: math.unit(15557 + 7 / 12, "feet")
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24240. {
  24241. front: {
  24242. height: math.unit(3 + 2 / 12, "inches"),
  24243. weight: math.unit(0.3, "ounces"),
  24244. name: "Front",
  24245. image: {
  24246. source: "./media/characters/hiphae/front.svg",
  24247. extra: 1931 / 1683,
  24248. bottom: 24 / 1955
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Normal",
  24255. height: math.unit(3 + 1 / 2, "inches"),
  24256. default: true
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(5 + 10 / 12, "feet"),
  24265. weight: math.unit(165, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/nicky/front.svg",
  24269. extra: 3144 / 2886,
  24270. bottom: 45.6 / 3192
  24271. }
  24272. },
  24273. back: {
  24274. height: math.unit(5 + 10 / 12, "feet"),
  24275. weight: math.unit(165, "lb"),
  24276. name: "Back",
  24277. image: {
  24278. source: "./media/characters/nicky/back.svg",
  24279. extra: 3055 / 2804,
  24280. bottom: 28.4 / 3087
  24281. }
  24282. },
  24283. frontclothed: {
  24284. height: math.unit(5 + 10 / 12, "feet"),
  24285. weight: math.unit(165, "lb"),
  24286. name: "Front-clothed",
  24287. image: {
  24288. source: "./media/characters/nicky/front-clothed.svg",
  24289. extra: 3184.9 / 2926.9,
  24290. bottom: 86.5 / 3239.9
  24291. }
  24292. },
  24293. foot: {
  24294. height: math.unit(1.16, "feet"),
  24295. name: "Foot",
  24296. image: {
  24297. source: "./media/characters/nicky/foot.svg"
  24298. }
  24299. },
  24300. feet: {
  24301. height: math.unit(1.34, "feet"),
  24302. name: "Feet",
  24303. image: {
  24304. source: "./media/characters/nicky/feet.svg"
  24305. }
  24306. },
  24307. maw: {
  24308. height: math.unit(0.9, "feet"),
  24309. name: "Maw",
  24310. image: {
  24311. source: "./media/characters/nicky/maw.svg"
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(5 + 10 / 12, "feet"),
  24319. default: true
  24320. },
  24321. {
  24322. name: "Macro",
  24323. height: math.unit(60, "feet")
  24324. },
  24325. {
  24326. name: "Megamacro",
  24327. height: math.unit(1, "mile")
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24333. {
  24334. side: {
  24335. height: math.unit(10, "feet"),
  24336. weight: math.unit(600, "lb"),
  24337. name: "Side",
  24338. image: {
  24339. source: "./media/characters/blair/side.svg",
  24340. bottom: 16.6 / 475,
  24341. extra: 458 / 431
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Micro",
  24348. height: math.unit(8, "inches")
  24349. },
  24350. {
  24351. name: "Normal",
  24352. height: math.unit(10, "feet"),
  24353. default: true
  24354. },
  24355. {
  24356. name: "Macro",
  24357. height: math.unit(180, "feet")
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24363. {
  24364. front: {
  24365. height: math.unit(5 + 4 / 12, "feet"),
  24366. weight: math.unit(125, "lb"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/fisher/front.svg",
  24370. extra: 444 / 390,
  24371. bottom: 2 / 444.8
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Micro",
  24378. height: math.unit(4, "inches")
  24379. },
  24380. {
  24381. name: "Normal",
  24382. height: math.unit(5 + 4 / 12, "feet"),
  24383. default: true
  24384. },
  24385. {
  24386. name: "Macro",
  24387. height: math.unit(100, "feet")
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(6.71, "feet"),
  24396. weight: math.unit(200, "lb"),
  24397. capacity: math.unit(1000000, "people"),
  24398. name: "Front",
  24399. image: {
  24400. source: "./media/characters/gliss/front.svg",
  24401. extra: 2347 / 2231,
  24402. bottom: 113 / 2462
  24403. }
  24404. },
  24405. hammerspaceSize: {
  24406. height: math.unit(6.71 * 717, "feet"),
  24407. weight: math.unit(200, "lb"),
  24408. capacity: math.unit(1000000, "people"),
  24409. name: "Hammerspace Size",
  24410. image: {
  24411. source: "./media/characters/gliss/front.svg",
  24412. extra: 2347 / 2231,
  24413. bottom: 113 / 2462
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Normal",
  24420. height: math.unit(6.71, "feet"),
  24421. default: true
  24422. },
  24423. ]
  24424. ))
  24425. characterMakers.push(() => makeCharacter(
  24426. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24427. {
  24428. side: {
  24429. height: math.unit(1.44, "m"),
  24430. weight: math.unit(80, "kg"),
  24431. name: "Side",
  24432. image: {
  24433. source: "./media/characters/dune-anderson/side.svg",
  24434. bottom: 49 / 1426
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Wolf-sized",
  24441. height: math.unit(1.44, "meters")
  24442. },
  24443. {
  24444. name: "Normal",
  24445. height: math.unit(5.05, "meters"),
  24446. default: true
  24447. },
  24448. {
  24449. name: "Big",
  24450. height: math.unit(14.4, "meters")
  24451. },
  24452. {
  24453. name: "Huge",
  24454. height: math.unit(144, "meters")
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24460. {
  24461. front: {
  24462. height: math.unit(7, "feet"),
  24463. weight: math.unit(425, "lb"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/hind/front.svg",
  24467. extra: 2091 / 1860,
  24468. bottom: 129 / 2220
  24469. }
  24470. },
  24471. back: {
  24472. height: math.unit(7, "feet"),
  24473. weight: math.unit(425, "lb"),
  24474. name: "Back",
  24475. image: {
  24476. source: "./media/characters/hind/back.svg",
  24477. extra: 2091 / 1860,
  24478. bottom: 24.6 / 2309
  24479. }
  24480. },
  24481. tail: {
  24482. height: math.unit(2.8, "feet"),
  24483. name: "Tail",
  24484. image: {
  24485. source: "./media/characters/hind/tail.svg"
  24486. }
  24487. },
  24488. head: {
  24489. height: math.unit(2.55, "feet"),
  24490. name: "Head",
  24491. image: {
  24492. source: "./media/characters/hind/head.svg"
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "XS",
  24499. height: math.unit(0.7, "feet")
  24500. },
  24501. {
  24502. name: "Normal",
  24503. height: math.unit(7, "feet"),
  24504. default: true
  24505. },
  24506. {
  24507. name: "XL",
  24508. height: math.unit(70, "feet")
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24514. {
  24515. front: {
  24516. height: math.unit(6, "feet"),
  24517. weight: math.unit(150, "lb"),
  24518. name: "Front",
  24519. image: {
  24520. source: "./media/characters/dylan-skaven/front.svg",
  24521. extra: 2318 / 2063,
  24522. bottom: 93.4 / 2410
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Nano",
  24529. height: math.unit(1, "mm")
  24530. },
  24531. {
  24532. name: "Micro",
  24533. height: math.unit(1, "cm")
  24534. },
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(2.1, "meters"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(7 + 5 / 12, "feet"),
  24547. weight: math.unit(357, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/solex-draconov/front.svg",
  24551. extra: 1993 / 1865,
  24552. bottom: 117 / 2111
  24553. }
  24554. },
  24555. },
  24556. [
  24557. {
  24558. name: "Natural Height",
  24559. height: math.unit(7 + 5 / 12, "feet"),
  24560. default: true
  24561. },
  24562. {
  24563. name: "Macro",
  24564. height: math.unit(350, "feet")
  24565. },
  24566. {
  24567. name: "Macro+",
  24568. height: math.unit(1000, "feet")
  24569. },
  24570. {
  24571. name: "Megamacro",
  24572. height: math.unit(20, "km")
  24573. },
  24574. {
  24575. name: "Megamacro+",
  24576. height: math.unit(1000, "km")
  24577. },
  24578. {
  24579. name: "Gigamacro",
  24580. height: math.unit(2.5, "Gm")
  24581. },
  24582. {
  24583. name: "Teramacro",
  24584. height: math.unit(15, "Tm")
  24585. },
  24586. {
  24587. name: "Galactic",
  24588. height: math.unit(30, "Zm")
  24589. },
  24590. {
  24591. name: "Universal",
  24592. height: math.unit(21000, "Ym")
  24593. },
  24594. {
  24595. name: "Omniversal",
  24596. height: math.unit(9.861e50, "Ym")
  24597. },
  24598. {
  24599. name: "Existential",
  24600. height: math.unit(1e300, "meters")
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24606. {
  24607. side: {
  24608. height: math.unit(25, "feet"),
  24609. weight: math.unit(90000, "lb"),
  24610. name: "Side",
  24611. image: {
  24612. source: "./media/characters/mandarax/side.svg",
  24613. extra: 614 / 332,
  24614. bottom: 55 / 630
  24615. }
  24616. },
  24617. head: {
  24618. height: math.unit(11.4, "feet"),
  24619. name: "Head",
  24620. image: {
  24621. source: "./media/characters/mandarax/head.svg"
  24622. }
  24623. },
  24624. belly: {
  24625. height: math.unit(33, "feet"),
  24626. name: "Belly",
  24627. capacity: math.unit(500, "people"),
  24628. image: {
  24629. source: "./media/characters/mandarax/belly.svg"
  24630. }
  24631. },
  24632. dick: {
  24633. height: math.unit(8.46, "feet"),
  24634. name: "Dick",
  24635. image: {
  24636. source: "./media/characters/mandarax/dick.svg"
  24637. }
  24638. },
  24639. top: {
  24640. height: math.unit(28, "meters"),
  24641. name: "Top",
  24642. image: {
  24643. source: "./media/characters/mandarax/top.svg"
  24644. }
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Normal",
  24650. height: math.unit(25, "feet"),
  24651. default: true
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24657. {
  24658. front: {
  24659. height: math.unit(5, "feet"),
  24660. weight: math.unit(90, "lb"),
  24661. name: "Front",
  24662. image: {
  24663. source: "./media/characters/pixil/front.svg",
  24664. extra: 2000 / 1618,
  24665. bottom: 12.3 / 2011
  24666. }
  24667. },
  24668. },
  24669. [
  24670. {
  24671. name: "Normal",
  24672. height: math.unit(5, "feet"),
  24673. default: true
  24674. },
  24675. {
  24676. name: "Megamacro",
  24677. height: math.unit(10, "miles"),
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(7 + 2 / 12, "feet"),
  24686. weight: math.unit(200, "lb"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/angel/front.svg",
  24690. extra: 1830 / 1737,
  24691. bottom: 22.6 / 1854,
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(7 + 2 / 12, "feet"),
  24699. default: true
  24700. },
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(1000, "feet")
  24704. },
  24705. {
  24706. name: "Megamacro",
  24707. height: math.unit(2, "miles")
  24708. },
  24709. {
  24710. name: "Gigamacro",
  24711. height: math.unit(20, "earths")
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(5, "feet"),
  24720. weight: math.unit(180, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/mekana/front.svg",
  24724. extra: 1671 / 1605,
  24725. bottom: 3.5 / 1691
  24726. }
  24727. },
  24728. side: {
  24729. height: math.unit(5, "feet"),
  24730. weight: math.unit(180, "lb"),
  24731. name: "Side",
  24732. image: {
  24733. source: "./media/characters/mekana/side.svg",
  24734. extra: 1671 / 1605,
  24735. bottom: 3.5 / 1691
  24736. }
  24737. },
  24738. back: {
  24739. height: math.unit(5, "feet"),
  24740. weight: math.unit(180, "lb"),
  24741. name: "Back",
  24742. image: {
  24743. source: "./media/characters/mekana/back.svg",
  24744. extra: 1671 / 1605,
  24745. bottom: 3.5 / 1691
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(5, "feet"),
  24753. default: true
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(4 + 6 / 12, "feet"),
  24762. weight: math.unit(80, "lb"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/pixie/front.svg",
  24766. extra: 1924 / 1825,
  24767. bottom: 22.4 / 1946
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(4 + 6 / 12, "feet"),
  24775. default: true
  24776. },
  24777. {
  24778. name: "Macro",
  24779. height: math.unit(40, "feet")
  24780. },
  24781. ]
  24782. ))
  24783. characterMakers.push(() => makeCharacter(
  24784. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24785. {
  24786. front: {
  24787. height: math.unit(2.1, "meters"),
  24788. weight: math.unit(200, "lb"),
  24789. name: "Front",
  24790. image: {
  24791. source: "./media/characters/the-lascivious/front.svg",
  24792. extra: 1 / 0.893,
  24793. bottom: 3.5 / 573.7
  24794. }
  24795. },
  24796. },
  24797. [
  24798. {
  24799. name: "Human Scale",
  24800. height: math.unit(2.1, "meters")
  24801. },
  24802. {
  24803. name: "Wolxi Scale",
  24804. height: math.unit(46.2, "m"),
  24805. default: true
  24806. },
  24807. {
  24808. name: "Boinker of Buildings",
  24809. height: math.unit(10, "km")
  24810. },
  24811. {
  24812. name: "Shagger of Skyscrapers",
  24813. height: math.unit(40, "km")
  24814. },
  24815. {
  24816. name: "Banger of Boroughs",
  24817. height: math.unit(4000, "km")
  24818. },
  24819. {
  24820. name: "Screwer of States",
  24821. height: math.unit(100000, "km")
  24822. },
  24823. {
  24824. name: "Pounder of Planets",
  24825. height: math.unit(2000000, "km")
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(6, "feet"),
  24834. weight: math.unit(150, "lb"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/aj/front.svg",
  24838. extra: 2039 / 1562,
  24839. bottom: 40 / 2079
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Normal",
  24846. height: math.unit(11 + 6 / 12, "feet"),
  24847. default: true
  24848. },
  24849. {
  24850. name: "Megamacro",
  24851. height: math.unit(60, "megameters")
  24852. },
  24853. ]
  24854. ))
  24855. characterMakers.push(() => makeCharacter(
  24856. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24857. {
  24858. side: {
  24859. height: math.unit(31 + 8 / 12, "feet"),
  24860. weight: math.unit(75000, "kg"),
  24861. name: "Side",
  24862. image: {
  24863. source: "./media/characters/koros/side.svg",
  24864. extra: 1442 / 1297,
  24865. bottom: 122.7 / 1562
  24866. }
  24867. },
  24868. dicksKingsCrown: {
  24869. height: math.unit(6, "feet"),
  24870. name: "Dicks (King's Crown)",
  24871. image: {
  24872. source: "./media/characters/koros/dicks-kings-crown.svg"
  24873. }
  24874. },
  24875. dicksTailSet: {
  24876. height: math.unit(3, "feet"),
  24877. name: "Dicks (Tail Set)",
  24878. image: {
  24879. source: "./media/characters/koros/dicks-tail-set.svg"
  24880. }
  24881. },
  24882. dickCumming: {
  24883. height: math.unit(7.98, "feet"),
  24884. name: "Dick (Cumming)",
  24885. image: {
  24886. source: "./media/characters/koros/dick-cumming.svg"
  24887. }
  24888. },
  24889. dicksBack: {
  24890. height: math.unit(5.9, "feet"),
  24891. name: "Dicks (Back)",
  24892. image: {
  24893. source: "./media/characters/koros/dicks-back.svg"
  24894. }
  24895. },
  24896. dicksFront: {
  24897. height: math.unit(3.72, "feet"),
  24898. name: "Dicks (Front)",
  24899. image: {
  24900. source: "./media/characters/koros/dicks-front.svg"
  24901. }
  24902. },
  24903. dicksPeeking: {
  24904. height: math.unit(3.0, "feet"),
  24905. name: "Dicks (Peeking)",
  24906. image: {
  24907. source: "./media/characters/koros/dicks-peeking.svg"
  24908. }
  24909. },
  24910. eye: {
  24911. height: math.unit(1.7, "feet"),
  24912. name: "Eye",
  24913. image: {
  24914. source: "./media/characters/koros/eye.svg"
  24915. }
  24916. },
  24917. headFront: {
  24918. height: math.unit(11.69, "feet"),
  24919. name: "Head (Front)",
  24920. image: {
  24921. source: "./media/characters/koros/head-front.svg"
  24922. }
  24923. },
  24924. headSide: {
  24925. height: math.unit(14, "feet"),
  24926. name: "Head (Side)",
  24927. image: {
  24928. source: "./media/characters/koros/head-side.svg"
  24929. }
  24930. },
  24931. leg: {
  24932. height: math.unit(17, "feet"),
  24933. name: "Leg",
  24934. image: {
  24935. source: "./media/characters/koros/leg.svg"
  24936. }
  24937. },
  24938. mawSide: {
  24939. height: math.unit(12.8, "feet"),
  24940. name: "Maw (Side)",
  24941. image: {
  24942. source: "./media/characters/koros/maw-side.svg"
  24943. }
  24944. },
  24945. mawSpitting: {
  24946. height: math.unit(17, "feet"),
  24947. name: "Maw (Spitting)",
  24948. image: {
  24949. source: "./media/characters/koros/maw-spitting.svg"
  24950. }
  24951. },
  24952. slit: {
  24953. height: math.unit(2.8, "feet"),
  24954. name: "Slit",
  24955. image: {
  24956. source: "./media/characters/koros/slit.svg"
  24957. }
  24958. },
  24959. stomach: {
  24960. height: math.unit(6.8, "feet"),
  24961. capacity: math.unit(20, "people"),
  24962. name: "Stomach",
  24963. image: {
  24964. source: "./media/characters/koros/stomach.svg"
  24965. }
  24966. },
  24967. wingspanBottom: {
  24968. height: math.unit(114, "feet"),
  24969. name: "Wingspan (Bottom)",
  24970. image: {
  24971. source: "./media/characters/koros/wingspan-bottom.svg"
  24972. }
  24973. },
  24974. wingspanTop: {
  24975. height: math.unit(104, "feet"),
  24976. name: "Wingspan (Top)",
  24977. image: {
  24978. source: "./media/characters/koros/wingspan-top.svg"
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Normal",
  24985. height: math.unit(31 + 8 / 12, "feet"),
  24986. default: true
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24992. {
  24993. front: {
  24994. height: math.unit(18 + 5 / 12, "feet"),
  24995. weight: math.unit(3750, "kg"),
  24996. name: "Front",
  24997. image: {
  24998. source: "./media/characters/vexx/front.svg",
  24999. extra: 426 / 396,
  25000. bottom: 31.5 / 458
  25001. }
  25002. },
  25003. maw: {
  25004. height: math.unit(6, "feet"),
  25005. name: "Maw",
  25006. image: {
  25007. source: "./media/characters/vexx/maw.svg"
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Normal",
  25014. height: math.unit(18 + 5 / 12, "feet"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25021. {
  25022. front: {
  25023. height: math.unit(17 + 6 / 12, "feet"),
  25024. weight: math.unit(150, "lb"),
  25025. name: "Front",
  25026. image: {
  25027. source: "./media/characters/baadra/front.svg",
  25028. extra: 3137 / 2890,
  25029. bottom: 168.4 / 3305
  25030. }
  25031. },
  25032. back: {
  25033. height: math.unit(17 + 6 / 12, "feet"),
  25034. weight: math.unit(150, "lb"),
  25035. name: "Back",
  25036. image: {
  25037. source: "./media/characters/baadra/back.svg",
  25038. extra: 3142 / 2890,
  25039. bottom: 220 / 3371
  25040. }
  25041. },
  25042. head: {
  25043. height: math.unit(5.45, "feet"),
  25044. name: "Head",
  25045. image: {
  25046. source: "./media/characters/baadra/head.svg"
  25047. }
  25048. },
  25049. headAngry: {
  25050. height: math.unit(4.95, "feet"),
  25051. name: "Head (Angry)",
  25052. image: {
  25053. source: "./media/characters/baadra/head-angry.svg"
  25054. }
  25055. },
  25056. headOpen: {
  25057. height: math.unit(6, "feet"),
  25058. name: "Head (Open)",
  25059. image: {
  25060. source: "./media/characters/baadra/head-open.svg"
  25061. }
  25062. },
  25063. },
  25064. [
  25065. {
  25066. name: "Normal",
  25067. height: math.unit(17 + 6 / 12, "feet"),
  25068. default: true
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(7 + 3 / 12, "feet"),
  25077. weight: math.unit(180, "lb"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/juri/front.svg",
  25081. extra: 1401 / 1237,
  25082. bottom: 18.5 / 1418
  25083. }
  25084. },
  25085. side: {
  25086. height: math.unit(7 + 3 / 12, "feet"),
  25087. weight: math.unit(180, "lb"),
  25088. name: "Side",
  25089. image: {
  25090. source: "./media/characters/juri/side.svg",
  25091. extra: 1424 / 1242,
  25092. bottom: 18.5 / 1447
  25093. }
  25094. },
  25095. sitting: {
  25096. height: math.unit(6, "feet"),
  25097. weight: math.unit(180, "lb"),
  25098. name: "Sitting",
  25099. image: {
  25100. source: "./media/characters/juri/sitting.svg",
  25101. extra: 1270 / 1143,
  25102. bottom: 100 / 1343
  25103. }
  25104. },
  25105. back: {
  25106. height: math.unit(7 + 3 / 12, "feet"),
  25107. weight: math.unit(180, "lb"),
  25108. name: "Back",
  25109. image: {
  25110. source: "./media/characters/juri/back.svg",
  25111. extra: 1377 / 1240,
  25112. bottom: 23.7 / 1405
  25113. }
  25114. },
  25115. maw: {
  25116. height: math.unit(2.8, "feet"),
  25117. name: "Maw",
  25118. image: {
  25119. source: "./media/characters/juri/maw.svg"
  25120. }
  25121. },
  25122. stomach: {
  25123. height: math.unit(0.89, "feet"),
  25124. capacity: math.unit(4, "liters"),
  25125. name: "Stomach",
  25126. image: {
  25127. source: "./media/characters/juri/stomach.svg"
  25128. }
  25129. },
  25130. },
  25131. [
  25132. {
  25133. name: "Normal",
  25134. height: math.unit(7 + 3 / 12, "feet"),
  25135. default: true
  25136. },
  25137. ]
  25138. ))
  25139. characterMakers.push(() => makeCharacter(
  25140. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25141. {
  25142. fox: {
  25143. height: math.unit(5 + 6 / 12, "feet"),
  25144. weight: math.unit(140, "lb"),
  25145. name: "Fox",
  25146. image: {
  25147. source: "./media/characters/maxene-sita/fox.svg",
  25148. extra: 146 / 138,
  25149. bottom: 2.1 / 148.19
  25150. }
  25151. },
  25152. foxLaying: {
  25153. height: math.unit(1.70, "feet"),
  25154. weight: math.unit(140, "lb"),
  25155. name: "Fox (Laying)",
  25156. image: {
  25157. source: "./media/characters/maxene-sita/fox-laying.svg",
  25158. extra: 910 / 572,
  25159. bottom: 71 / 981
  25160. }
  25161. },
  25162. kitsune: {
  25163. height: math.unit(10, "feet"),
  25164. weight: math.unit(800, "lb"),
  25165. name: "Kitsune",
  25166. image: {
  25167. source: "./media/characters/maxene-sita/kitsune.svg",
  25168. extra: 185 / 176,
  25169. bottom: 4.7 / 189.9
  25170. }
  25171. },
  25172. hellhound: {
  25173. height: math.unit(10, "feet"),
  25174. weight: math.unit(700, "lb"),
  25175. name: "Hellhound",
  25176. image: {
  25177. source: "./media/characters/maxene-sita/hellhound.svg",
  25178. extra: 1600 / 1545,
  25179. bottom: 81 / 1681
  25180. }
  25181. },
  25182. },
  25183. [
  25184. {
  25185. name: "Normal",
  25186. height: math.unit(5 + 6 / 12, "feet"),
  25187. default: true
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25193. {
  25194. front: {
  25195. height: math.unit(3 + 4 / 12, "feet"),
  25196. weight: math.unit(70, "lb"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/maia/front.svg",
  25200. extra: 227 / 219.5,
  25201. bottom: 40 / 267
  25202. }
  25203. },
  25204. back: {
  25205. height: math.unit(3 + 4 / 12, "feet"),
  25206. weight: math.unit(70, "lb"),
  25207. name: "Back",
  25208. image: {
  25209. source: "./media/characters/maia/back.svg",
  25210. extra: 237 / 225
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Normal",
  25217. height: math.unit(3 + 4 / 12, "feet"),
  25218. default: true
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25224. {
  25225. front: {
  25226. height: math.unit(5 + 10 / 12, "feet"),
  25227. weight: math.unit(197, "lb"),
  25228. name: "Front",
  25229. image: {
  25230. source: "./media/characters/jabaro/front.svg",
  25231. extra: 225 / 216,
  25232. bottom: 5.06 / 230
  25233. }
  25234. },
  25235. back: {
  25236. height: math.unit(5 + 10 / 12, "feet"),
  25237. weight: math.unit(197, "lb"),
  25238. name: "Back",
  25239. image: {
  25240. source: "./media/characters/jabaro/back.svg",
  25241. extra: 225 / 219,
  25242. bottom: 1.9 / 227
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(5 + 10 / 12, "feet"),
  25250. default: true
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25256. {
  25257. front: {
  25258. height: math.unit(5 + 8 / 12, "feet"),
  25259. weight: math.unit(139, "lb"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/risa/front.svg",
  25263. extra: 270 / 260,
  25264. bottom: 11.2 / 282
  25265. }
  25266. },
  25267. back: {
  25268. height: math.unit(5 + 8 / 12, "feet"),
  25269. weight: math.unit(139, "lb"),
  25270. name: "Back",
  25271. image: {
  25272. source: "./media/characters/risa/back.svg",
  25273. extra: 264 / 255,
  25274. bottom: 4 / 268
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(5 + 8 / 12, "feet"),
  25282. default: true
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25288. {
  25289. front: {
  25290. height: math.unit(2 + 11 / 12, "feet"),
  25291. weight: math.unit(30, "lb"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/weatley/front.svg",
  25295. bottom: 10.7 / 414,
  25296. extra: 403.5 / 362
  25297. }
  25298. },
  25299. back: {
  25300. height: math.unit(2 + 11 / 12, "feet"),
  25301. weight: math.unit(30, "lb"),
  25302. name: "Back",
  25303. image: {
  25304. source: "./media/characters/weatley/back.svg",
  25305. bottom: 10.7 / 414,
  25306. extra: 403.5 / 362
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Normal",
  25313. height: math.unit(2 + 11 / 12, "feet"),
  25314. default: true
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25320. {
  25321. front: {
  25322. height: math.unit(5 + 2 / 12, "feet"),
  25323. weight: math.unit(50, "kg"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/mercury-crescent/front.svg",
  25327. extra: 1088 / 1033,
  25328. bottom: 18.9 / 1109
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(5 + 2 / 12, "feet"),
  25336. default: true
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(2, "feet"),
  25345. weight: math.unit(15, "kg"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/diamond-jones/front.svg",
  25349. bottom: 16 / 568
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Normal",
  25356. height: math.unit(2, "feet"),
  25357. default: true
  25358. },
  25359. ]
  25360. ))
  25361. characterMakers.push(() => makeCharacter(
  25362. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25363. {
  25364. front: {
  25365. height: math.unit(3, "feet"),
  25366. weight: math.unit(30, "kg"),
  25367. name: "Front",
  25368. image: {
  25369. source: "./media/characters/sweet-bit/front.svg",
  25370. extra: 675 / 567,
  25371. bottom: 27.7 / 703
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(3, "feet"),
  25379. default: true
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25385. {
  25386. side: {
  25387. height: math.unit(9.178, "feet"),
  25388. weight: math.unit(500, "lb"),
  25389. name: "Side",
  25390. image: {
  25391. source: "./media/characters/umbrazen/side.svg",
  25392. extra: 1730 / 1473,
  25393. bottom: 34.6 / 1765
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Normal",
  25400. height: math.unit(9.178, "feet"),
  25401. default: true
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(10, "feet"),
  25410. weight: math.unit(750, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/arlist/front.svg",
  25414. extra: 961 / 778,
  25415. bottom: 6.2 / 986
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Normal",
  25422. height: math.unit(10, "feet"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(5 + 1 / 12, "feet"),
  25432. weight: math.unit(110, "lb"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/aradel/front.svg",
  25436. extra: 324 / 303,
  25437. bottom: 3.6 / 329.4
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(5 + 1 / 12, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(3 + 8 / 12, "feet"),
  25454. weight: math.unit(50, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/serryn/front.svg",
  25458. extra: 1792 / 1656,
  25459. bottom: 43.5 / 1840
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(3 + 8 / 12, "feet"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Xavier Thyme" },
  25473. {
  25474. front: {
  25475. height: math.unit(7 + 10 / 12, "feet"),
  25476. weight: math.unit(255, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/xavier-thyme/front.svg",
  25480. extra: 3733 / 3642,
  25481. bottom: 131 / 3869
  25482. }
  25483. },
  25484. frontRaven: {
  25485. height: math.unit(7 + 10 / 12, "feet"),
  25486. weight: math.unit(255, "lb"),
  25487. name: "Front (Raven)",
  25488. image: {
  25489. source: "./media/characters/xavier-thyme/front-raven.svg",
  25490. extra: 4385 / 3642,
  25491. bottom: 131 / 4517
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Normal",
  25498. height: math.unit(7 + 10 / 12, "feet"),
  25499. default: true
  25500. },
  25501. ]
  25502. ))
  25503. characterMakers.push(() => makeCharacter(
  25504. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25505. {
  25506. front: {
  25507. height: math.unit(1.6, "m"),
  25508. weight: math.unit(50, "kg"),
  25509. name: "Front",
  25510. image: {
  25511. source: "./media/characters/kiki/front.svg",
  25512. extra: 4682 / 3610,
  25513. bottom: 115 / 4777
  25514. }
  25515. },
  25516. },
  25517. [
  25518. {
  25519. name: "Normal",
  25520. height: math.unit(1.6, "meters"),
  25521. default: true
  25522. },
  25523. ]
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(50, "m"),
  25530. weight: math.unit(500, "tonnes"),
  25531. name: "Front",
  25532. image: {
  25533. source: "./media/characters/ryoko/front.svg",
  25534. extra: 4632 / 3926,
  25535. bottom: 193 / 4823
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(50, "meters"),
  25543. default: true
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25549. {
  25550. front: {
  25551. height: math.unit(30, "m"),
  25552. weight: math.unit(22, "tonnes"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/elio/front.svg",
  25556. extra: 4582 / 3720,
  25557. bottom: 236 / 4828
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Normal",
  25564. height: math.unit(30, "meters"),
  25565. default: true
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(6 + 3 / 12, "feet"),
  25574. weight: math.unit(120, "lb"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/azura/front.svg",
  25578. extra: 1149 / 1135,
  25579. bottom: 45 / 1194
  25580. }
  25581. },
  25582. frontClothed: {
  25583. height: math.unit(6 + 3 / 12, "feet"),
  25584. weight: math.unit(120, "lb"),
  25585. name: "Front (Clothed)",
  25586. image: {
  25587. source: "./media/characters/azura/front-clothed.svg",
  25588. extra: 1149 / 1135,
  25589. bottom: 45 / 1194
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Normal",
  25596. height: math.unit(6 + 3 / 12, "feet"),
  25597. default: true
  25598. },
  25599. {
  25600. name: "Macro",
  25601. height: math.unit(20 + 6 / 12, "feet")
  25602. },
  25603. {
  25604. name: "Megamacro",
  25605. height: math.unit(12, "miles")
  25606. },
  25607. {
  25608. name: "Gigamacro",
  25609. height: math.unit(10000, "miles")
  25610. },
  25611. {
  25612. name: "Teramacro",
  25613. height: math.unit(900000, "miles")
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(12, "feet"),
  25622. weight: math.unit(1, "ton"),
  25623. capacity: math.unit(660000, "gallons"),
  25624. name: "Front",
  25625. image: {
  25626. source: "./media/characters/zeus/front.svg",
  25627. extra: 5005 / 4717,
  25628. bottom: 363 / 5388
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Normal",
  25635. height: math.unit(12, "feet")
  25636. },
  25637. {
  25638. name: "Preferred Size",
  25639. height: math.unit(0.5, "miles"),
  25640. default: true
  25641. },
  25642. {
  25643. name: "Giga Horse",
  25644. height: math.unit(300, "miles")
  25645. },
  25646. {
  25647. name: "Riding Planets",
  25648. height: math.unit(30, "megameters")
  25649. },
  25650. {
  25651. name: "Cosmic Giant",
  25652. height: math.unit(3, "zettameters")
  25653. },
  25654. {
  25655. name: "Breeding God",
  25656. height: math.unit(9.92e22, "yottameters")
  25657. },
  25658. ]
  25659. ))
  25660. characterMakers.push(() => makeCharacter(
  25661. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25662. {
  25663. side: {
  25664. height: math.unit(9, "feet"),
  25665. weight: math.unit(1500, "kg"),
  25666. name: "Side",
  25667. image: {
  25668. source: "./media/characters/fang/side.svg",
  25669. extra: 924 / 866,
  25670. bottom: 47.5 / 972.3
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Normal",
  25677. height: math.unit(9, "feet"),
  25678. default: true
  25679. },
  25680. {
  25681. name: "Macro",
  25682. height: math.unit(75 + 6 / 12, "feet")
  25683. },
  25684. {
  25685. name: "Teramacro",
  25686. height: math.unit(50000, "miles")
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(10, "feet"),
  25695. weight: math.unit(2, "tons"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/rekhit/front.svg",
  25699. extra: 2796 / 2590,
  25700. bottom: 225 / 3022
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Normal",
  25707. height: math.unit(10, "feet"),
  25708. default: true
  25709. },
  25710. {
  25711. name: "Macro",
  25712. height: math.unit(500, "feet")
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Dahlia Verrick" },
  25718. {
  25719. front: {
  25720. height: math.unit(7 + 6.451 / 12, "feet"),
  25721. weight: math.unit(310, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/dahlia-verrick/front.svg",
  25725. extra: 1488 / 1365,
  25726. bottom: 6.2 / 1495
  25727. }
  25728. },
  25729. back: {
  25730. height: math.unit(7 + 6.451 / 12, "feet"),
  25731. weight: math.unit(310, "lb"),
  25732. name: "Back",
  25733. image: {
  25734. source: "./media/characters/dahlia-verrick/back.svg",
  25735. extra: 1472 / 1351,
  25736. bottom: 5.28 / 1477
  25737. }
  25738. },
  25739. frontBusiness: {
  25740. height: math.unit(7 + 6.451 / 12, "feet"),
  25741. weight: math.unit(200, "lb"),
  25742. name: "Front (Business)",
  25743. image: {
  25744. source: "./media/characters/dahlia-verrick/front-business.svg",
  25745. extra: 1478 / 1381,
  25746. bottom: 5.5 / 1484
  25747. }
  25748. },
  25749. frontCasual: {
  25750. height: math.unit(7 + 6.451 / 12, "feet"),
  25751. weight: math.unit(200, "lb"),
  25752. name: "Front (Casual)",
  25753. image: {
  25754. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25755. extra: 1478 / 1381,
  25756. bottom: 5.5 / 1484
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Travel-Sized",
  25763. height: math.unit(7.45, "inches")
  25764. },
  25765. {
  25766. name: "Normal",
  25767. height: math.unit(7 + 6.451 / 12, "feet"),
  25768. default: true
  25769. },
  25770. {
  25771. name: "Hitting the Town",
  25772. height: math.unit(37 + 8 / 12, "feet")
  25773. },
  25774. {
  25775. name: "Stomp in the Suburbs",
  25776. height: math.unit(964 + 9.728 / 12, "feet")
  25777. },
  25778. {
  25779. name: "Sit on the City",
  25780. height: math.unit(61747 + 10.592 / 12, "feet")
  25781. },
  25782. {
  25783. name: "Glomp the Globe",
  25784. height: math.unit(252919327 + 4.832 / 12, "feet")
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(6 + 4 / 12, "feet"),
  25793. weight: math.unit(320, "lb"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/balina-mahigan/front.svg",
  25797. extra: 447 / 428,
  25798. bottom: 18 / 466
  25799. }
  25800. },
  25801. back: {
  25802. height: math.unit(6 + 4 / 12, "feet"),
  25803. weight: math.unit(320, "lb"),
  25804. name: "Back",
  25805. image: {
  25806. source: "./media/characters/balina-mahigan/back.svg",
  25807. extra: 445 / 428,
  25808. bottom: 4.07 / 448
  25809. }
  25810. },
  25811. arm: {
  25812. height: math.unit(1.88, "feet"),
  25813. name: "Arm",
  25814. image: {
  25815. source: "./media/characters/balina-mahigan/arm.svg"
  25816. }
  25817. },
  25818. backPort: {
  25819. height: math.unit(0.685, "feet"),
  25820. name: "Back Port",
  25821. image: {
  25822. source: "./media/characters/balina-mahigan/back-port.svg"
  25823. }
  25824. },
  25825. hoofpaw: {
  25826. height: math.unit(1.41, "feet"),
  25827. name: "Hoofpaw",
  25828. image: {
  25829. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25830. }
  25831. },
  25832. leftHandBack: {
  25833. height: math.unit(0.938, "feet"),
  25834. name: "Left Hand (Back)",
  25835. image: {
  25836. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25837. }
  25838. },
  25839. leftHandFront: {
  25840. height: math.unit(0.938, "feet"),
  25841. name: "Left Hand (Front)",
  25842. image: {
  25843. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25844. }
  25845. },
  25846. rightHandBack: {
  25847. height: math.unit(0.95, "feet"),
  25848. name: "Right Hand (Back)",
  25849. image: {
  25850. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25851. }
  25852. },
  25853. rightHandFront: {
  25854. height: math.unit(0.95, "feet"),
  25855. name: "Right Hand (Front)",
  25856. image: {
  25857. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(6 + 4 / 12, "feet"),
  25865. default: true
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(6, "feet"),
  25874. weight: math.unit(320, "lb"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/balina-mejeri/front.svg",
  25878. extra: 517 / 488,
  25879. bottom: 44.2 / 561
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(6 + 4 / 12, "feet")
  25887. },
  25888. {
  25889. name: "Business",
  25890. height: math.unit(155, "feet"),
  25891. default: true
  25892. },
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25897. {
  25898. kneeling: {
  25899. height: math.unit(6 + 4 / 12, "feet"),
  25900. weight: math.unit(300 * 20, "lb"),
  25901. name: "Kneeling",
  25902. image: {
  25903. source: "./media/characters/balbarian/kneeling.svg",
  25904. extra: 922 / 862,
  25905. bottom: 42.4 / 965
  25906. }
  25907. },
  25908. },
  25909. [
  25910. {
  25911. name: "Normal",
  25912. height: math.unit(6 + 4 / 12, "feet")
  25913. },
  25914. {
  25915. name: "Treasured",
  25916. height: math.unit(18 + 9 / 12, "feet"),
  25917. default: true
  25918. },
  25919. {
  25920. name: "Macro",
  25921. height: math.unit(900, "feet")
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25927. {
  25928. front: {
  25929. height: math.unit(6 + 4 / 12, "feet"),
  25930. weight: math.unit(325, "lb"),
  25931. name: "Front",
  25932. image: {
  25933. source: "./media/characters/balina-amarini/front.svg",
  25934. extra: 415 / 403,
  25935. bottom: 19 / 433.4
  25936. }
  25937. },
  25938. back: {
  25939. height: math.unit(6 + 4 / 12, "feet"),
  25940. weight: math.unit(325, "lb"),
  25941. name: "Back",
  25942. image: {
  25943. source: "./media/characters/balina-amarini/back.svg",
  25944. extra: 415 / 403,
  25945. bottom: 13.5 / 432
  25946. }
  25947. },
  25948. overdrive: {
  25949. height: math.unit(6 + 4 / 12, "feet"),
  25950. weight: math.unit(400, "lb"),
  25951. name: "Overdrive",
  25952. image: {
  25953. source: "./media/characters/balina-amarini/overdrive.svg",
  25954. extra: 269 / 259,
  25955. bottom: 12 / 282
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Boom",
  25962. height: math.unit(9 + 10 / 12, "feet"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Macro",
  25967. height: math.unit(280, "feet")
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25973. {
  25974. goddess: {
  25975. height: math.unit(600, "feet"),
  25976. weight: math.unit(2000000, "tons"),
  25977. name: "Goddess",
  25978. image: {
  25979. source: "./media/characters/lady-kubwa/goddess.svg",
  25980. extra: 1240.5 / 1223,
  25981. bottom: 22 / 1263
  25982. }
  25983. },
  25984. goddesser: {
  25985. height: math.unit(900, "feet"),
  25986. weight: math.unit(20000000, "lb"),
  25987. name: "Goddess-er",
  25988. image: {
  25989. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25990. extra: 899 / 888,
  25991. bottom: 12.6 / 912
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Macro",
  25998. height: math.unit(600, "feet"),
  25999. default: true
  26000. },
  26001. {
  26002. name: "Megamacro",
  26003. height: math.unit(250, "miles")
  26004. },
  26005. ]
  26006. ))
  26007. characterMakers.push(() => makeCharacter(
  26008. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26009. {
  26010. front: {
  26011. height: math.unit(7 + 7 / 12, "feet"),
  26012. weight: math.unit(250, "lb"),
  26013. name: "Front",
  26014. image: {
  26015. source: "./media/characters/tala-grovehorn/front.svg",
  26016. extra: 2636 / 2525,
  26017. bottom: 147 / 2781
  26018. }
  26019. },
  26020. back: {
  26021. height: math.unit(7 + 7 / 12, "feet"),
  26022. weight: math.unit(250, "lb"),
  26023. name: "Back",
  26024. image: {
  26025. source: "./media/characters/tala-grovehorn/back.svg",
  26026. extra: 2635 / 2539,
  26027. bottom: 100 / 2732.8
  26028. }
  26029. },
  26030. mouth: {
  26031. height: math.unit(1.15, "feet"),
  26032. name: "Mouth",
  26033. image: {
  26034. source: "./media/characters/tala-grovehorn/mouth.svg"
  26035. }
  26036. },
  26037. dick: {
  26038. height: math.unit(2.36, "feet"),
  26039. name: "Dick",
  26040. image: {
  26041. source: "./media/characters/tala-grovehorn/dick.svg"
  26042. }
  26043. },
  26044. slit: {
  26045. height: math.unit(0.61, "feet"),
  26046. name: "Slit",
  26047. image: {
  26048. source: "./media/characters/tala-grovehorn/slit.svg"
  26049. }
  26050. },
  26051. },
  26052. [
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(7 + 7 / 12, "feet"),
  26060. weight: math.unit(225, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/epona/front.svg",
  26064. extra: 2445 / 2290,
  26065. bottom: 251 / 2696
  26066. }
  26067. },
  26068. back: {
  26069. height: math.unit(7 + 7 / 12, "feet"),
  26070. weight: math.unit(225, "lb"),
  26071. name: "Back",
  26072. image: {
  26073. source: "./media/characters/epona/back.svg",
  26074. extra: 2546 / 2408,
  26075. bottom: 44 / 2589
  26076. }
  26077. },
  26078. genitals: {
  26079. height: math.unit(1.5, "feet"),
  26080. name: "Genitals",
  26081. image: {
  26082. source: "./media/characters/epona/genitals.svg"
  26083. }
  26084. },
  26085. },
  26086. [
  26087. {
  26088. name: "Normal",
  26089. height: math.unit(7 + 7 / 12, "feet"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(7, "feet"),
  26099. weight: math.unit(518, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/avia-bloodbourn/front.svg",
  26103. extra: 1466 / 1350,
  26104. bottom: 65 / 1527
  26105. }
  26106. },
  26107. },
  26108. [
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(9.35, "feet"),
  26116. weight: math.unit(600, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/amera/front.svg",
  26120. extra: 891 / 818,
  26121. bottom: 30 / 922.7
  26122. }
  26123. },
  26124. back: {
  26125. height: math.unit(9.35, "feet"),
  26126. weight: math.unit(600, "lb"),
  26127. name: "Back",
  26128. image: {
  26129. source: "./media/characters/amera/back.svg",
  26130. extra: 876 / 824,
  26131. bottom: 6.8 / 884
  26132. }
  26133. },
  26134. dick: {
  26135. height: math.unit(2.14, "feet"),
  26136. name: "Dick",
  26137. image: {
  26138. source: "./media/characters/amera/dick.svg"
  26139. }
  26140. },
  26141. },
  26142. [
  26143. {
  26144. name: "Normal",
  26145. height: math.unit(9.35, "feet"),
  26146. default: true
  26147. },
  26148. ]
  26149. ))
  26150. characterMakers.push(() => makeCharacter(
  26151. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26152. {
  26153. kneeling: {
  26154. height: math.unit(3 + 4 / 12, "feet"),
  26155. weight: math.unit(90, "lb"),
  26156. name: "Kneeling",
  26157. image: {
  26158. source: "./media/characters/rosewen/kneeling.svg",
  26159. extra: 1835 / 1571,
  26160. bottom: 27.7 / 1862
  26161. }
  26162. },
  26163. },
  26164. [
  26165. {
  26166. name: "Normal",
  26167. height: math.unit(3 + 4 / 12, "feet"),
  26168. default: true
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26174. {
  26175. front: {
  26176. height: math.unit(5 + 10 / 12, "feet"),
  26177. weight: math.unit(200, "lb"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/sabah/front.svg",
  26181. extra: 849 / 763,
  26182. bottom: 33.9 / 881
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(5 + 10 / 12, "feet"),
  26190. default: true
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26196. {
  26197. front: {
  26198. height: math.unit(3 + 5 / 12, "feet"),
  26199. weight: math.unit(40, "kg"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/purple-flame/front.svg",
  26203. extra: 1577 / 1412,
  26204. bottom: 97 / 1694
  26205. }
  26206. },
  26207. frontDressed: {
  26208. height: math.unit(3 + 5 / 12, "feet"),
  26209. weight: math.unit(40, "kg"),
  26210. name: "Front (Dressed)",
  26211. image: {
  26212. source: "./media/characters/purple-flame/front-dressed.svg",
  26213. extra: 1577 / 1412,
  26214. bottom: 97 / 1694
  26215. }
  26216. },
  26217. headphones: {
  26218. height: math.unit(0.85, "feet"),
  26219. name: "Headphones",
  26220. image: {
  26221. source: "./media/characters/purple-flame/headphones.svg"
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Really Small",
  26228. height: math.unit(5, "cm")
  26229. },
  26230. {
  26231. name: "Micro",
  26232. height: math.unit(1 + 5 / 12, "feet")
  26233. },
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(3 + 5 / 12, "feet"),
  26237. default: true
  26238. },
  26239. {
  26240. name: "Minimacro",
  26241. height: math.unit(125, "feet")
  26242. },
  26243. {
  26244. name: "Macro",
  26245. height: math.unit(0.5, "miles")
  26246. },
  26247. {
  26248. name: "Megamacro",
  26249. height: math.unit(50, "miles")
  26250. },
  26251. {
  26252. name: "Gigantic",
  26253. height: math.unit(750, "miles")
  26254. },
  26255. {
  26256. name: "Planetary",
  26257. height: math.unit(15000, "miles")
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26263. {
  26264. front: {
  26265. height: math.unit(14, "feet"),
  26266. weight: math.unit(959, "lb"),
  26267. name: "Front",
  26268. image: {
  26269. source: "./media/characters/arsenal/front.svg",
  26270. extra: 2357 / 2157,
  26271. bottom: 93 / 2458
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(14, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(6, "feet"),
  26288. weight: math.unit(150, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/adira/front.svg",
  26292. extra: 1078 / 1029,
  26293. bottom: 87 / 1166
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Micro",
  26300. height: math.unit(4, "inches"),
  26301. default: true
  26302. },
  26303. {
  26304. name: "Macro",
  26305. height: math.unit(50, "feet")
  26306. },
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26311. {
  26312. front: {
  26313. height: math.unit(16, "feet"),
  26314. weight: math.unit(1000, "lb"),
  26315. name: "Front",
  26316. image: {
  26317. source: "./media/characters/grim/front.svg",
  26318. extra: 622 / 614,
  26319. bottom: 18.1 / 642
  26320. }
  26321. },
  26322. back: {
  26323. height: math.unit(16, "feet"),
  26324. weight: math.unit(1000, "lb"),
  26325. name: "Back",
  26326. image: {
  26327. source: "./media/characters/grim/back.svg",
  26328. extra: 610.6 / 602,
  26329. bottom: 40.8 / 652
  26330. }
  26331. },
  26332. hunched: {
  26333. height: math.unit(9.75, "feet"),
  26334. weight: math.unit(1000, "lb"),
  26335. name: "Hunched",
  26336. image: {
  26337. source: "./media/characters/grim/hunched.svg",
  26338. extra: 304 / 297,
  26339. bottom: 35.4 / 394
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Normal",
  26346. height: math.unit(16, "feet"),
  26347. default: true
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26353. {
  26354. front: {
  26355. height: math.unit(2.3, "meters"),
  26356. weight: math.unit(300, "lb"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/sinja/front-sfw.svg",
  26360. extra: 1393 / 1294,
  26361. bottom: 70 / 1463
  26362. }
  26363. },
  26364. frontNsfw: {
  26365. height: math.unit(2.3, "meters"),
  26366. weight: math.unit(300, "lb"),
  26367. name: "Front (NSFW)",
  26368. image: {
  26369. source: "./media/characters/sinja/front-nsfw.svg",
  26370. extra: 1393 / 1294,
  26371. bottom: 70 / 1463
  26372. }
  26373. },
  26374. back: {
  26375. height: math.unit(2.3, "meters"),
  26376. weight: math.unit(300, "lb"),
  26377. name: "Back",
  26378. image: {
  26379. source: "./media/characters/sinja/back.svg",
  26380. extra: 1393 / 1294,
  26381. bottom: 70 / 1463
  26382. }
  26383. },
  26384. head: {
  26385. height: math.unit(1.771, "feet"),
  26386. name: "Head",
  26387. image: {
  26388. source: "./media/characters/sinja/head.svg"
  26389. }
  26390. },
  26391. slit: {
  26392. height: math.unit(0.8, "feet"),
  26393. name: "Slit",
  26394. image: {
  26395. source: "./media/characters/sinja/slit.svg"
  26396. }
  26397. },
  26398. },
  26399. [
  26400. {
  26401. name: "Normal",
  26402. height: math.unit(2.3, "meters")
  26403. },
  26404. {
  26405. name: "Macro",
  26406. height: math.unit(91, "meters"),
  26407. default: true
  26408. },
  26409. {
  26410. name: "Megamacro",
  26411. height: math.unit(91440, "meters")
  26412. },
  26413. {
  26414. name: "Gigamacro",
  26415. height: math.unit(60960000, "meters")
  26416. },
  26417. {
  26418. name: "Teramacro",
  26419. height: math.unit(9144000000, "meters")
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(1.7, "meters"),
  26428. weight: math.unit(130, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/kyu/front.svg",
  26432. extra: 415 / 395,
  26433. bottom: 5 / 420
  26434. }
  26435. },
  26436. head: {
  26437. height: math.unit(1.75, "feet"),
  26438. name: "Head",
  26439. image: {
  26440. source: "./media/characters/kyu/head.svg"
  26441. }
  26442. },
  26443. foot: {
  26444. height: math.unit(0.81, "feet"),
  26445. name: "Foot",
  26446. image: {
  26447. source: "./media/characters/kyu/foot.svg"
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Normal",
  26454. height: math.unit(1.7, "meters")
  26455. },
  26456. {
  26457. name: "Macro",
  26458. height: math.unit(131, "feet"),
  26459. default: true
  26460. },
  26461. {
  26462. name: "Megamacro",
  26463. height: math.unit(91440, "meters")
  26464. },
  26465. {
  26466. name: "Gigamacro",
  26467. height: math.unit(60960000, "meters")
  26468. },
  26469. {
  26470. name: "Teramacro",
  26471. height: math.unit(9144000000, "meters")
  26472. },
  26473. ]
  26474. ))
  26475. characterMakers.push(() => makeCharacter(
  26476. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26477. {
  26478. front: {
  26479. height: math.unit(7 + 1 / 12, "feet"),
  26480. weight: math.unit(250, "lb"),
  26481. name: "Front",
  26482. image: {
  26483. source: "./media/characters/joey/front.svg",
  26484. extra: 1791 / 1537,
  26485. bottom: 28 / 1816
  26486. }
  26487. },
  26488. },
  26489. [
  26490. {
  26491. name: "Micro",
  26492. height: math.unit(3, "inches")
  26493. },
  26494. {
  26495. name: "Normal",
  26496. height: math.unit(7 + 1 / 12, "feet"),
  26497. default: true
  26498. },
  26499. ]
  26500. ))
  26501. characterMakers.push(() => makeCharacter(
  26502. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26503. {
  26504. front: {
  26505. height: math.unit(165, "cm"),
  26506. weight: math.unit(140, "lb"),
  26507. name: "Front",
  26508. image: {
  26509. source: "./media/characters/sam-evans/front.svg",
  26510. extra: 3417 / 3230,
  26511. bottom: 41.3 / 3417
  26512. }
  26513. },
  26514. frontSixTails: {
  26515. height: math.unit(165, "cm"),
  26516. weight: math.unit(140, "lb"),
  26517. name: "Front-six-tails",
  26518. image: {
  26519. source: "./media/characters/sam-evans/front-six-tails.svg",
  26520. extra: 3417 / 3230,
  26521. bottom: 41.3 / 3417
  26522. }
  26523. },
  26524. back: {
  26525. height: math.unit(165, "cm"),
  26526. weight: math.unit(140, "lb"),
  26527. name: "Back",
  26528. image: {
  26529. source: "./media/characters/sam-evans/back.svg",
  26530. extra: 3227 / 3032,
  26531. bottom: 6.8 / 3234
  26532. }
  26533. },
  26534. face: {
  26535. height: math.unit(0.68, "feet"),
  26536. name: "Face",
  26537. image: {
  26538. source: "./media/characters/sam-evans/face.svg"
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Normal",
  26545. height: math.unit(165, "cm"),
  26546. default: true
  26547. },
  26548. {
  26549. name: "Macro",
  26550. height: math.unit(100, "meters")
  26551. },
  26552. {
  26553. name: "Macro+",
  26554. height: math.unit(800, "meters")
  26555. },
  26556. {
  26557. name: "Macro++",
  26558. height: math.unit(3, "km")
  26559. },
  26560. {
  26561. name: "Macro+++",
  26562. height: math.unit(30, "km")
  26563. },
  26564. ]
  26565. ))
  26566. characterMakers.push(() => makeCharacter(
  26567. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26568. {
  26569. front: {
  26570. height: math.unit(10, "feet"),
  26571. weight: math.unit(750, "lb"),
  26572. name: "Front",
  26573. image: {
  26574. source: "./media/characters/juliet-a/front.svg",
  26575. extra: 1766 / 1720,
  26576. bottom: 43 / 1809
  26577. }
  26578. },
  26579. back: {
  26580. height: math.unit(10, "feet"),
  26581. weight: math.unit(750, "lb"),
  26582. name: "Back",
  26583. image: {
  26584. source: "./media/characters/juliet-a/back.svg",
  26585. extra: 1781 / 1734,
  26586. bottom: 35 / 1810,
  26587. }
  26588. },
  26589. },
  26590. [
  26591. {
  26592. name: "Normal",
  26593. height: math.unit(10, "feet"),
  26594. default: true
  26595. },
  26596. {
  26597. name: "Dragon Form",
  26598. height: math.unit(250, "feet")
  26599. },
  26600. {
  26601. name: "Macro",
  26602. height: math.unit(1000, "feet")
  26603. },
  26604. {
  26605. name: "Megamacro",
  26606. height: math.unit(10000, "feet")
  26607. }
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26612. {
  26613. regular: {
  26614. height: math.unit(7 + 3 / 12, "feet"),
  26615. weight: math.unit(260, "lb"),
  26616. name: "Regular",
  26617. image: {
  26618. source: "./media/characters/wild/regular.svg",
  26619. extra: 97.45 / 92,
  26620. bottom: 6.8 / 104.3
  26621. }
  26622. },
  26623. biggums: {
  26624. height: math.unit(8 + 6 / 12, "feet"),
  26625. weight: math.unit(425, "lb"),
  26626. name: "Biggums",
  26627. image: {
  26628. source: "./media/characters/wild/biggums.svg",
  26629. extra: 97.45 / 92,
  26630. bottom: 7.5 / 132.34
  26631. }
  26632. },
  26633. mawRegular: {
  26634. height: math.unit(1.24, "feet"),
  26635. name: "Maw (Regular)",
  26636. image: {
  26637. source: "./media/characters/wild/maw.svg"
  26638. }
  26639. },
  26640. mawBiggums: {
  26641. height: math.unit(1.47, "feet"),
  26642. name: "Maw (Biggums)",
  26643. image: {
  26644. source: "./media/characters/wild/maw.svg"
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Normal",
  26651. height: math.unit(7 + 3 / 12, "feet"),
  26652. default: true
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26658. {
  26659. front: {
  26660. height: math.unit(2.5, "meters"),
  26661. weight: math.unit(200, "kg"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/vidar/front.svg",
  26665. extra: 2994 / 2795,
  26666. bottom: 56 / 3061
  26667. }
  26668. },
  26669. back: {
  26670. height: math.unit(2.5, "meters"),
  26671. weight: math.unit(200, "kg"),
  26672. name: "Back",
  26673. image: {
  26674. source: "./media/characters/vidar/back.svg",
  26675. extra: 3131 / 2928,
  26676. bottom: 13.5 / 3141.5
  26677. }
  26678. },
  26679. feral: {
  26680. height: math.unit(2.5, "meters"),
  26681. weight: math.unit(2000, "kg"),
  26682. name: "Feral",
  26683. image: {
  26684. source: "./media/characters/vidar/feral.svg",
  26685. extra: 2790 / 1765,
  26686. bottom: 6 / 2796
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Normal",
  26693. height: math.unit(2.5, "meters"),
  26694. default: true
  26695. },
  26696. {
  26697. name: "Macro",
  26698. height: math.unit(100, "meters")
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26704. {
  26705. front: {
  26706. height: math.unit(5 + 9 / 12, "feet"),
  26707. weight: math.unit(120, "lb"),
  26708. name: "Front",
  26709. image: {
  26710. source: "./media/characters/ash/front.svg",
  26711. extra: 2189 / 1961,
  26712. bottom: 5.2 / 2194
  26713. }
  26714. },
  26715. },
  26716. [
  26717. {
  26718. name: "Normal",
  26719. height: math.unit(5 + 9 / 12, "feet"),
  26720. default: true
  26721. },
  26722. ]
  26723. ))
  26724. characterMakers.push(() => makeCharacter(
  26725. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26726. {
  26727. front: {
  26728. height: math.unit(9, "feet"),
  26729. weight: math.unit(10000, "lb"),
  26730. name: "Front",
  26731. image: {
  26732. source: "./media/characters/gygabite/front.svg",
  26733. bottom: 31.7 / 537.8,
  26734. extra: 505 / 370
  26735. }
  26736. },
  26737. },
  26738. [
  26739. {
  26740. name: "Normal",
  26741. height: math.unit(9, "feet"),
  26742. default: true
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(12, "feet"),
  26751. weight: math.unit(35000, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/p0tat0/front.svg",
  26755. extra: 1065 / 921,
  26756. bottom: 55.7 / 1121.25
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Normal",
  26763. height: math.unit(12, "feet"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26770. {
  26771. side: {
  26772. height: math.unit(6.5, "feet"),
  26773. weight: math.unit(800, "lb"),
  26774. name: "Side",
  26775. image: {
  26776. source: "./media/characters/dusk/side.svg",
  26777. extra: 615 / 373,
  26778. bottom: 53 / 664
  26779. }
  26780. },
  26781. sitting: {
  26782. height: math.unit(7, "feet"),
  26783. weight: math.unit(800, "lb"),
  26784. name: "Sitting",
  26785. image: {
  26786. source: "./media/characters/dusk/sitting.svg",
  26787. extra: 753 / 425,
  26788. bottom: 33 / 774
  26789. }
  26790. },
  26791. head: {
  26792. height: math.unit(6.1, "feet"),
  26793. name: "Head",
  26794. image: {
  26795. source: "./media/characters/dusk/head.svg"
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Normal",
  26802. height: math.unit(7, "feet"),
  26803. default: true
  26804. },
  26805. ]
  26806. ))
  26807. characterMakers.push(() => makeCharacter(
  26808. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26809. {
  26810. front: {
  26811. height: math.unit(15, "feet"),
  26812. weight: math.unit(7000, "lb"),
  26813. name: "Front",
  26814. image: {
  26815. source: "./media/characters/jay-direwolf/front.svg",
  26816. extra: 1810 / 1732,
  26817. bottom: 66 / 1892
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(15, "feet"),
  26825. default: true
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(4 + 9 / 12, "feet"),
  26834. weight: math.unit(130, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/anchovie/front.svg",
  26838. extra: 382 / 350,
  26839. bottom: 25 / 409
  26840. }
  26841. },
  26842. back: {
  26843. height: math.unit(4 + 9 / 12, "feet"),
  26844. weight: math.unit(130, "lb"),
  26845. name: "Back",
  26846. image: {
  26847. source: "./media/characters/anchovie/back.svg",
  26848. extra: 385 / 352,
  26849. bottom: 16.6 / 402
  26850. }
  26851. },
  26852. frontDressed: {
  26853. height: math.unit(4 + 9 / 12, "feet"),
  26854. weight: math.unit(130, "lb"),
  26855. name: "Front (Dressed)",
  26856. image: {
  26857. source: "./media/characters/anchovie/front-dressed.svg",
  26858. extra: 382 / 350,
  26859. bottom: 25 / 409
  26860. }
  26861. },
  26862. backDressed: {
  26863. height: math.unit(4 + 9 / 12, "feet"),
  26864. weight: math.unit(130, "lb"),
  26865. name: "Back (Dressed)",
  26866. image: {
  26867. source: "./media/characters/anchovie/back-dressed.svg",
  26868. extra: 385 / 352,
  26869. bottom: 16.6 / 402
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Micro",
  26876. height: math.unit(6.4, "inches")
  26877. },
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(4 + 9 / 12, "feet"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(2, "meters"),
  26890. weight: math.unit(180, "lb"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/acidrenamon/front.svg",
  26894. extra: 987 / 890,
  26895. bottom: 22.8 / 1009
  26896. }
  26897. },
  26898. back: {
  26899. height: math.unit(2, "meters"),
  26900. weight: math.unit(180, "lb"),
  26901. name: "Back",
  26902. image: {
  26903. source: "./media/characters/acidrenamon/back.svg",
  26904. extra: 983 / 891,
  26905. bottom: 8.4 / 992
  26906. }
  26907. },
  26908. head: {
  26909. height: math.unit(1.92, "feet"),
  26910. name: "Head",
  26911. image: {
  26912. source: "./media/characters/acidrenamon/head.svg"
  26913. }
  26914. },
  26915. rump: {
  26916. height: math.unit(1.72, "feet"),
  26917. name: "Rump",
  26918. image: {
  26919. source: "./media/characters/acidrenamon/rump.svg"
  26920. }
  26921. },
  26922. tail: {
  26923. height: math.unit(4.2, "feet"),
  26924. name: "Tail",
  26925. image: {
  26926. source: "./media/characters/acidrenamon/tail.svg"
  26927. }
  26928. },
  26929. },
  26930. [
  26931. {
  26932. name: "Normal",
  26933. height: math.unit(2, "meters"),
  26934. default: true
  26935. },
  26936. {
  26937. name: "Minimacro",
  26938. height: math.unit(7, "meters")
  26939. },
  26940. {
  26941. name: "Macro",
  26942. height: math.unit(200, "meters")
  26943. },
  26944. {
  26945. name: "Gigamacro",
  26946. height: math.unit(0.2, "earths")
  26947. },
  26948. ]
  26949. ))
  26950. characterMakers.push(() => makeCharacter(
  26951. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26952. {
  26953. front: {
  26954. height: math.unit(6, "feet"),
  26955. weight: math.unit(150, "lb"),
  26956. name: "Front",
  26957. image: {
  26958. source: "./media/characters/kenzie-lee/front.svg",
  26959. extra: 1525 / 1465,
  26960. bottom: 45 / 1570
  26961. }
  26962. },
  26963. side: {
  26964. height: math.unit(6, "feet"),
  26965. weight: math.unit(150, "lb"),
  26966. name: "Side",
  26967. image: {
  26968. source: "./media/characters/kenzie-lee/side.svg",
  26969. extra: 5505 / 5383,
  26970. bottom: 60 / 5573
  26971. }
  26972. },
  26973. paw: {
  26974. height: math.unit(0.57, "feet"),
  26975. name: "Paw",
  26976. image: {
  26977. source: "./media/characters/kenzie-lee/paw.svg"
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(152, "feet"),
  26985. default: true
  26986. },
  26987. {
  26988. name: "Megamacro",
  26989. height: math.unit(7, "miles")
  26990. },
  26991. {
  26992. name: "Gigamacro",
  26993. height: math.unit(8000, "miles")
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26999. {
  27000. side: {
  27001. height: math.unit(6, "feet"),
  27002. weight: math.unit(150, "lb"),
  27003. name: "Side",
  27004. image: {
  27005. source: "./media/characters/withers/side.svg",
  27006. extra: 1830 / 1728,
  27007. bottom: 96 / 1927
  27008. }
  27009. },
  27010. front: {
  27011. height: math.unit(6, "feet"),
  27012. weight: math.unit(150, "lb"),
  27013. name: "Front",
  27014. image: {
  27015. source: "./media/characters/withers/front.svg",
  27016. extra: 1514 / 1438,
  27017. bottom: 118 / 1632
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Macro",
  27024. height: math.unit(168, "feet"),
  27025. default: true
  27026. },
  27027. {
  27028. name: "Megamacro",
  27029. height: math.unit(15, "miles")
  27030. }
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27035. {
  27036. front: {
  27037. height: math.unit(6 + 7 / 12, "feet"),
  27038. weight: math.unit(250, "lb"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/nemoskii/front.svg",
  27042. extra: 2270 / 1734,
  27043. bottom: 86 / 2354
  27044. }
  27045. },
  27046. back: {
  27047. height: math.unit(6 + 7 / 12, "feet"),
  27048. weight: math.unit(250, "lb"),
  27049. name: "Back",
  27050. image: {
  27051. source: "./media/characters/nemoskii/back.svg",
  27052. extra: 1845 / 1788,
  27053. bottom: 10.5 / 1852
  27054. }
  27055. },
  27056. head: {
  27057. height: math.unit(1.31, "feet"),
  27058. name: "Head",
  27059. image: {
  27060. source: "./media/characters/nemoskii/head.svg"
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Micro",
  27067. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27068. },
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(6 + 7 / 12, "feet"),
  27072. default: true
  27073. },
  27074. {
  27075. name: "Macro",
  27076. height: math.unit((6 + 7 / 12) * 150, "feet")
  27077. },
  27078. {
  27079. name: "Macro+",
  27080. height: math.unit((6 + 7 / 12) * 500, "feet")
  27081. },
  27082. {
  27083. name: "Megamacro",
  27084. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(1, "mile"),
  27093. weight: math.unit(265261.9, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/shui/front.svg",
  27097. extra: 1633 / 1564,
  27098. bottom: 91.5 / 1726
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Macro",
  27105. height: math.unit(1, "mile"),
  27106. default: true
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(12 + 6 / 12, "feet"),
  27115. weight: math.unit(1342, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/arokh-takakura/front.svg",
  27119. extra: 1089 / 1043,
  27120. bottom: 77.4 / 1176.7
  27121. }
  27122. },
  27123. back: {
  27124. height: math.unit(12 + 6 / 12, "feet"),
  27125. weight: math.unit(1342, "lb"),
  27126. name: "Back",
  27127. image: {
  27128. source: "./media/characters/arokh-takakura/back.svg",
  27129. extra: 1046 / 1019,
  27130. bottom: 102 / 1150
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Big",
  27137. height: math.unit(12 + 6 / 12, "feet"),
  27138. default: true
  27139. },
  27140. ]
  27141. ))
  27142. characterMakers.push(() => makeCharacter(
  27143. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27144. {
  27145. front: {
  27146. height: math.unit(5 + 6 / 12, "feet"),
  27147. weight: math.unit(150, "lb"),
  27148. name: "Front",
  27149. image: {
  27150. source: "./media/characters/theo/front.svg",
  27151. extra: 1184 / 1131,
  27152. bottom: 7.4 / 1191
  27153. }
  27154. },
  27155. },
  27156. [
  27157. {
  27158. name: "Micro",
  27159. height: math.unit(5, "inches")
  27160. },
  27161. {
  27162. name: "Normal",
  27163. height: math.unit(5 + 6 / 12, "feet"),
  27164. default: true
  27165. },
  27166. ]
  27167. ))
  27168. characterMakers.push(() => makeCharacter(
  27169. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27170. {
  27171. front: {
  27172. height: math.unit(5 + 9 / 12, "feet"),
  27173. weight: math.unit(130, "lb"),
  27174. name: "Front",
  27175. image: {
  27176. source: "./media/characters/cecelia-swift/front.svg",
  27177. extra: 502 / 484,
  27178. bottom: 23 / 523
  27179. }
  27180. },
  27181. back: {
  27182. height: math.unit(5 + 9 / 12, "feet"),
  27183. weight: math.unit(130, "lb"),
  27184. name: "Back",
  27185. image: {
  27186. source: "./media/characters/cecelia-swift/back.svg",
  27187. extra: 499 / 485,
  27188. bottom: 12 / 511
  27189. }
  27190. },
  27191. head: {
  27192. height: math.unit(0.90, "feet"),
  27193. name: "Head",
  27194. image: {
  27195. source: "./media/characters/cecelia-swift/head.svg"
  27196. }
  27197. },
  27198. rump: {
  27199. height: math.unit(1.75, "feet"),
  27200. name: "Rump",
  27201. image: {
  27202. source: "./media/characters/cecelia-swift/rump.svg"
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(5 + 9 / 12, "feet"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Big",
  27214. height: math.unit(50, "feet")
  27215. },
  27216. {
  27217. name: "Macro",
  27218. height: math.unit(100, "feet")
  27219. },
  27220. {
  27221. name: "Macro+",
  27222. height: math.unit(500, "feet")
  27223. },
  27224. {
  27225. name: "Macro++",
  27226. height: math.unit(1000, "feet")
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(6, "feet"),
  27235. weight: math.unit(150, "lb"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/kaunan/front.svg",
  27239. extra: 2890 / 2523,
  27240. bottom: 49 / 2939
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Macro",
  27247. height: math.unit(150, "feet"),
  27248. default: true
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27254. {
  27255. front: {
  27256. height: math.unit(175, "cm"),
  27257. weight: math.unit(60, "kg"),
  27258. name: "Front",
  27259. image: {
  27260. source: "./media/characters/fei/front.svg",
  27261. extra: 2581 / 2400,
  27262. bottom: 82.2 / 2663
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Mortal",
  27269. height: math.unit(175, "cm")
  27270. },
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(3500, "m"),
  27274. default: true
  27275. },
  27276. {
  27277. name: "Stroll",
  27278. height: math.unit(17.5, "km")
  27279. },
  27280. {
  27281. name: "Showoff",
  27282. height: math.unit(175, "km")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(7, "feet"),
  27291. weight: math.unit(1000, "kg"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/edrax/front.svg",
  27295. extra: 2838 / 2550,
  27296. bottom: 130 / 2968
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Small",
  27303. height: math.unit(7, "feet")
  27304. },
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(1500, "meters")
  27308. },
  27309. {
  27310. name: "Mega",
  27311. height: math.unit(12000000, "km"),
  27312. default: true
  27313. },
  27314. {
  27315. name: "Megamacro",
  27316. height: math.unit(10600000, "lightyears")
  27317. },
  27318. {
  27319. name: "Hypermacro",
  27320. height: math.unit(256, "yottameters")
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27326. {
  27327. front: {
  27328. height: math.unit(10, "feet"),
  27329. weight: math.unit(750, "lb"),
  27330. name: "Front",
  27331. image: {
  27332. source: "./media/characters/clove/front.svg",
  27333. extra: 2031 / 1860,
  27334. bottom: 47.8 / 2080
  27335. }
  27336. },
  27337. back: {
  27338. height: math.unit(10, "feet"),
  27339. weight: math.unit(750, "lb"),
  27340. name: "Back",
  27341. image: {
  27342. source: "./media/characters/clove/back.svg",
  27343. extra: 2025 / 1859,
  27344. bottom: 46 / 2071
  27345. }
  27346. },
  27347. },
  27348. [
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(10, "feet"),
  27352. default: true
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27358. {
  27359. front: {
  27360. height: math.unit(4, "feet"),
  27361. weight: math.unit(50, "lb"),
  27362. name: "Front",
  27363. image: {
  27364. source: "./media/characters/alex-rabbit/front.svg",
  27365. extra: 507 / 458,
  27366. bottom: 18.5 / 527
  27367. }
  27368. },
  27369. back: {
  27370. height: math.unit(4, "feet"),
  27371. weight: math.unit(50, "lb"),
  27372. name: "Back",
  27373. image: {
  27374. source: "./media/characters/alex-rabbit/back.svg",
  27375. extra: 502 / 460,
  27376. bottom: 18.9 / 521
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Normal",
  27383. height: math.unit(4, "feet"),
  27384. default: true
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27390. {
  27391. front: {
  27392. height: math.unit(1 + 3 / 12, "feet"),
  27393. weight: math.unit(80, "lb"),
  27394. name: "Front",
  27395. image: {
  27396. source: "./media/characters/zander-rose/front.svg",
  27397. extra: 916 / 797,
  27398. bottom: 17 / 933
  27399. }
  27400. },
  27401. back: {
  27402. height: math.unit(1 + 3 / 12, "feet"),
  27403. weight: math.unit(80, "lb"),
  27404. name: "Back",
  27405. image: {
  27406. source: "./media/characters/zander-rose/back.svg",
  27407. extra: 903 / 779,
  27408. bottom: 31 / 934
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Normal",
  27415. height: math.unit(1 + 3 / 12, "feet"),
  27416. default: true
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27422. {
  27423. anthro: {
  27424. height: math.unit(6, "feet"),
  27425. weight: math.unit(150, "lb"),
  27426. name: "Anthro",
  27427. image: {
  27428. source: "./media/characters/razz/anthro.svg",
  27429. extra: 1437 / 1343,
  27430. bottom: 48 / 1485
  27431. }
  27432. },
  27433. feral: {
  27434. height: math.unit(6, "feet"),
  27435. weight: math.unit(150, "lb"),
  27436. name: "Feral",
  27437. image: {
  27438. source: "./media/characters/razz/feral.svg",
  27439. extra: 2569 / 1385,
  27440. bottom: 95 / 2664
  27441. }
  27442. },
  27443. },
  27444. [
  27445. {
  27446. name: "Normal",
  27447. height: math.unit(6, "feet"),
  27448. default: true
  27449. },
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27454. {
  27455. front: {
  27456. height: math.unit(9 + 4 / 12, "feet"),
  27457. weight: math.unit(500, "lb"),
  27458. name: "Front",
  27459. image: {
  27460. source: "./media/characters/morrigan/front.svg",
  27461. extra: 2707 / 2579,
  27462. bottom: 156 / 2863
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(9 + 4 / 12, "feet"),
  27470. default: true
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27476. {
  27477. front: {
  27478. height: math.unit(5, "stories"),
  27479. weight: math.unit(4000, "lb"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/jenene/front.svg",
  27483. extra: 1780 / 1710,
  27484. bottom: 57 / 1837
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(5, "stories"),
  27492. default: true
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(6, "feet"),
  27501. weight: math.unit(150, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/vix-archaser/front.svg",
  27505. extra: 2767 / 2562,
  27506. bottom: 36 / 2803
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Micro",
  27513. height: math.unit(1, "foot")
  27514. },
  27515. {
  27516. name: "Normal",
  27517. height: math.unit(6 + 5 / 12, "feet")
  27518. },
  27519. {
  27520. name: "Minimacro",
  27521. height: math.unit(500, "feet")
  27522. },
  27523. {
  27524. name: "Macro",
  27525. height: math.unit(4, "miles")
  27526. },
  27527. {
  27528. name: "Megamacro",
  27529. height: math.unit(250, "miles"),
  27530. default: true
  27531. },
  27532. {
  27533. name: "Gigamacro",
  27534. height: math.unit(1, "universe")
  27535. },
  27536. {
  27537. name: "Endgame",
  27538. height: math.unit(100, "multiverses")
  27539. }
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27544. {
  27545. taurSfw: {
  27546. height: math.unit(10, "meters"),
  27547. weight: math.unit(17500, "kg"),
  27548. name: "Taur",
  27549. image: {
  27550. source: "./media/characters/faey/taur-sfw.svg",
  27551. extra: 1200 / 968,
  27552. bottom: 41 / 1241
  27553. }
  27554. },
  27555. chestmaw: {
  27556. height: math.unit(2.01, "meters"),
  27557. name: "Chestmaw",
  27558. image: {
  27559. source: "./media/characters/faey/chestmaw.svg"
  27560. }
  27561. },
  27562. foot: {
  27563. height: math.unit(2.43, "meters"),
  27564. name: "Foot",
  27565. image: {
  27566. source: "./media/characters/faey/foot.svg"
  27567. }
  27568. },
  27569. jaws: {
  27570. height: math.unit(1.66, "meters"),
  27571. name: "Jaws",
  27572. image: {
  27573. source: "./media/characters/faey/jaws.svg"
  27574. }
  27575. },
  27576. tongues: {
  27577. height: math.unit(2.01, "meters"),
  27578. name: "Tongues",
  27579. image: {
  27580. source: "./media/characters/faey/tongues.svg"
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Small",
  27587. height: math.unit(10, "meters"),
  27588. default: true
  27589. },
  27590. {
  27591. name: "Big",
  27592. height: math.unit(500000, "km")
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(7, "feet"),
  27601. weight: math.unit(275, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/roku/front.svg",
  27605. extra: 903 / 878,
  27606. bottom: 37 / 940
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(7, "feet"),
  27614. default: true
  27615. },
  27616. {
  27617. name: "Macro",
  27618. height: math.unit(500, "feet")
  27619. },
  27620. {
  27621. name: "Megamacro",
  27622. height: math.unit(200, "miles")
  27623. },
  27624. ]
  27625. ))
  27626. characterMakers.push(() => makeCharacter(
  27627. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27628. {
  27629. front: {
  27630. height: math.unit(6 + 2 / 12, "feet"),
  27631. weight: math.unit(150, "lb"),
  27632. name: "Front",
  27633. image: {
  27634. source: "./media/characters/lira/front.svg",
  27635. extra: 1727 / 1605,
  27636. bottom: 26 / 1753
  27637. }
  27638. },
  27639. back: {
  27640. height: math.unit(6 + 2 / 12, "feet"),
  27641. weight: math.unit(150, "lb"),
  27642. name: "Back",
  27643. image: {
  27644. source: "./media/characters/lira/back.svg",
  27645. extra: 1713/1621,
  27646. bottom: 20/1733
  27647. }
  27648. },
  27649. hand: {
  27650. height: math.unit(0.75, "feet"),
  27651. name: "Hand",
  27652. image: {
  27653. source: "./media/characters/lira/hand.svg"
  27654. }
  27655. },
  27656. maw: {
  27657. height: math.unit(0.65, "feet"),
  27658. name: "Maw",
  27659. image: {
  27660. source: "./media/characters/lira/maw.svg"
  27661. }
  27662. },
  27663. pawDigi: {
  27664. height: math.unit(1.6, "feet"),
  27665. name: "Paw Digi",
  27666. image: {
  27667. source: "./media/characters/lira/paw-digi.svg"
  27668. }
  27669. },
  27670. pawPlanti: {
  27671. height: math.unit(1.4, "feet"),
  27672. name: "Paw Planti",
  27673. image: {
  27674. source: "./media/characters/lira/paw-planti.svg"
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(6 + 2 / 12, "feet"),
  27682. default: true
  27683. },
  27684. {
  27685. name: "Macro",
  27686. height: math.unit(100, "feet")
  27687. },
  27688. {
  27689. name: "Macro²",
  27690. height: math.unit(1600, "feet")
  27691. },
  27692. {
  27693. name: "Planetary",
  27694. height: math.unit(20, "earths")
  27695. },
  27696. ]
  27697. ))
  27698. characterMakers.push(() => makeCharacter(
  27699. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27700. {
  27701. front: {
  27702. height: math.unit(6, "feet"),
  27703. weight: math.unit(150, "lb"),
  27704. name: "Front",
  27705. image: {
  27706. source: "./media/characters/hadjet/front.svg",
  27707. extra: 1480 / 1346,
  27708. bottom: 26 / 1506
  27709. }
  27710. },
  27711. frontNsfw: {
  27712. height: math.unit(6, "feet"),
  27713. weight: math.unit(150, "lb"),
  27714. name: "Front (NSFW)",
  27715. image: {
  27716. source: "./media/characters/hadjet/front-nsfw.svg",
  27717. extra: 1440 / 1358,
  27718. bottom: 52 / 1492
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Macro",
  27725. height: math.unit(10, "stories"),
  27726. default: true
  27727. },
  27728. {
  27729. name: "Megamacro",
  27730. height: math.unit(1.5, "miles")
  27731. },
  27732. {
  27733. name: "Megamacro+",
  27734. height: math.unit(5, "miles")
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27740. {
  27741. side: {
  27742. height: math.unit(106, "feet"),
  27743. weight: math.unit(500, "tonnes"),
  27744. name: "Side",
  27745. image: {
  27746. source: "./media/characters/kodran/side.svg",
  27747. extra: 553 / 480,
  27748. bottom: 33 / 586
  27749. }
  27750. },
  27751. front: {
  27752. height: math.unit(132, "feet"),
  27753. weight: math.unit(500, "tonnes"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/kodran/front.svg",
  27757. extra: 667 / 643,
  27758. bottom: 42 / 709
  27759. }
  27760. },
  27761. flying: {
  27762. height: math.unit(350, "feet"),
  27763. weight: math.unit(500, "tonnes"),
  27764. name: "Flying",
  27765. image: {
  27766. source: "./media/characters/kodran/flying.svg"
  27767. }
  27768. },
  27769. foot: {
  27770. height: math.unit(33, "feet"),
  27771. name: "Foot",
  27772. image: {
  27773. source: "./media/characters/kodran/foot.svg"
  27774. }
  27775. },
  27776. footFront: {
  27777. height: math.unit(19, "feet"),
  27778. name: "Foot (Front)",
  27779. image: {
  27780. source: "./media/characters/kodran/foot-front.svg",
  27781. extra: 261 / 261,
  27782. bottom: 91 / 352
  27783. }
  27784. },
  27785. headFront: {
  27786. height: math.unit(53, "feet"),
  27787. name: "Head (Front)",
  27788. image: {
  27789. source: "./media/characters/kodran/head-front.svg"
  27790. }
  27791. },
  27792. headSide: {
  27793. height: math.unit(65, "feet"),
  27794. name: "Head (Side)",
  27795. image: {
  27796. source: "./media/characters/kodran/head-side.svg"
  27797. }
  27798. },
  27799. throat: {
  27800. height: math.unit(79, "feet"),
  27801. name: "Throat",
  27802. image: {
  27803. source: "./media/characters/kodran/throat.svg"
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Large",
  27810. height: math.unit(106, "feet"),
  27811. default: true
  27812. },
  27813. ]
  27814. ))
  27815. characterMakers.push(() => makeCharacter(
  27816. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27817. {
  27818. side: {
  27819. height: math.unit(11, "feet"),
  27820. weight: math.unit(150, "lb"),
  27821. name: "Side",
  27822. image: {
  27823. source: "./media/characters/pyxaron/side.svg",
  27824. extra: 305 / 195,
  27825. bottom: 17 / 322
  27826. }
  27827. },
  27828. },
  27829. [
  27830. {
  27831. name: "Normal",
  27832. height: math.unit(11, "feet"),
  27833. default: true
  27834. },
  27835. ]
  27836. ))
  27837. characterMakers.push(() => makeCharacter(
  27838. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27839. {
  27840. front: {
  27841. height: math.unit(6, "feet"),
  27842. weight: math.unit(150, "lb"),
  27843. name: "Front",
  27844. image: {
  27845. source: "./media/characters/meep/front.svg",
  27846. extra: 88 / 80,
  27847. bottom: 6 / 94
  27848. }
  27849. },
  27850. },
  27851. [
  27852. {
  27853. name: "Fun Sized",
  27854. height: math.unit(2, "inches"),
  27855. default: true
  27856. },
  27857. {
  27858. name: "Friend Sized",
  27859. height: math.unit(8, "inches")
  27860. },
  27861. ]
  27862. ))
  27863. characterMakers.push(() => makeCharacter(
  27864. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27865. {
  27866. front: {
  27867. height: math.unit(15, "feet"),
  27868. weight: math.unit(2500, "lb"),
  27869. name: "Front",
  27870. image: {
  27871. source: "./media/characters/holly-rabbit/front.svg",
  27872. extra: 1433 / 1233,
  27873. bottom: 125 / 1558
  27874. }
  27875. },
  27876. dick: {
  27877. height: math.unit(4.6, "feet"),
  27878. name: "Dick",
  27879. image: {
  27880. source: "./media/characters/holly-rabbit/dick.svg"
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Normal",
  27887. height: math.unit(15, "feet"),
  27888. default: true
  27889. },
  27890. {
  27891. name: "Macro",
  27892. height: math.unit(250, "feet")
  27893. },
  27894. {
  27895. name: "Macro+",
  27896. height: math.unit(2500, "feet")
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27902. {
  27903. front: {
  27904. height: math.unit(3.02, "meters"),
  27905. weight: math.unit(500, "kg"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/drena/front.svg",
  27909. extra: 282 / 243,
  27910. bottom: 8 / 290
  27911. }
  27912. },
  27913. side: {
  27914. height: math.unit(3.02, "meters"),
  27915. weight: math.unit(500, "kg"),
  27916. name: "Side",
  27917. image: {
  27918. source: "./media/characters/drena/side.svg",
  27919. extra: 280 / 245,
  27920. bottom: 10 / 290
  27921. }
  27922. },
  27923. back: {
  27924. height: math.unit(3.02, "meters"),
  27925. weight: math.unit(500, "kg"),
  27926. name: "Back",
  27927. image: {
  27928. source: "./media/characters/drena/back.svg",
  27929. extra: 278 / 243,
  27930. bottom: 2 / 280
  27931. }
  27932. },
  27933. foot: {
  27934. height: math.unit(0.75, "meters"),
  27935. name: "Foot",
  27936. image: {
  27937. source: "./media/characters/drena/foot.svg"
  27938. }
  27939. },
  27940. maw: {
  27941. height: math.unit(0.82, "meters"),
  27942. name: "Maw",
  27943. image: {
  27944. source: "./media/characters/drena/maw.svg"
  27945. }
  27946. },
  27947. rump: {
  27948. height: math.unit(0.93, "meters"),
  27949. name: "Rump",
  27950. image: {
  27951. source: "./media/characters/drena/rump.svg"
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(3.02, "meters"),
  27959. default: true
  27960. },
  27961. ]
  27962. ))
  27963. characterMakers.push(() => makeCharacter(
  27964. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27965. {
  27966. front: {
  27967. height: math.unit(6 + 4 / 12, "feet"),
  27968. weight: math.unit(250, "lb"),
  27969. name: "Front",
  27970. image: {
  27971. source: "./media/characters/remmyzilla/front.svg",
  27972. extra: 4033 / 3588,
  27973. bottom: 123 / 4156
  27974. }
  27975. },
  27976. back: {
  27977. height: math.unit(6 + 4 / 12, "feet"),
  27978. weight: math.unit(250, "lb"),
  27979. name: "Back",
  27980. image: {
  27981. source: "./media/characters/remmyzilla/back.svg",
  27982. extra: 2687 / 2555,
  27983. bottom: 48 / 2735
  27984. }
  27985. },
  27986. frontFancy: {
  27987. height: math.unit(6 + 4 / 12, "feet"),
  27988. weight: math.unit(250, "lb"),
  27989. name: "Front (Fancy)",
  27990. image: {
  27991. source: "./media/characters/remmyzilla/front-fancy.svg",
  27992. extra: 4119 / 3419,
  27993. bottom: 237 / 4356
  27994. }
  27995. },
  27996. paw: {
  27997. height: math.unit(1.73, "feet"),
  27998. name: "Paw",
  27999. image: {
  28000. source: "./media/characters/remmyzilla/paw.svg"
  28001. }
  28002. },
  28003. maw: {
  28004. height: math.unit(1.73, "feet"),
  28005. name: "Maw",
  28006. image: {
  28007. source: "./media/characters/remmyzilla/maw.svg"
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Normal",
  28014. height: math.unit(6 + 4 / 12, "feet")
  28015. },
  28016. {
  28017. name: "Minimacro",
  28018. height: math.unit(12 + 8 / 12, "feet")
  28019. },
  28020. {
  28021. name: "Normal",
  28022. height: math.unit(640, "feet"),
  28023. default: true
  28024. },
  28025. {
  28026. name: "Megamacro",
  28027. height: math.unit(6400, "feet")
  28028. },
  28029. {
  28030. name: "Gigamacro",
  28031. height: math.unit(64000, "miles")
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28037. {
  28038. front: {
  28039. height: math.unit(2.5, "meters"),
  28040. weight: math.unit(300, "lb"),
  28041. name: "Front",
  28042. image: {
  28043. source: "./media/characters/lawrence/front.svg",
  28044. extra: 357 / 335,
  28045. bottom: 30 / 387
  28046. }
  28047. },
  28048. back: {
  28049. height: math.unit(2.5, "meters"),
  28050. weight: math.unit(300, "lb"),
  28051. name: "Back",
  28052. image: {
  28053. source: "./media/characters/lawrence/back.svg",
  28054. extra: 357 / 338,
  28055. bottom: 16 / 373
  28056. }
  28057. },
  28058. head: {
  28059. height: math.unit(0.9, "meter"),
  28060. name: "Head",
  28061. image: {
  28062. source: "./media/characters/lawrence/head.svg"
  28063. }
  28064. },
  28065. maw: {
  28066. height: math.unit(0.7, "meter"),
  28067. name: "Maw",
  28068. image: {
  28069. source: "./media/characters/lawrence/maw.svg"
  28070. }
  28071. },
  28072. footBottom: {
  28073. height: math.unit(0.5, "meter"),
  28074. name: "Foot (Bottom)",
  28075. image: {
  28076. source: "./media/characters/lawrence/foot-bottom.svg"
  28077. }
  28078. },
  28079. footTop: {
  28080. height: math.unit(0.5, "meter"),
  28081. name: "Foot (Top)",
  28082. image: {
  28083. source: "./media/characters/lawrence/foot-top.svg"
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Normal",
  28090. height: math.unit(2.5, "meters"),
  28091. default: true
  28092. },
  28093. {
  28094. name: "Macro",
  28095. height: math.unit(95, "meters")
  28096. },
  28097. {
  28098. name: "Megamacro",
  28099. height: math.unit(150, "km")
  28100. },
  28101. ]
  28102. ))
  28103. characterMakers.push(() => makeCharacter(
  28104. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28105. {
  28106. front: {
  28107. height: math.unit(4.2, "meters"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/sydney/front.svg",
  28111. extra: 1323 / 1277,
  28112. bottom: 111 / 1434
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(4.2, "meters"),
  28120. default: true
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28126. {
  28127. back: {
  28128. height: math.unit(201, "feet"),
  28129. name: "Back",
  28130. image: {
  28131. source: "./media/characters/jessica/back.svg",
  28132. extra: 273 / 259,
  28133. bottom: 7 / 280
  28134. }
  28135. },
  28136. },
  28137. [
  28138. {
  28139. name: "Normal",
  28140. height: math.unit(201, "feet"),
  28141. default: true
  28142. },
  28143. {
  28144. name: "Megamacro",
  28145. height: math.unit(8, "miles")
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28151. {
  28152. side: {
  28153. height: math.unit(320, "cm"),
  28154. name: "Side",
  28155. image: {
  28156. source: "./media/characters/victoria/side.svg",
  28157. extra: 778 / 346,
  28158. bottom: 56 / 834
  28159. }
  28160. },
  28161. maw: {
  28162. height: math.unit(5.9, "feet"),
  28163. name: "Maw",
  28164. image: {
  28165. source: "./media/characters/victoria/maw.svg"
  28166. }
  28167. },
  28168. },
  28169. [
  28170. {
  28171. name: "Normal",
  28172. height: math.unit(320, "cm"),
  28173. default: true
  28174. },
  28175. ]
  28176. ))
  28177. characterMakers.push(() => makeCharacter(
  28178. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28179. {
  28180. front: {
  28181. height: math.unit(5 + 6 / 12, "feet"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/cat/front.svg",
  28185. extra: 1374 / 1257,
  28186. bottom: 59 / 1433
  28187. }
  28188. },
  28189. back: {
  28190. height: math.unit(5 + 6 / 12, "feet"),
  28191. name: "Back",
  28192. image: {
  28193. source: "./media/characters/cat/back.svg",
  28194. extra: 1337 / 1226,
  28195. bottom: 34 / 1371
  28196. }
  28197. },
  28198. taur: {
  28199. height: math.unit(7, "feet"),
  28200. name: "Taur",
  28201. image: {
  28202. source: "./media/characters/cat/taur.svg",
  28203. extra: 1345 / 1231,
  28204. bottom: 66 / 1411
  28205. }
  28206. },
  28207. lucario: {
  28208. height: math.unit(4, "feet"),
  28209. name: "Lucario",
  28210. image: {
  28211. source: "./media/characters/cat/lucario.svg",
  28212. extra: 1470 / 1318,
  28213. bottom: 65 / 1535
  28214. }
  28215. },
  28216. megaLucario: {
  28217. height: math.unit(4, "feet"),
  28218. name: "Mega Lucario",
  28219. image: {
  28220. source: "./media/characters/cat/mega-lucario.svg",
  28221. extra: 1515 / 1319,
  28222. bottom: 63 / 1578
  28223. }
  28224. },
  28225. nickit: {
  28226. height: math.unit(2, "feet"),
  28227. name: "Nickit",
  28228. image: {
  28229. source: "./media/characters/cat/nickit.svg",
  28230. extra: 1980 / 1585,
  28231. bottom: 102 / 2082
  28232. }
  28233. },
  28234. lopunnyFront: {
  28235. height: math.unit(5, "feet"),
  28236. name: "Lopunny (Front)",
  28237. image: {
  28238. source: "./media/characters/cat/lopunny-front.svg",
  28239. extra: 1782 / 1469,
  28240. bottom: 38 / 1820
  28241. }
  28242. },
  28243. lopunnyBack: {
  28244. height: math.unit(5, "feet"),
  28245. name: "Lopunny (Back)",
  28246. image: {
  28247. source: "./media/characters/cat/lopunny-back.svg",
  28248. extra: 1660 / 1490,
  28249. bottom: 25 / 1685
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Really small",
  28256. height: math.unit(1, "nm")
  28257. },
  28258. {
  28259. name: "Micro",
  28260. height: math.unit(5, "inches")
  28261. },
  28262. {
  28263. name: "Normal",
  28264. height: math.unit(5 + 6 / 12, "feet"),
  28265. default: true
  28266. },
  28267. {
  28268. name: "Macro",
  28269. height: math.unit(50, "feet")
  28270. },
  28271. {
  28272. name: "Macro+",
  28273. height: math.unit(150, "feet")
  28274. },
  28275. {
  28276. name: "Megamacro",
  28277. height: math.unit(100, "miles")
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28283. {
  28284. front: {
  28285. height: math.unit(63.4, "meters"),
  28286. weight: math.unit(3.28349e+6, "kilograms"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/kirina-violet/front.svg",
  28290. extra: 2812 / 2725,
  28291. bottom: 0 / 2812
  28292. }
  28293. },
  28294. back: {
  28295. height: math.unit(63.4, "meters"),
  28296. weight: math.unit(3.28349e+6, "kilograms"),
  28297. name: "Back",
  28298. image: {
  28299. source: "./media/characters/kirina-violet/back.svg",
  28300. extra: 2812 / 2725,
  28301. bottom: 0 / 2812
  28302. }
  28303. },
  28304. mouth: {
  28305. height: math.unit(4.35, "meters"),
  28306. name: "Mouth",
  28307. image: {
  28308. source: "./media/characters/kirina-violet/mouth.svg"
  28309. }
  28310. },
  28311. paw: {
  28312. height: math.unit(5.6, "meters"),
  28313. name: "Paw",
  28314. image: {
  28315. source: "./media/characters/kirina-violet/paw.svg"
  28316. }
  28317. },
  28318. tail: {
  28319. height: math.unit(18, "meters"),
  28320. name: "Tail",
  28321. image: {
  28322. source: "./media/characters/kirina-violet/tail.svg"
  28323. }
  28324. },
  28325. },
  28326. [
  28327. {
  28328. name: "Macro",
  28329. height: math.unit(63.4, "meters"),
  28330. default: true
  28331. },
  28332. ]
  28333. ))
  28334. characterMakers.push(() => makeCharacter(
  28335. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28336. {
  28337. front: {
  28338. height: math.unit(60, "feet"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/cat-gigachu/front.svg",
  28342. extra: 1024 / 780,
  28343. bottom: 23 / 1047
  28344. }
  28345. },
  28346. back: {
  28347. height: math.unit(60, "feet"),
  28348. name: "Back",
  28349. image: {
  28350. source: "./media/characters/cat-gigachu/back.svg",
  28351. extra: 1024 / 780,
  28352. bottom: 23 / 1047
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Dynamax",
  28359. height: math.unit(60, "feet"),
  28360. default: true
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(6, "feet"),
  28369. weight: math.unit(150, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/sfaiyan/front.svg",
  28373. extra: 999 / 978,
  28374. bottom: 5 / 1004
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(1.82, "meters")
  28382. },
  28383. {
  28384. name: "Giant",
  28385. height: math.unit(2.27, "km"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(179, "cm"),
  28395. weight: math.unit(100, "kg"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/raunehkeli/front.svg",
  28399. extra: 1934 / 1926,
  28400. bottom: 0 / 1934
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Normal",
  28407. height: math.unit(179, "cm")
  28408. },
  28409. {
  28410. name: "Maximum",
  28411. height: math.unit(575, "meters"),
  28412. default: true
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28418. {
  28419. front: {
  28420. height: math.unit(6, "feet"),
  28421. weight: math.unit(150, "lb"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28425. extra: 2625 / 2518,
  28426. bottom: 60 / 2685
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(6 + 2 / 12, "feet")
  28434. },
  28435. {
  28436. name: "Macro",
  28437. height: math.unit(1180, "feet"),
  28438. default: true
  28439. },
  28440. ]
  28441. ))
  28442. characterMakers.push(() => makeCharacter(
  28443. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28444. {
  28445. front: {
  28446. height: math.unit(5 + 6 / 12, "feet"),
  28447. weight: math.unit(108, "lb"),
  28448. name: "Front",
  28449. image: {
  28450. source: "./media/characters/lilith-zott/front.svg",
  28451. extra: 2510 / 2238,
  28452. bottom: 100 / 2610
  28453. }
  28454. },
  28455. frontDressed: {
  28456. height: math.unit(5 + 6 / 12, "feet"),
  28457. weight: math.unit(108, "lb"),
  28458. name: "Front (Dressed)",
  28459. image: {
  28460. source: "./media/characters/lilith-zott/front-dressed.svg",
  28461. extra: 2510 / 2238,
  28462. bottom: 100 / 2610
  28463. }
  28464. },
  28465. },
  28466. [
  28467. {
  28468. name: "Normal",
  28469. height: math.unit(5 + 6 / 12, "feet")
  28470. },
  28471. {
  28472. name: "Macro",
  28473. height: math.unit(1030, "feet"),
  28474. default: true
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28480. {
  28481. front: {
  28482. height: math.unit(6, "feet"),
  28483. weight: math.unit(150, "lb"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28487. extra: 2567 / 2435,
  28488. bottom: 39 / 2606
  28489. }
  28490. },
  28491. frontSuper: {
  28492. height: math.unit(6, "feet"),
  28493. name: "Front (Super)",
  28494. image: {
  28495. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28496. extra: 2567 / 2435,
  28497. bottom: 39 / 2606
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(5 + 10 / 12, "feet")
  28505. },
  28506. {
  28507. name: "Macro",
  28508. height: math.unit(1100, "feet"),
  28509. default: true
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28515. {
  28516. front: {
  28517. height: math.unit(100, "miles"),
  28518. name: "Front",
  28519. image: {
  28520. source: "./media/characters/sona/front.svg",
  28521. extra: 2433 / 2201,
  28522. bottom: 53 / 2486
  28523. }
  28524. },
  28525. foot: {
  28526. height: math.unit(16.1, "miles"),
  28527. name: "Foot",
  28528. image: {
  28529. source: "./media/characters/sona/foot.svg"
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Macro",
  28536. height: math.unit(100, "miles"),
  28537. default: true
  28538. },
  28539. ]
  28540. ))
  28541. characterMakers.push(() => makeCharacter(
  28542. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28543. {
  28544. front: {
  28545. height: math.unit(6, "feet"),
  28546. weight: math.unit(150, "lb"),
  28547. name: "Front",
  28548. image: {
  28549. source: "./media/characters/bailey/front.svg",
  28550. extra: 1778 / 1724,
  28551. bottom: 30 / 1808
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Micro",
  28558. height: math.unit(4, "inches")
  28559. },
  28560. {
  28561. name: "Normal",
  28562. height: math.unit(5 + 5 / 12, "feet"),
  28563. default: true
  28564. },
  28565. {
  28566. name: "Macro",
  28567. height: math.unit(250, "feet")
  28568. },
  28569. {
  28570. name: "Megamacro",
  28571. height: math.unit(100, "miles")
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(5 + 2 / 12, "feet"),
  28580. weight: math.unit(120, "lb"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/snaps/front.svg",
  28584. extra: 2370 / 2177,
  28585. bottom: 48 / 2418
  28586. }
  28587. },
  28588. back: {
  28589. height: math.unit(5 + 2 / 12, "feet"),
  28590. weight: math.unit(120, "lb"),
  28591. name: "Back",
  28592. image: {
  28593. source: "./media/characters/snaps/back.svg",
  28594. extra: 2408 / 2258,
  28595. bottom: 15 / 2423
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Micro",
  28602. height: math.unit(9, "inches")
  28603. },
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(5 + 2 / 12, "feet"),
  28607. default: true
  28608. },
  28609. {
  28610. name: "Mini Macro",
  28611. height: math.unit(10, "feet")
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(1.8, "meters"),
  28620. weight: math.unit(85, "kg"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/azteck/front.svg",
  28624. extra: 2815 / 2625,
  28625. bottom: 89 / 2904
  28626. }
  28627. },
  28628. back: {
  28629. height: math.unit(1.8, "meters"),
  28630. weight: math.unit(85, "kg"),
  28631. name: "Back",
  28632. image: {
  28633. source: "./media/characters/azteck/back.svg",
  28634. extra: 2856 / 2648,
  28635. bottom: 85 / 2941
  28636. }
  28637. },
  28638. frontDressed: {
  28639. height: math.unit(1.8, "meters"),
  28640. weight: math.unit(85, "kg"),
  28641. name: "Front (Dressed)",
  28642. image: {
  28643. source: "./media/characters/azteck/front-dressed.svg",
  28644. extra: 2147 / 2003,
  28645. bottom: 68 / 2215
  28646. }
  28647. },
  28648. head: {
  28649. height: math.unit(0.47, "meters"),
  28650. weight: math.unit(85, "kg"),
  28651. name: "Head",
  28652. image: {
  28653. source: "./media/characters/azteck/head.svg"
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Bite sized",
  28660. height: math.unit(16, "cm")
  28661. },
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(1.8, "meters"),
  28665. default: true
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28671. {
  28672. front: {
  28673. height: math.unit(6, "feet"),
  28674. weight: math.unit(150, "lb"),
  28675. name: "Front",
  28676. image: {
  28677. source: "./media/characters/pidge/front.svg",
  28678. extra: 620 / 588,
  28679. bottom: 9 / 629
  28680. }
  28681. },
  28682. back: {
  28683. height: math.unit(6, "feet"),
  28684. weight: math.unit(150, "lb"),
  28685. name: "Back",
  28686. image: {
  28687. source: "./media/characters/pidge/back.svg",
  28688. extra: 620 / 588,
  28689. bottom: 9 / 629
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Macro",
  28696. height: math.unit(1, "mile"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28703. {
  28704. front: {
  28705. height: math.unit(6, "feet"),
  28706. weight: math.unit(150, "lb"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/en/front.svg",
  28710. extra: 1697 / 1563,
  28711. bottom: 103 / 1800
  28712. }
  28713. },
  28714. back: {
  28715. height: math.unit(6, "feet"),
  28716. weight: math.unit(150, "lb"),
  28717. name: "Back",
  28718. image: {
  28719. source: "./media/characters/en/back.svg",
  28720. extra: 1700 / 1570,
  28721. bottom: 51 / 1751
  28722. }
  28723. },
  28724. frontDressed: {
  28725. height: math.unit(6, "feet"),
  28726. weight: math.unit(150, "lb"),
  28727. name: "Front (Dressed)",
  28728. image: {
  28729. source: "./media/characters/en/front-dressed.svg",
  28730. extra: 1697 / 1563,
  28731. bottom: 103 / 1800
  28732. }
  28733. },
  28734. backDressed: {
  28735. height: math.unit(6, "feet"),
  28736. weight: math.unit(150, "lb"),
  28737. name: "Back (Dressed)",
  28738. image: {
  28739. source: "./media/characters/en/back-dressed.svg",
  28740. extra: 1700 / 1570,
  28741. bottom: 51 / 1751
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Macro",
  28748. height: math.unit(210, "feet"),
  28749. default: true
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(6, "feet"),
  28758. weight: math.unit(150, "lb"),
  28759. name: "Front",
  28760. image: {
  28761. source: "./media/characters/haze-orris/front.svg",
  28762. extra: 3975 / 3525,
  28763. bottom: 137 / 4112
  28764. }
  28765. },
  28766. },
  28767. [
  28768. {
  28769. name: "Micro",
  28770. height: math.unit(150, "mm"),
  28771. default: true
  28772. },
  28773. ]
  28774. ))
  28775. characterMakers.push(() => makeCharacter(
  28776. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28777. {
  28778. front: {
  28779. height: math.unit(6, "feet"),
  28780. weight: math.unit(150, "lb"),
  28781. name: "Front",
  28782. image: {
  28783. source: "./media/characters/casselene-yaro/front.svg",
  28784. extra: 4721 / 4541,
  28785. bottom: 82 / 4803
  28786. }
  28787. },
  28788. back: {
  28789. height: math.unit(6, "feet"),
  28790. weight: math.unit(150, "lb"),
  28791. name: "Back",
  28792. image: {
  28793. source: "./media/characters/casselene-yaro/back.svg",
  28794. extra: 4569 / 4377,
  28795. bottom: 69 / 4638
  28796. }
  28797. },
  28798. frontDressed: {
  28799. height: math.unit(6, "feet"),
  28800. weight: math.unit(150, "lb"),
  28801. name: "Front-dressed",
  28802. image: {
  28803. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28804. extra: 4721 / 4541,
  28805. bottom: 82 / 4803
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Macro",
  28812. height: math.unit(190, "feet"),
  28813. default: true
  28814. },
  28815. ]
  28816. ))
  28817. characterMakers.push(() => makeCharacter(
  28818. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28819. {
  28820. front: {
  28821. height: math.unit(6, "feet"),
  28822. weight: math.unit(150, "lb"),
  28823. name: "Front",
  28824. image: {
  28825. source: "./media/characters/myra-rue-delore/front.svg",
  28826. extra: 1340 / 1308,
  28827. bottom: 67 / 1407
  28828. }
  28829. },
  28830. back: {
  28831. height: math.unit(6, "feet"),
  28832. weight: math.unit(150, "lb"),
  28833. name: "Back",
  28834. image: {
  28835. source: "./media/characters/myra-rue-delore/back.svg",
  28836. extra: 1341 / 1310,
  28837. bottom: 40 / 1381
  28838. }
  28839. },
  28840. frontDressed: {
  28841. height: math.unit(6, "feet"),
  28842. weight: math.unit(150, "lb"),
  28843. name: "Front (Dressed)",
  28844. image: {
  28845. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28846. extra: 1340 / 1308,
  28847. bottom: 67 / 1407
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Macro",
  28854. height: math.unit(150, "feet"),
  28855. default: true
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28861. {
  28862. front: {
  28863. height: math.unit(10, "feet"),
  28864. weight: math.unit(15015, "lb"),
  28865. name: "Front",
  28866. image: {
  28867. source: "./media/characters/fem!plat/front.svg",
  28868. extra: 2799 / 2604,
  28869. bottom: 149 / 2948
  28870. }
  28871. },
  28872. },
  28873. [
  28874. {
  28875. name: "Normal",
  28876. height: math.unit(10, "feet"),
  28877. default: true
  28878. },
  28879. {
  28880. name: "Macro",
  28881. height: math.unit(100, "feet")
  28882. },
  28883. {
  28884. name: "Megamacro",
  28885. height: math.unit(1000, "feet")
  28886. },
  28887. ]
  28888. ))
  28889. characterMakers.push(() => makeCharacter(
  28890. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28891. {
  28892. front: {
  28893. height: math.unit(15 + 5 / 12, "feet"),
  28894. weight: math.unit(4600, "lb"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/neapolitan-ananassa/front.svg",
  28898. extra: 2903 / 2736,
  28899. bottom: 0 / 2903
  28900. }
  28901. },
  28902. side: {
  28903. height: math.unit(15 + 5 / 12, "feet"),
  28904. weight: math.unit(4600, "lb"),
  28905. name: "Side",
  28906. image: {
  28907. source: "./media/characters/neapolitan-ananassa/side.svg",
  28908. extra: 2925 / 2719,
  28909. bottom: 0 / 2925
  28910. }
  28911. },
  28912. back: {
  28913. height: math.unit(15 + 5 / 12, "feet"),
  28914. weight: math.unit(4600, "lb"),
  28915. name: "Back",
  28916. image: {
  28917. source: "./media/characters/neapolitan-ananassa/back.svg",
  28918. extra: 2903 / 2736,
  28919. bottom: 0 / 2903
  28920. }
  28921. },
  28922. },
  28923. [
  28924. {
  28925. name: "Normal",
  28926. height: math.unit(15 + 5 / 12, "feet"),
  28927. default: true
  28928. },
  28929. {
  28930. name: "Post-Millenium",
  28931. height: math.unit(35 + 5 / 12, "feet")
  28932. },
  28933. {
  28934. name: "Post-Era",
  28935. height: math.unit(450 + 5 / 12, "feet")
  28936. },
  28937. ]
  28938. ))
  28939. characterMakers.push(() => makeCharacter(
  28940. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28941. {
  28942. front: {
  28943. height: math.unit(300, "meters"),
  28944. weight: math.unit(125000, "tonnes"),
  28945. name: "Front",
  28946. image: {
  28947. source: "./media/characters/pazuzu/front.svg",
  28948. extra: 877 / 794,
  28949. bottom: 47 / 924
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Macro",
  28956. height: math.unit(300, "meters"),
  28957. default: true
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28963. {
  28964. side: {
  28965. height: math.unit(10 + 7 / 12, "feet"),
  28966. weight: math.unit(2.5, "tons"),
  28967. name: "Side",
  28968. image: {
  28969. source: "./media/characters/aasha/side.svg",
  28970. extra: 1345 / 1245,
  28971. bottom: 111 / 1456
  28972. }
  28973. },
  28974. back: {
  28975. height: math.unit(10 + 7 / 12, "feet"),
  28976. weight: math.unit(2.5, "tons"),
  28977. name: "Back",
  28978. image: {
  28979. source: "./media/characters/aasha/back.svg",
  28980. extra: 1133 / 1057,
  28981. bottom: 257 / 1390
  28982. }
  28983. },
  28984. },
  28985. [
  28986. {
  28987. name: "Normal",
  28988. height: math.unit(10 + 7 / 12, "feet"),
  28989. default: true
  28990. },
  28991. ]
  28992. ))
  28993. characterMakers.push(() => makeCharacter(
  28994. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28995. {
  28996. front: {
  28997. height: math.unit(6 + 3 / 12, "feet"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/nevan/front.svg",
  29001. extra: 704 / 704,
  29002. bottom: 28 / 732
  29003. }
  29004. },
  29005. back: {
  29006. height: math.unit(6 + 3 / 12, "feet"),
  29007. name: "Back",
  29008. image: {
  29009. source: "./media/characters/nevan/back.svg",
  29010. extra: 714 / 714,
  29011. bottom: 21 / 735
  29012. }
  29013. },
  29014. frontFlaccid: {
  29015. height: math.unit(6 + 3 / 12, "feet"),
  29016. name: "Front (Flaccid)",
  29017. image: {
  29018. source: "./media/characters/nevan/front-flaccid.svg",
  29019. extra: 704 / 704,
  29020. bottom: 28 / 732
  29021. }
  29022. },
  29023. frontErect: {
  29024. height: math.unit(6 + 3 / 12, "feet"),
  29025. name: "Front (Erect)",
  29026. image: {
  29027. source: "./media/characters/nevan/front-erect.svg",
  29028. extra: 704 / 704,
  29029. bottom: 28 / 732
  29030. }
  29031. },
  29032. backFlaccid: {
  29033. height: math.unit(6 + 3 / 12, "feet"),
  29034. name: "Back (Flaccid)",
  29035. image: {
  29036. source: "./media/characters/nevan/back-flaccid.svg",
  29037. extra: 714 / 714,
  29038. bottom: 21 / 735
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(6 + 3 / 12, "feet"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(4, "feet"),
  29055. name: "Front",
  29056. image: {
  29057. source: "./media/characters/arhan/front.svg",
  29058. extra: 3368 / 3133,
  29059. bottom: 0 / 3368
  29060. }
  29061. },
  29062. side: {
  29063. height: math.unit(4, "feet"),
  29064. name: "Side",
  29065. image: {
  29066. source: "./media/characters/arhan/side.svg",
  29067. extra: 3347 / 3105,
  29068. bottom: 0 / 3347
  29069. }
  29070. },
  29071. tongue: {
  29072. height: math.unit(1.42, "feet"),
  29073. name: "Tongue",
  29074. image: {
  29075. source: "./media/characters/arhan/tongue.svg"
  29076. }
  29077. },
  29078. head: {
  29079. height: math.unit(0.85, "feet"),
  29080. name: "Head",
  29081. image: {
  29082. source: "./media/characters/arhan/head.svg"
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Normal",
  29089. height: math.unit(4, "feet"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(5 + 7.5 / 12, "feet"),
  29099. weight: math.unit(120, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/digi-duncan/front.svg",
  29103. extra: 330 / 326,
  29104. bottom: 16 / 346
  29105. }
  29106. },
  29107. side: {
  29108. height: math.unit(5 + 7.5 / 12, "feet"),
  29109. weight: math.unit(120, "lb"),
  29110. name: "Side",
  29111. image: {
  29112. source: "./media/characters/digi-duncan/side.svg",
  29113. extra: 341 / 337,
  29114. bottom: 1 / 342
  29115. }
  29116. },
  29117. back: {
  29118. height: math.unit(5 + 7.5 / 12, "feet"),
  29119. weight: math.unit(120, "lb"),
  29120. name: "Back",
  29121. image: {
  29122. source: "./media/characters/digi-duncan/back.svg",
  29123. extra: 330 / 326,
  29124. bottom: 12 / 342
  29125. }
  29126. },
  29127. },
  29128. [
  29129. {
  29130. name: "Speck",
  29131. height: math.unit(0.25, "mm")
  29132. },
  29133. {
  29134. name: "Micro",
  29135. height: math.unit(5, "mm")
  29136. },
  29137. {
  29138. name: "Tiny",
  29139. height: math.unit(0.5, "inches"),
  29140. default: true
  29141. },
  29142. {
  29143. name: "Human",
  29144. height: math.unit(5 + 7.5 / 12, "feet")
  29145. },
  29146. {
  29147. name: "Minigiant",
  29148. height: math.unit(8 + 5.25, "feet")
  29149. },
  29150. {
  29151. name: "Giant",
  29152. height: math.unit(2000, "feet")
  29153. },
  29154. {
  29155. name: "Mega",
  29156. height: math.unit(371.1, "miles")
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29162. {
  29163. front: {
  29164. height: math.unit(2, "meters"),
  29165. weight: math.unit(350, "kg"),
  29166. name: "Front",
  29167. image: {
  29168. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29169. extra: 898 / 838,
  29170. bottom: 9 / 907
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Micro",
  29177. height: math.unit(8, "meters")
  29178. },
  29179. {
  29180. name: "Normal",
  29181. height: math.unit(50, "meters"),
  29182. default: true
  29183. },
  29184. {
  29185. name: "Macro",
  29186. height: math.unit(500, "meters")
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(6 + 6 / 12, "feet"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/khardesh/front.svg",
  29198. extra: 888 / 797,
  29199. bottom: 25 / 913
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Normal",
  29206. height: math.unit(6 + 6 / 12, "feet"),
  29207. default: true
  29208. },
  29209. {
  29210. name: "Normal+",
  29211. height: math.unit(4, "meters")
  29212. },
  29213. {
  29214. name: "Macro",
  29215. height: math.unit(50, "meters")
  29216. },
  29217. {
  29218. name: "Macro+",
  29219. height: math.unit(100, "meters")
  29220. },
  29221. {
  29222. name: "Megamacro",
  29223. height: math.unit(20, "km")
  29224. },
  29225. ]
  29226. ))
  29227. characterMakers.push(() => makeCharacter(
  29228. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29229. {
  29230. front: {
  29231. height: math.unit(6, "feet"),
  29232. weight: math.unit(150, "lb"),
  29233. name: "Front",
  29234. image: {
  29235. source: "./media/characters/kosho/front.svg",
  29236. extra: 1847 / 1847,
  29237. bottom: 86 / 1933
  29238. }
  29239. },
  29240. },
  29241. [
  29242. {
  29243. name: "Second-stage micro",
  29244. height: math.unit(0.5, "inches")
  29245. },
  29246. {
  29247. name: "First-stage micro",
  29248. height: math.unit(6, "inches")
  29249. },
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(6, "feet"),
  29253. default: true
  29254. },
  29255. {
  29256. name: "First-stage macro",
  29257. height: math.unit(72, "feet")
  29258. },
  29259. {
  29260. name: "Second-stage macro",
  29261. height: math.unit(864, "feet")
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29267. {
  29268. normal: {
  29269. height: math.unit(4 + 6 / 12, "feet"),
  29270. name: "Normal",
  29271. image: {
  29272. source: "./media/characters/hydra/normal.svg",
  29273. extra: 2833 / 2634,
  29274. bottom: 68 / 2901
  29275. }
  29276. },
  29277. smol: {
  29278. height: math.unit(0.705, "inches"),
  29279. name: "Smol",
  29280. image: {
  29281. source: "./media/characters/hydra/smol.svg",
  29282. extra: 2715 / 2540,
  29283. bottom: 0 / 2715
  29284. }
  29285. },
  29286. },
  29287. [
  29288. {
  29289. name: "Normal",
  29290. height: math.unit(4 + 6 / 12, "feet"),
  29291. default: true
  29292. }
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(0.6, "cm"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/daz/front.svg",
  29303. extra: 1682 / 1164,
  29304. bottom: 42 / 1724
  29305. }
  29306. },
  29307. },
  29308. [
  29309. {
  29310. name: "Normal",
  29311. height: math.unit(0.6, "cm"),
  29312. default: true
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29318. {
  29319. front: {
  29320. height: math.unit(6, "feet"),
  29321. weight: math.unit(235, "lb"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/theo-pangolin/front.svg",
  29325. extra: 1996 / 1969,
  29326. bottom: 115 / 2111
  29327. }
  29328. },
  29329. back: {
  29330. height: math.unit(6, "feet"),
  29331. weight: math.unit(235, "lb"),
  29332. name: "Back",
  29333. image: {
  29334. source: "./media/characters/theo-pangolin/back.svg",
  29335. extra: 1979 / 1979,
  29336. bottom: 40 / 2019
  29337. }
  29338. },
  29339. feral: {
  29340. height: math.unit(2, "feet"),
  29341. weight: math.unit(30, "lb"),
  29342. name: "Feral",
  29343. image: {
  29344. source: "./media/characters/theo-pangolin/feral.svg",
  29345. extra: 803 / 791,
  29346. bottom: 181 / 984
  29347. }
  29348. },
  29349. footFive: {
  29350. height: math.unit(1.43, "feet"),
  29351. name: "Foot (Five Toes)",
  29352. image: {
  29353. source: "./media/characters/theo-pangolin/foot-five.svg"
  29354. }
  29355. },
  29356. footFour: {
  29357. height: math.unit(1.43, "feet"),
  29358. name: "Foot (Four Toes)",
  29359. image: {
  29360. source: "./media/characters/theo-pangolin/foot-four.svg"
  29361. }
  29362. },
  29363. handFour: {
  29364. height: math.unit(0.81, "feet"),
  29365. name: "Hand (Four Fingers)",
  29366. image: {
  29367. source: "./media/characters/theo-pangolin/hand-four.svg"
  29368. }
  29369. },
  29370. handThree: {
  29371. height: math.unit(0.81, "feet"),
  29372. name: "Hand (Three Fingers)",
  29373. image: {
  29374. source: "./media/characters/theo-pangolin/hand-three.svg"
  29375. }
  29376. },
  29377. headFront: {
  29378. height: math.unit(1.37, "feet"),
  29379. name: "Head (Front)",
  29380. image: {
  29381. source: "./media/characters/theo-pangolin/head-front.svg"
  29382. }
  29383. },
  29384. headSide: {
  29385. height: math.unit(1.43, "feet"),
  29386. name: "Head (Side)",
  29387. image: {
  29388. source: "./media/characters/theo-pangolin/head-side.svg"
  29389. }
  29390. },
  29391. tongue: {
  29392. height: math.unit(2.29, "feet"),
  29393. name: "Tongue",
  29394. image: {
  29395. source: "./media/characters/theo-pangolin/tongue.svg"
  29396. }
  29397. },
  29398. },
  29399. [
  29400. {
  29401. name: "Normal",
  29402. height: math.unit(6, "feet")
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(400, "feet"),
  29407. default: true
  29408. },
  29409. ]
  29410. ))
  29411. characterMakers.push(() => makeCharacter(
  29412. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29413. {
  29414. front: {
  29415. height: math.unit(6, "inches"),
  29416. weight: math.unit(0.036, "kg"),
  29417. name: "Front",
  29418. image: {
  29419. source: "./media/characters/renée/front.svg",
  29420. extra: 900 / 886,
  29421. bottom: 8 / 908
  29422. }
  29423. },
  29424. },
  29425. [
  29426. {
  29427. name: "Nano",
  29428. height: math.unit(1, "nm")
  29429. },
  29430. {
  29431. name: "Micro",
  29432. height: math.unit(1, "mm")
  29433. },
  29434. {
  29435. name: "Normal",
  29436. height: math.unit(6, "inches")
  29437. },
  29438. {
  29439. name: "Macro",
  29440. height: math.unit(2000, "feet"),
  29441. default: true
  29442. },
  29443. {
  29444. name: "Megamacro",
  29445. height: math.unit(2, "km")
  29446. },
  29447. {
  29448. name: "Gigamacro",
  29449. height: math.unit(2000, "km")
  29450. },
  29451. {
  29452. name: "Teramacro",
  29453. height: math.unit(250000, "km")
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29459. {
  29460. front: {
  29461. height: math.unit(4, "meters"),
  29462. weight: math.unit(150, "kg"),
  29463. name: "Front",
  29464. image: {
  29465. source: "./media/characters/caledvwlch/front.svg",
  29466. extra: 1760 / 1551,
  29467. bottom: 28 / 1788
  29468. }
  29469. },
  29470. side: {
  29471. height: math.unit(4, "meters"),
  29472. weight: math.unit(150, "kg"),
  29473. name: "Side",
  29474. image: {
  29475. source: "./media/characters/caledvwlch/side.svg",
  29476. extra: 1605 / 1536,
  29477. bottom: 31 / 1636
  29478. }
  29479. },
  29480. back: {
  29481. height: math.unit(4, "meters"),
  29482. weight: math.unit(150, "kg"),
  29483. name: "Back",
  29484. image: {
  29485. source: "./media/characters/caledvwlch/back.svg",
  29486. extra: 1635 / 1565,
  29487. bottom: 27 / 1662
  29488. }
  29489. },
  29490. },
  29491. [
  29492. {
  29493. name: "\"Incognito\"",
  29494. height: math.unit(4, "meters")
  29495. },
  29496. {
  29497. name: "Small rampage",
  29498. height: math.unit(600, "meters")
  29499. },
  29500. {
  29501. name: "Mega",
  29502. height: math.unit(30, "km")
  29503. },
  29504. {
  29505. name: "Home-size",
  29506. height: math.unit(50, "km"),
  29507. default: true
  29508. },
  29509. {
  29510. name: "Giga",
  29511. height: math.unit(300, "km")
  29512. },
  29513. {
  29514. name: "Lounging",
  29515. height: math.unit(11000, "km")
  29516. },
  29517. {
  29518. name: "Planet snacking",
  29519. height: math.unit(2000000, "km")
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(6, "feet"),
  29528. weight: math.unit(215, "lb"),
  29529. name: "Front",
  29530. image: {
  29531. source: "./media/characters/sapphire-svell/front.svg",
  29532. extra: 495 / 455,
  29533. bottom: 20 / 515
  29534. }
  29535. },
  29536. back: {
  29537. height: math.unit(6, "feet"),
  29538. weight: math.unit(216, "lb"),
  29539. name: "Back",
  29540. image: {
  29541. source: "./media/characters/sapphire-svell/back.svg",
  29542. extra: 497 / 477,
  29543. bottom: 7 / 504
  29544. }
  29545. },
  29546. maw: {
  29547. height: math.unit(1.57, "feet"),
  29548. name: "Maw",
  29549. image: {
  29550. source: "./media/characters/sapphire-svell/maw.svg"
  29551. }
  29552. },
  29553. foot: {
  29554. height: math.unit(1.07, "feet"),
  29555. name: "Foot",
  29556. image: {
  29557. source: "./media/characters/sapphire-svell/foot.svg"
  29558. }
  29559. },
  29560. toering: {
  29561. height: math.unit(1.7, "inch"),
  29562. name: "Toering",
  29563. image: {
  29564. source: "./media/characters/sapphire-svell/toering.svg"
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Normal",
  29571. height: math.unit(300, "feet"),
  29572. default: true
  29573. },
  29574. {
  29575. name: "Augmented",
  29576. height: math.unit(1250, "feet")
  29577. },
  29578. {
  29579. name: "Unleashed",
  29580. height: math.unit(3000, "feet")
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29586. {
  29587. side: {
  29588. height: math.unit(2 + 3 / 12, "feet"),
  29589. weight: math.unit(110, "lb"),
  29590. name: "Side",
  29591. image: {
  29592. source: "./media/characters/glitch-flux/side.svg",
  29593. extra: 997 / 805,
  29594. bottom: 20 / 1017
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(2 + 3 / 12, "feet"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(4, "meters"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/mid/front.svg",
  29614. extra: 507 / 476,
  29615. bottom: 17 / 524
  29616. }
  29617. },
  29618. back: {
  29619. height: math.unit(4, "meters"),
  29620. name: "Back",
  29621. image: {
  29622. source: "./media/characters/mid/back.svg",
  29623. extra: 519 / 487,
  29624. bottom: 7 / 526
  29625. }
  29626. },
  29627. stuck: {
  29628. height: math.unit(2.2, "meters"),
  29629. name: "Stuck",
  29630. image: {
  29631. source: "./media/characters/mid/stuck.svg",
  29632. extra: 1951 / 1869,
  29633. bottom: 88 / 2039
  29634. }
  29635. }
  29636. },
  29637. [
  29638. {
  29639. name: "Normal",
  29640. height: math.unit(4, "meters"),
  29641. default: true
  29642. },
  29643. {
  29644. name: "Big",
  29645. height: math.unit(10, "meters")
  29646. },
  29647. {
  29648. name: "Macro",
  29649. height: math.unit(800, "meters")
  29650. },
  29651. {
  29652. name: "Megamacro",
  29653. height: math.unit(100, "km")
  29654. },
  29655. {
  29656. name: "Overgrown",
  29657. height: math.unit(1, "parsec")
  29658. },
  29659. ]
  29660. ))
  29661. characterMakers.push(() => makeCharacter(
  29662. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29663. {
  29664. front: {
  29665. height: math.unit(2.5, "meters"),
  29666. weight: math.unit(225, "kg"),
  29667. name: "Front",
  29668. image: {
  29669. source: "./media/characters/iris/front.svg",
  29670. extra: 3348 / 3251,
  29671. bottom: 205 / 3553
  29672. }
  29673. },
  29674. maw: {
  29675. height: math.unit(0.56, "meter"),
  29676. name: "Maw",
  29677. image: {
  29678. source: "./media/characters/iris/maw.svg"
  29679. }
  29680. },
  29681. },
  29682. [
  29683. {
  29684. name: "Mewter cat",
  29685. height: math.unit(1.2, "meters")
  29686. },
  29687. {
  29688. name: "Minimacro",
  29689. height: math.unit(2.5, "meters"),
  29690. default: true
  29691. },
  29692. {
  29693. name: "Macro",
  29694. height: math.unit(180, "meters")
  29695. },
  29696. {
  29697. name: "Megamacro",
  29698. height: math.unit(2746, "meters")
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(6, "feet"),
  29707. weight: math.unit(135, "lb"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/axel/front.svg",
  29711. extra: 908 / 908,
  29712. bottom: 58 / 966
  29713. }
  29714. },
  29715. side: {
  29716. height: math.unit(6, "feet"),
  29717. weight: math.unit(135, "lb"),
  29718. name: "Side",
  29719. image: {
  29720. source: "./media/characters/axel/side.svg",
  29721. extra: 958 / 958,
  29722. bottom: 11 / 969
  29723. }
  29724. },
  29725. back: {
  29726. height: math.unit(6, "feet"),
  29727. weight: math.unit(135, "lb"),
  29728. name: "Back",
  29729. image: {
  29730. source: "./media/characters/axel/back.svg",
  29731. extra: 887 / 887,
  29732. bottom: 34 / 921
  29733. }
  29734. },
  29735. head: {
  29736. height: math.unit(1.07, "feet"),
  29737. name: "Head",
  29738. image: {
  29739. source: "./media/characters/axel/head.svg"
  29740. }
  29741. },
  29742. beak: {
  29743. height: math.unit(1.4, "feet"),
  29744. name: "Beak",
  29745. image: {
  29746. source: "./media/characters/axel/beak.svg"
  29747. }
  29748. },
  29749. beakSide: {
  29750. height: math.unit(1.4, "feet"),
  29751. name: "Beak Side",
  29752. image: {
  29753. source: "./media/characters/axel/beak-side.svg"
  29754. }
  29755. },
  29756. sheath: {
  29757. height: math.unit(0.5, "feet"),
  29758. name: "Sheath",
  29759. image: {
  29760. source: "./media/characters/axel/sheath.svg"
  29761. }
  29762. },
  29763. dick: {
  29764. height: math.unit(0.98, "feet"),
  29765. name: "Dick",
  29766. image: {
  29767. source: "./media/characters/axel/dick.svg"
  29768. }
  29769. },
  29770. },
  29771. [
  29772. {
  29773. name: "Macro",
  29774. height: math.unit(68, "meters"),
  29775. default: true
  29776. },
  29777. ]
  29778. ))
  29779. characterMakers.push(() => makeCharacter(
  29780. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29781. {
  29782. front: {
  29783. height: math.unit(3.5, "meters"),
  29784. weight: math.unit(1200, "kg"),
  29785. name: "Front",
  29786. image: {
  29787. source: "./media/characters/joanna/front.svg",
  29788. extra: 1596 / 1488,
  29789. bottom: 29 / 1625
  29790. }
  29791. },
  29792. back: {
  29793. height: math.unit(3.5, "meters"),
  29794. weight: math.unit(1200, "kg"),
  29795. name: "Back",
  29796. image: {
  29797. source: "./media/characters/joanna/back.svg",
  29798. extra: 1594 / 1495,
  29799. bottom: 26 / 1620
  29800. }
  29801. },
  29802. frontShorts: {
  29803. height: math.unit(3.5, "meters"),
  29804. weight: math.unit(1200, "kg"),
  29805. name: "Front (Shorts)",
  29806. image: {
  29807. source: "./media/characters/joanna/front-shorts.svg",
  29808. extra: 1596 / 1488,
  29809. bottom: 29 / 1625
  29810. }
  29811. },
  29812. frontBiker: {
  29813. height: math.unit(3.5, "meters"),
  29814. weight: math.unit(1200, "kg"),
  29815. name: "Front (Biker)",
  29816. image: {
  29817. source: "./media/characters/joanna/front-biker.svg",
  29818. extra: 1596 / 1488,
  29819. bottom: 29 / 1625
  29820. }
  29821. },
  29822. backBiker: {
  29823. height: math.unit(3.5, "meters"),
  29824. weight: math.unit(1200, "kg"),
  29825. name: "Back (Biker)",
  29826. image: {
  29827. source: "./media/characters/joanna/back-biker.svg",
  29828. extra: 1594 / 1495,
  29829. bottom: 88 / 1682
  29830. }
  29831. },
  29832. bikeLeft: {
  29833. height: math.unit(2.4, "meters"),
  29834. weight: math.unit(1600, "kg"),
  29835. name: "Bike (Left)",
  29836. image: {
  29837. source: "./media/characters/joanna/bike-left.svg",
  29838. extra: 720 / 720,
  29839. bottom: 8 / 728
  29840. }
  29841. },
  29842. bikeRight: {
  29843. height: math.unit(2.4, "meters"),
  29844. weight: math.unit(1600, "kg"),
  29845. name: "Bike (Right)",
  29846. image: {
  29847. source: "./media/characters/joanna/bike-right.svg",
  29848. extra: 720 / 720,
  29849. bottom: 8 / 728
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "Incognito",
  29856. height: math.unit(3.5, "meters")
  29857. },
  29858. {
  29859. name: "Casual Big",
  29860. height: math.unit(200, "meters")
  29861. },
  29862. {
  29863. name: "Macro",
  29864. height: math.unit(600, "meters")
  29865. },
  29866. {
  29867. name: "Original",
  29868. height: math.unit(20, "km"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Giga",
  29873. height: math.unit(400, "km")
  29874. },
  29875. {
  29876. name: "Lounging",
  29877. height: math.unit(1500, "km")
  29878. },
  29879. {
  29880. name: "Planetary",
  29881. height: math.unit(200000, "km")
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29887. {
  29888. front: {
  29889. height: math.unit(6, "feet"),
  29890. weight: math.unit(150, "lb"),
  29891. name: "Front",
  29892. image: {
  29893. source: "./media/characters/hugo-sigil/front.svg",
  29894. extra: 522 / 500,
  29895. bottom: 2 / 524
  29896. }
  29897. },
  29898. back: {
  29899. height: math.unit(6, "feet"),
  29900. weight: math.unit(150, "lb"),
  29901. name: "Back",
  29902. image: {
  29903. source: "./media/characters/hugo-sigil/back.svg",
  29904. extra: 519 / 495,
  29905. bottom: 5 / 524
  29906. }
  29907. },
  29908. maw: {
  29909. height: math.unit(1.4, "feet"),
  29910. weight: math.unit(150, "lb"),
  29911. name: "Maw",
  29912. image: {
  29913. source: "./media/characters/hugo-sigil/maw.svg"
  29914. }
  29915. },
  29916. feet: {
  29917. height: math.unit(1.56, "feet"),
  29918. weight: math.unit(150, "lb"),
  29919. name: "Feet",
  29920. image: {
  29921. source: "./media/characters/hugo-sigil/feet.svg",
  29922. extra: 177 / 177,
  29923. bottom: 12 / 189
  29924. }
  29925. },
  29926. },
  29927. [
  29928. {
  29929. name: "Normal",
  29930. height: math.unit(6, "feet")
  29931. },
  29932. {
  29933. name: "Macro",
  29934. height: math.unit(200, "feet"),
  29935. default: true
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29941. {
  29942. front: {
  29943. height: math.unit(6, "feet"),
  29944. weight: math.unit(150, "lb"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/peri/front.svg",
  29948. extra: 2354 / 2233,
  29949. bottom: 49 / 2403
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Really Small",
  29956. height: math.unit(1, "nm")
  29957. },
  29958. {
  29959. name: "Micro",
  29960. height: math.unit(4, "inches")
  29961. },
  29962. {
  29963. name: "Normal",
  29964. height: math.unit(7, "inches"),
  29965. default: true
  29966. },
  29967. {
  29968. name: "Macro",
  29969. height: math.unit(400, "feet")
  29970. },
  29971. {
  29972. name: "Megamacro",
  29973. height: math.unit(100, "miles")
  29974. },
  29975. ]
  29976. ))
  29977. characterMakers.push(() => makeCharacter(
  29978. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29979. {
  29980. frontSlim: {
  29981. height: math.unit(7, "feet"),
  29982. name: "Front (Slim)",
  29983. image: {
  29984. source: "./media/characters/issilora/front-slim.svg",
  29985. extra: 529 / 449,
  29986. bottom: 53 / 582
  29987. }
  29988. },
  29989. sideSlim: {
  29990. height: math.unit(7, "feet"),
  29991. name: "Side (Slim)",
  29992. image: {
  29993. source: "./media/characters/issilora/side-slim.svg",
  29994. extra: 570 / 480,
  29995. bottom: 30 / 600
  29996. }
  29997. },
  29998. backSlim: {
  29999. height: math.unit(7, "feet"),
  30000. name: "Back (Slim)",
  30001. image: {
  30002. source: "./media/characters/issilora/back-slim.svg",
  30003. extra: 537 / 455,
  30004. bottom: 46 / 583
  30005. }
  30006. },
  30007. frontBuff: {
  30008. height: math.unit(7, "feet"),
  30009. name: "Front (Buff)",
  30010. image: {
  30011. source: "./media/characters/issilora/front-buff.svg",
  30012. extra: 2310 / 2035,
  30013. bottom: 335 / 2645
  30014. }
  30015. },
  30016. head: {
  30017. height: math.unit(1.94, "feet"),
  30018. name: "Head",
  30019. image: {
  30020. source: "./media/characters/issilora/head.svg"
  30021. }
  30022. },
  30023. },
  30024. [
  30025. {
  30026. name: "Minimum",
  30027. height: math.unit(7, "feet")
  30028. },
  30029. {
  30030. name: "Comfortable",
  30031. height: math.unit(17, "feet")
  30032. },
  30033. {
  30034. name: "Fun Size",
  30035. height: math.unit(47, "feet")
  30036. },
  30037. {
  30038. name: "Natural Macro",
  30039. height: math.unit(137, "feet"),
  30040. default: true
  30041. },
  30042. {
  30043. name: "Maximum Kaiju",
  30044. height: math.unit(397, "feet")
  30045. },
  30046. ]
  30047. ))
  30048. characterMakers.push(() => makeCharacter(
  30049. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30050. {
  30051. front: {
  30052. height: math.unit(50 + 9/12, "feet"),
  30053. weight: math.unit(32.8, "tons"),
  30054. name: "Front",
  30055. image: {
  30056. source: "./media/characters/irb'iiritaahn/front.svg",
  30057. extra: 1878/1826,
  30058. bottom: 326/2204
  30059. }
  30060. },
  30061. back: {
  30062. height: math.unit(50 + 9/12, "feet"),
  30063. weight: math.unit(32.8, "tons"),
  30064. name: "Back",
  30065. image: {
  30066. source: "./media/characters/irb'iiritaahn/back.svg",
  30067. extra: 2052/2018,
  30068. bottom: 152/2204
  30069. }
  30070. },
  30071. head: {
  30072. height: math.unit(12.86, "feet"),
  30073. name: "Head",
  30074. image: {
  30075. source: "./media/characters/irb'iiritaahn/head.svg"
  30076. }
  30077. },
  30078. maw: {
  30079. height: math.unit(9.66, "feet"),
  30080. name: "Maw",
  30081. image: {
  30082. source: "./media/characters/irb'iiritaahn/maw.svg"
  30083. }
  30084. },
  30085. frontDick: {
  30086. height: math.unit(8.78461, "feet"),
  30087. name: "Front Dick",
  30088. image: {
  30089. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30090. }
  30091. },
  30092. rearDick: {
  30093. height: math.unit(8.78461, "feet"),
  30094. name: "Rear Dick",
  30095. image: {
  30096. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30097. }
  30098. },
  30099. rearDickUnfolded: {
  30100. height: math.unit(8.78, "feet"),
  30101. name: "Rear Dick (Unfolded)",
  30102. image: {
  30103. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30104. }
  30105. },
  30106. wings: {
  30107. height: math.unit(43, "feet"),
  30108. name: "Wings",
  30109. image: {
  30110. source: "./media/characters/irb'iiritaahn/wings.svg"
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Macro",
  30117. height: math.unit(50 + 9/12, "feet"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30124. {
  30125. front: {
  30126. height: math.unit(205, "cm"),
  30127. weight: math.unit(102, "kg"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/irbisgreif/front.svg",
  30131. extra: 785/706,
  30132. bottom: 13/798
  30133. }
  30134. },
  30135. back: {
  30136. height: math.unit(205, "cm"),
  30137. weight: math.unit(102, "kg"),
  30138. name: "Back",
  30139. image: {
  30140. source: "./media/characters/irbisgreif/back.svg",
  30141. extra: 713/701,
  30142. bottom: 26/739
  30143. }
  30144. },
  30145. frontDressed: {
  30146. height: math.unit(216, "cm"),
  30147. weight: math.unit(102, "kg"),
  30148. name: "Front-dressed",
  30149. image: {
  30150. source: "./media/characters/irbisgreif/front-dressed.svg",
  30151. extra: 902/776,
  30152. bottom: 14/916
  30153. }
  30154. },
  30155. sideDressed: {
  30156. height: math.unit(195, "cm"),
  30157. weight: math.unit(102, "kg"),
  30158. name: "Side-dressed",
  30159. image: {
  30160. source: "./media/characters/irbisgreif/side-dressed.svg",
  30161. extra: 788/688,
  30162. bottom: 21/809
  30163. }
  30164. },
  30165. backDressed: {
  30166. height: math.unit(216, "cm"),
  30167. weight: math.unit(102, "kg"),
  30168. name: "Back-dressed",
  30169. image: {
  30170. source: "./media/characters/irbisgreif/back-dressed.svg",
  30171. extra: 901/783,
  30172. bottom: 10/911
  30173. }
  30174. },
  30175. dick: {
  30176. height: math.unit(0.49, "feet"),
  30177. name: "Dick",
  30178. image: {
  30179. source: "./media/characters/irbisgreif/dick.svg"
  30180. }
  30181. },
  30182. wingTop: {
  30183. height: math.unit(1.93 , "feet"),
  30184. name: "Wing-top",
  30185. image: {
  30186. source: "./media/characters/irbisgreif/wing-top.svg"
  30187. }
  30188. },
  30189. wingBottom: {
  30190. height: math.unit(1.93 , "feet"),
  30191. name: "Wing-bottom",
  30192. image: {
  30193. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30194. }
  30195. },
  30196. },
  30197. [
  30198. {
  30199. name: "Normal",
  30200. height: math.unit(216, "cm"),
  30201. default: true
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(6, "feet"),
  30210. weight: math.unit(150, "lb"),
  30211. name: "Front",
  30212. image: {
  30213. source: "./media/characters/pride/front.svg",
  30214. extra: 1299/1230,
  30215. bottom: 18/1317
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Normal",
  30222. height: math.unit(7, "feet")
  30223. },
  30224. {
  30225. name: "Mini-macro",
  30226. height: math.unit(11, "feet")
  30227. },
  30228. {
  30229. name: "Macro",
  30230. height: math.unit(15, "meters"),
  30231. default: true
  30232. },
  30233. {
  30234. name: "Macro+",
  30235. height: math.unit(40, "meters")
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30241. {
  30242. front: {
  30243. height: math.unit(4 + 2 / 12, "feet"),
  30244. weight: math.unit(95, "lb"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/vaelophis-nyx/front.svg",
  30248. extra: 2532/2330,
  30249. bottom: 0/2532
  30250. }
  30251. },
  30252. back: {
  30253. height: math.unit(4 + 2 / 12, "feet"),
  30254. weight: math.unit(95, "lb"),
  30255. name: "Back",
  30256. image: {
  30257. source: "./media/characters/vaelophis-nyx/back.svg",
  30258. extra: 2484/2361,
  30259. bottom: 0/2484
  30260. }
  30261. },
  30262. feralSide: {
  30263. height: math.unit(2 + 1/12, "feet"),
  30264. weight: math.unit(20, "lb"),
  30265. name: "Feral (Side)",
  30266. image: {
  30267. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30268. extra: 1721/1581,
  30269. bottom: 70/1791
  30270. }
  30271. },
  30272. feralLazing: {
  30273. height: math.unit(1.08, "feet"),
  30274. weight: math.unit(20, "lb"),
  30275. name: "Feral (Lazing)",
  30276. image: {
  30277. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30278. extra: 822/822,
  30279. bottom: 248/1070
  30280. }
  30281. },
  30282. ear: {
  30283. height: math.unit(0.416, "feet"),
  30284. name: "Ear",
  30285. image: {
  30286. source: "./media/characters/vaelophis-nyx/ear.svg"
  30287. }
  30288. },
  30289. eye: {
  30290. height: math.unit(0.0748, "feet"),
  30291. name: "Eye",
  30292. image: {
  30293. source: "./media/characters/vaelophis-nyx/eye.svg"
  30294. }
  30295. },
  30296. mouth: {
  30297. height: math.unit(0.378, "feet"),
  30298. name: "Mouth",
  30299. image: {
  30300. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30301. }
  30302. },
  30303. spade: {
  30304. height: math.unit(0.55, "feet"),
  30305. name: "Spade",
  30306. image: {
  30307. source: "./media/characters/vaelophis-nyx/spade.svg"
  30308. }
  30309. },
  30310. },
  30311. [
  30312. {
  30313. name: "Normal",
  30314. height: math.unit(4 + 2/12, "feet"),
  30315. default: true
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30321. {
  30322. front: {
  30323. height: math.unit(7, "feet"),
  30324. weight: math.unit(231, "lb"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/flux/front.svg",
  30328. extra: 919/871,
  30329. bottom: 0/919
  30330. }
  30331. },
  30332. back: {
  30333. height: math.unit(7, "feet"),
  30334. weight: math.unit(231, "lb"),
  30335. name: "Back",
  30336. image: {
  30337. source: "./media/characters/flux/back.svg",
  30338. extra: 1040/992,
  30339. bottom: 0/1040
  30340. }
  30341. },
  30342. frontDressed: {
  30343. height: math.unit(7, "feet"),
  30344. weight: math.unit(231, "lb"),
  30345. name: "Front (Dressed)",
  30346. image: {
  30347. source: "./media/characters/flux/front-dressed.svg",
  30348. extra: 919/871,
  30349. bottom: 0/919
  30350. }
  30351. },
  30352. feralSide: {
  30353. height: math.unit(5, "feet"),
  30354. weight: math.unit(150, "lb"),
  30355. name: "Feral (Side)",
  30356. image: {
  30357. source: "./media/characters/flux/feral-side.svg",
  30358. extra: 598/528,
  30359. bottom: 28/626
  30360. }
  30361. },
  30362. head: {
  30363. height: math.unit(1.585, "feet"),
  30364. name: "Head",
  30365. image: {
  30366. source: "./media/characters/flux/head.svg"
  30367. }
  30368. },
  30369. headSide: {
  30370. height: math.unit(1.74, "feet"),
  30371. name: "Head (Side)",
  30372. image: {
  30373. source: "./media/characters/flux/head-side.svg"
  30374. }
  30375. },
  30376. headSideFire: {
  30377. height: math.unit(1.76, "feet"),
  30378. name: "Head (Side, Fire)",
  30379. image: {
  30380. source: "./media/characters/flux/head-side-fire.svg"
  30381. }
  30382. },
  30383. },
  30384. [
  30385. {
  30386. name: "Normal",
  30387. height: math.unit(7, "feet"),
  30388. default: true
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(9, "feet"),
  30397. weight: math.unit(1012, "lb"),
  30398. name: "Front",
  30399. image: {
  30400. source: "./media/characters/ulfra-lupae/front.svg",
  30401. extra: 1083/1011,
  30402. bottom: 67/1150
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Micro",
  30409. height: math.unit(6, "inches")
  30410. },
  30411. {
  30412. name: "Socializing",
  30413. height: math.unit(6 + 5/12, "feet")
  30414. },
  30415. {
  30416. name: "Normal",
  30417. height: math.unit(9, "feet"),
  30418. default: true
  30419. },
  30420. {
  30421. name: "Macro",
  30422. height: math.unit(150, "feet")
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(5 + 2/12, "feet"),
  30431. weight: math.unit(120, "lb"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/timber/front.svg",
  30435. extra: 2814/2705,
  30436. bottom: 181/2995
  30437. }
  30438. },
  30439. },
  30440. [
  30441. {
  30442. name: "Normal",
  30443. height: math.unit(5 + 2/12, "feet"),
  30444. default: true
  30445. },
  30446. ]
  30447. ))
  30448. characterMakers.push(() => makeCharacter(
  30449. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30450. {
  30451. front: {
  30452. height: math.unit(5 + 7/12, "feet"),
  30453. weight: math.unit(220, "lb"),
  30454. name: "Front",
  30455. image: {
  30456. source: "./media/characters/nicki/front.svg",
  30457. extra: 453/419,
  30458. bottom: 7/460
  30459. }
  30460. },
  30461. frontAlt: {
  30462. height: math.unit(5 + 7/12, "feet"),
  30463. weight: math.unit(220, "lb"),
  30464. name: "Front-alt",
  30465. image: {
  30466. source: "./media/characters/nicki/front-alt.svg",
  30467. extra: 435/411,
  30468. bottom: 12/447
  30469. }
  30470. },
  30471. back: {
  30472. height: math.unit(5 + 7/12, "feet"),
  30473. weight: math.unit(220, "lb"),
  30474. name: "Back",
  30475. image: {
  30476. source: "./media/characters/nicki/back.svg",
  30477. extra: 440/413,
  30478. bottom: 19/459
  30479. }
  30480. },
  30481. taur: {
  30482. height: math.unit(7 + 6/12, "feet"),
  30483. weight: math.unit(700, "lb"),
  30484. name: "Taur",
  30485. image: {
  30486. source: "./media/characters/nicki/taur.svg",
  30487. extra: 975/773,
  30488. bottom: 0/975
  30489. }
  30490. },
  30491. frontNsfw: {
  30492. height: math.unit(5 + 7/12, "feet"),
  30493. weight: math.unit(220, "lb"),
  30494. name: "Front (NSFW)",
  30495. image: {
  30496. source: "./media/characters/nicki/front-nsfw.svg",
  30497. extra: 453/419,
  30498. bottom: 7/460
  30499. }
  30500. },
  30501. frontNsfwAlt: {
  30502. height: math.unit(5 + 7/12, "feet"),
  30503. weight: math.unit(220, "lb"),
  30504. name: "Front (Alt, NSFW)",
  30505. image: {
  30506. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30507. extra: 435/411,
  30508. bottom: 12/447
  30509. }
  30510. },
  30511. backNsfw: {
  30512. height: math.unit(5 + 7/12, "feet"),
  30513. weight: math.unit(220, "lb"),
  30514. name: "Back (NSFW)",
  30515. image: {
  30516. source: "./media/characters/nicki/back-nsfw.svg",
  30517. extra: 440/413,
  30518. bottom: 19/459
  30519. }
  30520. },
  30521. head: {
  30522. height: math.unit(2.1, "feet"),
  30523. name: "Head",
  30524. image: {
  30525. source: "./media/characters/nicki/head.svg"
  30526. }
  30527. },
  30528. paw: {
  30529. height: math.unit(1.88, "feet"),
  30530. name: "Paw",
  30531. image: {
  30532. source: "./media/characters/nicki/paw.svg"
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Normal",
  30539. height: math.unit(5 + 7/12, "feet"),
  30540. default: true
  30541. },
  30542. ]
  30543. ))
  30544. characterMakers.push(() => makeCharacter(
  30545. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30546. {
  30547. front: {
  30548. height: math.unit(7 + 10/12, "feet"),
  30549. weight: math.unit(3.5, "tons"),
  30550. name: "Front",
  30551. image: {
  30552. source: "./media/characters/lee/front.svg",
  30553. extra: 1773/1615,
  30554. bottom: 86/1859
  30555. }
  30556. },
  30557. hand: {
  30558. height: math.unit(1.78, "feet"),
  30559. name: "Hand",
  30560. image: {
  30561. source: "./media/characters/lee/hand.svg"
  30562. }
  30563. },
  30564. maw: {
  30565. height: math.unit(1.18, "feet"),
  30566. name: "Maw",
  30567. image: {
  30568. source: "./media/characters/lee/maw.svg"
  30569. }
  30570. },
  30571. },
  30572. [
  30573. {
  30574. name: "Normal",
  30575. height: math.unit(7 + 10/12, "feet"),
  30576. default: true
  30577. },
  30578. ]
  30579. ))
  30580. characterMakers.push(() => makeCharacter(
  30581. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30582. {
  30583. front: {
  30584. height: math.unit(9, "feet"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/guti/front.svg",
  30588. extra: 4551/4355,
  30589. bottom: 123/4674
  30590. }
  30591. },
  30592. tongue: {
  30593. height: math.unit(1, "feet"),
  30594. name: "Tongue",
  30595. image: {
  30596. source: "./media/characters/guti/tongue.svg"
  30597. }
  30598. },
  30599. paw: {
  30600. height: math.unit(1.18, "feet"),
  30601. name: "Paw",
  30602. image: {
  30603. source: "./media/characters/guti/paw.svg"
  30604. }
  30605. },
  30606. },
  30607. [
  30608. {
  30609. name: "Normal",
  30610. height: math.unit(9, "feet"),
  30611. default: true
  30612. },
  30613. ]
  30614. ))
  30615. characterMakers.push(() => makeCharacter(
  30616. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30617. {
  30618. side: {
  30619. height: math.unit(5, "meters"),
  30620. name: "Side",
  30621. image: {
  30622. source: "./media/characters/vesper/side.svg",
  30623. extra: 1605/1518,
  30624. bottom: 0/1605
  30625. }
  30626. },
  30627. },
  30628. [
  30629. {
  30630. name: "Small",
  30631. height: math.unit(5, "meters")
  30632. },
  30633. {
  30634. name: "Sage",
  30635. height: math.unit(100, "meters"),
  30636. default: true
  30637. },
  30638. {
  30639. name: "Fun Size",
  30640. height: math.unit(600, "meters")
  30641. },
  30642. {
  30643. name: "Goddess",
  30644. height: math.unit(20000, "km")
  30645. },
  30646. {
  30647. name: "Maximum",
  30648. height: math.unit(5, "galaxies")
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(6 + 3/12, "feet"),
  30657. weight: math.unit(190, "lb"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/gawain/front.svg",
  30661. extra: 2222/2139,
  30662. bottom: 90/2312
  30663. }
  30664. },
  30665. back: {
  30666. height: math.unit(6 + 3/12, "feet"),
  30667. weight: math.unit(190, "lb"),
  30668. name: "Back",
  30669. image: {
  30670. source: "./media/characters/gawain/back.svg",
  30671. extra: 2199/2111,
  30672. bottom: 73/2272
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Normal",
  30679. height: math.unit(6 + 3/12, "feet"),
  30680. default: true
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30686. {
  30687. side: {
  30688. height: math.unit(3.5, "meters"),
  30689. weight: math.unit(16000, "lb"),
  30690. name: "Side",
  30691. image: {
  30692. source: "./media/characters/dascalti/side.svg",
  30693. extra: 392/273,
  30694. bottom: 47/439
  30695. }
  30696. },
  30697. breath: {
  30698. height: math.unit(7.4, "feet"),
  30699. name: "Breath",
  30700. image: {
  30701. source: "./media/characters/dascalti/breath.svg"
  30702. }
  30703. },
  30704. fed: {
  30705. height: math.unit(3.6, "meters"),
  30706. weight: math.unit(16000, "lb"),
  30707. name: "Fed",
  30708. image: {
  30709. source: "./media/characters/dascalti/fed.svg",
  30710. extra: 1419/820,
  30711. bottom: 95/1514
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(3.5, "meters"),
  30719. default: true
  30720. },
  30721. ]
  30722. ))
  30723. characterMakers.push(() => makeCharacter(
  30724. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30725. {
  30726. front: {
  30727. height: math.unit(3 + 5/12, "feet"),
  30728. name: "Front",
  30729. image: {
  30730. source: "./media/characters/mauve/front.svg",
  30731. extra: 1126/1033,
  30732. bottom: 65/1191
  30733. }
  30734. },
  30735. side: {
  30736. height: math.unit(3 + 5/12, "feet"),
  30737. name: "Side",
  30738. image: {
  30739. source: "./media/characters/mauve/side.svg",
  30740. extra: 1089/1001,
  30741. bottom: 29/1118
  30742. }
  30743. },
  30744. back: {
  30745. height: math.unit(3 + 5/12, "feet"),
  30746. name: "Back",
  30747. image: {
  30748. source: "./media/characters/mauve/back.svg",
  30749. extra: 1173/1053,
  30750. bottom: 109/1282
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Normal",
  30757. height: math.unit(3 + 5/12, "feet"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(6 + 3/12, "feet"),
  30767. weight: math.unit(430, "lb"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/carlos/front.svg",
  30771. extra: 1964/1913,
  30772. bottom: 70/2034
  30773. }
  30774. },
  30775. },
  30776. [
  30777. {
  30778. name: "Normal",
  30779. height: math.unit(6 + 3/12, "feet"),
  30780. default: true
  30781. },
  30782. ]
  30783. ))
  30784. characterMakers.push(() => makeCharacter(
  30785. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30786. {
  30787. back: {
  30788. height: math.unit(5 + 10/12, "feet"),
  30789. weight: math.unit(200, "lb"),
  30790. name: "Back",
  30791. image: {
  30792. source: "./media/characters/jax/back.svg",
  30793. extra: 764/739,
  30794. bottom: 25/789
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Normal",
  30801. height: math.unit(5 + 10/12, "feet"),
  30802. default: true
  30803. },
  30804. ]
  30805. ))
  30806. characterMakers.push(() => makeCharacter(
  30807. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30808. {
  30809. front: {
  30810. height: math.unit(8, "feet"),
  30811. weight: math.unit(250, "lb"),
  30812. name: "Front",
  30813. image: {
  30814. source: "./media/characters/eikthynir/front.svg",
  30815. extra: 1332/1166,
  30816. bottom: 82/1414
  30817. }
  30818. },
  30819. back: {
  30820. height: math.unit(8, "feet"),
  30821. weight: math.unit(250, "lb"),
  30822. name: "Back",
  30823. image: {
  30824. source: "./media/characters/eikthynir/back.svg",
  30825. extra: 1342/1190,
  30826. bottom: 19/1361
  30827. }
  30828. },
  30829. dick: {
  30830. height: math.unit(2.35, "feet"),
  30831. name: "Dick",
  30832. image: {
  30833. source: "./media/characters/eikthynir/dick.svg"
  30834. }
  30835. },
  30836. },
  30837. [
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(8, "feet"),
  30841. default: true
  30842. },
  30843. ]
  30844. ))
  30845. characterMakers.push(() => makeCharacter(
  30846. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30847. {
  30848. front: {
  30849. height: math.unit(99, "meters"),
  30850. weight: math.unit(13000, "tons"),
  30851. name: "Front",
  30852. image: {
  30853. source: "./media/characters/zlmos/front.svg",
  30854. extra: 2202/1992,
  30855. bottom: 315/2517
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Macro",
  30862. height: math.unit(99, "meters"),
  30863. default: true
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(6 + 5/12, "feet"),
  30872. name: "Front",
  30873. image: {
  30874. source: "./media/characters/purri/front.svg",
  30875. extra: 1698/1610,
  30876. bottom: 32/1730
  30877. }
  30878. },
  30879. frontAlt: {
  30880. height: math.unit(6 + 5/12, "feet"),
  30881. name: "Front (Alt)",
  30882. image: {
  30883. source: "./media/characters/purri/front-alt.svg",
  30884. extra: 450/420,
  30885. bottom: 26/476
  30886. }
  30887. },
  30888. boots: {
  30889. height: math.unit(5.5, "feet"),
  30890. name: "Boots",
  30891. image: {
  30892. source: "./media/characters/purri/boots.svg",
  30893. extra: 905/853,
  30894. bottom: 18/923
  30895. }
  30896. },
  30897. lying: {
  30898. height: math.unit(2, "feet"),
  30899. name: "Lying",
  30900. image: {
  30901. source: "./media/characters/purri/lying.svg",
  30902. extra: 940/843,
  30903. bottom: 146/1086
  30904. }
  30905. },
  30906. devious: {
  30907. height: math.unit(1.77, "feet"),
  30908. name: "Devious",
  30909. image: {
  30910. source: "./media/characters/purri/devious.svg",
  30911. extra: 1440/1155,
  30912. bottom: 147/1587
  30913. }
  30914. },
  30915. bean: {
  30916. height: math.unit(1.94, "feet"),
  30917. name: "Bean",
  30918. image: {
  30919. source: "./media/characters/purri/bean.svg"
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Micro",
  30926. height: math.unit(1, "mm")
  30927. },
  30928. {
  30929. name: "Normal",
  30930. height: math.unit(6 + 5/12, "feet"),
  30931. default: true
  30932. },
  30933. {
  30934. name: "Macro :3c",
  30935. height: math.unit(2, "miles")
  30936. },
  30937. ]
  30938. ))
  30939. characterMakers.push(() => makeCharacter(
  30940. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30941. {
  30942. front: {
  30943. height: math.unit(6 + 2/12, "feet"),
  30944. weight: math.unit(250, "lb"),
  30945. name: "Front",
  30946. image: {
  30947. source: "./media/characters/moonlight/front.svg",
  30948. extra: 1044/908,
  30949. bottom: 56/1100
  30950. }
  30951. },
  30952. feral: {
  30953. height: math.unit(3 + 1/12, "feet"),
  30954. weight: math.unit(50, "kg"),
  30955. name: "Feral",
  30956. image: {
  30957. source: "./media/characters/moonlight/feral.svg",
  30958. extra: 3705/2791,
  30959. bottom: 145/3850
  30960. }
  30961. },
  30962. paw: {
  30963. height: math.unit(1, "feet"),
  30964. name: "Paw",
  30965. image: {
  30966. source: "./media/characters/moonlight/paw.svg"
  30967. }
  30968. },
  30969. paws: {
  30970. height: math.unit(0.98, "feet"),
  30971. name: "Paws",
  30972. image: {
  30973. source: "./media/characters/moonlight/paws.svg",
  30974. extra: 939/939,
  30975. bottom: 50/989
  30976. }
  30977. },
  30978. mouth: {
  30979. height: math.unit(0.48, "feet"),
  30980. name: "Mouth",
  30981. image: {
  30982. source: "./media/characters/moonlight/mouth.svg"
  30983. }
  30984. },
  30985. dick: {
  30986. height: math.unit(1.46, "feet"),
  30987. name: "Dick",
  30988. image: {
  30989. source: "./media/characters/moonlight/dick.svg"
  30990. }
  30991. },
  30992. },
  30993. [
  30994. {
  30995. name: "Normal",
  30996. height: math.unit(6 + 2/12, "feet"),
  30997. default: true
  30998. },
  30999. {
  31000. name: "Macro",
  31001. height: math.unit(300, "feet")
  31002. },
  31003. {
  31004. name: "Macro+",
  31005. height: math.unit(1, "mile")
  31006. },
  31007. {
  31008. name: "Mt. Moon",
  31009. height: math.unit(5, "miles")
  31010. },
  31011. {
  31012. name: "Megamacro",
  31013. height: math.unit(15, "miles")
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31019. {
  31020. back: {
  31021. height: math.unit(6, "feet"),
  31022. weight: math.unit(150, "lb"),
  31023. name: "Back",
  31024. image: {
  31025. source: "./media/characters/sylen/back.svg",
  31026. extra: 1335/1273,
  31027. bottom: 107/1442
  31028. }
  31029. },
  31030. },
  31031. [
  31032. {
  31033. name: "Normal",
  31034. height: math.unit(5 + 5/12, "feet")
  31035. },
  31036. {
  31037. name: "Megamacro",
  31038. height: math.unit(3, "miles"),
  31039. default: true
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(6, "feet"),
  31048. weight: math.unit(190, "lb"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/huttser/front.svg",
  31052. extra: 1152/1058,
  31053. bottom: 23/1175
  31054. }
  31055. },
  31056. side: {
  31057. height: math.unit(6, "feet"),
  31058. weight: math.unit(190, "lb"),
  31059. name: "Side",
  31060. image: {
  31061. source: "./media/characters/huttser/side.svg",
  31062. extra: 1174/1065,
  31063. bottom: 18/1192
  31064. }
  31065. },
  31066. back: {
  31067. height: math.unit(6, "feet"),
  31068. weight: math.unit(190, "lb"),
  31069. name: "Back",
  31070. image: {
  31071. source: "./media/characters/huttser/back.svg",
  31072. extra: 1158/1056,
  31073. bottom: 12/1170
  31074. }
  31075. },
  31076. },
  31077. [
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31082. {
  31083. side: {
  31084. height: math.unit(12 + 9/12, "feet"),
  31085. weight: math.unit(15000, "lb"),
  31086. name: "Side",
  31087. image: {
  31088. source: "./media/characters/faan/side.svg",
  31089. extra: 2747/2697,
  31090. bottom: 0/2747
  31091. }
  31092. },
  31093. front: {
  31094. height: math.unit(12 + 9/12, "feet"),
  31095. weight: math.unit(15000, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/faan/front.svg",
  31099. extra: 607/571,
  31100. bottom: 24/631
  31101. }
  31102. },
  31103. head: {
  31104. height: math.unit(2.85, "feet"),
  31105. name: "Head",
  31106. image: {
  31107. source: "./media/characters/faan/head.svg"
  31108. }
  31109. },
  31110. headAlt: {
  31111. height: math.unit(3.13, "feet"),
  31112. name: "Head-alt",
  31113. image: {
  31114. source: "./media/characters/faan/head-alt.svg"
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Normal",
  31121. height: math.unit(12 + 9/12, "feet"),
  31122. default: true
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(6, "feet"),
  31131. weight: math.unit(300, "lb"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/tanio/front.svg",
  31135. extra: 711/673,
  31136. bottom: 25/736
  31137. }
  31138. },
  31139. },
  31140. [
  31141. {
  31142. name: "Normal",
  31143. height: math.unit(6, "feet"),
  31144. default: true
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31150. {
  31151. front: {
  31152. height: math.unit(3, "inches"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/noboru/front.svg",
  31156. extra: 1039/932,
  31157. bottom: 18/1057
  31158. }
  31159. },
  31160. },
  31161. [
  31162. {
  31163. name: "Micro",
  31164. height: math.unit(3, "inches"),
  31165. default: true
  31166. },
  31167. ]
  31168. ))
  31169. characterMakers.push(() => makeCharacter(
  31170. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31171. {
  31172. front: {
  31173. height: math.unit(1.85, "meters"),
  31174. weight: math.unit(80, "kg"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/daniel-barrett/front.svg",
  31178. extra: 355/337,
  31179. bottom: 9/364
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Pico",
  31186. height: math.unit(0.0433, "mm")
  31187. },
  31188. {
  31189. name: "Nano",
  31190. height: math.unit(1.5, "mm")
  31191. },
  31192. {
  31193. name: "Micro",
  31194. height: math.unit(5.3, "cm"),
  31195. default: true
  31196. },
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(1.85, "meters")
  31200. },
  31201. {
  31202. name: "Macro",
  31203. height: math.unit(64.7, "meters")
  31204. },
  31205. {
  31206. name: "Megamacro",
  31207. height: math.unit(2.26, "km")
  31208. },
  31209. {
  31210. name: "Gigamacro",
  31211. height: math.unit(79, "km")
  31212. },
  31213. {
  31214. name: "Teramacro",
  31215. height: math.unit(2765, "km")
  31216. },
  31217. {
  31218. name: "Petamacro",
  31219. height: math.unit(96678, "km")
  31220. },
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31225. {
  31226. front: {
  31227. height: math.unit(30, "meters"),
  31228. weight: math.unit(400, "tons"),
  31229. name: "Front",
  31230. image: {
  31231. source: "./media/characters/zeel/front.svg",
  31232. extra: 2599/2599,
  31233. bottom: 226/2825
  31234. }
  31235. },
  31236. },
  31237. [
  31238. {
  31239. name: "Macro",
  31240. height: math.unit(30, "meters"),
  31241. default: true
  31242. },
  31243. ]
  31244. ))
  31245. characterMakers.push(() => makeCharacter(
  31246. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31247. {
  31248. front: {
  31249. height: math.unit(6 + 7/12, "feet"),
  31250. weight: math.unit(210, "lb"),
  31251. name: "Front",
  31252. image: {
  31253. source: "./media/characters/tarn/front.svg",
  31254. extra: 3517/3220,
  31255. bottom: 91/3608
  31256. }
  31257. },
  31258. back: {
  31259. height: math.unit(6 + 7/12, "feet"),
  31260. weight: math.unit(210, "lb"),
  31261. name: "Back",
  31262. image: {
  31263. source: "./media/characters/tarn/back.svg",
  31264. extra: 3566/3241,
  31265. bottom: 34/3600
  31266. }
  31267. },
  31268. dick: {
  31269. height: math.unit(1.65, "feet"),
  31270. name: "Dick",
  31271. image: {
  31272. source: "./media/characters/tarn/dick.svg"
  31273. }
  31274. },
  31275. paw: {
  31276. height: math.unit(1.80, "feet"),
  31277. name: "Paw",
  31278. image: {
  31279. source: "./media/characters/tarn/paw.svg"
  31280. }
  31281. },
  31282. tongue: {
  31283. height: math.unit(0.97, "feet"),
  31284. name: "Tongue",
  31285. image: {
  31286. source: "./media/characters/tarn/tongue.svg"
  31287. }
  31288. },
  31289. },
  31290. [
  31291. {
  31292. name: "Micro",
  31293. height: math.unit(4, "inches")
  31294. },
  31295. {
  31296. name: "Normal",
  31297. height: math.unit(6 + 7/12, "feet"),
  31298. default: true
  31299. },
  31300. {
  31301. name: "Macro",
  31302. height: math.unit(300, "feet")
  31303. },
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(5 + 7/12, "feet"),
  31311. weight: math.unit(80, "kg"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31315. extra: 3023/2865,
  31316. bottom: 33/3056
  31317. }
  31318. },
  31319. back: {
  31320. height: math.unit(5 + 7/12, "feet"),
  31321. weight: math.unit(80, "kg"),
  31322. name: "Back",
  31323. image: {
  31324. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31325. extra: 3020/2886,
  31326. bottom: 30/3050
  31327. }
  31328. },
  31329. dick: {
  31330. height: math.unit(0.98, "feet"),
  31331. name: "Dick",
  31332. image: {
  31333. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31334. }
  31335. },
  31336. anatomy: {
  31337. height: math.unit(2.86, "feet"),
  31338. name: "Anatomy",
  31339. image: {
  31340. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Really Small",
  31347. height: math.unit(2, "inches")
  31348. },
  31349. {
  31350. name: "Micro",
  31351. height: math.unit(5.583, "inches")
  31352. },
  31353. {
  31354. name: "Normal",
  31355. height: math.unit(5 + 7/12, "feet"),
  31356. default: true
  31357. },
  31358. {
  31359. name: "Macro",
  31360. height: math.unit(67, "feet")
  31361. },
  31362. {
  31363. name: "Megamacro",
  31364. height: math.unit(134, "feet")
  31365. },
  31366. ]
  31367. ))
  31368. characterMakers.push(() => makeCharacter(
  31369. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31370. {
  31371. front: {
  31372. height: math.unit(9, "feet"),
  31373. weight: math.unit(120, "lb"),
  31374. name: "Front",
  31375. image: {
  31376. source: "./media/characters/sally/front.svg",
  31377. extra: 1506/1349,
  31378. bottom: 66/1572
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(9, "feet"),
  31386. default: true
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(8, "feet"),
  31395. weight: math.unit(900, "lb"),
  31396. name: "Front",
  31397. image: {
  31398. source: "./media/characters/owen/front.svg",
  31399. extra: 1761/1657,
  31400. bottom: 74/1835
  31401. }
  31402. },
  31403. side: {
  31404. height: math.unit(8, "feet"),
  31405. weight: math.unit(900, "lb"),
  31406. name: "Side",
  31407. image: {
  31408. source: "./media/characters/owen/side.svg",
  31409. extra: 1797/1734,
  31410. bottom: 30/1827
  31411. }
  31412. },
  31413. back: {
  31414. height: math.unit(8, "feet"),
  31415. weight: math.unit(900, "lb"),
  31416. name: "Back",
  31417. image: {
  31418. source: "./media/characters/owen/back.svg",
  31419. extra: 1796/1706,
  31420. bottom: 59/1855
  31421. }
  31422. },
  31423. maw: {
  31424. height: math.unit(1.76, "feet"),
  31425. name: "Maw",
  31426. image: {
  31427. source: "./media/characters/owen/maw.svg"
  31428. }
  31429. },
  31430. },
  31431. [
  31432. {
  31433. name: "Normal",
  31434. height: math.unit(8, "feet"),
  31435. default: true
  31436. },
  31437. ]
  31438. ))
  31439. characterMakers.push(() => makeCharacter(
  31440. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31441. {
  31442. front: {
  31443. height: math.unit(4, "feet"),
  31444. weight: math.unit(400, "lb"),
  31445. name: "Front",
  31446. image: {
  31447. source: "./media/characters/ryth/front.svg",
  31448. extra: 876/691,
  31449. bottom: 25/901
  31450. }
  31451. },
  31452. goia: {
  31453. height: math.unit(12, "feet"),
  31454. weight: math.unit(10800, "lb"),
  31455. name: "Goia",
  31456. image: {
  31457. source: "./media/characters/ryth/goia.svg",
  31458. extra: 3450/3198,
  31459. bottom: 61/3511
  31460. }
  31461. },
  31462. },
  31463. [
  31464. {
  31465. name: "Normal",
  31466. height: math.unit(4, "feet"),
  31467. default: true
  31468. },
  31469. ]
  31470. ))
  31471. characterMakers.push(() => makeCharacter(
  31472. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31473. {
  31474. front: {
  31475. height: math.unit(7, "feet"),
  31476. weight: math.unit(180, "lb"),
  31477. name: "Front",
  31478. image: {
  31479. source: "./media/characters/necrolance/front.svg",
  31480. extra: 1062/947,
  31481. bottom: 41/1103
  31482. }
  31483. },
  31484. back: {
  31485. height: math.unit(7, "feet"),
  31486. weight: math.unit(180, "lb"),
  31487. name: "Back",
  31488. image: {
  31489. source: "./media/characters/necrolance/back.svg",
  31490. extra: 1045/984,
  31491. bottom: 14/1059
  31492. }
  31493. },
  31494. wing: {
  31495. height: math.unit(2.67, "feet"),
  31496. name: "Wing",
  31497. image: {
  31498. source: "./media/characters/necrolance/wing.svg"
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Normal",
  31505. height: math.unit(7, "feet"),
  31506. default: true
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31512. {
  31513. front: {
  31514. height: math.unit(76, "meters"),
  31515. weight: math.unit(30000, "tons"),
  31516. name: "Front",
  31517. image: {
  31518. source: "./media/characters/tyler/front.svg",
  31519. extra: 1640/1640,
  31520. bottom: 114/1754
  31521. }
  31522. },
  31523. },
  31524. [
  31525. {
  31526. name: "Macro",
  31527. height: math.unit(76, "meters"),
  31528. default: true
  31529. },
  31530. ]
  31531. ))
  31532. characterMakers.push(() => makeCharacter(
  31533. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31534. {
  31535. front: {
  31536. height: math.unit(4 + 11/12, "feet"),
  31537. weight: math.unit(132, "lb"),
  31538. name: "Front",
  31539. image: {
  31540. source: "./media/characters/icey/front.svg",
  31541. extra: 2750/2550,
  31542. bottom: 33/2783
  31543. }
  31544. },
  31545. back: {
  31546. height: math.unit(4 + 11/12, "feet"),
  31547. weight: math.unit(132, "lb"),
  31548. name: "Back",
  31549. image: {
  31550. source: "./media/characters/icey/back.svg",
  31551. extra: 2624/2481,
  31552. bottom: 35/2659
  31553. }
  31554. },
  31555. },
  31556. [
  31557. {
  31558. name: "Normal",
  31559. height: math.unit(4 + 11/12, "feet"),
  31560. default: true
  31561. },
  31562. ]
  31563. ))
  31564. characterMakers.push(() => makeCharacter(
  31565. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31566. {
  31567. front: {
  31568. height: math.unit(100, "feet"),
  31569. weight: math.unit(0, "lb"),
  31570. name: "Front",
  31571. image: {
  31572. source: "./media/characters/smile/front.svg",
  31573. extra: 2983/2912,
  31574. bottom: 162/3145
  31575. }
  31576. },
  31577. back: {
  31578. height: math.unit(100, "feet"),
  31579. weight: math.unit(0, "lb"),
  31580. name: "Back",
  31581. image: {
  31582. source: "./media/characters/smile/back.svg",
  31583. extra: 3143/3031,
  31584. bottom: 91/3234
  31585. }
  31586. },
  31587. head: {
  31588. height: math.unit(26.3, "feet"),
  31589. weight: math.unit(0, "lb"),
  31590. name: "Head",
  31591. image: {
  31592. source: "./media/characters/smile/head.svg"
  31593. }
  31594. },
  31595. collar: {
  31596. height: math.unit(5.3, "feet"),
  31597. weight: math.unit(0, "lb"),
  31598. name: "Collar",
  31599. image: {
  31600. source: "./media/characters/smile/collar.svg"
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Macro",
  31607. height: math.unit(100, "feet"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31614. {
  31615. dragon: {
  31616. height: math.unit(26, "feet"),
  31617. weight: math.unit(36, "tons"),
  31618. name: "Dragon",
  31619. image: {
  31620. source: "./media/characters/arimphae/dragon.svg",
  31621. extra: 1574/983,
  31622. bottom: 357/1931
  31623. }
  31624. },
  31625. drake: {
  31626. height: math.unit(9, "feet"),
  31627. weight: math.unit(1.5, "tons"),
  31628. name: "Drake",
  31629. image: {
  31630. source: "./media/characters/arimphae/drake.svg",
  31631. extra: 1120/925,
  31632. bottom: 435/1555
  31633. }
  31634. },
  31635. },
  31636. [
  31637. {
  31638. name: "Small",
  31639. height: math.unit(26*5/9, "feet")
  31640. },
  31641. {
  31642. name: "Normal",
  31643. height: math.unit(26, "feet"),
  31644. default: true
  31645. },
  31646. ]
  31647. ))
  31648. characterMakers.push(() => makeCharacter(
  31649. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31650. {
  31651. front: {
  31652. height: math.unit(8 + 9/12, "feet"),
  31653. name: "Front",
  31654. image: {
  31655. source: "./media/characters/xander/front.svg",
  31656. extra: 848/673,
  31657. bottom: 62/910
  31658. }
  31659. },
  31660. },
  31661. [
  31662. {
  31663. name: "Normal",
  31664. height: math.unit(8 + 9/12, "feet"),
  31665. default: true
  31666. },
  31667. {
  31668. name: "Gaze Grabber",
  31669. height: math.unit(13 + 8/12, "feet")
  31670. },
  31671. {
  31672. name: "Jaw Dropper",
  31673. height: math.unit(27, "feet")
  31674. },
  31675. {
  31676. name: "Show Stopper",
  31677. height: math.unit(136, "feet")
  31678. },
  31679. {
  31680. name: "Superstar",
  31681. height: math.unit(1.9e6, "miles")
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31687. {
  31688. side: {
  31689. height: math.unit(2100, "feet"),
  31690. name: "Side",
  31691. image: {
  31692. source: "./media/characters/osiris/side.svg",
  31693. extra: 1105/939,
  31694. bottom: 167/1272
  31695. }
  31696. },
  31697. },
  31698. [
  31699. {
  31700. name: "Macro",
  31701. height: math.unit(2100, "feet"),
  31702. default: true
  31703. },
  31704. ]
  31705. ))
  31706. characterMakers.push(() => makeCharacter(
  31707. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31708. {
  31709. front: {
  31710. height: math.unit(6 + 8/12, "feet"),
  31711. weight: math.unit(225, "lb"),
  31712. name: "Front",
  31713. image: {
  31714. source: "./media/characters/rhys-londe/front.svg",
  31715. extra: 2258/2141,
  31716. bottom: 188/2446
  31717. }
  31718. },
  31719. back: {
  31720. height: math.unit(6 + 8/12, "feet"),
  31721. weight: math.unit(225, "lb"),
  31722. name: "Back",
  31723. image: {
  31724. source: "./media/characters/rhys-londe/back.svg",
  31725. extra: 2237/2137,
  31726. bottom: 63/2300
  31727. }
  31728. },
  31729. frontNsfw: {
  31730. height: math.unit(6 + 8/12, "feet"),
  31731. weight: math.unit(225, "lb"),
  31732. name: "Front (NSFW)",
  31733. image: {
  31734. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31735. extra: 2258/2141,
  31736. bottom: 188/2446
  31737. }
  31738. },
  31739. backNsfw: {
  31740. height: math.unit(6 + 8/12, "feet"),
  31741. weight: math.unit(225, "lb"),
  31742. name: "Back (NSFW)",
  31743. image: {
  31744. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31745. extra: 2237/2137,
  31746. bottom: 63/2300
  31747. }
  31748. },
  31749. dick: {
  31750. height: math.unit(30, "inches"),
  31751. name: "Dick",
  31752. image: {
  31753. source: "./media/characters/rhys-londe/dick.svg"
  31754. }
  31755. },
  31756. maw: {
  31757. height: math.unit(1.6, "feet"),
  31758. name: "Maw",
  31759. image: {
  31760. source: "./media/characters/rhys-londe/maw.svg"
  31761. }
  31762. },
  31763. },
  31764. [
  31765. {
  31766. name: "Normal",
  31767. height: math.unit(6 + 8/12, "feet"),
  31768. default: true
  31769. },
  31770. ]
  31771. ))
  31772. characterMakers.push(() => makeCharacter(
  31773. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31774. {
  31775. front: {
  31776. height: math.unit(3 + 10/12, "feet"),
  31777. weight: math.unit(90, "lb"),
  31778. name: "Front",
  31779. image: {
  31780. source: "./media/characters/taivas-ensim/front.svg",
  31781. extra: 1327/1216,
  31782. bottom: 96/1423
  31783. }
  31784. },
  31785. back: {
  31786. height: math.unit(3 + 10/12, "feet"),
  31787. weight: math.unit(90, "lb"),
  31788. name: "Back",
  31789. image: {
  31790. source: "./media/characters/taivas-ensim/back.svg",
  31791. extra: 1355/1247,
  31792. bottom: 11/1366
  31793. }
  31794. },
  31795. frontNsfw: {
  31796. height: math.unit(3 + 10/12, "feet"),
  31797. weight: math.unit(90, "lb"),
  31798. name: "Front (NSFW)",
  31799. image: {
  31800. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31801. extra: 1327/1216,
  31802. bottom: 96/1423
  31803. }
  31804. },
  31805. backNsfw: {
  31806. height: math.unit(3 + 10/12, "feet"),
  31807. weight: math.unit(90, "lb"),
  31808. name: "Back (NSFW)",
  31809. image: {
  31810. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31811. extra: 1355/1247,
  31812. bottom: 11/1366
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(3 + 10/12, "feet"),
  31820. default: true
  31821. },
  31822. ]
  31823. ))
  31824. characterMakers.push(() => makeCharacter(
  31825. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31826. {
  31827. front: {
  31828. height: math.unit(9 + 6/12, "feet"),
  31829. weight: math.unit(940, "lb"),
  31830. name: "Front",
  31831. image: {
  31832. source: "./media/characters/byliss/front.svg",
  31833. extra: 1327/1290,
  31834. bottom: 82/1409
  31835. }
  31836. },
  31837. back: {
  31838. height: math.unit(9 + 6/12, "feet"),
  31839. weight: math.unit(940, "lb"),
  31840. name: "Back",
  31841. image: {
  31842. source: "./media/characters/byliss/back.svg",
  31843. extra: 1376/1349,
  31844. bottom: 9/1385
  31845. }
  31846. },
  31847. frontNsfw: {
  31848. height: math.unit(9 + 6/12, "feet"),
  31849. weight: math.unit(940, "lb"),
  31850. name: "Front (NSFW)",
  31851. image: {
  31852. source: "./media/characters/byliss/front-nsfw.svg",
  31853. extra: 1327/1290,
  31854. bottom: 82/1409
  31855. }
  31856. },
  31857. backNsfw: {
  31858. height: math.unit(9 + 6/12, "feet"),
  31859. weight: math.unit(940, "lb"),
  31860. name: "Back (NSFW)",
  31861. image: {
  31862. source: "./media/characters/byliss/back-nsfw.svg",
  31863. extra: 1376/1349,
  31864. bottom: 9/1385
  31865. }
  31866. },
  31867. },
  31868. [
  31869. {
  31870. name: "Normal",
  31871. height: math.unit(9 + 6/12, "feet"),
  31872. default: true
  31873. },
  31874. ]
  31875. ))
  31876. characterMakers.push(() => makeCharacter(
  31877. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31878. {
  31879. front: {
  31880. height: math.unit(5 + 2/12, "feet"),
  31881. weight: math.unit(200, "lb"),
  31882. name: "Front",
  31883. image: {
  31884. source: "./media/characters/noraly/front.svg",
  31885. extra: 4985/4773,
  31886. bottom: 150/5135
  31887. }
  31888. },
  31889. full: {
  31890. height: math.unit(5 + 2/12, "feet"),
  31891. weight: math.unit(164, "lb"),
  31892. name: "Full",
  31893. image: {
  31894. source: "./media/characters/noraly/full.svg",
  31895. extra: 1114/1059,
  31896. bottom: 35/1149
  31897. }
  31898. },
  31899. fuller: {
  31900. height: math.unit(5 + 2/12, "feet"),
  31901. weight: math.unit(230, "lb"),
  31902. name: "Fuller",
  31903. image: {
  31904. source: "./media/characters/noraly/fuller.svg",
  31905. extra: 1114/1059,
  31906. bottom: 35/1149
  31907. }
  31908. },
  31909. fullest: {
  31910. height: math.unit(5 + 2/12, "feet"),
  31911. weight: math.unit(300, "lb"),
  31912. name: "Fullest",
  31913. image: {
  31914. source: "./media/characters/noraly/fullest.svg",
  31915. extra: 1114/1059,
  31916. bottom: 35/1149
  31917. }
  31918. },
  31919. },
  31920. [
  31921. {
  31922. name: "Normal",
  31923. height: math.unit(5 + 2/12, "feet"),
  31924. default: true
  31925. },
  31926. ]
  31927. ))
  31928. characterMakers.push(() => makeCharacter(
  31929. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31930. {
  31931. front: {
  31932. height: math.unit(5 + 2/12, "feet"),
  31933. weight: math.unit(210, "lb"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/pera/front.svg",
  31937. extra: 1560/1531,
  31938. bottom: 165/1725
  31939. }
  31940. },
  31941. back: {
  31942. height: math.unit(5 + 2/12, "feet"),
  31943. weight: math.unit(210, "lb"),
  31944. name: "Back",
  31945. image: {
  31946. source: "./media/characters/pera/back.svg",
  31947. extra: 1523/1493,
  31948. bottom: 152/1675
  31949. }
  31950. },
  31951. dick: {
  31952. height: math.unit(2.4, "feet"),
  31953. name: "Dick",
  31954. image: {
  31955. source: "./media/characters/pera/dick.svg"
  31956. }
  31957. },
  31958. },
  31959. [
  31960. {
  31961. name: "Normal",
  31962. height: math.unit(5 + 2/12, "feet"),
  31963. default: true
  31964. },
  31965. ]
  31966. ))
  31967. characterMakers.push(() => makeCharacter(
  31968. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31969. {
  31970. front: {
  31971. height: math.unit(12, "feet"),
  31972. weight: math.unit(3200, "lb"),
  31973. name: "Front",
  31974. image: {
  31975. source: "./media/characters/julian/front.svg",
  31976. extra: 2962/2701,
  31977. bottom: 184/3146
  31978. }
  31979. },
  31980. maw: {
  31981. height: math.unit(5.35, "feet"),
  31982. name: "Maw",
  31983. image: {
  31984. source: "./media/characters/julian/maw.svg"
  31985. }
  31986. },
  31987. paw: {
  31988. height: math.unit(3.07, "feet"),
  31989. name: "Paw",
  31990. image: {
  31991. source: "./media/characters/julian/paw.svg"
  31992. }
  31993. },
  31994. },
  31995. [
  31996. {
  31997. name: "Default",
  31998. height: math.unit(12, "feet"),
  31999. default: true
  32000. },
  32001. {
  32002. name: "Big",
  32003. height: math.unit(50, "feet")
  32004. },
  32005. {
  32006. name: "Really Big",
  32007. height: math.unit(1, "mile")
  32008. },
  32009. {
  32010. name: "Extremely Big",
  32011. height: math.unit(100, "miles")
  32012. },
  32013. {
  32014. name: "Planet Hugger",
  32015. height: math.unit(200, "megameters")
  32016. },
  32017. {
  32018. name: "Unreasonably Big",
  32019. height: math.unit(1e300, "meters")
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32025. {
  32026. solgooleo: {
  32027. height: math.unit(4, "meters"),
  32028. weight: math.unit(6000*1.5, "kg"),
  32029. volume: math.unit(6000, "liters"),
  32030. name: "Solgooleo",
  32031. image: {
  32032. source: "./media/characters/pi/solgooleo.svg",
  32033. extra: 388/331,
  32034. bottom: 29/417
  32035. }
  32036. },
  32037. },
  32038. [
  32039. {
  32040. name: "Normal",
  32041. height: math.unit(4, "meters"),
  32042. default: true
  32043. },
  32044. ]
  32045. ))
  32046. characterMakers.push(() => makeCharacter(
  32047. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32048. {
  32049. front: {
  32050. height: math.unit(8 + 2/12, "feet"),
  32051. weight: math.unit(4, "tons"),
  32052. name: "Front",
  32053. image: {
  32054. source: "./media/characters/shaun/front.svg",
  32055. extra: 1550/1505,
  32056. bottom: 353/1903
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Lorg",
  32063. height: math.unit(8 + 2/12, "feet"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32070. {
  32071. front: {
  32072. height: math.unit(7, "feet"),
  32073. name: "Front",
  32074. image: {
  32075. source: "./media/characters/sini/front.svg",
  32076. extra: 726/678,
  32077. bottom: 35/761
  32078. }
  32079. },
  32080. back: {
  32081. height: math.unit(7, "feet"),
  32082. name: "Back",
  32083. image: {
  32084. source: "./media/characters/sini/back.svg",
  32085. extra: 743/701,
  32086. bottom: 12/755
  32087. }
  32088. },
  32089. mawAnthro: {
  32090. height: math.unit(2.14, "feet"),
  32091. name: "Maw (Anthro)",
  32092. image: {
  32093. source: "./media/characters/sini/maw-anthro.svg"
  32094. }
  32095. },
  32096. dick: {
  32097. height: math.unit(1.45, "feet"),
  32098. name: "Dick (Anthro)",
  32099. image: {
  32100. source: "./media/characters/sini/dick-anthro.svg"
  32101. }
  32102. },
  32103. feral: {
  32104. height: math.unit(13, "feet"),
  32105. name: "Feral",
  32106. image: {
  32107. source: "./media/characters/sini/feral.svg",
  32108. extra: 814/605,
  32109. bottom: 11/825
  32110. }
  32111. },
  32112. mawFeral: {
  32113. height: math.unit(4.6, "feet"),
  32114. name: "Maw-feral",
  32115. image: {
  32116. source: "./media/characters/sini/maw-feral.svg"
  32117. }
  32118. },
  32119. footFeral: {
  32120. height: math.unit(4.2, "feet"),
  32121. name: "Foot-feral",
  32122. image: {
  32123. source: "./media/characters/sini/foot-feral.svg"
  32124. }
  32125. },
  32126. },
  32127. [
  32128. {
  32129. name: "Normal",
  32130. height: math.unit(7, "feet"),
  32131. default: true
  32132. },
  32133. ]
  32134. ))
  32135. characterMakers.push(() => makeCharacter(
  32136. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32137. {
  32138. side: {
  32139. height: math.unit(13, "meters"),
  32140. weight: math.unit(9072, "kg"),
  32141. name: "Side",
  32142. image: {
  32143. source: "./media/characters/raylldo/side.svg",
  32144. extra: 403/344,
  32145. bottom: 42/445
  32146. }
  32147. },
  32148. leaping: {
  32149. height: math.unit(12.3, "meters"),
  32150. weight: math.unit(9072, "kg"),
  32151. name: "Leaping",
  32152. image: {
  32153. source: "./media/characters/raylldo/leaping.svg",
  32154. extra: 470/249,
  32155. bottom: 13/483
  32156. }
  32157. },
  32158. flying: {
  32159. height: math.unit(18, "meters"),
  32160. weight: math.unit(9072, "kg"),
  32161. name: "Flying",
  32162. image: {
  32163. source: "./media/characters/raylldo/flying.svg"
  32164. }
  32165. },
  32166. head: {
  32167. height: math.unit(5.85, "meters"),
  32168. name: "Head",
  32169. image: {
  32170. source: "./media/characters/raylldo/head.svg"
  32171. }
  32172. },
  32173. maw: {
  32174. height: math.unit(5.32, "meters"),
  32175. name: "Maw",
  32176. image: {
  32177. source: "./media/characters/raylldo/maw.svg"
  32178. }
  32179. },
  32180. eye: {
  32181. height: math.unit(0.54, "meters"),
  32182. name: "Eye",
  32183. image: {
  32184. source: "./media/characters/raylldo/eye.svg"
  32185. }
  32186. },
  32187. },
  32188. [
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(13, "meters"),
  32192. default: true
  32193. },
  32194. ]
  32195. ))
  32196. characterMakers.push(() => makeCharacter(
  32197. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32198. {
  32199. anthroFront: {
  32200. height: math.unit(9, "feet"),
  32201. weight: math.unit(600, "lb"),
  32202. name: "Anthro (Front)",
  32203. image: {
  32204. source: "./media/characters/glint/anthro-front.svg",
  32205. extra: 1097/1018,
  32206. bottom: 28/1125
  32207. }
  32208. },
  32209. anthroBack: {
  32210. height: math.unit(9, "feet"),
  32211. weight: math.unit(600, "lb"),
  32212. name: "Anthro (Back)",
  32213. image: {
  32214. source: "./media/characters/glint/anthro-back.svg",
  32215. extra: 1154/997,
  32216. bottom: 36/1190
  32217. }
  32218. },
  32219. feral: {
  32220. height: math.unit(11, "feet"),
  32221. weight: math.unit(50000, "lb"),
  32222. name: "Feral",
  32223. image: {
  32224. source: "./media/characters/glint/feral.svg",
  32225. extra: 3035/1585,
  32226. bottom: 1169/4204
  32227. }
  32228. },
  32229. dickAnthro: {
  32230. height: math.unit(0.7, "meters"),
  32231. name: "Dick (Anthro)",
  32232. image: {
  32233. source: "./media/characters/glint/dick-anthro.svg"
  32234. }
  32235. },
  32236. dickFeral: {
  32237. height: math.unit(2.65, "meters"),
  32238. name: "Dick (Feral)",
  32239. image: {
  32240. source: "./media/characters/glint/dick-feral.svg"
  32241. }
  32242. },
  32243. slitHidden: {
  32244. height: math.unit(5.85, "meters"),
  32245. name: "Slit (Hidden)",
  32246. image: {
  32247. source: "./media/characters/glint/slit-hidden.svg"
  32248. }
  32249. },
  32250. slitErect: {
  32251. height: math.unit(5.85, "meters"),
  32252. name: "Slit (Erect)",
  32253. image: {
  32254. source: "./media/characters/glint/slit-erect.svg"
  32255. }
  32256. },
  32257. mawAnthro: {
  32258. height: math.unit(0.63, "meters"),
  32259. name: "Maw (Anthro)",
  32260. image: {
  32261. source: "./media/characters/glint/maw.svg"
  32262. }
  32263. },
  32264. mawFeral: {
  32265. height: math.unit(2.89, "meters"),
  32266. name: "Maw (Feral)",
  32267. image: {
  32268. source: "./media/characters/glint/maw.svg"
  32269. }
  32270. },
  32271. },
  32272. [
  32273. {
  32274. name: "Normal",
  32275. height: math.unit(9, "feet"),
  32276. default: true
  32277. },
  32278. ]
  32279. ))
  32280. characterMakers.push(() => makeCharacter(
  32281. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32282. {
  32283. side: {
  32284. height: math.unit(15, "feet"),
  32285. weight: math.unit(5000, "kg"),
  32286. name: "Side",
  32287. image: {
  32288. source: "./media/characters/kairne/side.svg",
  32289. extra: 979/811,
  32290. bottom: 13/992
  32291. }
  32292. },
  32293. front: {
  32294. height: math.unit(15, "feet"),
  32295. weight: math.unit(5000, "kg"),
  32296. name: "Front",
  32297. image: {
  32298. source: "./media/characters/kairne/front.svg",
  32299. extra: 908/814,
  32300. bottom: 26/934
  32301. }
  32302. },
  32303. sideNsfw: {
  32304. height: math.unit(15, "feet"),
  32305. weight: math.unit(5000, "kg"),
  32306. name: "Side (NSFW)",
  32307. image: {
  32308. source: "./media/characters/kairne/side-nsfw.svg",
  32309. extra: 979/811,
  32310. bottom: 13/992
  32311. }
  32312. },
  32313. frontNsfw: {
  32314. height: math.unit(15, "feet"),
  32315. weight: math.unit(5000, "kg"),
  32316. name: "Front (NSFW)",
  32317. image: {
  32318. source: "./media/characters/kairne/front-nsfw.svg",
  32319. extra: 908/814,
  32320. bottom: 26/934
  32321. }
  32322. },
  32323. dickCaged: {
  32324. height: math.unit(0.65, "meters"),
  32325. name: "Dick-caged",
  32326. image: {
  32327. source: "./media/characters/kairne/dick-caged.svg"
  32328. }
  32329. },
  32330. dick: {
  32331. height: math.unit(0.79, "meters"),
  32332. name: "Dick",
  32333. image: {
  32334. source: "./media/characters/kairne/dick.svg"
  32335. }
  32336. },
  32337. genitals: {
  32338. height: math.unit(1.29, "meters"),
  32339. name: "Genitals",
  32340. image: {
  32341. source: "./media/characters/kairne/genitals.svg"
  32342. }
  32343. },
  32344. maw: {
  32345. height: math.unit(1.73, "meters"),
  32346. name: "Maw",
  32347. image: {
  32348. source: "./media/characters/kairne/maw.svg"
  32349. }
  32350. },
  32351. },
  32352. [
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(15, "feet"),
  32356. default: true
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32362. {
  32363. front: {
  32364. height: math.unit(5 + 8/12, "feet"),
  32365. weight: math.unit(139, "lb"),
  32366. name: "Front",
  32367. image: {
  32368. source: "./media/characters/biscuit-jackal/front.svg",
  32369. extra: 2106/1961,
  32370. bottom: 58/2164
  32371. }
  32372. },
  32373. back: {
  32374. height: math.unit(5 + 8/12, "feet"),
  32375. weight: math.unit(139, "lb"),
  32376. name: "Back",
  32377. image: {
  32378. source: "./media/characters/biscuit-jackal/back.svg",
  32379. extra: 2132/1976,
  32380. bottom: 57/2189
  32381. }
  32382. },
  32383. werejackal: {
  32384. height: math.unit(6 + 3/12, "feet"),
  32385. weight: math.unit(188, "lb"),
  32386. name: "Werejackal",
  32387. image: {
  32388. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32389. extra: 2373/2178,
  32390. bottom: 53/2426
  32391. }
  32392. },
  32393. },
  32394. [
  32395. {
  32396. name: "Normal",
  32397. height: math.unit(5 + 8/12, "feet"),
  32398. default: true
  32399. },
  32400. ]
  32401. ))
  32402. characterMakers.push(() => makeCharacter(
  32403. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32404. {
  32405. front: {
  32406. height: math.unit(140, "cm"),
  32407. weight: math.unit(45, "kg"),
  32408. name: "Front",
  32409. image: {
  32410. source: "./media/characters/tayra-white/front.svg",
  32411. extra: 2229/2192,
  32412. bottom: 75/2304
  32413. }
  32414. },
  32415. },
  32416. [
  32417. {
  32418. name: "Normal",
  32419. height: math.unit(140, "cm"),
  32420. default: true
  32421. },
  32422. ]
  32423. ))
  32424. characterMakers.push(() => makeCharacter(
  32425. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32426. {
  32427. front: {
  32428. height: math.unit(4 + 5/12, "feet"),
  32429. name: "Front",
  32430. image: {
  32431. source: "./media/characters/scoop/front.svg",
  32432. extra: 1257/1136,
  32433. bottom: 69/1326
  32434. }
  32435. },
  32436. back: {
  32437. height: math.unit(4 + 5/12, "feet"),
  32438. name: "Back",
  32439. image: {
  32440. source: "./media/characters/scoop/back.svg",
  32441. extra: 1321/1152,
  32442. bottom: 32/1353
  32443. }
  32444. },
  32445. maw: {
  32446. height: math.unit(0.68, "feet"),
  32447. name: "Maw",
  32448. image: {
  32449. source: "./media/characters/scoop/maw.svg"
  32450. }
  32451. },
  32452. },
  32453. [
  32454. {
  32455. name: "Really Small",
  32456. height: math.unit(1, "mm")
  32457. },
  32458. {
  32459. name: "Micro",
  32460. height: math.unit(1, "inch")
  32461. },
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(4 + 5/12, "feet"),
  32465. default: true
  32466. },
  32467. {
  32468. name: "Macro",
  32469. height: math.unit(200, "feet")
  32470. },
  32471. {
  32472. name: "Megamacro",
  32473. height: math.unit(3240, "feet")
  32474. },
  32475. {
  32476. name: "Teramacro",
  32477. height: math.unit(2500, "miles")
  32478. },
  32479. ]
  32480. ))
  32481. characterMakers.push(() => makeCharacter(
  32482. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32483. {
  32484. front: {
  32485. height: math.unit(15 + 7/12, "feet"),
  32486. name: "Front",
  32487. image: {
  32488. source: "./media/characters/saphinara/front.svg",
  32489. extra: 604/546,
  32490. bottom: 19/623
  32491. }
  32492. },
  32493. side: {
  32494. height: math.unit(15 + 7/12, "feet"),
  32495. name: "Side",
  32496. image: {
  32497. source: "./media/characters/saphinara/side.svg",
  32498. extra: 605/547,
  32499. bottom: 6/611
  32500. }
  32501. },
  32502. back: {
  32503. height: math.unit(15 + 7/12, "feet"),
  32504. name: "Back",
  32505. image: {
  32506. source: "./media/characters/saphinara/back.svg",
  32507. extra: 591/531,
  32508. bottom: 13/604
  32509. }
  32510. },
  32511. frontTail: {
  32512. height: math.unit(15 + 7/12, "feet"),
  32513. name: "Front (Full Tail)",
  32514. image: {
  32515. source: "./media/characters/saphinara/front-tail.svg",
  32516. extra: 748/547,
  32517. bottom: 66/814
  32518. }
  32519. },
  32520. },
  32521. [
  32522. {
  32523. name: "Normal",
  32524. height: math.unit(15 + 7/12, "feet"),
  32525. default: true
  32526. },
  32527. {
  32528. name: "Angry",
  32529. height: math.unit(30 + 6/12, "feet")
  32530. },
  32531. {
  32532. name: "Enraged",
  32533. height: math.unit(102 + 1/12, "feet")
  32534. },
  32535. ]
  32536. ))
  32537. characterMakers.push(() => makeCharacter(
  32538. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32539. {
  32540. front: {
  32541. height: math.unit(6 + 8/12, "feet"),
  32542. weight: math.unit(300, "lb"),
  32543. name: "Front",
  32544. image: {
  32545. source: "./media/characters/jrain/front.svg",
  32546. extra: 3039/2865,
  32547. bottom: 399/3438
  32548. }
  32549. },
  32550. back: {
  32551. height: math.unit(6 + 8/12, "feet"),
  32552. weight: math.unit(300, "lb"),
  32553. name: "Back",
  32554. image: {
  32555. source: "./media/characters/jrain/back.svg",
  32556. extra: 3089/2938,
  32557. bottom: 172/3261
  32558. }
  32559. },
  32560. head: {
  32561. height: math.unit(2.14, "feet"),
  32562. name: "Head",
  32563. image: {
  32564. source: "./media/characters/jrain/head.svg"
  32565. }
  32566. },
  32567. maw: {
  32568. height: math.unit(1.77, "feet"),
  32569. name: "Maw",
  32570. image: {
  32571. source: "./media/characters/jrain/maw.svg"
  32572. }
  32573. },
  32574. leftHand: {
  32575. height: math.unit(1.1, "feet"),
  32576. name: "Left Hand",
  32577. image: {
  32578. source: "./media/characters/jrain/left-hand.svg"
  32579. }
  32580. },
  32581. rightHand: {
  32582. height: math.unit(1.1, "feet"),
  32583. name: "Right Hand",
  32584. image: {
  32585. source: "./media/characters/jrain/right-hand.svg"
  32586. }
  32587. },
  32588. eye: {
  32589. height: math.unit(0.35, "feet"),
  32590. name: "Eye",
  32591. image: {
  32592. source: "./media/characters/jrain/eye.svg"
  32593. }
  32594. },
  32595. },
  32596. [
  32597. {
  32598. name: "Normal",
  32599. height: math.unit(6 + 8/12, "feet"),
  32600. default: true
  32601. },
  32602. {
  32603. name: "Casually Large",
  32604. height: math.unit(25, "feet")
  32605. },
  32606. {
  32607. name: "Giant",
  32608. height: math.unit(100, "feet")
  32609. },
  32610. {
  32611. name: "Kaiju",
  32612. height: math.unit(300, "feet")
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32618. {
  32619. dragon: {
  32620. height: math.unit(5, "meters"),
  32621. name: "Dragon",
  32622. image: {
  32623. source: "./media/characters/sabrina/dragon.svg",
  32624. extra: 3670 / 2365,
  32625. bottom: 333 / 4003
  32626. }
  32627. },
  32628. gryphon: {
  32629. height: math.unit(3, "meters"),
  32630. name: "Gryphon",
  32631. image: {
  32632. source: "./media/characters/sabrina/gryphon.svg",
  32633. extra: 1576 / 945,
  32634. bottom: 71 / 1647
  32635. }
  32636. },
  32637. snake: {
  32638. height: math.unit(12, "meters"),
  32639. name: "Snake",
  32640. image: {
  32641. source: "./media/characters/sabrina/snake.svg",
  32642. extra: 1758 / 1320,
  32643. bottom: 186 / 1944
  32644. }
  32645. },
  32646. collar: {
  32647. height: math.unit(1.86, "meters"),
  32648. name: "Collar",
  32649. image: {
  32650. source: "./media/characters/sabrina/collar.svg"
  32651. }
  32652. },
  32653. eye: {
  32654. height: math.unit(0.53, "meters"),
  32655. name: "Eye",
  32656. image: {
  32657. source: "./media/characters/sabrina/eye.svg"
  32658. }
  32659. },
  32660. foot: {
  32661. height: math.unit(1.86, "meters"),
  32662. name: "Foot",
  32663. image: {
  32664. source: "./media/characters/sabrina/foot.svg"
  32665. }
  32666. },
  32667. hand: {
  32668. height: math.unit(1.32, "meters"),
  32669. name: "Hand",
  32670. image: {
  32671. source: "./media/characters/sabrina/hand.svg"
  32672. }
  32673. },
  32674. head: {
  32675. height: math.unit(2.44, "meters"),
  32676. name: "Head",
  32677. image: {
  32678. source: "./media/characters/sabrina/head.svg"
  32679. }
  32680. },
  32681. headAngry: {
  32682. height: math.unit(2.44, "meters"),
  32683. name: "Head (Angry))",
  32684. image: {
  32685. source: "./media/characters/sabrina/head-angry.svg"
  32686. }
  32687. },
  32688. maw: {
  32689. height: math.unit(1.65, "meters"),
  32690. name: "Maw",
  32691. image: {
  32692. source: "./media/characters/sabrina/maw.svg"
  32693. }
  32694. },
  32695. spikes: {
  32696. height: math.unit(1.69, "meters"),
  32697. name: "Spikes",
  32698. image: {
  32699. source: "./media/characters/sabrina/spikes.svg"
  32700. }
  32701. },
  32702. stomach: {
  32703. height: math.unit(1.15, "meters"),
  32704. name: "Stomach",
  32705. image: {
  32706. source: "./media/characters/sabrina/stomach.svg"
  32707. }
  32708. },
  32709. tongue: {
  32710. height: math.unit(1.27, "meters"),
  32711. name: "Tongue",
  32712. image: {
  32713. source: "./media/characters/sabrina/tongue.svg"
  32714. }
  32715. },
  32716. wingDorsal: {
  32717. height: math.unit(4.85, "meters"),
  32718. name: "Wing (Dorsal)",
  32719. image: {
  32720. source: "./media/characters/sabrina/wing-dorsal.svg"
  32721. }
  32722. },
  32723. wingVentral: {
  32724. height: math.unit(4.85, "meters"),
  32725. name: "Wing (Ventral)",
  32726. image: {
  32727. source: "./media/characters/sabrina/wing-ventral.svg"
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Normal",
  32734. height: math.unit(5, "meters"),
  32735. default: true
  32736. },
  32737. ]
  32738. ))
  32739. characterMakers.push(() => makeCharacter(
  32740. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32741. {
  32742. frontMaid: {
  32743. height: math.unit(5 + 5/12, "feet"),
  32744. weight: math.unit(130, "lb"),
  32745. name: "Front (Maid)",
  32746. image: {
  32747. source: "./media/characters/midnight-tales/front-maid.svg",
  32748. extra: 489/454,
  32749. bottom: 61/550
  32750. }
  32751. },
  32752. frontFormal: {
  32753. height: math.unit(5 + 5/12, "feet"),
  32754. weight: math.unit(130, "lb"),
  32755. name: "Front (Formal)",
  32756. image: {
  32757. source: "./media/characters/midnight-tales/front-formal.svg",
  32758. extra: 489/454,
  32759. bottom: 61/550
  32760. }
  32761. },
  32762. back: {
  32763. height: math.unit(5 + 5/12, "feet"),
  32764. weight: math.unit(130, "lb"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/midnight-tales/back.svg",
  32768. extra: 498/456,
  32769. bottom: 33/531
  32770. }
  32771. },
  32772. frontBeast: {
  32773. height: math.unit(40, "feet"),
  32774. weight: math.unit(64000, "lb"),
  32775. name: "Front (Beast)",
  32776. image: {
  32777. source: "./media/characters/midnight-tales/front-beast.svg",
  32778. extra: 927/860,
  32779. bottom: 53/980
  32780. }
  32781. },
  32782. backBeast: {
  32783. height: math.unit(40, "feet"),
  32784. weight: math.unit(64000, "lb"),
  32785. name: "Back (Beast)",
  32786. image: {
  32787. source: "./media/characters/midnight-tales/back-beast.svg",
  32788. extra: 929/855,
  32789. bottom: 16/945
  32790. }
  32791. },
  32792. footBeast: {
  32793. height: math.unit(6.7, "feet"),
  32794. name: "Foot (Beast)",
  32795. image: {
  32796. source: "./media/characters/midnight-tales/foot-beast.svg"
  32797. }
  32798. },
  32799. headBeast: {
  32800. height: math.unit(8, "feet"),
  32801. name: "Head (Beast)",
  32802. image: {
  32803. source: "./media/characters/midnight-tales/head-beast.svg"
  32804. }
  32805. },
  32806. },
  32807. [
  32808. {
  32809. name: "Normal",
  32810. height: math.unit(5 + 5 / 12, "feet"),
  32811. default: true
  32812. },
  32813. {
  32814. name: "Macro",
  32815. height: math.unit(25, "feet")
  32816. },
  32817. ]
  32818. ))
  32819. characterMakers.push(() => makeCharacter(
  32820. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32821. {
  32822. front: {
  32823. height: math.unit(5 + 10/12, "feet"),
  32824. name: "Front",
  32825. image: {
  32826. source: "./media/characters/argon/front.svg",
  32827. extra: 2009/1935,
  32828. bottom: 118/2127
  32829. }
  32830. },
  32831. back: {
  32832. height: math.unit(5 + 10/12, "feet"),
  32833. name: "Back",
  32834. image: {
  32835. source: "./media/characters/argon/back.svg",
  32836. extra: 2047/1992,
  32837. bottom: 20/2067
  32838. }
  32839. },
  32840. frontDressed: {
  32841. height: math.unit(5 + 10/12, "feet"),
  32842. name: "Front (Dressed)",
  32843. image: {
  32844. source: "./media/characters/argon/front-dressed.svg",
  32845. extra: 2009/1935,
  32846. bottom: 118/2127
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(5 + 10/12, "feet"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(8 + 6/12, "feet"),
  32863. weight: math.unit(1150, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/kichi/front.svg",
  32867. extra: 1267/1164,
  32868. bottom: 61/1328
  32869. }
  32870. },
  32871. back: {
  32872. height: math.unit(8 + 6/12, "feet"),
  32873. weight: math.unit(1150, "lb"),
  32874. name: "Back",
  32875. image: {
  32876. source: "./media/characters/kichi/back.svg",
  32877. extra: 1273/1166,
  32878. bottom: 33/1306
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Normal",
  32885. height: math.unit(8 + 6/12, "feet"),
  32886. default: true
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32892. {
  32893. front: {
  32894. height: math.unit(6, "feet"),
  32895. weight: math.unit(210, "lb"),
  32896. name: "Front",
  32897. image: {
  32898. source: "./media/characters/manetel-greyscale/front.svg",
  32899. extra: 350/312,
  32900. bottom: 8/358
  32901. }
  32902. },
  32903. },
  32904. [
  32905. {
  32906. name: "Micro",
  32907. height: math.unit(2, "inches")
  32908. },
  32909. {
  32910. name: "Normal",
  32911. height: math.unit(6, "feet"),
  32912. default: true
  32913. },
  32914. {
  32915. name: "Minimacro",
  32916. height: math.unit(17, "feet")
  32917. },
  32918. {
  32919. name: "Macro",
  32920. height: math.unit(117, "feet")
  32921. },
  32922. ]
  32923. ))
  32924. characterMakers.push(() => makeCharacter(
  32925. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32926. {
  32927. side: {
  32928. height: math.unit(5 + 1/12, "feet"),
  32929. weight: math.unit(418, "lb"),
  32930. name: "Side",
  32931. image: {
  32932. source: "./media/characters/softpurr/side.svg",
  32933. extra: 1993/1945,
  32934. bottom: 134/2127
  32935. }
  32936. },
  32937. front: {
  32938. height: math.unit(5 + 1/12, "feet"),
  32939. weight: math.unit(418, "lb"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/softpurr/front.svg",
  32943. extra: 1950/1856,
  32944. bottom: 174/2124
  32945. }
  32946. },
  32947. paw: {
  32948. height: math.unit(1, "feet"),
  32949. name: "Paw",
  32950. image: {
  32951. source: "./media/characters/softpurr/paw.svg"
  32952. }
  32953. },
  32954. },
  32955. [
  32956. {
  32957. name: "Normal",
  32958. height: math.unit(5 + 1/12, "feet"),
  32959. default: true
  32960. },
  32961. ]
  32962. ))
  32963. characterMakers.push(() => makeCharacter(
  32964. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32965. {
  32966. front: {
  32967. height: math.unit(260, "meters"),
  32968. name: "Front",
  32969. image: {
  32970. source: "./media/characters/anahita/front.svg",
  32971. extra: 665/635,
  32972. bottom: 89/754
  32973. }
  32974. },
  32975. },
  32976. [
  32977. {
  32978. name: "Macro",
  32979. height: math.unit(260, "meters"),
  32980. default: true
  32981. },
  32982. ]
  32983. ))
  32984. characterMakers.push(() => makeCharacter(
  32985. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32986. {
  32987. front: {
  32988. height: math.unit(4 + 10/12, "feet"),
  32989. weight: math.unit(160, "lb"),
  32990. name: "Front",
  32991. image: {
  32992. source: "./media/characters/chip-mouse/front.svg",
  32993. extra: 3528/3408,
  32994. bottom: 0/3528
  32995. }
  32996. },
  32997. frontNsfw: {
  32998. height: math.unit(4 + 10/12, "feet"),
  32999. weight: math.unit(160, "lb"),
  33000. name: "Front (NSFW)",
  33001. image: {
  33002. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33003. extra: 3528/3408,
  33004. bottom: 0/3528
  33005. }
  33006. },
  33007. },
  33008. [
  33009. {
  33010. name: "Normal",
  33011. height: math.unit(4 + 10/12, "feet"),
  33012. default: true
  33013. },
  33014. ]
  33015. ))
  33016. characterMakers.push(() => makeCharacter(
  33017. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33018. {
  33019. side: {
  33020. height: math.unit(10, "feet"),
  33021. weight: math.unit(14000, "lb"),
  33022. name: "Side",
  33023. image: {
  33024. source: "./media/characters/kremm/side.svg",
  33025. extra: 1390/1053,
  33026. bottom: 90/1480
  33027. }
  33028. },
  33029. gut: {
  33030. height: math.unit(5.8, "feet"),
  33031. name: "Gut",
  33032. image: {
  33033. source: "./media/characters/kremm/gut.svg"
  33034. }
  33035. },
  33036. ass: {
  33037. height: math.unit(6.1, "feet"),
  33038. name: "Ass",
  33039. image: {
  33040. source: "./media/characters/kremm/ass.svg"
  33041. }
  33042. },
  33043. jaws: {
  33044. height: math.unit(2.2, "feet"),
  33045. name: "Jaws",
  33046. image: {
  33047. source: "./media/characters/kremm/jaws.svg"
  33048. }
  33049. },
  33050. dick: {
  33051. height: math.unit(4.26, "feet"),
  33052. name: "Dick",
  33053. image: {
  33054. source: "./media/characters/kremm/dick.svg"
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Normal",
  33061. height: math.unit(10, "feet"),
  33062. default: true
  33063. },
  33064. ]
  33065. ))
  33066. characterMakers.push(() => makeCharacter(
  33067. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33068. {
  33069. front: {
  33070. height: math.unit(30, "stories"),
  33071. name: "Front",
  33072. image: {
  33073. source: "./media/characters/kai/front.svg",
  33074. extra: 1892/1718,
  33075. bottom: 162/2054
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Macro",
  33082. height: math.unit(30, "stories"),
  33083. default: true
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(6 + 4/12, "feet"),
  33092. weight: math.unit(145, "lb"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/sykes/front.svg",
  33096. extra: 1321 / 1187,
  33097. bottom: 66 / 1387
  33098. }
  33099. },
  33100. back: {
  33101. height: math.unit(6 + 4/12, "feet"),
  33102. weight: math.unit(145, "lb"),
  33103. name: "Back",
  33104. image: {
  33105. source: "./media/characters/sykes/back.svg",
  33106. extra: 1326/1181,
  33107. bottom: 31/1357
  33108. }
  33109. },
  33110. handBack: {
  33111. height: math.unit(0.9, "feet"),
  33112. name: "Hand (Back)",
  33113. image: {
  33114. source: "./media/characters/sykes/hand-back.svg"
  33115. }
  33116. },
  33117. handFront: {
  33118. height: math.unit(0.839, "feet"),
  33119. name: "Hand (Front)",
  33120. image: {
  33121. source: "./media/characters/sykes/hand-front.svg"
  33122. }
  33123. },
  33124. leftFoot: {
  33125. height: math.unit(1.2, "feet"),
  33126. name: "Foot (Left)",
  33127. image: {
  33128. source: "./media/characters/sykes/foot-left.svg"
  33129. }
  33130. },
  33131. rightFoot: {
  33132. height: math.unit(1.2, "feet"),
  33133. name: "Foot (Right)",
  33134. image: {
  33135. source: "./media/characters/sykes/foot-right.svg"
  33136. }
  33137. },
  33138. maw: {
  33139. height: math.unit(1.93, "feet"),
  33140. name: "Maw",
  33141. image: {
  33142. source: "./media/characters/sykes/maw.svg"
  33143. }
  33144. },
  33145. teeth: {
  33146. height: math.unit(0.51, "feet"),
  33147. name: "Teeth",
  33148. image: {
  33149. source: "./media/characters/sykes/teeth.svg"
  33150. }
  33151. },
  33152. tongue: {
  33153. height: math.unit(2.13, "feet"),
  33154. name: "Tongue",
  33155. image: {
  33156. source: "./media/characters/sykes/tongue.svg"
  33157. }
  33158. },
  33159. uvula: {
  33160. height: math.unit(0.16, "feet"),
  33161. name: "Uvula",
  33162. image: {
  33163. source: "./media/characters/sykes/uvula.svg"
  33164. }
  33165. },
  33166. collar: {
  33167. height: math.unit(0.287, "feet"),
  33168. name: "Collar",
  33169. image: {
  33170. source: "./media/characters/sykes/collar.svg"
  33171. }
  33172. },
  33173. },
  33174. [
  33175. {
  33176. name: "Shrunken",
  33177. height: math.unit(5, "inches")
  33178. },
  33179. {
  33180. name: "Normal",
  33181. height: math.unit(6 + 4 / 12, "feet"),
  33182. default: true
  33183. },
  33184. {
  33185. name: "Big",
  33186. height: math.unit(15, "feet")
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(5 + 8/12, "feet"),
  33195. weight: math.unit(190, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/oven-otter/front.svg",
  33199. extra: 1809/1740,
  33200. bottom: 181/1990
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(5 + 8/12, "feet"),
  33205. weight: math.unit(190, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/oven-otter/back.svg",
  33209. extra: 1709/1635,
  33210. bottom: 118/1827
  33211. }
  33212. },
  33213. hand: {
  33214. height: math.unit(1.07, "feet"),
  33215. name: "Hand",
  33216. image: {
  33217. source: "./media/characters/oven-otter/hand.svg"
  33218. }
  33219. },
  33220. beans: {
  33221. height: math.unit(1.74, "feet"),
  33222. name: "Beans",
  33223. image: {
  33224. source: "./media/characters/oven-otter/beans.svg"
  33225. }
  33226. },
  33227. },
  33228. [
  33229. {
  33230. name: "Micro",
  33231. height: math.unit(0.5, "inches")
  33232. },
  33233. {
  33234. name: "Normal",
  33235. height: math.unit(5 + 8/12, "feet"),
  33236. default: true
  33237. },
  33238. {
  33239. name: "Macro",
  33240. height: math.unit(250, "feet")
  33241. },
  33242. {
  33243. name: "Really High",
  33244. height: math.unit(420, "feet")
  33245. },
  33246. ]
  33247. ))
  33248. characterMakers.push(() => makeCharacter(
  33249. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33250. {
  33251. front: {
  33252. height: math.unit(5, "meters"),
  33253. weight: math.unit(292000000000000, "kg"),
  33254. name: "Front",
  33255. image: {
  33256. source: "./media/characters/devourer/front.svg",
  33257. extra: 1800/1733,
  33258. bottom: 211/2011
  33259. }
  33260. },
  33261. maw: {
  33262. height: math.unit(1.1, "meter"),
  33263. name: "Maw",
  33264. image: {
  33265. source: "./media/characters/devourer/maw.svg"
  33266. }
  33267. },
  33268. },
  33269. [
  33270. {
  33271. name: "Small",
  33272. height: math.unit(3, "meters")
  33273. },
  33274. {
  33275. name: "Large",
  33276. height: math.unit(5, "meters"),
  33277. default: true
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33283. {
  33284. front: {
  33285. height: math.unit(6, "feet"),
  33286. weight: math.unit(400, "lb"),
  33287. name: "Front",
  33288. image: {
  33289. source: "./media/characters/ellarby/front.svg",
  33290. extra: 1909/1763,
  33291. bottom: 80/1989
  33292. }
  33293. },
  33294. back: {
  33295. height: math.unit(6, "feet"),
  33296. weight: math.unit(400, "lb"),
  33297. name: "Back",
  33298. image: {
  33299. source: "./media/characters/ellarby/back.svg",
  33300. extra: 1914/1784,
  33301. bottom: 172/2086
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Mischief",
  33308. height: math.unit(18, "inches")
  33309. },
  33310. {
  33311. name: "Trouble",
  33312. height: math.unit(12, "feet")
  33313. },
  33314. {
  33315. name: "Havoc",
  33316. height: math.unit(200, "feet"),
  33317. default: true
  33318. },
  33319. {
  33320. name: "Pandemonium",
  33321. height: math.unit(1, "mile")
  33322. },
  33323. {
  33324. name: "Catastrophe",
  33325. height: math.unit(100, "miles")
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33331. {
  33332. front: {
  33333. height: math.unit(4.7, "meters"),
  33334. weight: math.unit(6500, "kg"),
  33335. name: "Front",
  33336. image: {
  33337. source: "./media/characters/vex/front.svg",
  33338. extra: 1288/1140,
  33339. bottom: 100/1388
  33340. }
  33341. },
  33342. },
  33343. [
  33344. {
  33345. name: "Normal",
  33346. height: math.unit(4.7, "meters"),
  33347. default: true
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33353. {
  33354. normal: {
  33355. height: math.unit(6, "feet"),
  33356. weight: math.unit(350, "lb"),
  33357. name: "Normal",
  33358. image: {
  33359. source: "./media/characters/teshy/normal.svg",
  33360. extra: 1795/1735,
  33361. bottom: 16/1811
  33362. }
  33363. },
  33364. monsterFront: {
  33365. height: math.unit(12, "feet"),
  33366. weight: math.unit(4700, "lb"),
  33367. name: "Monster (Front)",
  33368. image: {
  33369. source: "./media/characters/teshy/monster-front.svg",
  33370. extra: 2042/2034,
  33371. bottom: 128/2170
  33372. }
  33373. },
  33374. monsterSide: {
  33375. height: math.unit(12, "feet"),
  33376. weight: math.unit(4700, "lb"),
  33377. name: "Monster (Side)",
  33378. image: {
  33379. source: "./media/characters/teshy/monster-side.svg",
  33380. extra: 2067/2056,
  33381. bottom: 70/2137
  33382. }
  33383. },
  33384. monsterBack: {
  33385. height: math.unit(12, "feet"),
  33386. weight: math.unit(4700, "lb"),
  33387. name: "Monster (Back)",
  33388. image: {
  33389. source: "./media/characters/teshy/monster-back.svg",
  33390. extra: 1921/1914,
  33391. bottom: 171/2092
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Normal",
  33398. height: math.unit(6, "feet"),
  33399. default: true
  33400. },
  33401. ]
  33402. ))
  33403. characterMakers.push(() => makeCharacter(
  33404. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33405. {
  33406. front: {
  33407. height: math.unit(6, "feet"),
  33408. name: "Front",
  33409. image: {
  33410. source: "./media/characters/ramey/front.svg",
  33411. extra: 790/787,
  33412. bottom: 27/817
  33413. }
  33414. },
  33415. },
  33416. [
  33417. {
  33418. name: "Normal",
  33419. height: math.unit(6, "feet"),
  33420. default: true
  33421. },
  33422. ]
  33423. ))
  33424. characterMakers.push(() => makeCharacter(
  33425. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33426. {
  33427. front: {
  33428. height: math.unit(5 + 5/12, "feet"),
  33429. weight: math.unit(120, "lb"),
  33430. name: "Front",
  33431. image: {
  33432. source: "./media/characters/phirae/front.svg",
  33433. extra: 2491/2436,
  33434. bottom: 38/2529
  33435. }
  33436. },
  33437. },
  33438. [
  33439. {
  33440. name: "Normal",
  33441. height: math.unit(5 + 5/12, "feet"),
  33442. default: true
  33443. },
  33444. ]
  33445. ))
  33446. characterMakers.push(() => makeCharacter(
  33447. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33448. {
  33449. front: {
  33450. height: math.unit(6, "feet"),
  33451. weight: math.unit(150, "lb"),
  33452. name: "Front",
  33453. image: {
  33454. source: "./media/characters/stagglas/front.svg",
  33455. extra: 962/882,
  33456. bottom: 53/1015
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Normal",
  33463. height: math.unit(5 + 3/12, "feet"),
  33464. default: true
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(5 + 4/12, "feet"),
  33473. weight: math.unit(145, "lb"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/starra/front.svg",
  33477. extra: 1790/1691,
  33478. bottom: 91/1881
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(5 + 4/12, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(2.2, "meters"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33498. extra: 1194/1005,
  33499. bottom: 25/1219
  33500. }
  33501. },
  33502. },
  33503. [
  33504. {
  33505. name: "Normal",
  33506. height: math.unit(2.2, "meters"),
  33507. default: true
  33508. },
  33509. ]
  33510. ))
  33511. characterMakers.push(() => makeCharacter(
  33512. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33513. {
  33514. side: {
  33515. height: math.unit(8 + 2/12, "feet"),
  33516. weight: math.unit(1240, "lb"),
  33517. name: "Side",
  33518. image: {
  33519. source: "./media/characters/mika-valentine/side.svg",
  33520. extra: 2670/2501,
  33521. bottom: 250/2920
  33522. }
  33523. },
  33524. },
  33525. [
  33526. {
  33527. name: "Normal",
  33528. height: math.unit(8 + 2/12, "feet"),
  33529. default: true
  33530. },
  33531. ]
  33532. ))
  33533. characterMakers.push(() => makeCharacter(
  33534. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33535. {
  33536. front: {
  33537. height: math.unit(7 + 2/12, "feet"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/xoltol/front.svg",
  33541. extra: 2212/2124,
  33542. bottom: 84/2296
  33543. }
  33544. },
  33545. side: {
  33546. height: math.unit(7 + 2/12, "feet"),
  33547. name: "Side",
  33548. image: {
  33549. source: "./media/characters/xoltol/side.svg",
  33550. extra: 2273/2197,
  33551. bottom: 26/2299
  33552. }
  33553. },
  33554. hand: {
  33555. height: math.unit(2.5, "feet"),
  33556. name: "Hand",
  33557. image: {
  33558. source: "./media/characters/xoltol/hand.svg"
  33559. }
  33560. },
  33561. },
  33562. [
  33563. {
  33564. name: "Small-ish",
  33565. height: math.unit(5 + 11/12, "feet")
  33566. },
  33567. {
  33568. name: "Normal",
  33569. height: math.unit(7 + 2/12, "feet")
  33570. },
  33571. {
  33572. name: "\"Macro\"",
  33573. height: math.unit(14 + 9/12, "feet"),
  33574. default: true
  33575. },
  33576. {
  33577. name: "Alternate Height",
  33578. height: math.unit(20, "feet")
  33579. },
  33580. {
  33581. name: "Actually Macro",
  33582. height: math.unit(100, "feet")
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33588. {
  33589. front: {
  33590. height: math.unit(5 + 2/12, "feet"),
  33591. name: "Front",
  33592. image: {
  33593. source: "./media/characters/kotetsu-redwood/front.svg",
  33594. extra: 1053/942,
  33595. bottom: 60/1113
  33596. }
  33597. },
  33598. },
  33599. [
  33600. {
  33601. name: "Normal",
  33602. height: math.unit(5 + 2/12, "feet"),
  33603. default: true
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33609. {
  33610. front: {
  33611. height: math.unit(2.4, "meters"),
  33612. weight: math.unit(125, "kg"),
  33613. name: "Front",
  33614. image: {
  33615. source: "./media/characters/lilith/front.svg",
  33616. extra: 1590/1513,
  33617. bottom: 203/1793
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Humanoid",
  33624. height: math.unit(2.4, "meters")
  33625. },
  33626. {
  33627. name: "Normal",
  33628. height: math.unit(6, "meters"),
  33629. default: true
  33630. },
  33631. {
  33632. name: "Largest",
  33633. height: math.unit(55, "meters")
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(8 + 4/12, "feet"),
  33642. weight: math.unit(535, "lb"),
  33643. name: "Front",
  33644. image: {
  33645. source: "./media/characters/beh'kah-bolger/front.svg",
  33646. extra: 1660/1603,
  33647. bottom: 37/1697
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Normal",
  33654. height: math.unit(8 + 4/12, "feet"),
  33655. default: true
  33656. },
  33657. {
  33658. name: "Kaiju",
  33659. height: math.unit(250, "feet")
  33660. },
  33661. {
  33662. name: "Still Growing",
  33663. height: math.unit(10, "miles")
  33664. },
  33665. {
  33666. name: "Continental",
  33667. height: math.unit(5000, "miles")
  33668. },
  33669. {
  33670. name: "Final Form",
  33671. height: math.unit(2500000, "miles")
  33672. },
  33673. ]
  33674. ))
  33675. characterMakers.push(() => makeCharacter(
  33676. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33677. {
  33678. front: {
  33679. height: math.unit(7 + 2/12, "feet"),
  33680. weight: math.unit(230, "kg"),
  33681. name: "Front",
  33682. image: {
  33683. source: "./media/characters/tatyana-milewska/front.svg",
  33684. extra: 1199/1150,
  33685. bottom: 86/1285
  33686. }
  33687. },
  33688. },
  33689. [
  33690. {
  33691. name: "Normal",
  33692. height: math.unit(7 + 2/12, "feet"),
  33693. default: true
  33694. },
  33695. {
  33696. name: "Big",
  33697. height: math.unit(12, "feet")
  33698. },
  33699. {
  33700. name: "Minimacro",
  33701. height: math.unit(20, "feet")
  33702. },
  33703. {
  33704. name: "Macro",
  33705. height: math.unit(120, "feet")
  33706. },
  33707. ]
  33708. ))
  33709. characterMakers.push(() => makeCharacter(
  33710. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33711. {
  33712. front: {
  33713. height: math.unit(7 + 8/12, "feet"),
  33714. weight: math.unit(152, "kg"),
  33715. name: "Front",
  33716. image: {
  33717. source: "./media/characters/helen-arri/front.svg",
  33718. extra: 440/423,
  33719. bottom: 14/454
  33720. }
  33721. },
  33722. back: {
  33723. height: math.unit(7 + 8/12, "feet"),
  33724. weight: math.unit(152, "kg"),
  33725. name: "Back",
  33726. image: {
  33727. source: "./media/characters/helen-arri/back.svg",
  33728. extra: 443/426,
  33729. bottom: 8/451
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Normal",
  33736. height: math.unit(7 + 8/12, "feet"),
  33737. default: true
  33738. },
  33739. {
  33740. name: "Big",
  33741. height: math.unit(14, "feet")
  33742. },
  33743. {
  33744. name: "Minimacro",
  33745. height: math.unit(24, "feet")
  33746. },
  33747. {
  33748. name: "Macro",
  33749. height: math.unit(140, "feet")
  33750. },
  33751. ]
  33752. ))
  33753. characterMakers.push(() => makeCharacter(
  33754. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33755. {
  33756. front: {
  33757. height: math.unit(6, "meters"),
  33758. name: "Front",
  33759. image: {
  33760. source: "./media/characters/ehanu-rehu/front.svg",
  33761. extra: 1800/1800,
  33762. bottom: 59/1859
  33763. }
  33764. },
  33765. },
  33766. [
  33767. {
  33768. name: "Normal",
  33769. height: math.unit(6, "meters"),
  33770. default: true
  33771. },
  33772. ]
  33773. ))
  33774. characterMakers.push(() => makeCharacter(
  33775. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33776. {
  33777. front: {
  33778. height: math.unit(7 + 3/12, "feet"),
  33779. name: "Front",
  33780. image: {
  33781. source: "./media/characters/renholder/front.svg",
  33782. extra: 3096/2960,
  33783. bottom: 250/3346
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Normal Bat",
  33790. height: math.unit(7 + 3/12, "feet"),
  33791. default: true
  33792. },
  33793. {
  33794. name: "Slightly Tall Bat",
  33795. height: math.unit(100, "feet")
  33796. },
  33797. {
  33798. name: "Big Bat",
  33799. height: math.unit(1000, "feet")
  33800. },
  33801. {
  33802. name: "City-Sized Bat",
  33803. height: math.unit(200000, "feet")
  33804. },
  33805. {
  33806. name: "Bigger Bat",
  33807. height: math.unit(10000, "miles")
  33808. },
  33809. {
  33810. name: "Solar Sized Bat",
  33811. height: math.unit(100, "AU")
  33812. },
  33813. {
  33814. name: "Galactic Bat",
  33815. height: math.unit(200000, "lightyears")
  33816. },
  33817. {
  33818. name: "Universally Known Bat",
  33819. height: math.unit(1, "universe")
  33820. },
  33821. ]
  33822. ))
  33823. characterMakers.push(() => makeCharacter(
  33824. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33825. {
  33826. front: {
  33827. height: math.unit(6 + 11/12, "feet"),
  33828. weight: math.unit(250, "lb"),
  33829. name: "Front",
  33830. image: {
  33831. source: "./media/characters/cookiecat/front.svg",
  33832. extra: 893/827,
  33833. bottom: 14/907
  33834. }
  33835. },
  33836. },
  33837. [
  33838. {
  33839. name: "Micro",
  33840. height: math.unit(3, "inches")
  33841. },
  33842. {
  33843. name: "Normal",
  33844. height: math.unit(6 + 11/12, "feet"),
  33845. default: true
  33846. },
  33847. {
  33848. name: "Macro",
  33849. height: math.unit(100, "feet")
  33850. },
  33851. {
  33852. name: "Macro+",
  33853. height: math.unit(404, "feet")
  33854. },
  33855. {
  33856. name: "Megamacro",
  33857. height: math.unit(165, "miles")
  33858. },
  33859. {
  33860. name: "Planetary",
  33861. height: math.unit(4600, "miles")
  33862. },
  33863. ]
  33864. ))
  33865. characterMakers.push(() => makeCharacter(
  33866. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33867. {
  33868. front: {
  33869. height: math.unit(10 + 3/12, "feet"),
  33870. weight: math.unit(1500, "lb"),
  33871. name: "Front",
  33872. image: {
  33873. source: "./media/characters/tux-kusanagi/front.svg",
  33874. extra: 944/840,
  33875. bottom: 39/983
  33876. }
  33877. },
  33878. back: {
  33879. height: math.unit(10 + 3/12, "feet"),
  33880. weight: math.unit(1500, "lb"),
  33881. name: "Back",
  33882. image: {
  33883. source: "./media/characters/tux-kusanagi/back.svg",
  33884. extra: 941/842,
  33885. bottom: 28/969
  33886. }
  33887. },
  33888. rump: {
  33889. height: math.unit(5.25, "feet"),
  33890. name: "Rump",
  33891. image: {
  33892. source: "./media/characters/tux-kusanagi/rump.svg"
  33893. }
  33894. },
  33895. beak: {
  33896. height: math.unit(1.54, "feet"),
  33897. name: "Beak",
  33898. image: {
  33899. source: "./media/characters/tux-kusanagi/beak.svg"
  33900. }
  33901. },
  33902. },
  33903. [
  33904. {
  33905. name: "Normal",
  33906. height: math.unit(10 + 3/12, "feet"),
  33907. default: true
  33908. },
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33913. {
  33914. front: {
  33915. height: math.unit(58, "feet"),
  33916. weight: math.unit(200, "tons"),
  33917. name: "Front",
  33918. image: {
  33919. source: "./media/characters/uzarmazari/front.svg",
  33920. extra: 1575/1455,
  33921. bottom: 152/1727
  33922. }
  33923. },
  33924. back: {
  33925. height: math.unit(58, "feet"),
  33926. weight: math.unit(200, "tons"),
  33927. name: "Back",
  33928. image: {
  33929. source: "./media/characters/uzarmazari/back.svg",
  33930. extra: 1585/1510,
  33931. bottom: 157/1742
  33932. }
  33933. },
  33934. head: {
  33935. height: math.unit(26, "feet"),
  33936. name: "Head",
  33937. image: {
  33938. source: "./media/characters/uzarmazari/head.svg"
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(58, "feet"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33952. {
  33953. side: {
  33954. height: math.unit(15, "feet"),
  33955. name: "Side",
  33956. image: {
  33957. source: "./media/characters/akitu/side.svg",
  33958. extra: 1421/1321,
  33959. bottom: 157/1578
  33960. }
  33961. },
  33962. front: {
  33963. height: math.unit(15, "feet"),
  33964. name: "Front",
  33965. image: {
  33966. source: "./media/characters/akitu/front.svg",
  33967. extra: 1435/1326,
  33968. bottom: 232/1667
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Normal",
  33975. height: math.unit(15, "feet"),
  33976. default: true
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(10 + 8/12, "feet"),
  33985. name: "Front",
  33986. image: {
  33987. source: "./media/characters/azalie-croixland/front.svg",
  33988. extra: 1972/1856,
  33989. bottom: 31/2003
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Original Height",
  33996. height: math.unit(5 + 4/12, "feet")
  33997. },
  33998. {
  33999. name: "Normal Height",
  34000. height: math.unit(10 + 8/12, "feet"),
  34001. default: true
  34002. },
  34003. ]
  34004. ))
  34005. characterMakers.push(() => makeCharacter(
  34006. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34007. {
  34008. side: {
  34009. height: math.unit(7 + 1/12, "feet"),
  34010. weight: math.unit(245, "lb"),
  34011. name: "Side",
  34012. image: {
  34013. source: "./media/characters/kavus-kazian/side.svg",
  34014. extra: 349/342,
  34015. bottom: 15/364
  34016. }
  34017. },
  34018. },
  34019. [
  34020. {
  34021. name: "Normal",
  34022. height: math.unit(7 + 1/12, "feet"),
  34023. default: true
  34024. },
  34025. ]
  34026. ))
  34027. characterMakers.push(() => makeCharacter(
  34028. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34029. {
  34030. normal: {
  34031. height: math.unit(5 + 11/12, "feet"),
  34032. name: "Normal",
  34033. image: {
  34034. source: "./media/characters/moonlight-rose/normal.svg",
  34035. extra: 1979/1835,
  34036. bottom: 14/1993
  34037. }
  34038. },
  34039. demon: {
  34040. height: math.unit(5, "km"),
  34041. name: "Demon",
  34042. image: {
  34043. source: "./media/characters/moonlight-rose/demon.svg",
  34044. extra: 986/916,
  34045. bottom: 28/1014
  34046. }
  34047. },
  34048. },
  34049. [
  34050. {
  34051. name: "\"Natural\" height",
  34052. height: math.unit(5 + 11/12, "feet")
  34053. },
  34054. {
  34055. name: "Comfortable Size",
  34056. height: math.unit(40, "meters")
  34057. },
  34058. {
  34059. name: "Common Size",
  34060. height: math.unit(50, "km"),
  34061. default: true
  34062. },
  34063. {
  34064. name: "Demonic",
  34065. height: math.unit(1.24415e+21, "meters")
  34066. },
  34067. ]
  34068. ))
  34069. characterMakers.push(() => makeCharacter(
  34070. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34071. {
  34072. front: {
  34073. height: math.unit(16, "feet"),
  34074. weight: math.unit(610, "kg"),
  34075. name: "Front",
  34076. image: {
  34077. source: "./media/characters/huckle/front.svg",
  34078. extra: 1731/1625,
  34079. bottom: 33/1764
  34080. }
  34081. },
  34082. back: {
  34083. height: math.unit(16, "feet"),
  34084. weight: math.unit(610, "kg"),
  34085. name: "Back",
  34086. image: {
  34087. source: "./media/characters/huckle/back.svg",
  34088. extra: 1738/1651,
  34089. bottom: 37/1775
  34090. }
  34091. },
  34092. laughing: {
  34093. height: math.unit(3.75, "feet"),
  34094. name: "Laughing",
  34095. image: {
  34096. source: "./media/characters/huckle/laughing.svg"
  34097. }
  34098. },
  34099. angry: {
  34100. height: math.unit(4.15, "feet"),
  34101. name: "Angry",
  34102. image: {
  34103. source: "./media/characters/huckle/angry.svg"
  34104. }
  34105. },
  34106. },
  34107. [
  34108. {
  34109. name: "Normal",
  34110. height: math.unit(16, "feet"),
  34111. default: true
  34112. },
  34113. {
  34114. name: "Mini Macro",
  34115. height: math.unit(463, "feet")
  34116. },
  34117. {
  34118. name: "Macro",
  34119. height: math.unit(1680, "meters")
  34120. },
  34121. {
  34122. name: "Mega Macro",
  34123. height: math.unit(175, "km")
  34124. },
  34125. {
  34126. name: "Terra Macro",
  34127. height: math.unit(32, "gigameters")
  34128. },
  34129. {
  34130. name: "Multiverse+",
  34131. height: math.unit(2.56e23, "yottameters")
  34132. },
  34133. ]
  34134. ))
  34135. characterMakers.push(() => makeCharacter(
  34136. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34137. {
  34138. front: {
  34139. height: math.unit(6 + 9/12, "feet"),
  34140. weight: math.unit(280, "lb"),
  34141. name: "Front",
  34142. image: {
  34143. source: "./media/characters/candy/front.svg",
  34144. extra: 234/217,
  34145. bottom: 11/245
  34146. }
  34147. },
  34148. },
  34149. [
  34150. {
  34151. name: "Really Small",
  34152. height: math.unit(0.1, "nm")
  34153. },
  34154. {
  34155. name: "Micro",
  34156. height: math.unit(2, "inches")
  34157. },
  34158. {
  34159. name: "Normal",
  34160. height: math.unit(6 + 9/12, "feet"),
  34161. default: true
  34162. },
  34163. {
  34164. name: "Small Macro",
  34165. height: math.unit(69, "feet")
  34166. },
  34167. {
  34168. name: "Macro",
  34169. height: math.unit(160, "feet")
  34170. },
  34171. {
  34172. name: "Megamacro",
  34173. height: math.unit(22000, "miles")
  34174. },
  34175. {
  34176. name: "Gigamacro",
  34177. height: math.unit(50000, "miles")
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34183. {
  34184. front: {
  34185. height: math.unit(4, "feet"),
  34186. weight: math.unit(90, "lb"),
  34187. name: "Front",
  34188. image: {
  34189. source: "./media/characters/joey-mcdonald/front.svg",
  34190. extra: 1059/852,
  34191. bottom: 33/1092
  34192. }
  34193. },
  34194. back: {
  34195. height: math.unit(4, "feet"),
  34196. weight: math.unit(90, "lb"),
  34197. name: "Back",
  34198. image: {
  34199. source: "./media/characters/joey-mcdonald/back.svg",
  34200. extra: 1077/879,
  34201. bottom: 5/1082
  34202. }
  34203. },
  34204. },
  34205. [
  34206. {
  34207. name: "Normal",
  34208. height: math.unit(4, "feet"),
  34209. default: true
  34210. },
  34211. ]
  34212. ))
  34213. characterMakers.push(() => makeCharacter(
  34214. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34215. {
  34216. front: {
  34217. height: math.unit(12 + 6/12, "feet"),
  34218. name: "Front",
  34219. image: {
  34220. source: "./media/characters/kass-lockheed/front.svg",
  34221. extra: 354/343,
  34222. bottom: 9/363
  34223. }
  34224. },
  34225. back: {
  34226. height: math.unit(12 + 6/12, "feet"),
  34227. name: "Back",
  34228. image: {
  34229. source: "./media/characters/kass-lockheed/back.svg",
  34230. extra: 364/352,
  34231. bottom: 3/367
  34232. }
  34233. },
  34234. dick: {
  34235. height: math.unit(3.12, "feet"),
  34236. name: "Dick",
  34237. image: {
  34238. source: "./media/characters/kass-lockheed/dick.svg"
  34239. }
  34240. },
  34241. head: {
  34242. height: math.unit(2.6, "feet"),
  34243. name: "Head",
  34244. image: {
  34245. source: "./media/characters/kass-lockheed/head.svg"
  34246. }
  34247. },
  34248. bleh: {
  34249. height: math.unit(2.85, "feet"),
  34250. name: "Bleh",
  34251. image: {
  34252. source: "./media/characters/kass-lockheed/bleh.svg"
  34253. }
  34254. },
  34255. smug: {
  34256. height: math.unit(2.85, "feet"),
  34257. name: "Smug",
  34258. image: {
  34259. source: "./media/characters/kass-lockheed/smug.svg"
  34260. }
  34261. },
  34262. },
  34263. [
  34264. {
  34265. name: "Normal",
  34266. height: math.unit(12 + 6/12, "feet"),
  34267. default: true
  34268. },
  34269. ]
  34270. ))
  34271. characterMakers.push(() => makeCharacter(
  34272. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34273. {
  34274. front: {
  34275. height: math.unit(6 + 2/12, "feet"),
  34276. name: "Front",
  34277. image: {
  34278. source: "./media/characters/taylor/front.svg",
  34279. extra: 639/495,
  34280. bottom: 12/651
  34281. }
  34282. },
  34283. },
  34284. [
  34285. {
  34286. name: "Normal",
  34287. height: math.unit(6 + 2/12, "feet"),
  34288. default: true
  34289. },
  34290. {
  34291. name: "Big",
  34292. height: math.unit(15, "feet")
  34293. },
  34294. {
  34295. name: "Lorg",
  34296. height: math.unit(80, "feet")
  34297. },
  34298. {
  34299. name: "Too Lorg",
  34300. height: math.unit(120, "feet")
  34301. },
  34302. ]
  34303. ))
  34304. characterMakers.push(() => makeCharacter(
  34305. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34306. {
  34307. front: {
  34308. height: math.unit(15, "feet"),
  34309. name: "Front",
  34310. image: {
  34311. source: "./media/characters/kaizer/front.svg",
  34312. extra: 1612/1436,
  34313. bottom: 43/1655
  34314. }
  34315. },
  34316. },
  34317. [
  34318. {
  34319. name: "Normal",
  34320. height: math.unit(15, "feet"),
  34321. default: true
  34322. },
  34323. ]
  34324. ))
  34325. characterMakers.push(() => makeCharacter(
  34326. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34327. {
  34328. front: {
  34329. height: math.unit(2, "feet"),
  34330. weight: math.unit(30, "lb"),
  34331. name: "Front",
  34332. image: {
  34333. source: "./media/characters/sandy/front.svg",
  34334. extra: 1439/1307,
  34335. bottom: 194/1633
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Normal",
  34342. height: math.unit(2, "feet"),
  34343. default: true
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34349. {
  34350. front: {
  34351. height: math.unit(3, "feet"),
  34352. name: "Front",
  34353. image: {
  34354. source: "./media/characters/mellvi/front.svg",
  34355. extra: 1831/1630,
  34356. bottom: 58/1889
  34357. }
  34358. },
  34359. },
  34360. [
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(3, "feet"),
  34364. default: true
  34365. },
  34366. ]
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34370. {
  34371. front: {
  34372. height: math.unit(5 + 11/12, "feet"),
  34373. weight: math.unit(200, "lb"),
  34374. name: "Front",
  34375. image: {
  34376. source: "./media/characters/shirou/front.svg",
  34377. extra: 2491/2383,
  34378. bottom: 189/2680
  34379. }
  34380. },
  34381. back: {
  34382. height: math.unit(5 + 11/12, "feet"),
  34383. weight: math.unit(200, "lb"),
  34384. name: "Back",
  34385. image: {
  34386. source: "./media/characters/shirou/back.svg",
  34387. extra: 2554/2450,
  34388. bottom: 76/2630
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Normal",
  34395. height: math.unit(5 + 11/12, "feet"),
  34396. default: true
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34402. {
  34403. front: {
  34404. height: math.unit(6 + 3/12, "feet"),
  34405. weight: math.unit(177, "lb"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/noryu/front.svg",
  34409. extra: 973/885,
  34410. bottom: 10/983
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(6 + 3/12, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(5 + 6/12, "feet"),
  34427. weight: math.unit(170, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/mevolas-rubenido/front.svg",
  34431. extra: 2109/1901,
  34432. bottom: 96/2205
  34433. }
  34434. },
  34435. },
  34436. [
  34437. {
  34438. name: "Normal",
  34439. height: math.unit(5 + 6/12, "feet"),
  34440. default: true
  34441. },
  34442. ]
  34443. ))
  34444. characterMakers.push(() => makeCharacter(
  34445. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34446. {
  34447. front: {
  34448. height: math.unit(100, "feet"),
  34449. name: "Front",
  34450. image: {
  34451. source: "./media/characters/dee/front.svg",
  34452. extra: 2153/2036,
  34453. bottom: 59/2212
  34454. }
  34455. },
  34456. back: {
  34457. height: math.unit(100, "feet"),
  34458. name: "Back",
  34459. image: {
  34460. source: "./media/characters/dee/back.svg",
  34461. extra: 2183/2058,
  34462. bottom: 75/2258
  34463. }
  34464. },
  34465. foot: {
  34466. height: math.unit(19.43, "feet"),
  34467. name: "Foot",
  34468. image: {
  34469. source: "./media/characters/dee/foot.svg"
  34470. }
  34471. },
  34472. hoof: {
  34473. height: math.unit(20.6, "feet"),
  34474. name: "Hoof",
  34475. image: {
  34476. source: "./media/characters/dee/hoof.svg"
  34477. }
  34478. },
  34479. },
  34480. [
  34481. {
  34482. name: "Macro",
  34483. height: math.unit(100, "feet"),
  34484. default: true
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(5 + 6/12, "feet"),
  34493. name: "Front",
  34494. image: {
  34495. source: "./media/characters/teh/front.svg",
  34496. extra: 1002/847,
  34497. bottom: 62/1064
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(5 + 6/12, "feet"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34511. {
  34512. side: {
  34513. height: math.unit(6 + 1/12, "feet"),
  34514. weight: math.unit(204, "lb"),
  34515. name: "Side",
  34516. image: {
  34517. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34518. extra: 974/775,
  34519. bottom: 169/1143
  34520. }
  34521. },
  34522. sitting: {
  34523. height: math.unit(6 + 2/12, "feet"),
  34524. weight: math.unit(204, "lb"),
  34525. name: "Sitting",
  34526. image: {
  34527. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34528. extra: 1175/964,
  34529. bottom: 378/1553
  34530. }
  34531. },
  34532. },
  34533. [
  34534. {
  34535. name: "Normal",
  34536. height: math.unit(6 + 1/12, "feet"),
  34537. default: true
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34543. {
  34544. front: {
  34545. height: math.unit(6, "inches"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/tululi/front.svg",
  34549. extra: 1997/1876,
  34550. bottom: 20/2017
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(6, "inches"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34564. {
  34565. front: {
  34566. height: math.unit(4 + 1/12, "feet"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/star/front.svg",
  34570. extra: 1493/1189,
  34571. bottom: 48/1541
  34572. }
  34573. },
  34574. },
  34575. [
  34576. {
  34577. name: "Normal",
  34578. height: math.unit(4 + 1/12, "feet"),
  34579. default: true
  34580. },
  34581. ]
  34582. ))
  34583. characterMakers.push(() => makeCharacter(
  34584. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34585. {
  34586. front: {
  34587. height: math.unit(6 + 3/12, "feet"),
  34588. name: "Front",
  34589. image: {
  34590. source: "./media/characters/comet/front.svg",
  34591. extra: 1681/1462,
  34592. bottom: 26/1707
  34593. }
  34594. },
  34595. },
  34596. [
  34597. {
  34598. name: "Normal",
  34599. height: math.unit(6 + 3/12, "feet"),
  34600. default: true
  34601. },
  34602. ]
  34603. ))
  34604. characterMakers.push(() => makeCharacter(
  34605. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34606. {
  34607. front: {
  34608. height: math.unit(950, "feet"),
  34609. name: "Front",
  34610. image: {
  34611. source: "./media/characters/vortex/front.svg",
  34612. extra: 1497/1434,
  34613. bottom: 56/1553
  34614. }
  34615. },
  34616. maw: {
  34617. height: math.unit(285, "feet"),
  34618. name: "Maw",
  34619. image: {
  34620. source: "./media/characters/vortex/maw.svg"
  34621. }
  34622. },
  34623. },
  34624. [
  34625. {
  34626. name: "Macro",
  34627. height: math.unit(950, "feet"),
  34628. default: true
  34629. },
  34630. ]
  34631. ))
  34632. characterMakers.push(() => makeCharacter(
  34633. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34634. {
  34635. front: {
  34636. height: math.unit(600, "feet"),
  34637. weight: math.unit(0.02, "grams"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/doodle/front.svg",
  34641. extra: 1578/1413,
  34642. bottom: 37/1615
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Macro",
  34649. height: math.unit(600, "feet"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(6 + 6/12, "feet"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/jai/front.svg",
  34662. extra: 1645/1534,
  34663. bottom: 115/1760
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(6 + 6/12, "feet"),
  34671. default: true
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34677. {
  34678. front: {
  34679. height: math.unit(6 + 8/12, "feet"),
  34680. name: "Front",
  34681. image: {
  34682. source: "./media/characters/pixel/front.svg",
  34683. extra: 1900/1735,
  34684. bottom: 63/1963
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Normal",
  34691. height: math.unit(6 + 8/12, "feet"),
  34692. default: true
  34693. },
  34694. ]
  34695. ))
  34696. characterMakers.push(() => makeCharacter(
  34697. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34698. {
  34699. front: {
  34700. height: math.unit(4 + 11/12, "feet"),
  34701. weight: math.unit(111, "lb"),
  34702. name: "Front",
  34703. image: {
  34704. source: "./media/characters/rhett/front.svg",
  34705. extra: 1682/1586,
  34706. bottom: 92/1774
  34707. }
  34708. },
  34709. },
  34710. [
  34711. {
  34712. name: "Mini",
  34713. height: math.unit(1 + 1/12, "feet")
  34714. },
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(4 + 11/12, "feet"),
  34718. default: true
  34719. },
  34720. ]
  34721. ))
  34722. characterMakers.push(() => makeCharacter(
  34723. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34724. {
  34725. front: {
  34726. height: math.unit(3 + 3/12, "feet"),
  34727. name: "Front",
  34728. image: {
  34729. source: "./media/characters/penny/front.svg",
  34730. extra: 1406/1311,
  34731. bottom: 26/1432
  34732. }
  34733. },
  34734. },
  34735. [
  34736. {
  34737. name: "Normal",
  34738. height: math.unit(3 + 3/12, "feet"),
  34739. default: true
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34745. {
  34746. front: {
  34747. height: math.unit(4 + 11/12, "feet"),
  34748. name: "Front",
  34749. image: {
  34750. source: "./media/characters/monty/front.svg",
  34751. extra: 1479/1209,
  34752. bottom: 0/1479
  34753. }
  34754. },
  34755. },
  34756. [
  34757. {
  34758. name: "Normal",
  34759. height: math.unit(4 + 11/12, "feet"),
  34760. default: true
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34766. {
  34767. front: {
  34768. height: math.unit(8 + 4/12, "feet"),
  34769. name: "Front",
  34770. image: {
  34771. source: "./media/characters/sterling/front.svg",
  34772. extra: 1420/1236,
  34773. bottom: 27/1447
  34774. }
  34775. },
  34776. },
  34777. [
  34778. {
  34779. name: "Normal",
  34780. height: math.unit(8 + 4/12, "feet"),
  34781. default: true
  34782. },
  34783. ]
  34784. ))
  34785. characterMakers.push(() => makeCharacter(
  34786. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34787. {
  34788. front: {
  34789. height: math.unit(15, "feet"),
  34790. name: "Front",
  34791. image: {
  34792. source: "./media/characters/marble/front.svg",
  34793. extra: 973/937,
  34794. bottom: 32/1005
  34795. }
  34796. },
  34797. },
  34798. [
  34799. {
  34800. name: "Normal",
  34801. height: math.unit(15, "feet"),
  34802. default: true
  34803. },
  34804. ]
  34805. ))
  34806. characterMakers.push(() => makeCharacter(
  34807. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34808. {
  34809. front: {
  34810. height: math.unit(3, "inches"),
  34811. name: "Front",
  34812. image: {
  34813. source: "./media/characters/powder/front.svg",
  34814. extra: 1504/1334,
  34815. bottom: 518/2022
  34816. }
  34817. },
  34818. },
  34819. [
  34820. {
  34821. name: "Normal",
  34822. height: math.unit(3, "inches"),
  34823. default: true
  34824. },
  34825. ]
  34826. ))
  34827. characterMakers.push(() => makeCharacter(
  34828. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34829. {
  34830. front: {
  34831. height: math.unit(4 + 5/12, "feet"),
  34832. name: "Front",
  34833. image: {
  34834. source: "./media/characters/joey-raccoon/front.svg",
  34835. extra: 1273/1197,
  34836. bottom: 0/1273
  34837. }
  34838. },
  34839. },
  34840. [
  34841. {
  34842. name: "Normal",
  34843. height: math.unit(4 + 5/12, "feet"),
  34844. default: true
  34845. },
  34846. ]
  34847. ))
  34848. characterMakers.push(() => makeCharacter(
  34849. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34850. {
  34851. front: {
  34852. height: math.unit(8 + 4/12, "feet"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/vick/front.svg",
  34856. extra: 2187/2118,
  34857. bottom: 47/2234
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(8 + 4/12, "feet"),
  34865. default: true
  34866. },
  34867. ]
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34871. {
  34872. front: {
  34873. height: math.unit(5 + 5/12, "feet"),
  34874. name: "Front",
  34875. image: {
  34876. source: "./media/characters/mitsy/front.svg",
  34877. extra: 1842/1695,
  34878. bottom: 0/1842
  34879. }
  34880. },
  34881. },
  34882. [
  34883. {
  34884. name: "Normal",
  34885. height: math.unit(5 + 5/12, "feet"),
  34886. default: true
  34887. },
  34888. ]
  34889. ))
  34890. characterMakers.push(() => makeCharacter(
  34891. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34892. {
  34893. front: {
  34894. height: math.unit(6 + 3/12, "feet"),
  34895. name: "Front",
  34896. image: {
  34897. source: "./media/characters/silvy/front.svg",
  34898. extra: 1995/1836,
  34899. bottom: 225/2220
  34900. }
  34901. },
  34902. },
  34903. [
  34904. {
  34905. name: "Normal",
  34906. height: math.unit(6 + 3/12, "feet"),
  34907. default: true
  34908. },
  34909. ]
  34910. ))
  34911. characterMakers.push(() => makeCharacter(
  34912. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34913. {
  34914. front: {
  34915. height: math.unit(3 + 8/12, "feet"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/rodney/front.svg",
  34919. extra: 1956/1747,
  34920. bottom: 31/1987
  34921. }
  34922. },
  34923. frontDressed: {
  34924. height: math.unit(2.9, "feet"),
  34925. name: "Front (Dressed)",
  34926. image: {
  34927. source: "./media/characters/rodney/front-dressed.svg",
  34928. extra: 1382/1241,
  34929. bottom: 385/1767
  34930. }
  34931. },
  34932. },
  34933. [
  34934. {
  34935. name: "Normal",
  34936. height: math.unit(3 + 8/12, "feet"),
  34937. default: true
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(5 + 9/12, "feet"),
  34946. weight: math.unit(194, "lbs"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/zakail-sudekai/front.svg",
  34950. extra: 2696/2533,
  34951. bottom: 248/2944
  34952. }
  34953. },
  34954. maw: {
  34955. height: math.unit(1.35, "feet"),
  34956. name: "Maw",
  34957. image: {
  34958. source: "./media/characters/zakail-sudekai/maw.svg"
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(5 + 9/12, "feet"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(8 + 4/12, "feet"),
  34975. weight: math.unit(1200, "lb"),
  34976. name: "Front",
  34977. image: {
  34978. source: "./media/characters/eleanor/front.svg",
  34979. extra: 1226/1192,
  34980. bottom: 52/1278
  34981. }
  34982. },
  34983. back: {
  34984. height: math.unit(8 + 4/12, "feet"),
  34985. weight: math.unit(1200, "lb"),
  34986. name: "Back",
  34987. image: {
  34988. source: "./media/characters/eleanor/back.svg",
  34989. extra: 1242/1184,
  34990. bottom: 60/1302
  34991. }
  34992. },
  34993. head: {
  34994. height: math.unit(2.62, "feet"),
  34995. name: "Head",
  34996. image: {
  34997. source: "./media/characters/eleanor/head.svg"
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Normal",
  35004. height: math.unit(8 + 4/12, "feet"),
  35005. default: true
  35006. },
  35007. ]
  35008. ))
  35009. characterMakers.push(() => makeCharacter(
  35010. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35011. {
  35012. front: {
  35013. height: math.unit(8 + 4/12, "feet"),
  35014. weight: math.unit(750, "lb"),
  35015. name: "Front",
  35016. image: {
  35017. source: "./media/characters/tanya/front.svg",
  35018. extra: 1749/1615,
  35019. bottom: 33/1782
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Normal",
  35026. height: math.unit(8 + 4/12, "feet"),
  35027. default: true
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35033. {
  35034. front: {
  35035. height: math.unit(5, "feet"),
  35036. weight: math.unit(225, "lb"),
  35037. name: "Front",
  35038. image: {
  35039. source: "./media/characters/cindy/front.svg",
  35040. extra: 1320/1250,
  35041. bottom: 42/1362
  35042. }
  35043. },
  35044. frontDressed: {
  35045. height: math.unit(5, "feet"),
  35046. weight: math.unit(225, "lb"),
  35047. name: "Front (Dressed)",
  35048. image: {
  35049. source: "./media/characters/cindy/front-dressed.svg",
  35050. extra: 1320/1250,
  35051. bottom: 42/1362
  35052. }
  35053. },
  35054. back: {
  35055. height: math.unit(5, "feet"),
  35056. weight: math.unit(225, "lb"),
  35057. name: "Back",
  35058. image: {
  35059. source: "./media/characters/cindy/back.svg",
  35060. extra: 1384/1346,
  35061. bottom: 14/1398
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Normal",
  35068. height: math.unit(5, "feet"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35075. {
  35076. front: {
  35077. height: math.unit(6 + 9/12, "feet"),
  35078. weight: math.unit(440, "lb"),
  35079. name: "Front",
  35080. image: {
  35081. source: "./media/characters/wilbur-owen/front.svg",
  35082. extra: 1575/1448,
  35083. bottom: 72/1647
  35084. }
  35085. },
  35086. back: {
  35087. height: math.unit(6 + 9/12, "feet"),
  35088. weight: math.unit(440, "lb"),
  35089. name: "Back",
  35090. image: {
  35091. source: "./media/characters/wilbur-owen/back.svg",
  35092. extra: 1578/1445,
  35093. bottom: 36/1614
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Normal",
  35100. height: math.unit(6 + 9/12, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35107. {
  35108. front: {
  35109. height: math.unit(6 + 5/12, "feet"),
  35110. weight: math.unit(650, "lb"),
  35111. name: "Front",
  35112. image: {
  35113. source: "./media/characters/keegan/front.svg",
  35114. extra: 2387/2198,
  35115. bottom: 33/2420
  35116. }
  35117. },
  35118. side: {
  35119. height: math.unit(6 + 5/12, "feet"),
  35120. weight: math.unit(650, "lb"),
  35121. name: "Side",
  35122. image: {
  35123. source: "./media/characters/keegan/side.svg",
  35124. extra: 2390/2202,
  35125. bottom: 47/2437
  35126. }
  35127. },
  35128. back: {
  35129. height: math.unit(6 + 5/12, "feet"),
  35130. weight: math.unit(650, "lb"),
  35131. name: "Back",
  35132. image: {
  35133. source: "./media/characters/keegan/back.svg",
  35134. extra: 2418/2268,
  35135. bottom: 15/2433
  35136. }
  35137. },
  35138. frontSfw: {
  35139. height: math.unit(6 + 5/12, "feet"),
  35140. weight: math.unit(650, "lb"),
  35141. name: "Front (SFW)",
  35142. image: {
  35143. source: "./media/characters/keegan/front-sfw.svg",
  35144. extra: 2387/2198,
  35145. bottom: 33/2420
  35146. }
  35147. },
  35148. beans: {
  35149. height: math.unit(1.85, "feet"),
  35150. name: "Beans",
  35151. image: {
  35152. source: "./media/characters/keegan/beans.svg"
  35153. }
  35154. },
  35155. },
  35156. [
  35157. {
  35158. name: "Normal",
  35159. height: math.unit(6 + 5/12, "feet"),
  35160. default: true
  35161. },
  35162. ]
  35163. ))
  35164. characterMakers.push(() => makeCharacter(
  35165. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35166. {
  35167. front: {
  35168. height: math.unit(9, "feet"),
  35169. name: "Front",
  35170. image: {
  35171. source: "./media/characters/colton/front.svg",
  35172. extra: 1589/1326,
  35173. bottom: 139/1728
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(9, "feet"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(2 + 9/12, "feet"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/bora/front.svg",
  35193. extra: 1265/1250,
  35194. bottom: 24/1289
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(2 + 9/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(8, "feet"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/myu-myu/front.svg",
  35214. extra: 1949/1857,
  35215. bottom: 90/2039
  35216. }
  35217. },
  35218. },
  35219. [
  35220. {
  35221. name: "Normal",
  35222. height: math.unit(8, "feet"),
  35223. default: true
  35224. },
  35225. {
  35226. name: "Big",
  35227. height: math.unit(15, "feet")
  35228. },
  35229. {
  35230. name: "BIG",
  35231. height: math.unit(25, "feet")
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35237. {
  35238. side: {
  35239. height: math.unit(7 + 5/12, "feet"),
  35240. weight: math.unit(2800, "lb"),
  35241. name: "Side",
  35242. image: {
  35243. source: "./media/characters/haloren/side.svg",
  35244. extra: 1793/409,
  35245. bottom: 59/1852
  35246. }
  35247. },
  35248. frontPaw: {
  35249. height: math.unit(2.36, "feet"),
  35250. name: "Front paw",
  35251. image: {
  35252. source: "./media/characters/haloren/front-paw.svg"
  35253. }
  35254. },
  35255. hindPaw: {
  35256. height: math.unit(3.18, "feet"),
  35257. name: "Hind paw",
  35258. image: {
  35259. source: "./media/characters/haloren/hind-paw.svg"
  35260. }
  35261. },
  35262. maw: {
  35263. height: math.unit(5.05, "feet"),
  35264. name: "Maw",
  35265. image: {
  35266. source: "./media/characters/haloren/maw.svg"
  35267. }
  35268. },
  35269. dick: {
  35270. height: math.unit(2.90, "feet"),
  35271. name: "Dick",
  35272. image: {
  35273. source: "./media/characters/haloren/dick.svg"
  35274. }
  35275. },
  35276. },
  35277. [
  35278. {
  35279. name: "Normal",
  35280. height: math.unit(7 + 5/12, "feet"),
  35281. default: true
  35282. },
  35283. {
  35284. name: "Enhanced",
  35285. height: math.unit(14 + 3/12, "feet")
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35291. {
  35292. front: {
  35293. height: math.unit(171, "cm"),
  35294. name: "Front",
  35295. image: {
  35296. source: "./media/characters/kimmy/front.svg",
  35297. extra: 1491/1435,
  35298. bottom: 53/1544
  35299. }
  35300. },
  35301. },
  35302. [
  35303. {
  35304. name: "Small",
  35305. height: math.unit(9, "cm")
  35306. },
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(171, "cm"),
  35310. default: true
  35311. },
  35312. ]
  35313. ))
  35314. characterMakers.push(() => makeCharacter(
  35315. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35316. {
  35317. front: {
  35318. height: math.unit(8, "feet"),
  35319. weight: math.unit(300, "lb"),
  35320. name: "Front",
  35321. image: {
  35322. source: "./media/characters/galeboomer/front.svg",
  35323. extra: 4651/4415,
  35324. bottom: 162/4813
  35325. }
  35326. },
  35327. back: {
  35328. height: math.unit(8, "feet"),
  35329. weight: math.unit(300, "lb"),
  35330. name: "Back",
  35331. image: {
  35332. source: "./media/characters/galeboomer/back.svg",
  35333. extra: 4544/4314,
  35334. bottom: 16/4560
  35335. }
  35336. },
  35337. frontAlt: {
  35338. height: math.unit(8, "feet"),
  35339. weight: math.unit(300, "lb"),
  35340. name: "Front (Alt)",
  35341. image: {
  35342. source: "./media/characters/galeboomer/front-alt.svg",
  35343. extra: 4458/4228,
  35344. bottom: 68/4526
  35345. }
  35346. },
  35347. maw: {
  35348. height: math.unit(1.2, "feet"),
  35349. name: "Maw",
  35350. image: {
  35351. source: "./media/characters/galeboomer/maw.svg"
  35352. }
  35353. },
  35354. },
  35355. [
  35356. {
  35357. name: "Normal",
  35358. height: math.unit(8, "feet"),
  35359. default: true
  35360. },
  35361. ]
  35362. ))
  35363. characterMakers.push(() => makeCharacter(
  35364. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35365. {
  35366. front: {
  35367. height: math.unit(5 + 9/12, "feet"),
  35368. weight: math.unit(120, "lb"),
  35369. name: "Front",
  35370. image: {
  35371. source: "./media/characters/chyr/front.svg",
  35372. extra: 1323/1254,
  35373. bottom: 63/1386
  35374. }
  35375. },
  35376. back: {
  35377. height: math.unit(5 + 9/12, "feet"),
  35378. weight: math.unit(120, "lb"),
  35379. name: "Back",
  35380. image: {
  35381. source: "./media/characters/chyr/back.svg",
  35382. extra: 1323/1252,
  35383. bottom: 48/1371
  35384. }
  35385. },
  35386. },
  35387. [
  35388. {
  35389. name: "Normal",
  35390. height: math.unit(5 + 9/12, "feet"),
  35391. default: true
  35392. },
  35393. ]
  35394. ))
  35395. characterMakers.push(() => makeCharacter(
  35396. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35397. {
  35398. front: {
  35399. height: math.unit(7, "feet"),
  35400. weight: math.unit(310, "lb"),
  35401. name: "Front",
  35402. image: {
  35403. source: "./media/characters/solarus/front.svg",
  35404. extra: 2415/2021,
  35405. bottom: 103/2518
  35406. }
  35407. },
  35408. back: {
  35409. height: math.unit(7, "feet"),
  35410. weight: math.unit(310, "lb"),
  35411. name: "Back",
  35412. image: {
  35413. source: "./media/characters/solarus/back.svg",
  35414. extra: 2463/2089,
  35415. bottom: 79/2542
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(7, "feet"),
  35423. default: true
  35424. },
  35425. ]
  35426. ))
  35427. characterMakers.push(() => makeCharacter(
  35428. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35429. {
  35430. front: {
  35431. height: math.unit(16, "feet"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35435. extra: 1844/1780,
  35436. bottom: 58/1902
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(16, "feet"),
  35444. default: true
  35445. },
  35446. ]
  35447. ))
  35448. characterMakers.push(() => makeCharacter(
  35449. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35450. {
  35451. front: {
  35452. height: math.unit(11 + 6/12, "feet"),
  35453. weight: math.unit(1366, "lb"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/lexor/front.svg",
  35457. extra: 1560/1481,
  35458. bottom: 211/1771
  35459. }
  35460. },
  35461. back: {
  35462. height: math.unit(11 + 6/12, "feet"),
  35463. weight: math.unit(1366, "lb"),
  35464. name: "Back",
  35465. image: {
  35466. source: "./media/characters/lexor/back.svg",
  35467. extra: 1614/1533,
  35468. bottom: 76/1690
  35469. }
  35470. },
  35471. maw: {
  35472. height: math.unit(3, "feet"),
  35473. name: "Maw",
  35474. image: {
  35475. source: "./media/characters/lexor/maw.svg"
  35476. }
  35477. },
  35478. dick: {
  35479. height: math.unit(2.59, "feet"),
  35480. name: "Dick",
  35481. image: {
  35482. source: "./media/characters/lexor/dick.svg"
  35483. }
  35484. },
  35485. },
  35486. [
  35487. {
  35488. name: "Normal",
  35489. height: math.unit(11 + 6/12, "feet"),
  35490. default: true
  35491. },
  35492. ]
  35493. ))
  35494. //characters
  35495. function makeCharacters() {
  35496. const results = [];
  35497. characterMakers.forEach(character => {
  35498. results.push(character());
  35499. });
  35500. return results;
  35501. }