less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

41950 строки
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. },
  1698. "sika-deer": {
  1699. name: "Sika Deer",
  1700. parents: ["deer"]
  1701. },
  1702. "vaporeon": {
  1703. name: "Vaporeon",
  1704. parents: ["eeveelution"]
  1705. },
  1706. "leafeon": {
  1707. name: "Leafeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "jolteon": {
  1711. name: "Jolteon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "spireborn": {
  1715. name: "Spireborn",
  1716. parents: ["zorgoia"]
  1717. },
  1718. "vampire": {
  1719. name: "Vampire",
  1720. parents: ["monster"]
  1721. },
  1722. }
  1723. //species
  1724. function getSpeciesInfo(speciesList) {
  1725. let result = new Set();
  1726. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1727. result.add(entry)
  1728. });
  1729. return Array.from(result);
  1730. };
  1731. function getSpeciesInfoHelper(species) {
  1732. if (!speciesData[species]) {
  1733. console.warn(species + " doesn't exist");
  1734. return [];
  1735. }
  1736. if (speciesData[species].parents) {
  1737. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1738. } else {
  1739. return [species];
  1740. }
  1741. }
  1742. characterMakers.push(() => makeCharacter(
  1743. {
  1744. name: "Fen",
  1745. species: ["crux"],
  1746. description: {
  1747. title: "Bio",
  1748. text: "Very furry. Sheds on everything."
  1749. },
  1750. tags: [
  1751. "anthro",
  1752. "goo"
  1753. ]
  1754. },
  1755. {
  1756. back: {
  1757. height: math.unit(2.2428, "meter"),
  1758. weight: math.unit(124.738, "kg"),
  1759. name: "Back",
  1760. image: {
  1761. source: "./media/characters/fen/back.svg",
  1762. },
  1763. info: {
  1764. description: {
  1765. mode: "append",
  1766. text: "\n\nHe is not currently looking at you."
  1767. }
  1768. }
  1769. },
  1770. full: {
  1771. height: math.unit(1.34, "meter"),
  1772. weight: math.unit(225, "kg"),
  1773. name: "Full",
  1774. image: {
  1775. source: "./media/characters/fen/full.svg"
  1776. },
  1777. info: {
  1778. description: {
  1779. mode: "append",
  1780. text: "\n\nMunch."
  1781. }
  1782. }
  1783. },
  1784. kneeling: {
  1785. height: math.unit(5.4, "feet"),
  1786. weight: math.unit(124.738, "kg"),
  1787. name: "Kneeling",
  1788. image: {
  1789. source: "./media/characters/fen/kneeling.svg",
  1790. extra: 563 / 507
  1791. }
  1792. },
  1793. goo: {
  1794. height: math.unit(2.8, "feet"),
  1795. weight: math.unit(125, "kg"),
  1796. capacity: math.unit(1, "people"),
  1797. name: "Goo",
  1798. image: {
  1799. source: "./media/characters/fen/goo.svg",
  1800. bottom: 116 / 613
  1801. }
  1802. },
  1803. lounging: {
  1804. height: math.unit(6.5, "feet"),
  1805. weight: math.unit(125, "kg"),
  1806. name: "Lounging",
  1807. image: {
  1808. source: "./media/characters/fen/lounging.svg"
  1809. }
  1810. },
  1811. },
  1812. [
  1813. {
  1814. name: "Normal",
  1815. height: math.unit(2.2428, "meter")
  1816. },
  1817. {
  1818. name: "Big",
  1819. height: math.unit(12, "feet")
  1820. },
  1821. {
  1822. name: "Minimacro",
  1823. height: math.unit(40, "feet"),
  1824. default: true,
  1825. info: {
  1826. description: {
  1827. mode: "append",
  1828. text: "\n\nTOO DAMN BIG"
  1829. }
  1830. }
  1831. },
  1832. {
  1833. name: "Macro",
  1834. height: math.unit(100, "feet"),
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nTOO DAMN BIG"
  1839. }
  1840. }
  1841. },
  1842. {
  1843. name: "Macro+",
  1844. height: math.unit(300, "feet")
  1845. },
  1846. {
  1847. name: "Megamacro",
  1848. height: math.unit(2, "miles")
  1849. }
  1850. ]
  1851. ))
  1852. characterMakers.push(() => makeCharacter(
  1853. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1854. {
  1855. front: {
  1856. height: math.unit(183, "cm"),
  1857. weight: math.unit(80, "kg"),
  1858. name: "Front",
  1859. image: {
  1860. source: "./media/characters/sofia-fluttertail/front.svg",
  1861. bottom: 0.01,
  1862. extra: 2154 / 2081
  1863. }
  1864. },
  1865. frontAlt: {
  1866. height: math.unit(183, "cm"),
  1867. weight: math.unit(80, "kg"),
  1868. name: "Front (alt)",
  1869. image: {
  1870. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1871. }
  1872. },
  1873. back: {
  1874. height: math.unit(183, "cm"),
  1875. weight: math.unit(80, "kg"),
  1876. name: "Back",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/back.svg"
  1879. }
  1880. },
  1881. kneeling: {
  1882. height: math.unit(125, "cm"),
  1883. weight: math.unit(80, "kg"),
  1884. name: "Kneeling",
  1885. image: {
  1886. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1887. extra: 1033 / 977,
  1888. bottom: 23.7 / 1057
  1889. }
  1890. },
  1891. maw: {
  1892. height: math.unit(183 / 5, "cm"),
  1893. name: "Maw",
  1894. image: {
  1895. source: "./media/characters/sofia-fluttertail/maw.svg"
  1896. }
  1897. },
  1898. mawcloseup: {
  1899. height: math.unit(183 / 5 * 0.41, "cm"),
  1900. name: "Maw (Closeup)",
  1901. image: {
  1902. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1903. }
  1904. },
  1905. paws: {
  1906. height: math.unit(1.17, "feet"),
  1907. name: "Paws",
  1908. image: {
  1909. source: "./media/characters/sofia-fluttertail/paws.svg",
  1910. extra: 851 / 851,
  1911. bottom: 17 / 868
  1912. }
  1913. },
  1914. },
  1915. [
  1916. {
  1917. name: "Normal",
  1918. height: math.unit(1.83, "meter")
  1919. },
  1920. {
  1921. name: "Size Thief",
  1922. height: math.unit(18, "feet")
  1923. },
  1924. {
  1925. name: "50 Foot Collie",
  1926. height: math.unit(50, "feet")
  1927. },
  1928. {
  1929. name: "Macro",
  1930. height: math.unit(96, "feet"),
  1931. default: true
  1932. },
  1933. {
  1934. name: "Megamerger",
  1935. height: math.unit(650, "feet")
  1936. },
  1937. ]
  1938. ))
  1939. characterMakers.push(() => makeCharacter(
  1940. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1941. {
  1942. front: {
  1943. height: math.unit(7, "feet"),
  1944. weight: math.unit(100, "kg"),
  1945. name: "Front",
  1946. image: {
  1947. source: "./media/characters/march/front.svg",
  1948. extra: 1992/1851,
  1949. bottom: 39/2031
  1950. }
  1951. },
  1952. foot: {
  1953. height: math.unit(0.9, "feet"),
  1954. name: "Foot",
  1955. image: {
  1956. source: "./media/characters/march/foot.svg"
  1957. }
  1958. },
  1959. },
  1960. [
  1961. {
  1962. name: "Normal",
  1963. height: math.unit(7.9, "feet")
  1964. },
  1965. {
  1966. name: "Macro",
  1967. height: math.unit(220, "meters")
  1968. },
  1969. {
  1970. name: "Megamacro",
  1971. height: math.unit(2.98, "km"),
  1972. default: true
  1973. },
  1974. {
  1975. name: "Gigamacro",
  1976. height: math.unit(15963, "km")
  1977. },
  1978. {
  1979. name: "Teramacro",
  1980. height: math.unit(2980000000, "km")
  1981. },
  1982. {
  1983. name: "Examacro",
  1984. height: math.unit(250, "parsecs")
  1985. },
  1986. ]
  1987. ))
  1988. characterMakers.push(() => makeCharacter(
  1989. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1990. {
  1991. front: {
  1992. height: math.unit(6, "feet"),
  1993. weight: math.unit(60, "kg"),
  1994. name: "Front",
  1995. image: {
  1996. source: "./media/characters/noir/front.svg",
  1997. extra: 1,
  1998. bottom: 0.032
  1999. }
  2000. },
  2001. },
  2002. [
  2003. {
  2004. name: "Normal",
  2005. height: math.unit(6.6, "feet")
  2006. },
  2007. {
  2008. name: "Macro",
  2009. height: math.unit(500, "feet")
  2010. },
  2011. {
  2012. name: "Megamacro",
  2013. height: math.unit(2.5, "km"),
  2014. default: true
  2015. },
  2016. {
  2017. name: "Gigamacro",
  2018. height: math.unit(22500, "km")
  2019. },
  2020. {
  2021. name: "Teramacro",
  2022. height: math.unit(2500000000, "km")
  2023. },
  2024. {
  2025. name: "Examacro",
  2026. height: math.unit(200, "parsecs")
  2027. },
  2028. ]
  2029. ))
  2030. characterMakers.push(() => makeCharacter(
  2031. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2032. {
  2033. front: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(100, "kg"),
  2036. name: "Front",
  2037. image: {
  2038. source: "./media/characters/okuri/front.svg",
  2039. extra: 1,
  2040. bottom: 0.037
  2041. }
  2042. },
  2043. back: {
  2044. height: math.unit(7, "feet"),
  2045. weight: math.unit(100, "kg"),
  2046. name: "Back",
  2047. image: {
  2048. source: "./media/characters/okuri/back.svg",
  2049. extra: 1,
  2050. bottom: 0.007
  2051. }
  2052. },
  2053. },
  2054. [
  2055. {
  2056. name: "Megamacro",
  2057. height: math.unit(100, "miles"),
  2058. default: true
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(100, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/manny/front.svg",
  2071. extra: 1,
  2072. bottom: 0.06
  2073. }
  2074. },
  2075. back: {
  2076. height: math.unit(7, "feet"),
  2077. weight: math.unit(100, "kg"),
  2078. name: "Back",
  2079. image: {
  2080. source: "./media/characters/manny/back.svg",
  2081. extra: 1,
  2082. bottom: 0.014
  2083. }
  2084. },
  2085. },
  2086. [
  2087. {
  2088. name: "Normal",
  2089. height: math.unit(7, "feet"),
  2090. },
  2091. {
  2092. name: "Macro",
  2093. height: math.unit(78, "feet"),
  2094. default: true
  2095. },
  2096. {
  2097. name: "Macro+",
  2098. height: math.unit(300, "meters")
  2099. },
  2100. {
  2101. name: "Macro++",
  2102. height: math.unit(2400, "meters")
  2103. },
  2104. {
  2105. name: "Megamacro",
  2106. height: math.unit(5167, "meters")
  2107. },
  2108. {
  2109. name: "Gigamacro",
  2110. height: math.unit(41769, "miles")
  2111. },
  2112. ]
  2113. ))
  2114. characterMakers.push(() => makeCharacter(
  2115. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2116. {
  2117. front: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Front",
  2121. image: {
  2122. source: "./media/characters/adake/front-1.svg"
  2123. }
  2124. },
  2125. frontAlt: {
  2126. height: math.unit(7, "feet"),
  2127. weight: math.unit(100, "kg"),
  2128. name: "Front (Alt)",
  2129. image: {
  2130. source: "./media/characters/adake/front-2.svg",
  2131. extra: 1,
  2132. bottom: 0.01
  2133. }
  2134. },
  2135. back: {
  2136. height: math.unit(7, "feet"),
  2137. weight: math.unit(100, "kg"),
  2138. name: "Back",
  2139. image: {
  2140. source: "./media/characters/adake/back.svg",
  2141. }
  2142. },
  2143. kneel: {
  2144. height: math.unit(5.385, "feet"),
  2145. weight: math.unit(100, "kg"),
  2146. name: "Kneeling",
  2147. image: {
  2148. source: "./media/characters/adake/kneel.svg",
  2149. bottom: 0.052
  2150. }
  2151. },
  2152. },
  2153. [
  2154. {
  2155. name: "Normal",
  2156. height: math.unit(7, "feet"),
  2157. },
  2158. {
  2159. name: "Macro",
  2160. height: math.unit(78, "feet"),
  2161. default: true
  2162. },
  2163. {
  2164. name: "Macro+",
  2165. height: math.unit(300, "meters")
  2166. },
  2167. {
  2168. name: "Macro++",
  2169. height: math.unit(2400, "meters")
  2170. },
  2171. {
  2172. name: "Megamacro",
  2173. height: math.unit(5167, "meters")
  2174. },
  2175. {
  2176. name: "Gigamacro",
  2177. height: math.unit(41769, "miles")
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(1.65, "meters"),
  2186. weight: math.unit(50, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/elijah/front.svg",
  2190. extra: 858 / 830,
  2191. bottom: 95.5 / 953.8559
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(1.65, "meters"),
  2196. weight: math.unit(50, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/elijah/back.svg",
  2200. extra: 895 / 850,
  2201. bottom: 5.3 / 897.956
  2202. }
  2203. },
  2204. frontNsfw: {
  2205. height: math.unit(1.65, "meters"),
  2206. weight: math.unit(50, "kg"),
  2207. name: "Front (NSFW)",
  2208. image: {
  2209. source: "./media/characters/elijah/front-nsfw.svg",
  2210. extra: 858 / 830,
  2211. bottom: 95.5 / 953.8559
  2212. }
  2213. },
  2214. backNsfw: {
  2215. height: math.unit(1.65, "meters"),
  2216. weight: math.unit(50, "kg"),
  2217. name: "Back (NSFW)",
  2218. image: {
  2219. source: "./media/characters/elijah/back-nsfw.svg",
  2220. extra: 895 / 850,
  2221. bottom: 5.3 / 897.956
  2222. }
  2223. },
  2224. dick: {
  2225. height: math.unit(1, "feet"),
  2226. name: "Dick",
  2227. image: {
  2228. source: "./media/characters/elijah/dick.svg"
  2229. }
  2230. },
  2231. beakOpen: {
  2232. height: math.unit(1.25, "feet"),
  2233. name: "Beak (Open)",
  2234. image: {
  2235. source: "./media/characters/elijah/beak-open.svg"
  2236. }
  2237. },
  2238. beakShut: {
  2239. height: math.unit(1.25, "feet"),
  2240. name: "Beak (Shut)",
  2241. image: {
  2242. source: "./media/characters/elijah/beak-shut.svg"
  2243. }
  2244. },
  2245. footFlexing: {
  2246. height: math.unit(1.61, "feet"),
  2247. name: "Foot (Flexing)",
  2248. image: {
  2249. source: "./media/characters/elijah/foot-flexing.svg"
  2250. }
  2251. },
  2252. footStepping: {
  2253. height: math.unit(1.44, "feet"),
  2254. name: "Foot (Stepping)",
  2255. image: {
  2256. source: "./media/characters/elijah/foot-stepping.svg"
  2257. }
  2258. },
  2259. plantigradeLeg: {
  2260. height: math.unit(2.34, "feet"),
  2261. name: "Plantigrade Leg",
  2262. image: {
  2263. source: "./media/characters/elijah/plantigrade-leg.svg"
  2264. }
  2265. },
  2266. plantigradeFootLeft: {
  2267. height: math.unit(0.9, "feet"),
  2268. name: "Plantigrade Foot (Left)",
  2269. image: {
  2270. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2271. }
  2272. },
  2273. plantigradeFootRight: {
  2274. height: math.unit(0.9, "feet"),
  2275. name: "Plantigrade Foot (Right)",
  2276. image: {
  2277. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2278. }
  2279. },
  2280. },
  2281. [
  2282. {
  2283. name: "Normal",
  2284. height: math.unit(1.65, "meters")
  2285. },
  2286. {
  2287. name: "Macro",
  2288. height: math.unit(55, "meters"),
  2289. default: true
  2290. },
  2291. {
  2292. name: "Macro+",
  2293. height: math.unit(105, "meters")
  2294. },
  2295. ]
  2296. ))
  2297. characterMakers.push(() => makeCharacter(
  2298. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2299. {
  2300. front: {
  2301. height: math.unit(11, "feet"),
  2302. weight: math.unit(320, "kg"),
  2303. name: "Front",
  2304. image: {
  2305. source: "./media/characters/rai/front.svg",
  2306. extra: 1802/1696,
  2307. bottom: 68/1870
  2308. }
  2309. },
  2310. frontDressed: {
  2311. height: math.unit(11, "feet"),
  2312. weight: math.unit(320, "kg"),
  2313. name: "Front (Dressed)",
  2314. image: {
  2315. source: "./media/characters/rai/front-dressed.svg",
  2316. extra: 1802/1696,
  2317. bottom: 68/1870
  2318. }
  2319. },
  2320. side: {
  2321. height: math.unit(11, "feet"),
  2322. weight: math.unit(320, "kg"),
  2323. name: "Side",
  2324. image: {
  2325. source: "./media/characters/rai/side.svg",
  2326. extra: 1789/1710,
  2327. bottom: 115/1904
  2328. }
  2329. },
  2330. back: {
  2331. height: math.unit(11, "feet"),
  2332. weight: math.unit(320, "kg"),
  2333. name: "Back",
  2334. image: {
  2335. source: "./media/characters/rai/back.svg",
  2336. extra: 1770/1707,
  2337. bottom: 28/1798
  2338. }
  2339. },
  2340. feral: {
  2341. height: math.unit(11, "feet"),
  2342. weight: math.unit(640, "kg"),
  2343. name: "Feral",
  2344. image: {
  2345. source: "./media/characters/rai/feral.svg",
  2346. extra: 1035/642,
  2347. bottom: 86/1121
  2348. }
  2349. },
  2350. dragon: {
  2351. height: math.unit(23, "feet"),
  2352. weight: math.unit(50000, "lb"),
  2353. name: "Dragon",
  2354. image: {
  2355. source: "./media/characters/rai/dragon.svg",
  2356. extra: 2498 / 2030,
  2357. bottom: 85.2 / 2584
  2358. }
  2359. },
  2360. maw: {
  2361. height: math.unit(6 / 3.81416, "feet"),
  2362. name: "Maw",
  2363. image: {
  2364. source: "./media/characters/rai/maw.svg"
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Normal",
  2371. height: math.unit(11, "feet")
  2372. },
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(302, "feet"),
  2376. default: true
  2377. },
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2382. {
  2383. frontDressed: {
  2384. height: math.unit(216, "feet"),
  2385. weight: math.unit(7000000, "lb"),
  2386. name: "Front (Dressed)",
  2387. image: {
  2388. source: "./media/characters/jazzy/front-dressed.svg",
  2389. extra: 2738 / 2651,
  2390. bottom: 41.8 / 2786
  2391. }
  2392. },
  2393. backDressed: {
  2394. height: math.unit(216, "feet"),
  2395. weight: math.unit(7000000, "lb"),
  2396. name: "Back (Dressed)",
  2397. image: {
  2398. source: "./media/characters/jazzy/back-dressed.svg",
  2399. extra: 2775 / 2673,
  2400. bottom: 36.8 / 2817
  2401. }
  2402. },
  2403. front: {
  2404. height: math.unit(216, "feet"),
  2405. weight: math.unit(7000000, "lb"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/jazzy/front.svg",
  2409. extra: 2738 / 2651,
  2410. bottom: 41.8 / 2786
  2411. }
  2412. },
  2413. back: {
  2414. height: math.unit(216, "feet"),
  2415. weight: math.unit(7000000, "lb"),
  2416. name: "Back",
  2417. image: {
  2418. source: "./media/characters/jazzy/back.svg",
  2419. extra: 2775 / 2673,
  2420. bottom: 36.8 / 2817
  2421. }
  2422. },
  2423. maw: {
  2424. height: math.unit(20, "feet"),
  2425. name: "Maw",
  2426. image: {
  2427. source: "./media/characters/jazzy/maw.svg"
  2428. }
  2429. },
  2430. paws: {
  2431. height: math.unit(27.5, "feet"),
  2432. name: "Paws",
  2433. image: {
  2434. source: "./media/characters/jazzy/paws.svg"
  2435. }
  2436. },
  2437. eye: {
  2438. height: math.unit(4.4, "feet"),
  2439. name: "Eye",
  2440. image: {
  2441. source: "./media/characters/jazzy/eye.svg"
  2442. }
  2443. },
  2444. droneOffense: {
  2445. height: math.unit(9.5, "inches"),
  2446. name: "Drone (Offense)",
  2447. image: {
  2448. source: "./media/characters/jazzy/drone-offense.svg"
  2449. }
  2450. },
  2451. droneRecon: {
  2452. height: math.unit(9.5, "inches"),
  2453. name: "Drone (Recon)",
  2454. image: {
  2455. source: "./media/characters/jazzy/drone-recon.svg"
  2456. }
  2457. },
  2458. droneDefense: {
  2459. height: math.unit(9.5, "inches"),
  2460. name: "Drone (Defense)",
  2461. image: {
  2462. source: "./media/characters/jazzy/drone-defense.svg"
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Macro",
  2469. height: math.unit(216, "feet"),
  2470. default: true
  2471. },
  2472. ]
  2473. ))
  2474. characterMakers.push(() => makeCharacter(
  2475. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2476. {
  2477. front: {
  2478. height: math.unit(9 + 6/12, "feet"),
  2479. weight: math.unit(700, "lb"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/flamm/front.svg",
  2483. extra: 1751/1632,
  2484. bottom: 46/1797
  2485. }
  2486. },
  2487. buff: {
  2488. height: math.unit(9 + 6/12, "feet"),
  2489. weight: math.unit(950, "lb"),
  2490. name: "Buff",
  2491. image: {
  2492. source: "./media/characters/flamm/buff.svg",
  2493. extra: 3018/2874,
  2494. bottom: 221/3239
  2495. }
  2496. },
  2497. },
  2498. [
  2499. {
  2500. name: "Normal",
  2501. height: math.unit(9.5, "feet")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(200, "feet"),
  2506. default: true
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(5 + 3/12, "feet"),
  2515. weight: math.unit(60, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/zephiro/front.svg",
  2519. extra: 2309 / 2162,
  2520. bottom: 0.069
  2521. }
  2522. },
  2523. side: {
  2524. height: math.unit(5 + 3/12, "feet"),
  2525. weight: math.unit(60, "kg"),
  2526. name: "Side",
  2527. image: {
  2528. source: "./media/characters/zephiro/side.svg",
  2529. extra: 2403 / 2279,
  2530. bottom: 0.015
  2531. }
  2532. },
  2533. back: {
  2534. height: math.unit(5 + 3/12, "feet"),
  2535. weight: math.unit(60, "kg"),
  2536. name: "Back",
  2537. image: {
  2538. source: "./media/characters/zephiro/back.svg",
  2539. extra: 2373 / 2244,
  2540. bottom: 0.013
  2541. }
  2542. },
  2543. hand: {
  2544. height: math.unit(0.68, "feet"),
  2545. name: "Hand",
  2546. image: {
  2547. source: "./media/characters/zephiro/hand.svg"
  2548. }
  2549. },
  2550. paw: {
  2551. height: math.unit(1, "feet"),
  2552. name: "Paw",
  2553. image: {
  2554. source: "./media/characters/zephiro/paw.svg"
  2555. }
  2556. },
  2557. beans: {
  2558. height: math.unit(0.93, "feet"),
  2559. name: "Beans",
  2560. image: {
  2561. source: "./media/characters/zephiro/beans.svg"
  2562. }
  2563. },
  2564. },
  2565. [
  2566. {
  2567. name: "Micro",
  2568. height: math.unit(3, "inches")
  2569. },
  2570. {
  2571. name: "Normal",
  2572. height: math.unit(5 + 3 / 12, "feet"),
  2573. default: true
  2574. },
  2575. {
  2576. name: "Macro",
  2577. height: math.unit(118, "feet")
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2583. {
  2584. front: {
  2585. height: math.unit(5, "feet"),
  2586. weight: math.unit(90, "kg"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/fory/front.svg",
  2590. extra: 2862 / 2674,
  2591. bottom: 180 / 3043.8
  2592. }
  2593. },
  2594. back: {
  2595. height: math.unit(5, "feet"),
  2596. weight: math.unit(90, "kg"),
  2597. name: "Back",
  2598. image: {
  2599. source: "./media/characters/fory/back.svg",
  2600. extra: 2962 / 2791,
  2601. bottom: 106 / 3071.8
  2602. }
  2603. },
  2604. foot: {
  2605. height: math.unit(2.14, "feet"),
  2606. name: "Foot",
  2607. image: {
  2608. source: "./media/characters/fory/foot.svg"
  2609. }
  2610. },
  2611. },
  2612. [
  2613. {
  2614. name: "Normal",
  2615. height: math.unit(5, "feet")
  2616. },
  2617. {
  2618. name: "Macro",
  2619. height: math.unit(50, "feet"),
  2620. default: true
  2621. },
  2622. {
  2623. name: "Megamacro",
  2624. height: math.unit(10, "miles")
  2625. },
  2626. {
  2627. name: "Gigamacro",
  2628. height: math.unit(5, "earths")
  2629. },
  2630. ]
  2631. ))
  2632. characterMakers.push(() => makeCharacter(
  2633. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2634. {
  2635. front: {
  2636. height: math.unit(7, "feet"),
  2637. weight: math.unit(90, "kg"),
  2638. name: "Front",
  2639. image: {
  2640. source: "./media/characters/kurrikage/front.svg",
  2641. extra: 1,
  2642. bottom: 0.035
  2643. }
  2644. },
  2645. back: {
  2646. height: math.unit(7, "feet"),
  2647. weight: math.unit(90, "lb"),
  2648. name: "Back",
  2649. image: {
  2650. source: "./media/characters/kurrikage/back.svg"
  2651. }
  2652. },
  2653. paw: {
  2654. height: math.unit(1.5, "feet"),
  2655. name: "Paw",
  2656. image: {
  2657. source: "./media/characters/kurrikage/paw.svg"
  2658. }
  2659. },
  2660. staff: {
  2661. height: math.unit(6.7, "feet"),
  2662. name: "Staff",
  2663. image: {
  2664. source: "./media/characters/kurrikage/staff.svg"
  2665. }
  2666. },
  2667. peek: {
  2668. height: math.unit(1.05, "feet"),
  2669. name: "Peeking",
  2670. image: {
  2671. source: "./media/characters/kurrikage/peek.svg",
  2672. bottom: 0.08
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(12, "feet"),
  2680. default: true
  2681. },
  2682. {
  2683. name: "Big",
  2684. height: math.unit(20, "feet")
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(500, "feet")
  2689. },
  2690. {
  2691. name: "Megamacro",
  2692. height: math.unit(20, "miles")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(6, "feet"),
  2701. weight: math.unit(75, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/shingo/front.svg",
  2705. extra: 706/681,
  2706. bottom: 11/717
  2707. }
  2708. },
  2709. frontAlt: {
  2710. height: math.unit(6, "feet"),
  2711. weight: math.unit(75, "kg"),
  2712. name: "Front (Alt)",
  2713. image: {
  2714. source: "./media/characters/shingo/front-alt.svg",
  2715. extra: 3511 / 3338,
  2716. bottom: 0.005
  2717. }
  2718. },
  2719. paw: {
  2720. height: math.unit(1, "feet"),
  2721. name: "Paw",
  2722. image: {
  2723. source: "./media/characters/shingo/paw.svg"
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Micro",
  2730. height: math.unit(4, "inches")
  2731. },
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(6, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(108, "feet")
  2740. },
  2741. {
  2742. name: "Macro+",
  2743. height: math.unit(1500, "feet")
  2744. },
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2749. {
  2750. side: {
  2751. height: math.unit(6, "feet"),
  2752. weight: math.unit(75, "kg"),
  2753. name: "Side",
  2754. image: {
  2755. source: "./media/characters/aigey/side.svg"
  2756. }
  2757. },
  2758. },
  2759. [
  2760. {
  2761. name: "Macro",
  2762. height: math.unit(200, "feet"),
  2763. default: true
  2764. },
  2765. {
  2766. name: "Megamacro",
  2767. height: math.unit(100, "miles")
  2768. },
  2769. ]
  2770. )
  2771. )
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2774. {
  2775. front: {
  2776. height: math.unit(5 + 5 / 12, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/natasha/front.svg",
  2781. extra: 859 / 824,
  2782. bottom: 23 / 879.6
  2783. }
  2784. },
  2785. frontNsfw: {
  2786. height: math.unit(5 + 5 / 12, "feet"),
  2787. weight: math.unit(75, "kg"),
  2788. name: "Front (NSFW)",
  2789. image: {
  2790. source: "./media/characters/natasha/front-nsfw.svg",
  2791. extra: 859 / 824,
  2792. bottom: 23 / 879.6
  2793. }
  2794. },
  2795. frontErect: {
  2796. height: math.unit(5 + 5 / 12, "feet"),
  2797. weight: math.unit(75, "kg"),
  2798. name: "Front (Erect)",
  2799. image: {
  2800. source: "./media/characters/natasha/front-erect.svg",
  2801. extra: 859 / 824,
  2802. bottom: 23 / 879.6
  2803. }
  2804. },
  2805. back: {
  2806. height: math.unit(5 + 5 / 12, "feet"),
  2807. weight: math.unit(75, "kg"),
  2808. name: "Back",
  2809. image: {
  2810. source: "./media/characters/natasha/back.svg",
  2811. extra: 887.9 / 852.6,
  2812. bottom: 9.7 / 896.4
  2813. }
  2814. },
  2815. backAlt: {
  2816. height: math.unit(5 + 5 / 12, "feet"),
  2817. weight: math.unit(75, "kg"),
  2818. name: "Back (Alt)",
  2819. image: {
  2820. source: "./media/characters/natasha/back-alt.svg",
  2821. extra: 1236.7 / 1192,
  2822. bottom: 22.3 / 1258.2
  2823. }
  2824. },
  2825. dick: {
  2826. height: math.unit(1.772, "feet"),
  2827. name: "Dick",
  2828. image: {
  2829. source: "./media/characters/natasha/dick.svg"
  2830. }
  2831. },
  2832. paw: {
  2833. height: math.unit(0.250, "meters"),
  2834. name: "Paw",
  2835. image: {
  2836. source: "./media/characters/natasha/paw.svg"
  2837. }
  2838. },
  2839. },
  2840. [
  2841. {
  2842. name: "Normal",
  2843. height: math.unit(5 + 5 / 12, "feet")
  2844. },
  2845. {
  2846. name: "Large",
  2847. height: math.unit(12, "feet")
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(100, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro+",
  2856. height: math.unit(260, "feet")
  2857. },
  2858. {
  2859. name: "Macro++",
  2860. height: math.unit(1, "mile")
  2861. },
  2862. ]
  2863. ))
  2864. characterMakers.push(() => makeCharacter(
  2865. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2866. {
  2867. front: {
  2868. height: math.unit(6, "feet"),
  2869. weight: math.unit(75, "kg"),
  2870. name: "Front",
  2871. image: {
  2872. source: "./media/characters/malik/front.svg"
  2873. }
  2874. },
  2875. side: {
  2876. height: math.unit(6, "feet"),
  2877. weight: math.unit(75, "kg"),
  2878. name: "Side",
  2879. image: {
  2880. source: "./media/characters/malik/side.svg",
  2881. extra: 1.1539
  2882. }
  2883. },
  2884. back: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Back",
  2888. image: {
  2889. source: "./media/characters/malik/back.svg"
  2890. }
  2891. },
  2892. },
  2893. [
  2894. {
  2895. name: "Macro",
  2896. height: math.unit(156, "feet"),
  2897. default: true
  2898. },
  2899. {
  2900. name: "Macro+",
  2901. height: math.unit(1188, "feet")
  2902. },
  2903. ]
  2904. ))
  2905. characterMakers.push(() => makeCharacter(
  2906. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2907. {
  2908. front: {
  2909. height: math.unit(6, "feet"),
  2910. weight: math.unit(75, "kg"),
  2911. name: "Front",
  2912. image: {
  2913. source: "./media/characters/sefer/front.svg",
  2914. extra: 848 / 659,
  2915. bottom: 28.3 / 876.442
  2916. }
  2917. },
  2918. back: {
  2919. height: math.unit(6, "feet"),
  2920. weight: math.unit(75, "kg"),
  2921. name: "Back",
  2922. image: {
  2923. source: "./media/characters/sefer/back.svg",
  2924. extra: 864 / 695,
  2925. bottom: 10 / 871
  2926. }
  2927. },
  2928. frontDressed: {
  2929. height: math.unit(6, "feet"),
  2930. weight: math.unit(75, "kg"),
  2931. name: "Front (Dressed)",
  2932. image: {
  2933. source: "./media/characters/sefer/front-dressed.svg",
  2934. extra: 839 / 653,
  2935. bottom: 37.6 / 878
  2936. }
  2937. },
  2938. },
  2939. [
  2940. {
  2941. name: "Normal",
  2942. height: math.unit(6, "feet"),
  2943. default: true
  2944. },
  2945. ]
  2946. ))
  2947. characterMakers.push(() => makeCharacter(
  2948. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2949. {
  2950. body: {
  2951. height: math.unit(2.2428, "meter"),
  2952. weight: math.unit(124.738, "kg"),
  2953. name: "Body",
  2954. image: {
  2955. extra: 1225 / 1050,
  2956. source: "./media/characters/north/front.svg"
  2957. }
  2958. }
  2959. },
  2960. [
  2961. {
  2962. name: "Micro",
  2963. height: math.unit(4, "inches")
  2964. },
  2965. {
  2966. name: "Macro",
  2967. height: math.unit(63, "meters")
  2968. },
  2969. {
  2970. name: "Megamacro",
  2971. height: math.unit(101, "miles"),
  2972. default: true
  2973. }
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2978. {
  2979. angled: {
  2980. height: math.unit(4, "meter"),
  2981. weight: math.unit(150, "kg"),
  2982. name: "Angled",
  2983. image: {
  2984. source: "./media/characters/talan/angled-sfw.svg",
  2985. bottom: 29 / 3734
  2986. }
  2987. },
  2988. angledNsfw: {
  2989. height: math.unit(4, "meter"),
  2990. weight: math.unit(150, "kg"),
  2991. name: "Angled (NSFW)",
  2992. image: {
  2993. source: "./media/characters/talan/angled-nsfw.svg",
  2994. bottom: 29 / 3734
  2995. }
  2996. },
  2997. frontNsfw: {
  2998. height: math.unit(4, "meter"),
  2999. weight: math.unit(150, "kg"),
  3000. name: "Front (NSFW)",
  3001. image: {
  3002. source: "./media/characters/talan/front-nsfw.svg",
  3003. bottom: 29 / 3734
  3004. }
  3005. },
  3006. sideNsfw: {
  3007. height: math.unit(4, "meter"),
  3008. weight: math.unit(150, "kg"),
  3009. name: "Side (NSFW)",
  3010. image: {
  3011. source: "./media/characters/talan/side-nsfw.svg",
  3012. bottom: 29 / 3734
  3013. }
  3014. },
  3015. back: {
  3016. height: math.unit(4, "meter"),
  3017. weight: math.unit(150, "kg"),
  3018. name: "Back",
  3019. image: {
  3020. source: "./media/characters/talan/back.svg"
  3021. }
  3022. },
  3023. dickBottom: {
  3024. height: math.unit(0.621, "meter"),
  3025. name: "Dick (Bottom)",
  3026. image: {
  3027. source: "./media/characters/talan/dick-bottom.svg"
  3028. }
  3029. },
  3030. dickTop: {
  3031. height: math.unit(0.621, "meter"),
  3032. name: "Dick (Top)",
  3033. image: {
  3034. source: "./media/characters/talan/dick-top.svg"
  3035. }
  3036. },
  3037. dickSide: {
  3038. height: math.unit(0.305, "meter"),
  3039. name: "Dick (Side)",
  3040. image: {
  3041. source: "./media/characters/talan/dick-side.svg"
  3042. }
  3043. },
  3044. dickFront: {
  3045. height: math.unit(0.305, "meter"),
  3046. name: "Dick (Front)",
  3047. image: {
  3048. source: "./media/characters/talan/dick-front.svg"
  3049. }
  3050. },
  3051. },
  3052. [
  3053. {
  3054. name: "Normal",
  3055. height: math.unit(4, "meters")
  3056. },
  3057. {
  3058. name: "Macro",
  3059. height: math.unit(100, "meters")
  3060. },
  3061. {
  3062. name: "Megamacro",
  3063. height: math.unit(2, "miles"),
  3064. default: true
  3065. },
  3066. {
  3067. name: "Gigamacro",
  3068. height: math.unit(5000, "miles")
  3069. },
  3070. {
  3071. name: "Teramacro",
  3072. height: math.unit(100, "parsecs")
  3073. }
  3074. ]
  3075. ))
  3076. characterMakers.push(() => makeCharacter(
  3077. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3078. {
  3079. front: {
  3080. height: math.unit(2, "meter"),
  3081. weight: math.unit(90, "kg"),
  3082. name: "Front",
  3083. image: {
  3084. source: "./media/characters/gael'rathus/front.svg"
  3085. }
  3086. },
  3087. frontAlt: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(90, "kg"),
  3090. name: "Front (alt)",
  3091. image: {
  3092. source: "./media/characters/gael'rathus/front-alt.svg"
  3093. }
  3094. },
  3095. frontAlt2: {
  3096. height: math.unit(2, "meter"),
  3097. weight: math.unit(90, "kg"),
  3098. name: "Front (alt 2)",
  3099. image: {
  3100. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3101. }
  3102. }
  3103. },
  3104. [
  3105. {
  3106. name: "Normal",
  3107. height: math.unit(9, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Large",
  3112. height: math.unit(25, "feet")
  3113. },
  3114. {
  3115. name: "Macro",
  3116. height: math.unit(0.25, "miles")
  3117. },
  3118. {
  3119. name: "Megamacro",
  3120. height: math.unit(10, "miles")
  3121. }
  3122. ]
  3123. ))
  3124. characterMakers.push(() => makeCharacter(
  3125. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3126. {
  3127. side: {
  3128. height: math.unit(2, "meter"),
  3129. weight: math.unit(140, "kg"),
  3130. name: "Side",
  3131. image: {
  3132. source: "./media/characters/sosha/side.svg",
  3133. bottom: 0.042
  3134. }
  3135. },
  3136. },
  3137. [
  3138. {
  3139. name: "Normal",
  3140. height: math.unit(12, "feet"),
  3141. default: true
  3142. }
  3143. ]
  3144. ))
  3145. characterMakers.push(() => makeCharacter(
  3146. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3147. {
  3148. side: {
  3149. height: math.unit(5 + 5 / 12, "feet"),
  3150. weight: math.unit(170, "kg"),
  3151. name: "Side",
  3152. image: {
  3153. source: "./media/characters/runnola/side.svg",
  3154. extra: 741 / 448,
  3155. bottom: 0.05
  3156. }
  3157. },
  3158. },
  3159. [
  3160. {
  3161. name: "Small",
  3162. height: math.unit(3, "feet")
  3163. },
  3164. {
  3165. name: "Normal",
  3166. height: math.unit(5 + 5 / 12, "feet"),
  3167. default: true
  3168. },
  3169. {
  3170. name: "Big",
  3171. height: math.unit(10, "feet")
  3172. },
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3177. {
  3178. front: {
  3179. height: math.unit(2, "meter"),
  3180. weight: math.unit(50, "kg"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/kurribird/front.svg",
  3184. bottom: 0.015
  3185. }
  3186. },
  3187. frontAlt: {
  3188. height: math.unit(1.5, "meter"),
  3189. weight: math.unit(50, "kg"),
  3190. name: "Front (Alt)",
  3191. image: {
  3192. source: "./media/characters/kurribird/front-alt.svg",
  3193. extra: 1.45
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(7, "feet")
  3201. },
  3202. {
  3203. name: "Big",
  3204. height: math.unit(12, "feet"),
  3205. default: true
  3206. },
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(1500, "feet")
  3210. },
  3211. {
  3212. name: "Megamacro",
  3213. height: math.unit(2, "miles")
  3214. }
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(2, "meter"),
  3222. weight: math.unit(80, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/elbial/front.svg",
  3226. extra: 1643 / 1556,
  3227. bottom: 60.2 / 1696
  3228. }
  3229. },
  3230. side: {
  3231. height: math.unit(2, "meter"),
  3232. weight: math.unit(80, "kg"),
  3233. name: "Side",
  3234. image: {
  3235. source: "./media/characters/elbial/side.svg",
  3236. extra: 1630 / 1565,
  3237. bottom: 71.5 / 1697
  3238. }
  3239. },
  3240. back: {
  3241. height: math.unit(2, "meter"),
  3242. weight: math.unit(80, "kg"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/elbial/back.svg",
  3246. extra: 1668 / 1595,
  3247. bottom: 5.6 / 1672
  3248. }
  3249. },
  3250. frontDressed: {
  3251. height: math.unit(2, "meter"),
  3252. weight: math.unit(80, "kg"),
  3253. name: "Front (Dressed)",
  3254. image: {
  3255. source: "./media/characters/elbial/front-dressed.svg",
  3256. extra: 1653 / 1584,
  3257. bottom: 57 / 1708
  3258. }
  3259. },
  3260. genitals: {
  3261. height: math.unit(2 / 3.367, "meter"),
  3262. name: "Genitals",
  3263. image: {
  3264. source: "./media/characters/elbial/genitals.svg"
  3265. }
  3266. },
  3267. },
  3268. [
  3269. {
  3270. name: "Large",
  3271. height: math.unit(100, "feet")
  3272. },
  3273. {
  3274. name: "Macro",
  3275. height: math.unit(500, "feet"),
  3276. default: true
  3277. },
  3278. {
  3279. name: "Megamacro",
  3280. height: math.unit(10, "miles")
  3281. },
  3282. {
  3283. name: "Gigamacro",
  3284. height: math.unit(25000, "miles")
  3285. },
  3286. {
  3287. name: "Full-Size",
  3288. height: math.unit(8000000, "gigaparsecs")
  3289. }
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3294. {
  3295. front: {
  3296. height: math.unit(2, "meter"),
  3297. weight: math.unit(60, "kg"),
  3298. name: "Front",
  3299. image: {
  3300. source: "./media/characters/noah/front.svg"
  3301. }
  3302. },
  3303. talons: {
  3304. height: math.unit(0.315, "meter"),
  3305. name: "Talons",
  3306. image: {
  3307. source: "./media/characters/noah/talons.svg"
  3308. }
  3309. }
  3310. },
  3311. [
  3312. {
  3313. name: "Large",
  3314. height: math.unit(50, "feet")
  3315. },
  3316. {
  3317. name: "Macro",
  3318. height: math.unit(750, "feet"),
  3319. default: true
  3320. },
  3321. {
  3322. name: "Megamacro",
  3323. height: math.unit(50, "miles")
  3324. },
  3325. {
  3326. name: "Gigamacro",
  3327. height: math.unit(100000, "miles")
  3328. },
  3329. {
  3330. name: "Full-Size",
  3331. height: math.unit(3000000000, "miles")
  3332. }
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(80, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/natalya/front.svg"
  3344. }
  3345. },
  3346. back: {
  3347. height: math.unit(2, "meter"),
  3348. weight: math.unit(80, "kg"),
  3349. name: "Back",
  3350. image: {
  3351. source: "./media/characters/natalya/back.svg"
  3352. }
  3353. }
  3354. },
  3355. [
  3356. {
  3357. name: "Normal",
  3358. height: math.unit(150, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Megamacro",
  3363. height: math.unit(5, "miles")
  3364. },
  3365. {
  3366. name: "Full-Size",
  3367. height: math.unit(600, "kiloparsecs")
  3368. }
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(50, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/erestrebah/front.svg",
  3380. extra: 208 / 193,
  3381. bottom: 0.055
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(50, "kg"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/erestrebah/back.svg",
  3390. extra: 1.3
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(10, "feet")
  3398. },
  3399. {
  3400. name: "Large",
  3401. height: math.unit(50, "feet"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(300, "feet")
  3407. },
  3408. {
  3409. name: "Macro+",
  3410. height: math.unit(750, "feet")
  3411. },
  3412. {
  3413. name: "Megamacro",
  3414. height: math.unit(3, "miles")
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3420. {
  3421. front: {
  3422. height: math.unit(2, "meter"),
  3423. weight: math.unit(80, "kg"),
  3424. name: "Front",
  3425. image: {
  3426. source: "./media/characters/jennifer/front.svg",
  3427. bottom: 0.11,
  3428. extra: 1.16
  3429. }
  3430. },
  3431. frontAlt: {
  3432. height: math.unit(2, "meter"),
  3433. weight: math.unit(80, "kg"),
  3434. name: "Front (Alt)",
  3435. image: {
  3436. source: "./media/characters/jennifer/front-alt.svg"
  3437. }
  3438. }
  3439. },
  3440. [
  3441. {
  3442. name: "Canon Height",
  3443. height: math.unit(120, "feet"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Macro+",
  3448. height: math.unit(300, "feet")
  3449. },
  3450. {
  3451. name: "Megamacro",
  3452. height: math.unit(20000, "feet")
  3453. }
  3454. ]
  3455. ))
  3456. characterMakers.push(() => makeCharacter(
  3457. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3458. {
  3459. front: {
  3460. height: math.unit(2, "meter"),
  3461. weight: math.unit(50, "kg"),
  3462. name: "Front",
  3463. image: {
  3464. source: "./media/characters/kalista/front.svg",
  3465. extra: 1947 / 1700,
  3466. bottom: 76.6 / 1412.98
  3467. }
  3468. },
  3469. back: {
  3470. height: math.unit(2, "meter"),
  3471. weight: math.unit(50, "kg"),
  3472. name: "Back",
  3473. image: {
  3474. source: "./media/characters/kalista/back.svg",
  3475. extra: 1366 / 1156,
  3476. bottom: 33.9 / 1362.78
  3477. }
  3478. }
  3479. },
  3480. [
  3481. {
  3482. name: "Uncomfortably Small",
  3483. height: math.unit(10, "feet")
  3484. },
  3485. {
  3486. name: "Small",
  3487. height: math.unit(30, "feet")
  3488. },
  3489. {
  3490. name: "Macro",
  3491. height: math.unit(100, "feet"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Macro+",
  3496. height: math.unit(2000, "feet")
  3497. },
  3498. {
  3499. name: "True Form",
  3500. height: math.unit(8924, "miles")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(120, "kg"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/ggv/front.svg"
  3513. }
  3514. },
  3515. side: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(120, "kg"),
  3518. name: "Side",
  3519. image: {
  3520. source: "./media/characters/ggv/side.svg"
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Extremely Puny",
  3527. height: math.unit(9 + 5 / 12, "feet")
  3528. },
  3529. {
  3530. name: "Horribly Small",
  3531. height: math.unit(47.7, "miles"),
  3532. default: true
  3533. },
  3534. {
  3535. name: "Reasonably Sized",
  3536. height: math.unit(25000, "parsecs")
  3537. },
  3538. {
  3539. name: "Slightly Uncompressed",
  3540. height: math.unit(7.77e31, "parsecs")
  3541. },
  3542. {
  3543. name: "Omniversal",
  3544. height: math.unit(1e300, "meters")
  3545. },
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(75, "lb"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/napalm/front.svg"
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(75, "lb"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/napalm/back.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Standard",
  3571. height: math.unit(55, "feet"),
  3572. default: true
  3573. }
  3574. ]
  3575. ))
  3576. characterMakers.push(() => makeCharacter(
  3577. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3578. {
  3579. front: {
  3580. height: math.unit(7 + 5 / 6, "feet"),
  3581. weight: math.unit(325, "lb"),
  3582. name: "Front",
  3583. image: {
  3584. source: "./media/characters/asana/front.svg",
  3585. extra: 1133 / 1060,
  3586. bottom: 15.2 / 1148.6
  3587. }
  3588. },
  3589. back: {
  3590. height: math.unit(7 + 5 / 6, "feet"),
  3591. weight: math.unit(325, "lb"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/asana/back.svg",
  3595. extra: 1114 / 1043,
  3596. bottom: 5 / 1120
  3597. }
  3598. },
  3599. dressedDark: {
  3600. height: math.unit(7 + 5 / 6, "feet"),
  3601. weight: math.unit(325, "lb"),
  3602. name: "Dressed (Dark)",
  3603. image: {
  3604. source: "./media/characters/asana/dressed-dark.svg",
  3605. extra: 1133 / 1060,
  3606. bottom: 15.2 / 1148.6
  3607. }
  3608. },
  3609. dressedLight: {
  3610. height: math.unit(7 + 5 / 6, "feet"),
  3611. weight: math.unit(325, "lb"),
  3612. name: "Dressed (Light)",
  3613. image: {
  3614. source: "./media/characters/asana/dressed-light.svg",
  3615. extra: 1133 / 1060,
  3616. bottom: 15.2 / 1148.6
  3617. }
  3618. },
  3619. },
  3620. [
  3621. {
  3622. name: "Standard",
  3623. height: math.unit(7 + 5 / 6, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Large",
  3628. height: math.unit(10, "meters")
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(2500, "meters")
  3633. },
  3634. {
  3635. name: "Megamacro",
  3636. height: math.unit(5e6, "meters")
  3637. },
  3638. {
  3639. name: "Examacro",
  3640. height: math.unit(5e12, "lightyears")
  3641. },
  3642. {
  3643. name: "Max Size",
  3644. height: math.unit(1e31, "lightyears")
  3645. }
  3646. ]
  3647. ))
  3648. characterMakers.push(() => makeCharacter(
  3649. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3650. {
  3651. front: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(60, "kg"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/ebony/front.svg",
  3657. bottom: 0.03,
  3658. extra: 1045 / 810 + 0.03
  3659. }
  3660. },
  3661. side: {
  3662. height: math.unit(2, "meter"),
  3663. weight: math.unit(60, "kg"),
  3664. name: "Side",
  3665. image: {
  3666. source: "./media/characters/ebony/side.svg",
  3667. bottom: 0.03,
  3668. extra: 1045 / 810 + 0.03
  3669. }
  3670. },
  3671. back: {
  3672. height: math.unit(2, "meter"),
  3673. weight: math.unit(60, "kg"),
  3674. name: "Back",
  3675. image: {
  3676. source: "./media/characters/ebony/back.svg",
  3677. bottom: 0.01,
  3678. extra: 1045 / 810 + 0.01
  3679. }
  3680. },
  3681. },
  3682. [
  3683. // TODO check why I did this lol
  3684. {
  3685. name: "Standard",
  3686. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3687. default: true
  3688. },
  3689. {
  3690. name: "Macro",
  3691. height: math.unit(200, "feet")
  3692. },
  3693. {
  3694. name: "Gigamacro",
  3695. height: math.unit(13000, "km")
  3696. }
  3697. ]
  3698. ))
  3699. characterMakers.push(() => makeCharacter(
  3700. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3701. {
  3702. front: {
  3703. height: math.unit(6, "feet"),
  3704. weight: math.unit(175, "lb"),
  3705. name: "Front",
  3706. image: {
  3707. source: "./media/characters/mountain/front.svg",
  3708. extra: 972 / 955,
  3709. bottom: 64 / 1036.6
  3710. }
  3711. },
  3712. back: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(175, "lb"),
  3715. name: "Back",
  3716. image: {
  3717. source: "./media/characters/mountain/back.svg",
  3718. extra: 970 / 950,
  3719. bottom: 28.25 / 999
  3720. }
  3721. },
  3722. },
  3723. [
  3724. {
  3725. name: "Large",
  3726. height: math.unit(20, "meters")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(300, "meters")
  3731. },
  3732. {
  3733. name: "Gigamacro",
  3734. height: math.unit(10000, "km"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Examacro",
  3739. height: math.unit(10e9, "lightyears")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(8, "feet"),
  3748. weight: math.unit(500, "lb"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/rick/front.svg"
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Normal",
  3758. height: math.unit(8, "feet"),
  3759. default: true
  3760. },
  3761. {
  3762. name: "Macro",
  3763. height: math.unit(5, "km")
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3769. {
  3770. front: {
  3771. height: math.unit(8, "feet"),
  3772. weight: math.unit(120, "lb"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/ona/front.svg"
  3776. }
  3777. },
  3778. frontAlt: {
  3779. height: math.unit(8, "feet"),
  3780. weight: math.unit(120, "lb"),
  3781. name: "Front (Alt)",
  3782. image: {
  3783. source: "./media/characters/ona/front-alt.svg"
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(8, "feet"),
  3788. weight: math.unit(120, "lb"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/ona/back.svg"
  3792. }
  3793. },
  3794. foot: {
  3795. height: math.unit(1.1, "feet"),
  3796. name: "Foot",
  3797. image: {
  3798. source: "./media/characters/ona/foot.svg"
  3799. }
  3800. }
  3801. },
  3802. [
  3803. {
  3804. name: "Megamacro",
  3805. height: math.unit(70, "km"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Gigamacro",
  3810. height: math.unit(681818, "miles")
  3811. },
  3812. {
  3813. name: "Examacro",
  3814. height: math.unit(3800000, "lightyears")
  3815. },
  3816. ]
  3817. ))
  3818. characterMakers.push(() => makeCharacter(
  3819. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3820. {
  3821. front: {
  3822. height: math.unit(12, "feet"),
  3823. weight: math.unit(3000, "lb"),
  3824. name: "Front",
  3825. image: {
  3826. source: "./media/characters/mech/front.svg",
  3827. extra: 2900 / 2770,
  3828. bottom: 110 / 3010
  3829. }
  3830. },
  3831. back: {
  3832. height: math.unit(12, "feet"),
  3833. weight: math.unit(3000, "lb"),
  3834. name: "Back",
  3835. image: {
  3836. source: "./media/characters/mech/back.svg",
  3837. extra: 3011 / 2890,
  3838. bottom: 94 / 3105
  3839. }
  3840. },
  3841. maw: {
  3842. height: math.unit(3.07, "feet"),
  3843. name: "Maw",
  3844. image: {
  3845. source: "./media/characters/mech/maw.svg"
  3846. }
  3847. },
  3848. head: {
  3849. height: math.unit(2.82, "feet"),
  3850. name: "Head",
  3851. image: {
  3852. source: "./media/characters/mech/head.svg"
  3853. }
  3854. },
  3855. dick: {
  3856. height: math.unit(1.43, "feet"),
  3857. name: "Dick",
  3858. image: {
  3859. source: "./media/characters/mech/dick.svg"
  3860. }
  3861. },
  3862. },
  3863. [
  3864. {
  3865. name: "Normal",
  3866. height: math.unit(12, "feet")
  3867. },
  3868. {
  3869. name: "Macro",
  3870. height: math.unit(300, "feet"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Macro+",
  3875. height: math.unit(1500, "feet")
  3876. },
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(1.3, "meter"),
  3884. weight: math.unit(30, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/gregory/front.svg",
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Normal",
  3894. height: math.unit(1.3, "meter"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Macro",
  3899. height: math.unit(20, "meter")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(2.8, "meter"),
  3908. weight: math.unit(200, "kg"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/elory/front.svg",
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(2.8, "meter"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Macro",
  3923. height: math.unit(38, "meter")
  3924. }
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3929. {
  3930. front: {
  3931. height: math.unit(470, "feet"),
  3932. weight: math.unit(924, "tons"),
  3933. name: "Front",
  3934. image: {
  3935. source: "./media/characters/angelpatamon/front.svg",
  3936. }
  3937. }
  3938. },
  3939. [
  3940. {
  3941. name: "Normal",
  3942. height: math.unit(470, "feet"),
  3943. default: true
  3944. },
  3945. {
  3946. name: "Deity Size I",
  3947. height: math.unit(28651.2, "km")
  3948. },
  3949. {
  3950. name: "Deity Size II",
  3951. height: math.unit(171907.2, "km")
  3952. }
  3953. ]
  3954. ))
  3955. characterMakers.push(() => makeCharacter(
  3956. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3957. {
  3958. side: {
  3959. height: math.unit(7.2, "meter"),
  3960. weight: math.unit(8.2, "tons"),
  3961. name: "Side",
  3962. image: {
  3963. source: "./media/characters/cryae/side.svg",
  3964. extra: 3500 / 1500
  3965. }
  3966. }
  3967. },
  3968. [
  3969. {
  3970. name: "Normal",
  3971. height: math.unit(7.2, "meter"),
  3972. default: true
  3973. }
  3974. ]
  3975. ))
  3976. characterMakers.push(() => makeCharacter(
  3977. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3978. {
  3979. front: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(175, "lb"),
  3982. name: "Front",
  3983. image: {
  3984. source: "./media/characters/xera/front.svg",
  3985. extra: 2377 / 1972,
  3986. bottom: 75.5 / 2452
  3987. }
  3988. },
  3989. side: {
  3990. height: math.unit(6, "feet"),
  3991. weight: math.unit(175, "lb"),
  3992. name: "Side",
  3993. image: {
  3994. source: "./media/characters/xera/side.svg",
  3995. extra: 2345 / 2019,
  3996. bottom: 39.7 / 2384
  3997. }
  3998. },
  3999. back: {
  4000. height: math.unit(6, "feet"),
  4001. weight: math.unit(175, "lb"),
  4002. name: "Back",
  4003. image: {
  4004. source: "./media/characters/xera/back.svg",
  4005. extra: 2095 / 1984,
  4006. bottom: 67 / 2166
  4007. }
  4008. },
  4009. },
  4010. [
  4011. {
  4012. name: "Small",
  4013. height: math.unit(10, "feet")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(500, "meters"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Macro+",
  4022. height: math.unit(10, "km")
  4023. },
  4024. {
  4025. name: "Gigamacro",
  4026. height: math.unit(25000, "km")
  4027. },
  4028. {
  4029. name: "Teramacro",
  4030. height: math.unit(3e6, "km")
  4031. }
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(6, "feet"),
  4039. weight: math.unit(175, "lb"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/nebula/front.svg",
  4043. extra: 2566 / 2362,
  4044. bottom: 81 / 2644
  4045. }
  4046. }
  4047. },
  4048. [
  4049. {
  4050. name: "Small",
  4051. height: math.unit(4.5, "meters")
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(1500, "meters"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "Megamacro",
  4060. height: math.unit(150, "km")
  4061. },
  4062. {
  4063. name: "Gigamacro",
  4064. height: math.unit(27000, "km")
  4065. }
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4070. {
  4071. front: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(225, "lb"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/abysgar/front.svg"
  4077. }
  4078. }
  4079. },
  4080. [
  4081. {
  4082. name: "Small",
  4083. height: math.unit(4.5, "meters")
  4084. },
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(1250, "meters"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Megamacro",
  4092. height: math.unit(125, "km")
  4093. },
  4094. {
  4095. name: "Gigamacro",
  4096. height: math.unit(26000, "km")
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(180, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/yakuz/front.svg"
  4109. }
  4110. }
  4111. },
  4112. [
  4113. {
  4114. name: "Small",
  4115. height: math.unit(5, "meters")
  4116. },
  4117. {
  4118. name: "Macro",
  4119. height: math.unit(1500, "meters"),
  4120. default: true
  4121. },
  4122. {
  4123. name: "Megamacro",
  4124. height: math.unit(200, "km")
  4125. },
  4126. {
  4127. name: "Gigamacro",
  4128. height: math.unit(100000, "km")
  4129. }
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4134. {
  4135. front: {
  4136. height: math.unit(6, "feet"),
  4137. weight: math.unit(175, "lb"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/mirova/front.svg",
  4141. extra: 3334 / 3071,
  4142. bottom: 42 / 3375.6
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Small",
  4149. height: math.unit(5, "meters")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(900, "meters"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Megamacro",
  4158. height: math.unit(135, "km")
  4159. },
  4160. {
  4161. name: "Gigamacro",
  4162. height: math.unit(20000, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4168. {
  4169. side: {
  4170. height: math.unit(28.35, "feet"),
  4171. weight: math.unit(99.75, "tons"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/asana-mech/side.svg",
  4175. extra: 923 / 699,
  4176. bottom: 50 / 975
  4177. }
  4178. },
  4179. chaingun: {
  4180. height: math.unit(7, "feet"),
  4181. weight: math.unit(2400, "lb"),
  4182. name: "Chaingun",
  4183. image: {
  4184. source: "./media/characters/asana-mech/chaingun.svg"
  4185. }
  4186. },
  4187. laser: {
  4188. height: math.unit(7.12, "feet"),
  4189. weight: math.unit(2000, "lb"),
  4190. name: "Laser",
  4191. image: {
  4192. source: "./media/characters/asana-mech/laser.svg"
  4193. }
  4194. },
  4195. },
  4196. [
  4197. {
  4198. name: "Normal",
  4199. height: math.unit(28.35, "feet"),
  4200. default: true
  4201. },
  4202. {
  4203. name: "Macro",
  4204. height: math.unit(2500, "feet")
  4205. },
  4206. {
  4207. name: "Megamacro",
  4208. height: math.unit(25, "miles")
  4209. },
  4210. {
  4211. name: "Examacro",
  4212. height: math.unit(6e8, "lightyears")
  4213. },
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4218. {
  4219. front: {
  4220. height: math.unit(5, "meters"),
  4221. weight: math.unit(1000, "kg"),
  4222. name: "Front",
  4223. image: {
  4224. source: "./media/characters/asche/front.svg",
  4225. extra: 1258 / 1190,
  4226. bottom: 47 / 1305
  4227. }
  4228. },
  4229. frontUnderwear: {
  4230. height: math.unit(5, "meters"),
  4231. weight: math.unit(1000, "kg"),
  4232. name: "Front (Underwear)",
  4233. image: {
  4234. source: "./media/characters/asche/front-underwear.svg",
  4235. extra: 1258 / 1190,
  4236. bottom: 47 / 1305
  4237. }
  4238. },
  4239. frontDressed: {
  4240. height: math.unit(5, "meters"),
  4241. weight: math.unit(1000, "kg"),
  4242. name: "Front (Dressed)",
  4243. image: {
  4244. source: "./media/characters/asche/front-dressed.svg",
  4245. extra: 1258 / 1190,
  4246. bottom: 47 / 1305
  4247. }
  4248. },
  4249. frontArmor: {
  4250. height: math.unit(5, "meters"),
  4251. weight: math.unit(1000, "kg"),
  4252. name: "Front (Armored)",
  4253. image: {
  4254. source: "./media/characters/asche/front-armored.svg",
  4255. extra: 1374 / 1308,
  4256. bottom: 23 / 1397
  4257. }
  4258. },
  4259. mp724: {
  4260. height: math.unit(0.96, "meters"),
  4261. weight: math.unit(38, "kg"),
  4262. name: "H&K MP724",
  4263. image: {
  4264. source: "./media/characters/asche/h&k-mp724.svg"
  4265. }
  4266. },
  4267. side: {
  4268. height: math.unit(5, "meters"),
  4269. weight: math.unit(1000, "kg"),
  4270. name: "Side",
  4271. image: {
  4272. source: "./media/characters/asche/side.svg",
  4273. extra: 1717 / 1609,
  4274. bottom: 0.005
  4275. }
  4276. },
  4277. back: {
  4278. height: math.unit(5, "meters"),
  4279. weight: math.unit(1000, "kg"),
  4280. name: "Back",
  4281. image: {
  4282. source: "./media/characters/asche/back.svg",
  4283. extra: 1570 / 1501
  4284. }
  4285. },
  4286. },
  4287. [
  4288. {
  4289. name: "DEFCON 5",
  4290. height: math.unit(5, "meters")
  4291. },
  4292. {
  4293. name: "DEFCON 4",
  4294. height: math.unit(500, "meters"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "DEFCON 3",
  4299. height: math.unit(5, "km")
  4300. },
  4301. {
  4302. name: "DEFCON 2",
  4303. height: math.unit(500, "km")
  4304. },
  4305. {
  4306. name: "DEFCON 1",
  4307. height: math.unit(500000, "km")
  4308. },
  4309. {
  4310. name: "DEFCON 0",
  4311. height: math.unit(3, "gigaparsecs")
  4312. },
  4313. ]
  4314. ))
  4315. characterMakers.push(() => makeCharacter(
  4316. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4317. {
  4318. front: {
  4319. height: math.unit(2, "meters"),
  4320. weight: math.unit(76, "kg"),
  4321. name: "Front",
  4322. image: {
  4323. source: "./media/characters/gale/front.svg"
  4324. }
  4325. },
  4326. frontAlt1: {
  4327. height: math.unit(2, "meters"),
  4328. weight: math.unit(76, "kg"),
  4329. name: "Front (Alt 1)",
  4330. image: {
  4331. source: "./media/characters/gale/front-alt-1.svg"
  4332. }
  4333. },
  4334. frontAlt2: {
  4335. height: math.unit(2, "meters"),
  4336. weight: math.unit(76, "kg"),
  4337. name: "Front (Alt 2)",
  4338. image: {
  4339. source: "./media/characters/gale/front-alt-2.svg"
  4340. }
  4341. },
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(7, "feet")
  4347. },
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(150, "feet"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Macro+",
  4355. height: math.unit(300, "feet")
  4356. },
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(2, "meters"),
  4364. weight: math.unit(76, "kg"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/draylen/front.svg"
  4368. }
  4369. }
  4370. },
  4371. [
  4372. {
  4373. name: "Macro",
  4374. height: math.unit(150, "feet"),
  4375. default: true
  4376. }
  4377. ]
  4378. ))
  4379. characterMakers.push(() => makeCharacter(
  4380. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4381. {
  4382. front: {
  4383. height: math.unit(7 + 9 / 12, "feet"),
  4384. weight: math.unit(379, "lbs"),
  4385. name: "Front",
  4386. image: {
  4387. source: "./media/characters/chez/front.svg"
  4388. }
  4389. },
  4390. side: {
  4391. height: math.unit(7 + 9 / 12, "feet"),
  4392. weight: math.unit(379, "lbs"),
  4393. name: "Side",
  4394. image: {
  4395. source: "./media/characters/chez/side.svg"
  4396. }
  4397. }
  4398. },
  4399. [
  4400. {
  4401. name: "Normal",
  4402. height: math.unit(7 + 9 / 12, "feet"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "God King",
  4407. height: math.unit(9750000, "meters")
  4408. }
  4409. ]
  4410. ))
  4411. characterMakers.push(() => makeCharacter(
  4412. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4413. {
  4414. front: {
  4415. height: math.unit(6, "feet"),
  4416. weight: math.unit(275, "lbs"),
  4417. name: "Front",
  4418. image: {
  4419. source: "./media/characters/kaylum/front.svg",
  4420. bottom: 0.01,
  4421. extra: 1166 / 1031
  4422. }
  4423. },
  4424. frontWingless: {
  4425. height: math.unit(6, "feet"),
  4426. weight: math.unit(275, "lbs"),
  4427. name: "Front (Wingless)",
  4428. image: {
  4429. source: "./media/characters/kaylum/front-wingless.svg",
  4430. bottom: 0.01,
  4431. extra: 1117 / 1031
  4432. }
  4433. }
  4434. },
  4435. [
  4436. {
  4437. name: "Normal",
  4438. height: math.unit(3.05, "meters")
  4439. },
  4440. {
  4441. name: "Master",
  4442. height: math.unit(5.5, "meters")
  4443. },
  4444. {
  4445. name: "Rampage",
  4446. height: math.unit(19, "meters")
  4447. },
  4448. {
  4449. name: "Macro Lite",
  4450. height: math.unit(37, "meters")
  4451. },
  4452. {
  4453. name: "Hyper Predator",
  4454. height: math.unit(61, "meters")
  4455. },
  4456. {
  4457. name: "Macro",
  4458. height: math.unit(138, "meters"),
  4459. default: true
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(150, "lbs"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/geta/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Micro",
  4478. height: math.unit(3, "inches"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Normal",
  4483. height: math.unit(5 + 5 / 12, "feet")
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(300, "lbs"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/tyrnn/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Main Height",
  4502. height: math.unit(355, "feet"),
  4503. default: true
  4504. },
  4505. {
  4506. name: "Fave. Height",
  4507. height: math.unit(2400, "feet")
  4508. }
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4513. {
  4514. front: {
  4515. height: math.unit(6, "feet"),
  4516. weight: math.unit(300, "lbs"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/appledectomy/front.svg"
  4520. }
  4521. }
  4522. },
  4523. [
  4524. {
  4525. name: "Macro",
  4526. height: math.unit(2500, "feet")
  4527. },
  4528. {
  4529. name: "Megamacro",
  4530. height: math.unit(50, "miles"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "Gigamacro",
  4535. height: math.unit(5000, "miles")
  4536. },
  4537. {
  4538. name: "Teramacro",
  4539. height: math.unit(250000, "miles")
  4540. },
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4545. {
  4546. front: {
  4547. height: math.unit(6, "feet"),
  4548. weight: math.unit(200, "lbs"),
  4549. name: "Front",
  4550. image: {
  4551. source: "./media/characters/vulpes/front.svg",
  4552. extra: 573 / 543,
  4553. bottom: 0.033
  4554. }
  4555. },
  4556. side: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(200, "lbs"),
  4559. name: "Side",
  4560. image: {
  4561. source: "./media/characters/vulpes/side.svg",
  4562. extra: 577 / 549,
  4563. bottom: 11 / 588
  4564. }
  4565. },
  4566. back: {
  4567. height: math.unit(6, "feet"),
  4568. weight: math.unit(200, "lbs"),
  4569. name: "Back",
  4570. image: {
  4571. source: "./media/characters/vulpes/back.svg",
  4572. extra: 573 / 549,
  4573. bottom: 20 / 593
  4574. }
  4575. },
  4576. feet: {
  4577. height: math.unit(1.276, "feet"),
  4578. name: "Feet",
  4579. image: {
  4580. source: "./media/characters/vulpes/feet.svg"
  4581. }
  4582. },
  4583. maw: {
  4584. height: math.unit(1.18, "feet"),
  4585. name: "Maw",
  4586. image: {
  4587. source: "./media/characters/vulpes/maw.svg"
  4588. }
  4589. },
  4590. },
  4591. [
  4592. {
  4593. name: "Micro",
  4594. height: math.unit(2, "inches")
  4595. },
  4596. {
  4597. name: "Normal",
  4598. height: math.unit(6.3, "feet")
  4599. },
  4600. {
  4601. name: "Macro",
  4602. height: math.unit(850, "feet")
  4603. },
  4604. {
  4605. name: "Megamacro",
  4606. height: math.unit(7500, "feet"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "Gigamacro",
  4611. height: math.unit(570000, "miles")
  4612. }
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4617. {
  4618. front: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(210, "lbs"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/front.svg"
  4624. }
  4625. },
  4626. side: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(210, "lbs"),
  4629. name: "Side",
  4630. image: {
  4631. source: "./media/characters/rain-fallen/side.svg"
  4632. }
  4633. },
  4634. back: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(210, "lbs"),
  4637. name: "Back",
  4638. image: {
  4639. source: "./media/characters/rain-fallen/back.svg"
  4640. }
  4641. },
  4642. feral: {
  4643. height: math.unit(9, "feet"),
  4644. weight: math.unit(700, "lbs"),
  4645. name: "Feral",
  4646. image: {
  4647. source: "./media/characters/rain-fallen/feral.svg"
  4648. }
  4649. },
  4650. },
  4651. [
  4652. {
  4653. name: "Meddling with Mortals",
  4654. height: math.unit(8 + 8/12, "feet")
  4655. },
  4656. {
  4657. name: "Normal",
  4658. height: math.unit(5, "meter")
  4659. },
  4660. {
  4661. name: "Macro",
  4662. height: math.unit(150, "meter"),
  4663. default: true
  4664. },
  4665. {
  4666. name: "Megamacro",
  4667. height: math.unit(278e6, "meter")
  4668. },
  4669. {
  4670. name: "Gigamacro",
  4671. height: math.unit(2e9, "meter")
  4672. },
  4673. {
  4674. name: "Teramacro",
  4675. height: math.unit(8e12, "meter")
  4676. },
  4677. {
  4678. name: "Devourer",
  4679. height: math.unit(14, "zettameters")
  4680. },
  4681. {
  4682. name: "Scarlet King",
  4683. height: math.unit(18, "yottameters")
  4684. },
  4685. {
  4686. name: "Void",
  4687. height: math.unit(1e88, "yottameters")
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4693. {
  4694. standing: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(180, "lbs"),
  4697. name: "Standing",
  4698. image: {
  4699. source: "./media/characters/zaakira/standing.svg",
  4700. extra: 1599/1504,
  4701. bottom: 39/1638
  4702. }
  4703. },
  4704. laying: {
  4705. height: math.unit(3, "feet"),
  4706. weight: math.unit(180, "lbs"),
  4707. name: "Laying",
  4708. image: {
  4709. source: "./media/characters/zaakira/laying.svg"
  4710. }
  4711. },
  4712. },
  4713. [
  4714. {
  4715. name: "Normal",
  4716. height: math.unit(12, "feet")
  4717. },
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(279, "feet"),
  4721. default: true
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4727. {
  4728. femSfw: {
  4729. height: math.unit(8, "feet"),
  4730. weight: math.unit(350, "lb"),
  4731. name: "Fem",
  4732. image: {
  4733. source: "./media/characters/sigvald/fem-sfw.svg",
  4734. extra: 182 / 164,
  4735. bottom: 8.7 / 190.5
  4736. }
  4737. },
  4738. femNsfw: {
  4739. height: math.unit(8, "feet"),
  4740. weight: math.unit(350, "lb"),
  4741. name: "Fem (NSFW)",
  4742. image: {
  4743. source: "./media/characters/sigvald/fem-nsfw.svg",
  4744. extra: 182 / 164,
  4745. bottom: 8.7 / 190.5
  4746. }
  4747. },
  4748. maleNsfw: {
  4749. height: math.unit(8, "feet"),
  4750. weight: math.unit(350, "lb"),
  4751. name: "Male (NSFW)",
  4752. image: {
  4753. source: "./media/characters/sigvald/male-nsfw.svg",
  4754. extra: 182 / 164,
  4755. bottom: 8.7 / 190.5
  4756. }
  4757. },
  4758. hermNsfw: {
  4759. height: math.unit(8, "feet"),
  4760. weight: math.unit(350, "lb"),
  4761. name: "Herm (NSFW)",
  4762. image: {
  4763. source: "./media/characters/sigvald/herm-nsfw.svg",
  4764. extra: 182 / 164,
  4765. bottom: 8.7 / 190.5
  4766. }
  4767. },
  4768. dick: {
  4769. height: math.unit(2.36, "feet"),
  4770. name: "Dick",
  4771. image: {
  4772. source: "./media/characters/sigvald/dick.svg"
  4773. }
  4774. },
  4775. eye: {
  4776. height: math.unit(0.31, "feet"),
  4777. name: "Eye",
  4778. image: {
  4779. source: "./media/characters/sigvald/eye.svg"
  4780. }
  4781. },
  4782. mouth: {
  4783. height: math.unit(0.92, "feet"),
  4784. name: "Mouth",
  4785. image: {
  4786. source: "./media/characters/sigvald/mouth.svg"
  4787. }
  4788. },
  4789. paws: {
  4790. height: math.unit(2.2, "feet"),
  4791. name: "Paws",
  4792. image: {
  4793. source: "./media/characters/sigvald/paws.svg"
  4794. }
  4795. }
  4796. },
  4797. [
  4798. {
  4799. name: "Normal",
  4800. height: math.unit(8, "feet")
  4801. },
  4802. {
  4803. name: "Large",
  4804. height: math.unit(12, "feet")
  4805. },
  4806. {
  4807. name: "Larger",
  4808. height: math.unit(20, "feet")
  4809. },
  4810. {
  4811. name: "Macro",
  4812. height: math.unit(150, "feet")
  4813. },
  4814. {
  4815. name: "Macro+",
  4816. height: math.unit(200, "feet"),
  4817. default: true
  4818. },
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4823. {
  4824. side: {
  4825. height: math.unit(12, "feet"),
  4826. weight: math.unit(2000, "kg"),
  4827. name: "Side",
  4828. image: {
  4829. source: "./media/characters/scott/side.svg",
  4830. extra: 754 / 724,
  4831. bottom: 0.069
  4832. }
  4833. },
  4834. upright: {
  4835. height: math.unit(12, "feet"),
  4836. weight: math.unit(2000, "kg"),
  4837. name: "Upright",
  4838. image: {
  4839. source: "./media/characters/scott/upright.svg",
  4840. extra: 3881 / 3722,
  4841. bottom: 0.05
  4842. }
  4843. },
  4844. },
  4845. [
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(12, "feet"),
  4849. default: true
  4850. },
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4855. {
  4856. side: {
  4857. height: math.unit(8, "meters"),
  4858. weight: math.unit(84755, "lbs"),
  4859. name: "Side",
  4860. image: {
  4861. source: "./media/characters/tobias/side.svg",
  4862. extra: 1474 / 1096,
  4863. bottom: 38.9 / 1513.1235
  4864. }
  4865. },
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(8, "meters"),
  4871. default: true
  4872. },
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4877. {
  4878. front: {
  4879. height: math.unit(5.5, "feet"),
  4880. weight: math.unit(400, "lbs"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/kieran/front.svg",
  4884. extra: 2694 / 2364,
  4885. bottom: 217 / 2908
  4886. }
  4887. },
  4888. side: {
  4889. height: math.unit(5.5, "feet"),
  4890. weight: math.unit(400, "lbs"),
  4891. name: "Side",
  4892. image: {
  4893. source: "./media/characters/kieran/side.svg",
  4894. extra: 875 / 777,
  4895. bottom: 84.6 / 959
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(5.5, "feet"),
  4903. default: true
  4904. },
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4909. {
  4910. side: {
  4911. height: math.unit(2, "meters"),
  4912. weight: math.unit(70, "kg"),
  4913. name: "Side",
  4914. image: {
  4915. source: "./media/characters/sanya/side.svg",
  4916. bottom: 0.02,
  4917. extra: 1.02
  4918. }
  4919. },
  4920. },
  4921. [
  4922. {
  4923. name: "Small",
  4924. height: math.unit(2, "meters")
  4925. },
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(3, "meters")
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(16, "meters"),
  4933. default: true
  4934. },
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4939. {
  4940. front: {
  4941. height: math.unit(2, "meters"),
  4942. weight: math.unit(120, "kg"),
  4943. name: "Front",
  4944. image: {
  4945. source: "./media/characters/miranda/front.svg",
  4946. extra: 195 / 185,
  4947. bottom: 10.9 / 206.5
  4948. }
  4949. },
  4950. back: {
  4951. height: math.unit(2, "meters"),
  4952. weight: math.unit(120, "kg"),
  4953. name: "Back",
  4954. image: {
  4955. source: "./media/characters/miranda/back.svg",
  4956. extra: 201 / 193,
  4957. bottom: 2.3 / 203.7
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(10, "feet"),
  4965. default: true
  4966. }
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "James", species: ["deer"], tags: ["anthro"] },
  4971. {
  4972. side: {
  4973. height: math.unit(2, "meters"),
  4974. weight: math.unit(100, "kg"),
  4975. name: "Front",
  4976. image: {
  4977. source: "./media/characters/james/front.svg",
  4978. extra: 10 / 8.5
  4979. }
  4980. },
  4981. },
  4982. [
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(8.5, "feet"),
  4986. default: true
  4987. }
  4988. ]
  4989. ))
  4990. characterMakers.push(() => makeCharacter(
  4991. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4992. {
  4993. side: {
  4994. height: math.unit(9.5, "feet"),
  4995. weight: math.unit(2500, "lbs"),
  4996. name: "Side",
  4997. image: {
  4998. source: "./media/characters/heather/side.svg"
  4999. }
  5000. },
  5001. },
  5002. [
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(9.5, "feet"),
  5006. default: true
  5007. }
  5008. ]
  5009. ))
  5010. characterMakers.push(() => makeCharacter(
  5011. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5012. {
  5013. side: {
  5014. height: math.unit(6.5, "feet"),
  5015. weight: math.unit(400, "lbs"),
  5016. name: "Side",
  5017. image: {
  5018. source: "./media/characters/lukas/side.svg",
  5019. extra: 7.25 / 6.5
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(6.5, "feet"),
  5027. default: true
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5033. {
  5034. side: {
  5035. height: math.unit(5, "feet"),
  5036. weight: math.unit(3000, "lbs"),
  5037. name: "Side",
  5038. image: {
  5039. source: "./media/characters/louise/side.svg"
  5040. }
  5041. },
  5042. },
  5043. [
  5044. {
  5045. name: "Normal",
  5046. height: math.unit(5, "feet"),
  5047. default: true
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5053. {
  5054. side: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(150, "lbs"),
  5057. name: "Side",
  5058. image: {
  5059. source: "./media/characters/ramona/side.svg"
  5060. }
  5061. },
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(5.3, "meters"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(20, "stories")
  5072. },
  5073. {
  5074. name: "Macro+",
  5075. height: math.unit(50, "stories")
  5076. },
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5081. {
  5082. standing: {
  5083. height: math.unit(5.75, "feet"),
  5084. weight: math.unit(160, "lbs"),
  5085. name: "Standing",
  5086. image: {
  5087. source: "./media/characters/deerpuff/standing.svg",
  5088. extra: 682 / 624
  5089. }
  5090. },
  5091. sitting: {
  5092. height: math.unit(5.75 / 1.79, "feet"),
  5093. weight: math.unit(160, "lbs"),
  5094. name: "Sitting",
  5095. image: {
  5096. source: "./media/characters/deerpuff/sitting.svg",
  5097. bottom: 44 / 400,
  5098. extra: 1
  5099. }
  5100. },
  5101. taurLaying: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(400, "lbs"),
  5104. name: "Taur (Laying)",
  5105. image: {
  5106. source: "./media/characters/deerpuff/taur-laying.svg"
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Puffball",
  5113. height: math.unit(6, "inches")
  5114. },
  5115. {
  5116. name: "Normalpuff",
  5117. height: math.unit(5.75, "feet")
  5118. },
  5119. {
  5120. name: "Macropuff",
  5121. height: math.unit(1500, "feet"),
  5122. default: true
  5123. },
  5124. {
  5125. name: "Megapuff",
  5126. height: math.unit(500, "miles")
  5127. },
  5128. {
  5129. name: "Gigapuff",
  5130. height: math.unit(250000, "miles")
  5131. },
  5132. {
  5133. name: "Omegapuff",
  5134. height: math.unit(1000, "lightyears")
  5135. },
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5140. {
  5141. stomping: {
  5142. height: math.unit(6, "feet"),
  5143. weight: math.unit(170, "lbs"),
  5144. name: "Stomping",
  5145. image: {
  5146. source: "./media/characters/vivian/stomping.svg"
  5147. }
  5148. },
  5149. sitting: {
  5150. height: math.unit(6 / 1.75, "feet"),
  5151. weight: math.unit(170, "lbs"),
  5152. name: "Sitting",
  5153. image: {
  5154. source: "./media/characters/vivian/sitting.svg",
  5155. bottom: 1 / 6.4,
  5156. extra: 1,
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(7, "feet"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Macro",
  5168. height: math.unit(10, "stories")
  5169. },
  5170. {
  5171. name: "Macro+",
  5172. height: math.unit(30, "stories")
  5173. },
  5174. {
  5175. name: "Megamacro",
  5176. height: math.unit(10, "miles")
  5177. },
  5178. {
  5179. name: "Megamacro+",
  5180. height: math.unit(2750000, "meters")
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5186. {
  5187. front: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(160, "lbs"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/prince/front.svg",
  5193. extra: 3400 / 3000
  5194. }
  5195. },
  5196. jumping: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(160, "lbs"),
  5199. name: "Jumping",
  5200. image: {
  5201. source: "./media/characters/prince/jump.svg",
  5202. extra: 2555 / 2134
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(7.75, "feet"),
  5210. default: true
  5211. },
  5212. {
  5213. name: "Not cute",
  5214. height: math.unit(17, "feet")
  5215. },
  5216. {
  5217. name: "I said NOT",
  5218. height: math.unit(91, "feet")
  5219. },
  5220. {
  5221. name: "Please stop",
  5222. height: math.unit(560, "feet")
  5223. },
  5224. {
  5225. name: "What have you done",
  5226. height: math.unit(2200, "feet")
  5227. },
  5228. {
  5229. name: "Deer God",
  5230. height: math.unit(3.6, "miles")
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5236. {
  5237. standing: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(300, "lbs"),
  5240. name: "Standing",
  5241. image: {
  5242. source: "./media/characters/psymon/standing.svg",
  5243. extra: 1888 / 1810,
  5244. bottom: 0.05
  5245. }
  5246. },
  5247. slithering: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(300, "lbs"),
  5250. name: "Slithering",
  5251. image: {
  5252. source: "./media/characters/psymon/slithering.svg",
  5253. extra: 1330 / 1224
  5254. }
  5255. },
  5256. slitheringAlt: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(300, "lbs"),
  5259. name: "Slithering (Alt)",
  5260. image: {
  5261. source: "./media/characters/psymon/slithering-alt.svg",
  5262. extra: 1330 / 1224
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(11.25, "feet"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Large",
  5274. height: math.unit(27, "feet")
  5275. },
  5276. {
  5277. name: "Giant",
  5278. height: math.unit(87, "feet")
  5279. },
  5280. {
  5281. name: "Macro",
  5282. height: math.unit(365, "feet")
  5283. },
  5284. {
  5285. name: "Megamacro",
  5286. height: math.unit(3, "miles")
  5287. },
  5288. {
  5289. name: "World Serpent",
  5290. height: math.unit(8000, "miles")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(180, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/daimos/front.svg",
  5303. extra: 4160 / 3897,
  5304. bottom: 0.021
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Normal",
  5311. height: math.unit(8, "feet"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Big Dog",
  5316. height: math.unit(22, "feet")
  5317. },
  5318. {
  5319. name: "Macro",
  5320. height: math.unit(127, "feet")
  5321. },
  5322. {
  5323. name: "Megamacro",
  5324. height: math.unit(3600, "feet")
  5325. },
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5330. {
  5331. side: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(180, "lbs"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/blake/side.svg",
  5337. extra: 1212 / 1120,
  5338. bottom: 0.05
  5339. }
  5340. },
  5341. crouched: {
  5342. height: math.unit(6 * 0.57, "feet"),
  5343. weight: math.unit(180, "lbs"),
  5344. name: "Crouched",
  5345. image: {
  5346. source: "./media/characters/blake/crouched.svg",
  5347. extra: 840 / 587,
  5348. bottom: 0.04
  5349. }
  5350. },
  5351. bent: {
  5352. height: math.unit(6 * 0.75, "feet"),
  5353. weight: math.unit(180, "lbs"),
  5354. name: "Bent",
  5355. image: {
  5356. source: "./media/characters/blake/bent.svg",
  5357. extra: 592 / 544,
  5358. bottom: 0.035
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(8 + 1 / 6, "feet"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Big Backside",
  5370. height: math.unit(37, "feet")
  5371. },
  5372. {
  5373. name: "Subway Shredder",
  5374. height: math.unit(72, "feet")
  5375. },
  5376. {
  5377. name: "City Carver",
  5378. height: math.unit(1675, "feet")
  5379. },
  5380. {
  5381. name: "Tectonic Tweaker",
  5382. height: math.unit(2300, "miles")
  5383. },
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5388. {
  5389. front: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(180, "lbs"),
  5392. name: "Front",
  5393. image: {
  5394. source: "./media/characters/guisetto/front.svg",
  5395. extra: 856 / 817,
  5396. bottom: 0.06
  5397. }
  5398. },
  5399. airborne: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(180, "lbs"),
  5402. name: "Airborne",
  5403. image: {
  5404. source: "./media/characters/guisetto/airborne.svg",
  5405. extra: 584 / 525
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(10 + 11 / 12, "feet"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Large",
  5417. height: math.unit(35, "feet")
  5418. },
  5419. {
  5420. name: "Macro",
  5421. height: math.unit(475, "feet")
  5422. },
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(180, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/luxor/front.svg",
  5434. extra: 2940 / 2152
  5435. }
  5436. },
  5437. back: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(180, "lbs"),
  5440. name: "Back",
  5441. image: {
  5442. source: "./media/characters/luxor/back.svg",
  5443. extra: 1083 / 960
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(5 + 5 / 6, "feet"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Lamp",
  5455. height: math.unit(50, "feet")
  5456. },
  5457. {
  5458. name: "Lämp",
  5459. height: math.unit(300, "feet")
  5460. },
  5461. {
  5462. name: "The sun is a lamp",
  5463. height: math.unit(250000, "miles")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(50, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/huoyan/front.svg"
  5476. }
  5477. },
  5478. side: {
  5479. height: math.unit(6, "feet"),
  5480. weight: math.unit(180, "lbs"),
  5481. name: "Side",
  5482. image: {
  5483. source: "./media/characters/huoyan/side.svg"
  5484. }
  5485. },
  5486. },
  5487. [
  5488. {
  5489. name: "Chef",
  5490. height: math.unit(9, "feet")
  5491. },
  5492. {
  5493. name: "Normal",
  5494. height: math.unit(65, "feet"),
  5495. default: true
  5496. },
  5497. {
  5498. name: "Macro",
  5499. height: math.unit(780, "feet")
  5500. },
  5501. {
  5502. name: "Flaming Mountain",
  5503. height: math.unit(4.8, "miles")
  5504. },
  5505. {
  5506. name: "Celestial",
  5507. height: math.unit(765000, "miles")
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(5 + 3 / 4, "feet"),
  5516. weight: math.unit(120, "lbs"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/tails/front.svg"
  5520. }
  5521. }
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(5 + 3 / 4, "feet"),
  5527. default: true
  5528. }
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(4, "feet"),
  5536. weight: math.unit(50, "lbs"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/rainy/front.svg"
  5540. }
  5541. }
  5542. },
  5543. [
  5544. {
  5545. name: "Macro",
  5546. height: math.unit(800, "feet"),
  5547. default: true
  5548. }
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(150, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/rainier/front.svg"
  5560. }
  5561. }
  5562. },
  5563. [
  5564. {
  5565. name: "Micro",
  5566. height: math.unit(2, "mm"),
  5567. default: true
  5568. }
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(8 + 4/12, "feet"),
  5576. name: "Front",
  5577. image: {
  5578. source: "./media/characters/andy-renard/front.svg",
  5579. extra: 1839/1726,
  5580. bottom: 134/1973
  5581. }
  5582. },
  5583. back: {
  5584. height: math.unit(8 + 4/12, "feet"),
  5585. name: "Back",
  5586. image: {
  5587. source: "./media/characters/andy-renard/back.svg",
  5588. extra: 1838/1710,
  5589. bottom: 105/1943
  5590. }
  5591. },
  5592. },
  5593. [
  5594. {
  5595. name: "Tall",
  5596. height: math.unit(8 + 4/12, "feet")
  5597. },
  5598. {
  5599. name: "Mini Macro",
  5600. height: math.unit(15, "feet"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Macro",
  5605. height: math.unit(100, "feet")
  5606. },
  5607. {
  5608. name: "Mega Macro",
  5609. height: math.unit(1000, "feet")
  5610. },
  5611. {
  5612. name: "Giga Macro",
  5613. height: math.unit(10, "miles")
  5614. },
  5615. {
  5616. name: "God Macro",
  5617. height: math.unit(1, "multiverse")
  5618. },
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(210, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/cimmaron/front-sfw.svg",
  5630. extra: 701 / 676,
  5631. bottom: 0.046
  5632. }
  5633. },
  5634. back: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(210, "lbs"),
  5637. name: "Back",
  5638. image: {
  5639. source: "./media/characters/cimmaron/back-sfw.svg",
  5640. extra: 701 / 676,
  5641. bottom: 0.046
  5642. }
  5643. },
  5644. frontNsfw: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(210, "lbs"),
  5647. name: "Front (NSFW)",
  5648. image: {
  5649. source: "./media/characters/cimmaron/front-nsfw.svg",
  5650. extra: 701 / 676,
  5651. bottom: 0.046
  5652. }
  5653. },
  5654. backNsfw: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(210, "lbs"),
  5657. name: "Back (NSFW)",
  5658. image: {
  5659. source: "./media/characters/cimmaron/back-nsfw.svg",
  5660. extra: 701 / 676,
  5661. bottom: 0.046
  5662. }
  5663. },
  5664. dick: {
  5665. height: math.unit(1.714, "feet"),
  5666. name: "Dick",
  5667. image: {
  5668. source: "./media/characters/cimmaron/dick.svg"
  5669. }
  5670. },
  5671. },
  5672. [
  5673. {
  5674. name: "Normal",
  5675. height: math.unit(6, "feet"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "Macro Mayor",
  5680. height: math.unit(350, "meters")
  5681. },
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(200, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/akari/front.svg",
  5693. extra: 962 / 901,
  5694. bottom: 0.04
  5695. }
  5696. }
  5697. },
  5698. [
  5699. {
  5700. name: "Micro",
  5701. height: math.unit(5, "inches"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Normal",
  5706. height: math.unit(7, "feet")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(140, "lbs"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/cynosura/front.svg",
  5719. extra: 896 / 847
  5720. }
  5721. },
  5722. back: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(140, "lbs"),
  5725. name: "Back",
  5726. image: {
  5727. source: "./media/characters/cynosura/back.svg",
  5728. extra: 1365 / 1250
  5729. }
  5730. },
  5731. },
  5732. [
  5733. {
  5734. name: "Micro",
  5735. height: math.unit(4, "inches")
  5736. },
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(5.75, "feet"),
  5740. default: true
  5741. },
  5742. {
  5743. name: "Tall",
  5744. height: math.unit(10, "feet")
  5745. },
  5746. {
  5747. name: "Big",
  5748. height: math.unit(20, "feet")
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(50, "feet")
  5753. },
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5758. {
  5759. front: {
  5760. height: math.unit(13 + 2/12, "feet"),
  5761. weight: math.unit(800, "kg"),
  5762. name: "Front",
  5763. image: {
  5764. source: "./media/characters/gin/front.svg",
  5765. extra: 1312/1191,
  5766. bottom: 45/1357
  5767. }
  5768. },
  5769. mouth: {
  5770. height: math.unit(2.39 * 1.8, "feet"),
  5771. name: "Mouth",
  5772. image: {
  5773. source: "./media/characters/gin/mouth.svg"
  5774. }
  5775. },
  5776. hand: {
  5777. height: math.unit(1.57 * 2.19, "feet"),
  5778. name: "Hand",
  5779. image: {
  5780. source: "./media/characters/gin/hand.svg"
  5781. }
  5782. },
  5783. foot: {
  5784. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5785. name: "Foot",
  5786. image: {
  5787. source: "./media/characters/gin/foot.svg"
  5788. }
  5789. },
  5790. sole: {
  5791. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5792. name: "Sole",
  5793. image: {
  5794. source: "./media/characters/gin/sole.svg"
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Very Small",
  5801. height: math.unit(13 + 2 / 12, "feet")
  5802. },
  5803. {
  5804. name: "Micro",
  5805. height: math.unit(600, "miles")
  5806. },
  5807. {
  5808. name: "Regular",
  5809. height: math.unit(20, "earths"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(2.2, "solarradii")
  5815. },
  5816. {
  5817. name: "Teramacro",
  5818. height: math.unit(1.2, "galaxies")
  5819. },
  5820. {
  5821. name: "Omegamacro",
  5822. height: math.unit(200, "universes")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(6 + 1 / 6, "feet"),
  5831. weight: math.unit(178, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/guy/front.svg"
  5835. }
  5836. }
  5837. },
  5838. [
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(6 + 1 / 6, "feet"),
  5842. default: true
  5843. },
  5844. {
  5845. name: "Large",
  5846. height: math.unit(25 + 7 / 12, "feet")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(60 + 9 / 12, "feet")
  5851. },
  5852. {
  5853. name: "Macro+",
  5854. height: math.unit(246, "feet")
  5855. },
  5856. {
  5857. name: "Macro++",
  5858. height: math.unit(878, "feet")
  5859. }
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5864. {
  5865. front: {
  5866. height: math.unit(9, "feet"),
  5867. weight: math.unit(800, "lbs"),
  5868. name: "Front",
  5869. image: {
  5870. source: "./media/characters/tiberius/front.svg",
  5871. extra: 2295 / 2071
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(9, "feet"),
  5876. weight: math.unit(800, "lbs"),
  5877. name: "Back",
  5878. image: {
  5879. source: "./media/characters/tiberius/back.svg",
  5880. extra: 2373 / 2160
  5881. }
  5882. },
  5883. },
  5884. [
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(9, "feet"),
  5888. default: true
  5889. }
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5894. {
  5895. front: {
  5896. height: math.unit(6, "feet"),
  5897. weight: math.unit(600, "lbs"),
  5898. name: "Front",
  5899. image: {
  5900. source: "./media/characters/surgo/front.svg",
  5901. extra: 3591 / 2227
  5902. }
  5903. },
  5904. back: {
  5905. height: math.unit(6, "feet"),
  5906. weight: math.unit(600, "lbs"),
  5907. name: "Back",
  5908. image: {
  5909. source: "./media/characters/surgo/back.svg",
  5910. extra: 3557 / 2228
  5911. }
  5912. },
  5913. laying: {
  5914. height: math.unit(6 * 0.85, "feet"),
  5915. weight: math.unit(600, "lbs"),
  5916. name: "Laying",
  5917. image: {
  5918. source: "./media/characters/surgo/laying.svg"
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(6, "feet"),
  5926. default: true
  5927. }
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5932. {
  5933. side: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(150, "lbs"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/cibus/side.svg",
  5939. extra: 800 / 400
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(6, "feet"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(240, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/nibbles/front.svg"
  5960. }
  5961. },
  5962. side: {
  5963. height: math.unit(6, "feet"),
  5964. weight: math.unit(240, "lbs"),
  5965. name: "Side",
  5966. image: {
  5967. source: "./media/characters/nibbles/side.svg"
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(9, "feet"),
  5975. default: true
  5976. }
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5981. {
  5982. side: {
  5983. height: math.unit(5 + 1 / 6, "feet"),
  5984. weight: math.unit(130, "lbs"),
  5985. name: "Side",
  5986. image: {
  5987. source: "./media/characters/rikky/side.svg",
  5988. extra: 851 / 801
  5989. }
  5990. },
  5991. },
  5992. [
  5993. {
  5994. name: "Normal",
  5995. height: math.unit(5 + 1 / 6, "feet")
  5996. },
  5997. {
  5998. name: "Macro",
  5999. height: math.unit(152, "feet"),
  6000. default: true
  6001. },
  6002. {
  6003. name: "Megamacro",
  6004. height: math.unit(7, "miles")
  6005. }
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6010. {
  6011. side: {
  6012. height: math.unit(370, "cm"),
  6013. weight: math.unit(350, "lbs"),
  6014. name: "Side",
  6015. image: {
  6016. source: "./media/characters/malfressa/side.svg"
  6017. }
  6018. },
  6019. walking: {
  6020. height: math.unit(370, "cm"),
  6021. weight: math.unit(350, "lbs"),
  6022. name: "Walking",
  6023. image: {
  6024. source: "./media/characters/malfressa/walking.svg"
  6025. }
  6026. },
  6027. feral: {
  6028. height: math.unit(2500, "cm"),
  6029. weight: math.unit(100000, "lbs"),
  6030. name: "Feral",
  6031. image: {
  6032. source: "./media/characters/malfressa/feral.svg",
  6033. extra: 2108 / 837,
  6034. bottom: 0.02
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(370, "cm")
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(300, "meters"),
  6046. default: true
  6047. }
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6052. {
  6053. front: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(60, "kg"),
  6056. name: "Front",
  6057. image: {
  6058. source: "./media/characters/jaro/front.svg"
  6059. }
  6060. },
  6061. back: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(60, "kg"),
  6064. name: "Back",
  6065. image: {
  6066. source: "./media/characters/jaro/back.svg"
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Micro",
  6073. height: math.unit(7, "inches")
  6074. },
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(5.5, "feet"),
  6078. default: true
  6079. },
  6080. {
  6081. name: "Minimacro",
  6082. height: math.unit(20, "feet")
  6083. },
  6084. {
  6085. name: "Macro",
  6086. height: math.unit(200, "meters")
  6087. }
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(195, "lb"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/rogue/front.svg"
  6099. }
  6100. },
  6101. },
  6102. [
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(90, "feet"),
  6106. default: true
  6107. },
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(5 + 8 / 12, "feet"),
  6115. weight: math.unit(140, "lb"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/piper/front.svg",
  6119. extra: 3948/3655,
  6120. bottom: 0/3948
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Micro",
  6127. height: math.unit(2, "inches")
  6128. },
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(5 + 8 / 12, "feet")
  6132. },
  6133. {
  6134. name: "Macro",
  6135. height: math.unit(250, "feet"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Megamacro",
  6140. height: math.unit(7, "miles")
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(220, "lb"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/gemini/front.svg"
  6153. }
  6154. },
  6155. back: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(220, "lb"),
  6158. name: "Back",
  6159. image: {
  6160. source: "./media/characters/gemini/back.svg"
  6161. }
  6162. },
  6163. kneeling: {
  6164. height: math.unit(6 / 1.5, "feet"),
  6165. weight: math.unit(220, "lb"),
  6166. name: "Kneeling",
  6167. image: {
  6168. source: "./media/characters/gemini/kneeling.svg",
  6169. bottom: 0.02
  6170. }
  6171. },
  6172. },
  6173. [
  6174. {
  6175. name: "Macro",
  6176. height: math.unit(300, "meters"),
  6177. default: true
  6178. },
  6179. {
  6180. name: "Megamacro",
  6181. height: math.unit(6900, "meters")
  6182. },
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6187. {
  6188. anthro: {
  6189. height: math.unit(2.35, "meters"),
  6190. weight: math.unit(73, "kg"),
  6191. name: "Anthro",
  6192. image: {
  6193. source: "./media/characters/alicia/anthro.svg",
  6194. extra: 2571 / 2385,
  6195. bottom: 75 / 2648
  6196. }
  6197. },
  6198. paw: {
  6199. height: math.unit(1.32, "feet"),
  6200. name: "Paw",
  6201. image: {
  6202. source: "./media/characters/alicia/paw.svg"
  6203. }
  6204. },
  6205. feral: {
  6206. height: math.unit(1.69, "meters"),
  6207. weight: math.unit(73, "kg"),
  6208. name: "Feral",
  6209. image: {
  6210. source: "./media/characters/alicia/feral.svg",
  6211. extra: 2123 / 1715,
  6212. bottom: 222 / 2349
  6213. }
  6214. },
  6215. },
  6216. [
  6217. {
  6218. name: "Normal",
  6219. height: math.unit(2.35, "meters")
  6220. },
  6221. {
  6222. name: "Macro",
  6223. height: math.unit(60, "meters"),
  6224. default: true
  6225. },
  6226. {
  6227. name: "Megamacro",
  6228. height: math.unit(10000, "kilometers")
  6229. },
  6230. ]
  6231. ))
  6232. characterMakers.push(() => makeCharacter(
  6233. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6234. {
  6235. front: {
  6236. height: math.unit(7, "feet"),
  6237. weight: math.unit(250, "lbs"),
  6238. name: "Front",
  6239. image: {
  6240. source: "./media/characters/archy/front.svg"
  6241. }
  6242. }
  6243. },
  6244. [
  6245. {
  6246. name: "Micro",
  6247. height: math.unit(1, "inch")
  6248. },
  6249. {
  6250. name: "Shorty",
  6251. height: math.unit(5, "feet")
  6252. },
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(7, "feet")
  6256. },
  6257. {
  6258. name: "Macro",
  6259. height: math.unit(600, "meters"),
  6260. default: true
  6261. },
  6262. {
  6263. name: "Megamacro",
  6264. height: math.unit(1, "mile")
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(1.65, "meters"),
  6273. weight: math.unit(74, "kg"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/berri/front.svg",
  6277. extra: 857 / 837,
  6278. bottom: 18 / 877
  6279. }
  6280. },
  6281. bum: {
  6282. height: math.unit(1.46, "feet"),
  6283. name: "Bum",
  6284. image: {
  6285. source: "./media/characters/berri/bum.svg"
  6286. }
  6287. },
  6288. mouth: {
  6289. height: math.unit(0.44, "feet"),
  6290. name: "Mouth",
  6291. image: {
  6292. source: "./media/characters/berri/mouth.svg"
  6293. }
  6294. },
  6295. paw: {
  6296. height: math.unit(0.826, "feet"),
  6297. name: "Paw",
  6298. image: {
  6299. source: "./media/characters/berri/paw.svg"
  6300. }
  6301. },
  6302. },
  6303. [
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(1.65, "meters")
  6307. },
  6308. {
  6309. name: "Macro",
  6310. height: math.unit(60, "m"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Megamacro",
  6315. height: math.unit(9.213, "km")
  6316. },
  6317. {
  6318. name: "Planet Eater",
  6319. height: math.unit(489, "megameters")
  6320. },
  6321. {
  6322. name: "Teramacro",
  6323. height: math.unit(2471635000000, "meters")
  6324. },
  6325. {
  6326. name: "Examacro",
  6327. height: math.unit(8.0624e+26, "meters")
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6333. {
  6334. front: {
  6335. height: math.unit(1.72, "meters"),
  6336. weight: math.unit(68, "kg"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/lexi/front.svg"
  6340. }
  6341. }
  6342. },
  6343. [
  6344. {
  6345. name: "Very Smol",
  6346. height: math.unit(10, "mm")
  6347. },
  6348. {
  6349. name: "Micro",
  6350. height: math.unit(6.8, "cm"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Normal",
  6355. height: math.unit(1.72, "m")
  6356. }
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(1.69, "meters"),
  6364. weight: math.unit(68, "kg"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/martin/front.svg",
  6368. extra: 596 / 581
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(6.85, "cm"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(1.69, "m")
  6381. }
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(1.69, "meters"),
  6389. weight: math.unit(68, "kg"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/juno/front.svg"
  6393. }
  6394. }
  6395. },
  6396. [
  6397. {
  6398. name: "Micro",
  6399. height: math.unit(7, "cm")
  6400. },
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(1.89, "m")
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(353, "meters"),
  6408. default: true
  6409. }
  6410. ]
  6411. ))
  6412. characterMakers.push(() => makeCharacter(
  6413. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6414. {
  6415. front: {
  6416. height: math.unit(1.93, "meters"),
  6417. weight: math.unit(83, "kg"),
  6418. name: "Front",
  6419. image: {
  6420. source: "./media/characters/samantha/front.svg"
  6421. }
  6422. },
  6423. frontClothed: {
  6424. height: math.unit(1.93, "meters"),
  6425. weight: math.unit(83, "kg"),
  6426. name: "Front (Clothed)",
  6427. image: {
  6428. source: "./media/characters/samantha/front-clothed.svg"
  6429. }
  6430. },
  6431. back: {
  6432. height: math.unit(1.93, "meters"),
  6433. weight: math.unit(83, "kg"),
  6434. name: "Back",
  6435. image: {
  6436. source: "./media/characters/samantha/back.svg"
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(1.93, "m")
  6444. },
  6445. {
  6446. name: "Macro",
  6447. height: math.unit(74, "meters"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Macro+",
  6452. height: math.unit(223, "meters"),
  6453. },
  6454. {
  6455. name: "Megamacro",
  6456. height: math.unit(8381, "meters"),
  6457. },
  6458. {
  6459. name: "Megamacro+",
  6460. height: math.unit(12000, "kilometers")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(1.92, "meters"),
  6469. weight: math.unit(80, "kg"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/dr-clay/front.svg"
  6473. }
  6474. },
  6475. frontClothed: {
  6476. height: math.unit(1.92, "meters"),
  6477. weight: math.unit(80, "kg"),
  6478. name: "Front (Clothed)",
  6479. image: {
  6480. source: "./media/characters/dr-clay/front-clothed.svg"
  6481. }
  6482. }
  6483. },
  6484. [
  6485. {
  6486. name: "Normal",
  6487. height: math.unit(1.92, "m")
  6488. },
  6489. {
  6490. name: "Macro",
  6491. height: math.unit(214, "meters"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Macro+",
  6496. height: math.unit(12.237, "meters"),
  6497. },
  6498. {
  6499. name: "Megamacro",
  6500. height: math.unit(557, "megameters"),
  6501. },
  6502. {
  6503. name: "Unimaginable",
  6504. height: math.unit(120e9, "lightyears")
  6505. },
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6510. {
  6511. front: {
  6512. height: math.unit(2, "meters"),
  6513. weight: math.unit(80, "kg"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6517. }
  6518. }
  6519. },
  6520. [
  6521. {
  6522. name: "Teramacro",
  6523. height: math.unit(500000, "lightyears"),
  6524. default: true
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6530. {
  6531. crux: {
  6532. height: math.unit(2, "meters"),
  6533. weight: math.unit(150, "kg"),
  6534. name: "Crux",
  6535. image: {
  6536. source: "./media/characters/vemus/crux.svg",
  6537. extra: 1074/936,
  6538. bottom: 23/1097
  6539. }
  6540. },
  6541. skunkTanuki: {
  6542. height: math.unit(2, "meters"),
  6543. weight: math.unit(150, "kg"),
  6544. name: "Skunk-Tanuki",
  6545. image: {
  6546. source: "./media/characters/vemus/skunk-tanuki.svg",
  6547. extra: 926/893,
  6548. bottom: 20/946
  6549. }
  6550. },
  6551. },
  6552. [
  6553. {
  6554. name: "Normal",
  6555. height: math.unit(3.75, "meters"),
  6556. default: true
  6557. },
  6558. {
  6559. name: "Big",
  6560. height: math.unit(8, "meters")
  6561. },
  6562. {
  6563. name: "Macro",
  6564. height: math.unit(100, "meters")
  6565. },
  6566. {
  6567. name: "Macro+",
  6568. height: math.unit(1500, "meters")
  6569. },
  6570. {
  6571. name: "Stellar",
  6572. height: math.unit(14e8, "meters")
  6573. },
  6574. ]
  6575. ))
  6576. characterMakers.push(() => makeCharacter(
  6577. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6578. {
  6579. front: {
  6580. height: math.unit(2, "meters"),
  6581. weight: math.unit(70, "kg"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/beherit/front.svg",
  6585. extra: 1408 / 1242
  6586. }
  6587. }
  6588. },
  6589. [
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(6, "feet")
  6593. },
  6594. {
  6595. name: "Lorg",
  6596. height: math.unit(25, "feet"),
  6597. default: true
  6598. },
  6599. {
  6600. name: "Lorger",
  6601. height: math.unit(75, "feet")
  6602. },
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(200, "meters")
  6606. },
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(2, "meters"),
  6614. weight: math.unit(150, "kg"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/everett/front.svg",
  6618. extra: 2038 / 1737,
  6619. bottom: 0.03
  6620. }
  6621. },
  6622. paw: {
  6623. height: math.unit(2 / 3.6, "meters"),
  6624. name: "Paw",
  6625. image: {
  6626. source: "./media/characters/everett/paw.svg"
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Normal",
  6633. height: math.unit(15, "feet"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Lorg",
  6638. height: math.unit(70, "feet"),
  6639. default: true
  6640. },
  6641. {
  6642. name: "Lorger",
  6643. height: math.unit(250, "feet")
  6644. },
  6645. {
  6646. name: "Macro",
  6647. height: math.unit(500, "meters")
  6648. },
  6649. ]
  6650. ))
  6651. characterMakers.push(() => makeCharacter(
  6652. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6653. {
  6654. front: {
  6655. height: math.unit(2, "meters"),
  6656. weight: math.unit(86, "kg"),
  6657. name: "Front",
  6658. image: {
  6659. source: "./media/characters/rose/front.svg",
  6660. extra: 1785/1636,
  6661. bottom: 30/1815
  6662. }
  6663. },
  6664. frontSporty: {
  6665. height: math.unit(2, "meters"),
  6666. weight: math.unit(86, "kg"),
  6667. name: "Front (Sporty)",
  6668. image: {
  6669. source: "./media/characters/rose/front-sporty.svg",
  6670. extra: 350/335,
  6671. bottom: 10/360
  6672. }
  6673. },
  6674. frontAlt: {
  6675. height: math.unit(1.6, "meters"),
  6676. weight: math.unit(86, "kg"),
  6677. name: "Front (Alt)",
  6678. image: {
  6679. source: "./media/characters/rose/front-alt.svg",
  6680. extra: 299/283,
  6681. bottom: 3/302
  6682. }
  6683. },
  6684. plush: {
  6685. height: math.unit(2, "meters"),
  6686. weight: math.unit(86/3, "kg"),
  6687. name: "Plush",
  6688. image: {
  6689. source: "./media/characters/rose/plush.svg",
  6690. extra: 361/337,
  6691. bottom: 11/372
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "True Micro",
  6698. height: math.unit(9, "cm")
  6699. },
  6700. {
  6701. name: "Micro",
  6702. height: math.unit(16, "cm")
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(1.85, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Mini-Macro",
  6711. height: math.unit(5, "meters")
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(15, "meters")
  6716. },
  6717. {
  6718. name: "True Macro",
  6719. height: math.unit(40, "meters")
  6720. },
  6721. {
  6722. name: "City Scale",
  6723. height: math.unit(1, "km")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(2, "meters"),
  6732. weight: math.unit(350, "lbs"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/regal/front.svg"
  6736. }
  6737. },
  6738. back: {
  6739. height: math.unit(2, "meters"),
  6740. weight: math.unit(350, "lbs"),
  6741. name: "Back",
  6742. image: {
  6743. source: "./media/characters/regal/back.svg"
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(350, "feet"),
  6751. default: true
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(4 + 11 / 12, "feet"),
  6760. weight: math.unit(100, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/opal/front.svg"
  6764. }
  6765. },
  6766. frontAlt: {
  6767. height: math.unit(4 + 11 / 12, "feet"),
  6768. weight: math.unit(100, "lbs"),
  6769. name: "Front (Alt)",
  6770. image: {
  6771. source: "./media/characters/opal/front-alt.svg"
  6772. }
  6773. },
  6774. },
  6775. [
  6776. {
  6777. name: "Small",
  6778. height: math.unit(4 + 11 / 12, "feet")
  6779. },
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(20, "feet"),
  6783. default: true
  6784. },
  6785. {
  6786. name: "Macro",
  6787. height: math.unit(120, "feet")
  6788. },
  6789. {
  6790. name: "Megamacro",
  6791. height: math.unit(80, "miles")
  6792. },
  6793. {
  6794. name: "True Size",
  6795. height: math.unit(100000, "lightyears")
  6796. },
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6801. {
  6802. front: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(200, "lbs"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/vector-wuff/front.svg"
  6808. }
  6809. }
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(2.8, "meters")
  6815. },
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(450, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Megamacro",
  6823. height: math.unit(15, "kilometers")
  6824. }
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(6, "feet"),
  6832. weight: math.unit(256, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/dannik/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Macro",
  6842. height: math.unit(69.57, "meters"),
  6843. default: true
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(120, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/azura-saharah/front.svg"
  6856. }
  6857. },
  6858. back: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(120, "lbs"),
  6861. name: "Back",
  6862. image: {
  6863. source: "./media/characters/azura-saharah/back.svg"
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Macro",
  6870. height: math.unit(100, "feet"),
  6871. default: true
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6877. {
  6878. side: {
  6879. height: math.unit(5 + 4 / 12, "feet"),
  6880. weight: math.unit(163, "lbs"),
  6881. name: "Side",
  6882. image: {
  6883. source: "./media/characters/kennedy/side.svg"
  6884. }
  6885. }
  6886. },
  6887. [
  6888. {
  6889. name: "Standard Doggo",
  6890. height: math.unit(5 + 4 / 12, "feet")
  6891. },
  6892. {
  6893. name: "Big Doggo",
  6894. height: math.unit(25 + 3 / 12, "feet"),
  6895. default: true
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(90, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/odi-lunar/front.svg"
  6908. }
  6909. }
  6910. },
  6911. [
  6912. {
  6913. name: "Micro",
  6914. height: math.unit(3, "inches"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Normal",
  6919. height: math.unit(5.5, "feet")
  6920. }
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6925. {
  6926. back: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(220, "lbs"),
  6929. name: "Back",
  6930. image: {
  6931. source: "./media/characters/mandake/back.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(7, "feet"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(78, "feet")
  6944. },
  6945. {
  6946. name: "Macro+",
  6947. height: math.unit(300, "meters")
  6948. },
  6949. {
  6950. name: "Macro++",
  6951. height: math.unit(2400, "feet")
  6952. },
  6953. {
  6954. name: "Megamacro",
  6955. height: math.unit(5167, "meters")
  6956. },
  6957. {
  6958. name: "Gigamacro",
  6959. height: math.unit(41769, "miles")
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(120, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/yozey/front.svg"
  6972. }
  6973. },
  6974. frontAlt: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(120, "lbs"),
  6977. name: "Front (Alt)",
  6978. image: {
  6979. source: "./media/characters/yozey/front-alt.svg"
  6980. }
  6981. },
  6982. side: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(120, "lbs"),
  6985. name: "Side",
  6986. image: {
  6987. source: "./media/characters/yozey/side.svg"
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Micro",
  6994. height: math.unit(3, "inches"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(6, "feet")
  7000. }
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(6, "feet"),
  7008. weight: math.unit(103, "lbs"),
  7009. name: "Front",
  7010. image: {
  7011. source: "./media/characters/valeska-voss/front.svg"
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Mini-Sized Sub",
  7018. height: math.unit(3.1, "inches")
  7019. },
  7020. {
  7021. name: "Mid-Sized Sub",
  7022. height: math.unit(6.2, "inches")
  7023. },
  7024. {
  7025. name: "Full-Sized Sub",
  7026. height: math.unit(9.3, "inches")
  7027. },
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(5 + 2 / 12, "foot"),
  7031. default: true
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(160, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/gene-zeta/front.svg",
  7044. extra: 3006 / 2826,
  7045. bottom: 182 / 3188
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(6, "inches")
  7053. },
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(5 + 11 / 12, "foot"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Macro",
  7061. height: math.unit(140, "feet")
  7062. },
  7063. {
  7064. name: "Supercharged",
  7065. height: math.unit(2500, "feet")
  7066. },
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(350, "lbs"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/razinox/front.svg",
  7078. extra: 1686 / 1548,
  7079. bottom: 28.2 / 1868
  7080. }
  7081. },
  7082. back: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(350, "lbs"),
  7085. name: "Back",
  7086. image: {
  7087. source: "./media/characters/razinox/back.svg",
  7088. extra: 1660 / 1590,
  7089. bottom: 15 / 1665
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(10 + 8 / 12, "foot")
  7097. },
  7098. {
  7099. name: "Minimacro",
  7100. height: math.unit(15, "foot")
  7101. },
  7102. {
  7103. name: "Macro",
  7104. height: math.unit(60, "foot"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Megamacro",
  7109. height: math.unit(5, "miles")
  7110. },
  7111. {
  7112. name: "Gigamacro",
  7113. height: math.unit(6000, "miles")
  7114. },
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(150, "lbs"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/cobalt/front.svg"
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(8 + 1 / 12, "foot")
  7133. },
  7134. {
  7135. name: "Macro",
  7136. height: math.unit(111, "foot"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Supracosmic",
  7141. height: math.unit(1e42, "feet")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(140, "lbs"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/amanda/front.svg"
  7154. }
  7155. }
  7156. },
  7157. [
  7158. {
  7159. name: "Micro",
  7160. height: math.unit(5, "inches"),
  7161. default: true
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7167. {
  7168. front: {
  7169. height: math.unit(2.75, "meters"),
  7170. weight: math.unit(1200, "lb"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/teal/front.svg",
  7174. extra: 2463 / 2320,
  7175. bottom: 166 / 2629
  7176. }
  7177. },
  7178. back: {
  7179. height: math.unit(2.75, "meters"),
  7180. weight: math.unit(1200, "lb"),
  7181. name: "Back",
  7182. image: {
  7183. source: "./media/characters/teal/back.svg",
  7184. extra: 2580 / 2489,
  7185. bottom: 151 / 2731
  7186. }
  7187. },
  7188. sitting: {
  7189. height: math.unit(1.9, "meters"),
  7190. weight: math.unit(1200, "lb"),
  7191. name: "Sitting",
  7192. image: {
  7193. source: "./media/characters/teal/sitting.svg",
  7194. extra: 623 / 590,
  7195. bottom: 121 / 744
  7196. }
  7197. },
  7198. standing: {
  7199. height: math.unit(2.75, "meters"),
  7200. weight: math.unit(1200, "lb"),
  7201. name: "Standing",
  7202. image: {
  7203. source: "./media/characters/teal/standing.svg",
  7204. extra: 923 / 893,
  7205. bottom: 60 / 983
  7206. }
  7207. },
  7208. stretching: {
  7209. height: math.unit(3.65, "meters"),
  7210. weight: math.unit(1200, "lb"),
  7211. name: "Stretching",
  7212. image: {
  7213. source: "./media/characters/teal/stretching.svg",
  7214. extra: 1276 / 1244,
  7215. bottom: 0 / 1276
  7216. }
  7217. },
  7218. legged: {
  7219. height: math.unit(1.3, "meters"),
  7220. weight: math.unit(100, "lb"),
  7221. name: "Legged",
  7222. image: {
  7223. source: "./media/characters/teal/legged.svg",
  7224. extra: 462 / 437,
  7225. bottom: 24 / 486
  7226. }
  7227. },
  7228. naga: {
  7229. height: math.unit(5.4, "meters"),
  7230. weight: math.unit(4000, "lb"),
  7231. name: "Naga",
  7232. image: {
  7233. source: "./media/characters/teal/naga.svg",
  7234. extra: 1902 / 1858,
  7235. bottom: 0 / 1902
  7236. }
  7237. },
  7238. hand: {
  7239. height: math.unit(0.52, "meters"),
  7240. name: "Hand",
  7241. image: {
  7242. source: "./media/characters/teal/hand.svg"
  7243. }
  7244. },
  7245. maw: {
  7246. height: math.unit(0.43, "meters"),
  7247. name: "Maw",
  7248. image: {
  7249. source: "./media/characters/teal/maw.svg"
  7250. }
  7251. },
  7252. slit: {
  7253. height: math.unit(0.25, "meters"),
  7254. name: "Slit",
  7255. image: {
  7256. source: "./media/characters/teal/slit.svg"
  7257. }
  7258. },
  7259. },
  7260. [
  7261. {
  7262. name: "Normal",
  7263. height: math.unit(2.75, "meters"),
  7264. default: true
  7265. },
  7266. {
  7267. name: "Macro",
  7268. height: math.unit(300, "feet")
  7269. },
  7270. {
  7271. name: "Macro+",
  7272. height: math.unit(2000, "feet")
  7273. },
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7278. {
  7279. frontCat: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(180, "lbs"),
  7282. name: "Front (Cat)",
  7283. image: {
  7284. source: "./media/characters/ravin-amulet/front-cat.svg"
  7285. }
  7286. },
  7287. frontCatAlt: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(180, "lbs"),
  7290. name: "Front (Alt, Cat)",
  7291. image: {
  7292. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7293. }
  7294. },
  7295. frontWerewolf: {
  7296. height: math.unit(6 * 1.2, "feet"),
  7297. weight: math.unit(225, "lbs"),
  7298. name: "Front (Werewolf)",
  7299. image: {
  7300. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7301. }
  7302. },
  7303. backWerewolf: {
  7304. height: math.unit(6 * 1.2, "feet"),
  7305. weight: math.unit(225, "lbs"),
  7306. name: "Back (Werewolf)",
  7307. image: {
  7308. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7309. }
  7310. },
  7311. },
  7312. [
  7313. {
  7314. name: "Nano",
  7315. height: math.unit(1, "micrometer")
  7316. },
  7317. {
  7318. name: "Micro",
  7319. height: math.unit(1, "inch")
  7320. },
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(6, "feet"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(60, "feet")
  7329. }
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(165, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/fluoresce/front.svg"
  7341. }
  7342. }
  7343. },
  7344. [
  7345. {
  7346. name: "Micro",
  7347. height: math.unit(6, "cm")
  7348. },
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(5 + 7 / 12, "feet"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(56, "feet")
  7357. },
  7358. {
  7359. name: "Megamacro",
  7360. height: math.unit(1.9, "miles")
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(9 + 6 / 12, "feet"),
  7369. weight: math.unit(523, "lbs"),
  7370. name: "Side",
  7371. image: {
  7372. source: "./media/characters/aurora/side.svg"
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(9 + 6 / 12, "feet")
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(96, "feet"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Macro+",
  7388. height: math.unit(243, "feet")
  7389. },
  7390. ]
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7394. {
  7395. front: {
  7396. height: math.unit(194, "cm"),
  7397. weight: math.unit(90, "kg"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/ranek/front.svg"
  7401. }
  7402. },
  7403. side: {
  7404. height: math.unit(194, "cm"),
  7405. weight: math.unit(90, "kg"),
  7406. name: "Side",
  7407. image: {
  7408. source: "./media/characters/ranek/side.svg"
  7409. }
  7410. },
  7411. back: {
  7412. height: math.unit(194, "cm"),
  7413. weight: math.unit(90, "kg"),
  7414. name: "Back",
  7415. image: {
  7416. source: "./media/characters/ranek/back.svg"
  7417. }
  7418. },
  7419. feral: {
  7420. height: math.unit(30, "cm"),
  7421. weight: math.unit(1.6, "lbs"),
  7422. name: "Feral",
  7423. image: {
  7424. source: "./media/characters/ranek/feral.svg"
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(194, "cm"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Macro",
  7436. height: math.unit(100, "meters")
  7437. },
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(5 + 6 / 12, "feet"),
  7445. weight: math.unit(153, "lbs"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/andrew-cooper/front.svg"
  7449. }
  7450. },
  7451. },
  7452. [
  7453. {
  7454. name: "Nano",
  7455. height: math.unit(1, "mm")
  7456. },
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(2, "inches")
  7460. },
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(5 + 6 / 12, "feet"),
  7464. default: true
  7465. }
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(6, "feet"),
  7473. weight: math.unit(180, "lbs"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/akane-sato/front.svg",
  7477. extra: 1219 / 1140
  7478. }
  7479. },
  7480. back: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(180, "lbs"),
  7483. name: "Back",
  7484. image: {
  7485. source: "./media/characters/akane-sato/back.svg",
  7486. extra: 1219 / 1170
  7487. }
  7488. },
  7489. },
  7490. [
  7491. {
  7492. name: "Normal",
  7493. height: math.unit(2.5, "meters")
  7494. },
  7495. {
  7496. name: "Macro",
  7497. height: math.unit(250, "meters"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Megamacro",
  7502. height: math.unit(25, "km")
  7503. },
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(6, "feet"),
  7511. weight: math.unit(65, "kg"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/rook/front.svg",
  7515. extra: 960 / 950
  7516. }
  7517. }
  7518. },
  7519. [
  7520. {
  7521. name: "Normal",
  7522. height: math.unit(8.8, "feet")
  7523. },
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(88, "feet"),
  7527. default: true
  7528. },
  7529. {
  7530. name: "Megamacro",
  7531. height: math.unit(8, "miles")
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7537. {
  7538. front: {
  7539. height: math.unit(12 + 2 / 12, "feet"),
  7540. weight: math.unit(808, "lbs"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/prodigy/front.svg"
  7544. }
  7545. }
  7546. },
  7547. [
  7548. {
  7549. name: "Normal",
  7550. height: math.unit(12 + 2 / 12, "feet"),
  7551. default: true
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(143, "feet")
  7556. },
  7557. {
  7558. name: "Macro+",
  7559. height: math.unit(400, "feet")
  7560. },
  7561. ]
  7562. ))
  7563. characterMakers.push(() => makeCharacter(
  7564. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7565. {
  7566. front: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(225, "lbs"),
  7569. name: "Front",
  7570. image: {
  7571. source: "./media/characters/daniel/front.svg"
  7572. }
  7573. },
  7574. leaning: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(225, "lbs"),
  7577. name: "Leaning",
  7578. image: {
  7579. source: "./media/characters/daniel/leaning.svg"
  7580. }
  7581. },
  7582. },
  7583. [
  7584. {
  7585. name: "Macro",
  7586. height: math.unit(1000, "feet"),
  7587. default: true
  7588. },
  7589. ]
  7590. ))
  7591. characterMakers.push(() => makeCharacter(
  7592. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7593. {
  7594. front: {
  7595. height: math.unit(6, "feet"),
  7596. weight: math.unit(88, "lbs"),
  7597. name: "Front",
  7598. image: {
  7599. source: "./media/characters/chiros/front.svg",
  7600. extra: 306 / 226
  7601. }
  7602. },
  7603. side: {
  7604. height: math.unit(6, "feet"),
  7605. weight: math.unit(88, "lbs"),
  7606. name: "Side",
  7607. image: {
  7608. source: "./media/characters/chiros/side.svg",
  7609. extra: 306 / 226
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(6, "cm"),
  7617. default: true
  7618. },
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7623. {
  7624. front: {
  7625. height: math.unit(6, "feet"),
  7626. weight: math.unit(100, "lbs"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/selka/front.svg",
  7630. extra: 947 / 887
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(5, "cm"),
  7638. default: true
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(8 + 3 / 12, "feet"),
  7647. weight: math.unit(424, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/verin/front.svg",
  7651. extra: 1845 / 1550
  7652. }
  7653. },
  7654. frontArmored: {
  7655. height: math.unit(8 + 3 / 12, "feet"),
  7656. weight: math.unit(424, "lbs"),
  7657. name: "Front (Armored)",
  7658. image: {
  7659. source: "./media/characters/verin/front-armor.svg",
  7660. extra: 1845 / 1550,
  7661. bottom: 0.01
  7662. }
  7663. },
  7664. back: {
  7665. height: math.unit(8 + 3 / 12, "feet"),
  7666. weight: math.unit(424, "lbs"),
  7667. name: "Back",
  7668. image: {
  7669. source: "./media/characters/verin/back.svg",
  7670. bottom: 0.1,
  7671. extra: 1
  7672. }
  7673. },
  7674. foot: {
  7675. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7676. name: "Foot",
  7677. image: {
  7678. source: "./media/characters/verin/foot.svg"
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(8 + 3 / 12, "feet")
  7686. },
  7687. {
  7688. name: "Minimacro",
  7689. height: math.unit(21, "feet"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(626, "feet")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(2.718, "meters"),
  7703. weight: math.unit(150, "lbs"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/sovrim-terraquian/front.svg"
  7707. }
  7708. },
  7709. back: {
  7710. height: math.unit(2.718, "meters"),
  7711. weight: math.unit(150, "lbs"),
  7712. name: "Back",
  7713. image: {
  7714. source: "./media/characters/sovrim-terraquian/back.svg"
  7715. }
  7716. }
  7717. },
  7718. [
  7719. {
  7720. name: "Micro",
  7721. height: math.unit(2, "inches")
  7722. },
  7723. {
  7724. name: "Small",
  7725. height: math.unit(1, "meter")
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(Math.E, "meters"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(20, "meters")
  7735. },
  7736. {
  7737. name: "Macro+",
  7738. height: math.unit(400, "meters")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(7, "feet"),
  7747. weight: math.unit(489, "lbs"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/reece-silvermane/front.svg",
  7751. bottom: 0.02,
  7752. extra: 1
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(1.5, "miles"),
  7760. default: true
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(78, "kg"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/kane/front.svg",
  7773. extra: 978 / 899
  7774. }
  7775. },
  7776. },
  7777. [
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(2.1, "m"),
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(1, "km"),
  7785. default: true
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(200, "kg"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/tegon/front.svg",
  7798. bottom: 0.01,
  7799. extra: 1
  7800. }
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "Micro",
  7806. height: math.unit(1, "inch")
  7807. },
  7808. {
  7809. name: "Normal",
  7810. height: math.unit(6 + 3 / 12, "feet"),
  7811. default: true
  7812. },
  7813. {
  7814. name: "Macro",
  7815. height: math.unit(300, "feet")
  7816. },
  7817. {
  7818. name: "Megamacro",
  7819. height: math.unit(69, "miles")
  7820. },
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7825. {
  7826. side: {
  7827. height: math.unit(6, "feet"),
  7828. weight: math.unit(2304, "lbs"),
  7829. name: "Side",
  7830. image: {
  7831. source: "./media/characters/arcturax/side.svg",
  7832. extra: 790 / 376,
  7833. bottom: 0.01
  7834. }
  7835. },
  7836. },
  7837. [
  7838. {
  7839. name: "Micro",
  7840. height: math.unit(2, "inch")
  7841. },
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(6, "feet")
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(39, "feet"),
  7849. default: true
  7850. },
  7851. {
  7852. name: "Megamacro",
  7853. height: math.unit(7, "miles")
  7854. },
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(50, "lbs"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/sentri/front.svg",
  7866. extra: 1750 / 1570,
  7867. bottom: 0.025
  7868. }
  7869. },
  7870. frontAlt: {
  7871. height: math.unit(6, "feet"),
  7872. weight: math.unit(50, "lbs"),
  7873. name: "Front (Alt)",
  7874. image: {
  7875. source: "./media/characters/sentri/front-alt.svg",
  7876. extra: 1750 / 1570,
  7877. bottom: 0.025
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Normal",
  7884. height: math.unit(15, "feet"),
  7885. default: true
  7886. },
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(2500, "feet")
  7890. }
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(5 + 8 / 12, "feet"),
  7898. weight: math.unit(130, "lbs"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/corvin/front.svg",
  7902. extra: 1803 / 1629
  7903. }
  7904. },
  7905. frontShirt: {
  7906. height: math.unit(5 + 8 / 12, "feet"),
  7907. weight: math.unit(130, "lbs"),
  7908. name: "Front (Shirt)",
  7909. image: {
  7910. source: "./media/characters/corvin/front-shirt.svg",
  7911. extra: 1803 / 1629
  7912. }
  7913. },
  7914. frontPoncho: {
  7915. height: math.unit(5 + 8 / 12, "feet"),
  7916. weight: math.unit(130, "lbs"),
  7917. name: "Front (Poncho)",
  7918. image: {
  7919. source: "./media/characters/corvin/front-poncho.svg",
  7920. extra: 1803 / 1629
  7921. }
  7922. },
  7923. side: {
  7924. height: math.unit(5 + 8 / 12, "feet"),
  7925. weight: math.unit(130, "lbs"),
  7926. name: "Side",
  7927. image: {
  7928. source: "./media/characters/corvin/side.svg",
  7929. extra: 1012 / 945
  7930. }
  7931. },
  7932. back: {
  7933. height: math.unit(5 + 8 / 12, "feet"),
  7934. weight: math.unit(130, "lbs"),
  7935. name: "Back",
  7936. image: {
  7937. source: "./media/characters/corvin/back.svg",
  7938. extra: 1803 / 1629
  7939. }
  7940. },
  7941. },
  7942. [
  7943. {
  7944. name: "Micro",
  7945. height: math.unit(3, "inches")
  7946. },
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(5 + 8 / 12, "feet")
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(300, "feet"),
  7954. default: true
  7955. },
  7956. {
  7957. name: "Megamacro",
  7958. height: math.unit(500, "miles")
  7959. }
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(6, "feet"),
  7967. weight: math.unit(135, "lbs"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/q/front.svg",
  7971. extra: 854 / 752,
  7972. bottom: 0.005
  7973. }
  7974. },
  7975. back: {
  7976. height: math.unit(6, "feet"),
  7977. weight: math.unit(130, "lbs"),
  7978. name: "Back",
  7979. image: {
  7980. source: "./media/characters/q/back.svg",
  7981. extra: 854 / 752
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(90, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Extra Macro",
  7993. height: math.unit(300, "feet"),
  7994. },
  7995. {
  7996. name: "BIG WALF",
  7997. height: math.unit(750, "feet"),
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(150, "lbs"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/carley/front.svg",
  8010. extra: 3927 / 3540,
  8011. bottom: 29.2 / 735
  8012. }
  8013. }
  8014. },
  8015. [
  8016. {
  8017. name: "Normal",
  8018. height: math.unit(6 + 3 / 12, "feet")
  8019. },
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(185, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Megamacro",
  8027. height: math.unit(8, "miles"),
  8028. },
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(3, "feet"),
  8036. weight: math.unit(28, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/citrine/front.svg"
  8040. }
  8041. }
  8042. },
  8043. [
  8044. {
  8045. name: "Normal",
  8046. height: math.unit(3, "feet"),
  8047. default: true
  8048. }
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8053. {
  8054. front: {
  8055. height: math.unit(14, "feet"),
  8056. weight: math.unit(1450, "kg"),
  8057. capacity: math.unit(15, "people"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/aura-starwind/front.svg",
  8061. extra: 1455 / 1335
  8062. }
  8063. },
  8064. side: {
  8065. height: math.unit(14, "feet"),
  8066. weight: math.unit(1450, "kg"),
  8067. capacity: math.unit(15, "people"),
  8068. name: "Side",
  8069. image: {
  8070. source: "./media/characters/aura-starwind/side.svg",
  8071. extra: 1654 / 1497
  8072. }
  8073. },
  8074. taur: {
  8075. height: math.unit(18, "feet"),
  8076. weight: math.unit(5500, "kg"),
  8077. capacity: math.unit(50, "people"),
  8078. name: "Taur",
  8079. image: {
  8080. source: "./media/characters/aura-starwind/taur.svg",
  8081. extra: 1760 / 1650
  8082. }
  8083. },
  8084. feral: {
  8085. height: math.unit(46, "feet"),
  8086. weight: math.unit(25000, "kg"),
  8087. capacity: math.unit(120, "people"),
  8088. name: "Feral",
  8089. image: {
  8090. source: "./media/characters/aura-starwind/feral.svg"
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(14, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(50, "meters")
  8103. },
  8104. {
  8105. name: "Megamacro",
  8106. height: math.unit(5000, "meters")
  8107. },
  8108. {
  8109. name: "Gigamacro",
  8110. height: math.unit(100000, "kilometers")
  8111. },
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(2 + 7 / 12, "feet"),
  8119. weight: math.unit(32, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/rivet/front.svg",
  8123. extra: 1716 / 1658,
  8124. bottom: 0.03
  8125. }
  8126. },
  8127. foot: {
  8128. height: math.unit(0.551, "feet"),
  8129. name: "Rivet's Foot",
  8130. image: {
  8131. source: "./media/characters/rivet/foot.svg"
  8132. },
  8133. rename: true
  8134. }
  8135. },
  8136. [
  8137. {
  8138. name: "Micro",
  8139. height: math.unit(1.5, "inches"),
  8140. },
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(2 + 7 / 12, "feet"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(85, "feet")
  8149. },
  8150. {
  8151. name: "Megamacro",
  8152. height: math.unit(2.2, "km")
  8153. }
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(5 + 9 / 12, "feet"),
  8161. weight: math.unit(150, "lbs"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/coffee/front.svg",
  8165. extra: 3666 / 3032,
  8166. bottom: 0.04
  8167. }
  8168. },
  8169. foot: {
  8170. height: math.unit(1.29, "feet"),
  8171. name: "Foot",
  8172. image: {
  8173. source: "./media/characters/coffee/foot.svg"
  8174. }
  8175. },
  8176. },
  8177. [
  8178. {
  8179. name: "Micro",
  8180. height: math.unit(2, "inches"),
  8181. },
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(5 + 9 / 12, "feet"),
  8185. default: true
  8186. },
  8187. {
  8188. name: "Macro",
  8189. height: math.unit(800, "feet")
  8190. },
  8191. {
  8192. name: "Megamacro",
  8193. height: math.unit(25, "miles")
  8194. }
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(6, "feet"),
  8202. weight: math.unit(200, "lbs"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/chari-gal/front.svg",
  8206. extra: 1568 / 1385,
  8207. bottom: 0.047
  8208. }
  8209. },
  8210. gigantamax: {
  8211. height: math.unit(6 * 16, "feet"),
  8212. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8213. name: "Gigantamax",
  8214. image: {
  8215. source: "./media/characters/chari-gal/gigantamax.svg",
  8216. extra: 1124 / 888,
  8217. bottom: 0.03
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Normal",
  8224. height: math.unit(5 + 7 / 12, "feet")
  8225. },
  8226. {
  8227. name: "Macro",
  8228. height: math.unit(200, "feet"),
  8229. default: true
  8230. }
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8235. {
  8236. front: {
  8237. height: math.unit(6, "feet"),
  8238. weight: math.unit(150, "lbs"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/nova/front.svg",
  8242. extra: 5000 / 4722,
  8243. bottom: 0.02
  8244. }
  8245. }
  8246. },
  8247. [
  8248. {
  8249. name: "Micro-",
  8250. height: math.unit(0.8, "inches")
  8251. },
  8252. {
  8253. name: "Micro",
  8254. height: math.unit(2, "inches"),
  8255. default: true
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8261. {
  8262. front: {
  8263. height: math.unit(3 + 1 / 12, "feet"),
  8264. weight: math.unit(21.7, "lbs"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/argent/front.svg",
  8268. extra: 1471 / 1331,
  8269. bottom: 100.8 / 1575.5
  8270. }
  8271. }
  8272. },
  8273. [
  8274. {
  8275. name: "Micro",
  8276. height: math.unit(2, "inches")
  8277. },
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(3 + 1 / 12, "feet"),
  8281. default: true
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(120, "feet")
  8286. },
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8291. {
  8292. lamp: {
  8293. height: math.unit(7 * 1559 / 989, "feet"),
  8294. name: "Magic Lamp",
  8295. image: {
  8296. source: "./media/characters/mira-al-cul/lamp.svg",
  8297. extra: 1617 / 1559
  8298. }
  8299. },
  8300. front: {
  8301. height: math.unit(7, "feet"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/mira-al-cul/front.svg",
  8305. extra: 1044 / 990
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Heavily Restricted",
  8312. height: math.unit(7 * 1559 / 989, "feet")
  8313. },
  8314. {
  8315. name: "Freshly Freed",
  8316. height: math.unit(50 * 1559 / 989, "feet")
  8317. },
  8318. {
  8319. name: "World Encompassing",
  8320. height: math.unit(10000 * 1559 / 989, "miles")
  8321. },
  8322. {
  8323. name: "Galactic",
  8324. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8325. },
  8326. {
  8327. name: "Palmed Universe",
  8328. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8329. default: true
  8330. },
  8331. {
  8332. name: "Multiversal Matriarch",
  8333. height: math.unit(8.87e10, "yottameters")
  8334. },
  8335. {
  8336. name: "Void Mother",
  8337. height: math.unit(3.14e110, "yottaparsecs")
  8338. },
  8339. {
  8340. name: "Toying with Transcendence",
  8341. height: math.unit(1e307, "meters")
  8342. },
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8347. {
  8348. front: {
  8349. height: math.unit(17 + 1 / 12, "feet"),
  8350. weight: math.unit(476.2 * 5, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/kuro-shi-uchū/front.svg",
  8354. extra: 2329 / 1835,
  8355. bottom: 0.02
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Micro",
  8362. height: math.unit(2, "inches")
  8363. },
  8364. {
  8365. name: "Normal",
  8366. height: math.unit(12, "meters")
  8367. },
  8368. {
  8369. name: "Planetary",
  8370. height: math.unit(0.00929, "AU"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Universal",
  8375. height: math.unit(20, "gigaparsecs")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(5 + 2 / 12, "feet"),
  8384. weight: math.unit(120, "lbs"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/katherine/front.svg",
  8388. extra: 2075 / 1969
  8389. }
  8390. },
  8391. dress: {
  8392. height: math.unit(5 + 2 / 12, "feet"),
  8393. weight: math.unit(120, "lbs"),
  8394. name: "Dress",
  8395. image: {
  8396. source: "./media/characters/katherine/dress.svg",
  8397. extra: 2258 / 2064
  8398. }
  8399. },
  8400. },
  8401. [
  8402. {
  8403. name: "Micro",
  8404. height: math.unit(1, "inches"),
  8405. default: true
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(5 + 2 / 12, "feet")
  8410. },
  8411. {
  8412. name: "Macro",
  8413. height: math.unit(100, "meters")
  8414. },
  8415. {
  8416. name: "Megamacro",
  8417. height: math.unit(80, "miles")
  8418. },
  8419. ]
  8420. ))
  8421. characterMakers.push(() => makeCharacter(
  8422. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8423. {
  8424. front: {
  8425. height: math.unit(7 + 8 / 12, "feet"),
  8426. weight: math.unit(250, "lbs"),
  8427. name: "Front",
  8428. image: {
  8429. source: "./media/characters/yevis/front.svg",
  8430. extra: 1938 / 1755
  8431. }
  8432. }
  8433. },
  8434. [
  8435. {
  8436. name: "Mortal",
  8437. height: math.unit(7 + 8 / 12, "feet")
  8438. },
  8439. {
  8440. name: "Battle",
  8441. height: math.unit(25 + 11 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Wrath",
  8445. height: math.unit(1654 + 11 / 12, "feet")
  8446. },
  8447. {
  8448. name: "Planet Destroyer",
  8449. height: math.unit(12000, "miles")
  8450. },
  8451. {
  8452. name: "Galaxy Conqueror",
  8453. height: math.unit(1.45, "zettameters"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Universal War",
  8458. height: math.unit(184, "gigaparsecs")
  8459. },
  8460. {
  8461. name: "Eternity War",
  8462. height: math.unit(1.98e55, "yottaparsecs")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(5 + 8 / 12, "feet"),
  8471. weight: math.unit(63, "kg"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/xavier/front.svg",
  8475. extra: 944 / 883
  8476. }
  8477. },
  8478. frontStretch: {
  8479. height: math.unit(5 + 8 / 12, "feet"),
  8480. weight: math.unit(63, "kg"),
  8481. name: "Stretching",
  8482. image: {
  8483. source: "./media/characters/xavier/front-stretch.svg",
  8484. extra: 962 / 820
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(5 + 8 / 12, "feet")
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(100, "meters"),
  8496. default: true
  8497. },
  8498. {
  8499. name: "McLargeHuge",
  8500. height: math.unit(10, "miles")
  8501. },
  8502. ]
  8503. ))
  8504. characterMakers.push(() => makeCharacter(
  8505. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8506. {
  8507. front: {
  8508. height: math.unit(5 + 5 / 12, "feet"),
  8509. weight: math.unit(150, "lb"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/joshii/front.svg",
  8513. extra: 765 / 653,
  8514. bottom: 51 / 816
  8515. }
  8516. },
  8517. foot: {
  8518. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8519. name: "Foot",
  8520. image: {
  8521. source: "./media/characters/joshii/foot.svg"
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Micro",
  8528. height: math.unit(2, "inches"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Normal",
  8533. height: math.unit(5 + 5 / 12, "feet")
  8534. },
  8535. {
  8536. name: "Macro",
  8537. height: math.unit(785, "feet")
  8538. },
  8539. {
  8540. name: "Megamacro",
  8541. height: math.unit(24.5, "miles")
  8542. },
  8543. ]
  8544. ))
  8545. characterMakers.push(() => makeCharacter(
  8546. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8547. {
  8548. front: {
  8549. height: math.unit(6, "feet"),
  8550. weight: math.unit(150, "lb"),
  8551. name: "Front",
  8552. image: {
  8553. source: "./media/characters/goddess-elizabeth/front.svg",
  8554. extra: 1800 / 1525,
  8555. bottom: 0.005
  8556. }
  8557. },
  8558. foot: {
  8559. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8560. name: "Foot",
  8561. image: {
  8562. source: "./media/characters/goddess-elizabeth/foot.svg"
  8563. }
  8564. },
  8565. mouth: {
  8566. height: math.unit(6, "feet"),
  8567. name: "Mouth",
  8568. image: {
  8569. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8570. }
  8571. },
  8572. },
  8573. [
  8574. {
  8575. name: "Micro",
  8576. height: math.unit(12, "feet")
  8577. },
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(80, "miles"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(15000, "parsecs")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(5 + 9 / 12, "feet"),
  8594. weight: math.unit(144, "lb"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/kara/front.svg"
  8598. }
  8599. },
  8600. feet: {
  8601. height: math.unit(6 / 6.765, "feet"),
  8602. name: "Kara's Feet",
  8603. rename: true,
  8604. image: {
  8605. source: "./media/characters/kara/feet.svg"
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Normal",
  8612. height: math.unit(5 + 9 / 12, "feet")
  8613. },
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(174, "feet"),
  8617. default: true
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(18, "feet"),
  8626. weight: math.unit(4050, "lb"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/tyrone/front.svg",
  8630. extra: 2405 / 2270,
  8631. bottom: 182 / 2587
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Normal",
  8638. height: math.unit(18, "feet"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Macro",
  8643. height: math.unit(300, "feet")
  8644. },
  8645. {
  8646. name: "Megamacro",
  8647. height: math.unit(15, "km")
  8648. },
  8649. {
  8650. name: "Gigamacro",
  8651. height: math.unit(500, "km")
  8652. },
  8653. {
  8654. name: "Teramacro",
  8655. height: math.unit(0.5, "gigameters")
  8656. },
  8657. {
  8658. name: "Omnimacro",
  8659. height: math.unit(1e252, "yottauniverse")
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(7 + 8 / 12, "feet"),
  8668. weight: math.unit(120, "lb"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/danny/front.svg",
  8672. extra: 1490 / 1350
  8673. }
  8674. },
  8675. back: {
  8676. height: math.unit(7 + 8 / 12, "feet"),
  8677. weight: math.unit(120, "lb"),
  8678. name: "Back",
  8679. image: {
  8680. source: "./media/characters/danny/back.svg",
  8681. extra: 1490 / 1350
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(7 + 8 / 12, "feet"),
  8689. default: true
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8695. {
  8696. front: {
  8697. height: math.unit(3.5, "inches"),
  8698. weight: math.unit(19, "grams"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/mallow/front.svg",
  8702. extra: 471 / 431
  8703. }
  8704. },
  8705. back: {
  8706. height: math.unit(3.5, "inches"),
  8707. weight: math.unit(19, "grams"),
  8708. name: "Back",
  8709. image: {
  8710. source: "./media/characters/mallow/back.svg",
  8711. extra: 471 / 431
  8712. }
  8713. },
  8714. },
  8715. [
  8716. {
  8717. name: "Normal",
  8718. height: math.unit(3.5, "inches"),
  8719. default: true
  8720. },
  8721. ]
  8722. ))
  8723. characterMakers.push(() => makeCharacter(
  8724. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8725. {
  8726. front: {
  8727. height: math.unit(9, "feet"),
  8728. weight: math.unit(230, "kg"),
  8729. name: "Front",
  8730. image: {
  8731. source: "./media/characters/starry-aqua/front.svg"
  8732. }
  8733. },
  8734. back: {
  8735. height: math.unit(9, "feet"),
  8736. weight: math.unit(230, "kg"),
  8737. name: "Back",
  8738. image: {
  8739. source: "./media/characters/starry-aqua/back.svg"
  8740. }
  8741. },
  8742. hand: {
  8743. height: math.unit(9 * 0.1168, "feet"),
  8744. name: "Hand",
  8745. image: {
  8746. source: "./media/characters/starry-aqua/hand.svg"
  8747. }
  8748. },
  8749. foot: {
  8750. height: math.unit(9 * 0.18, "feet"),
  8751. name: "Foot",
  8752. image: {
  8753. source: "./media/characters/starry-aqua/foot.svg"
  8754. }
  8755. }
  8756. },
  8757. [
  8758. {
  8759. name: "Micro",
  8760. height: math.unit(3, "inches")
  8761. },
  8762. {
  8763. name: "Normal",
  8764. height: math.unit(9, "feet")
  8765. },
  8766. {
  8767. name: "Macro",
  8768. height: math.unit(300, "feet"),
  8769. default: true
  8770. },
  8771. {
  8772. name: "Megamacro",
  8773. height: math.unit(3200, "feet")
  8774. }
  8775. ]
  8776. ))
  8777. characterMakers.push(() => makeCharacter(
  8778. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8779. {
  8780. front: {
  8781. height: math.unit(6, "feet"),
  8782. weight: math.unit(230, "lb"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/luka/front.svg",
  8786. extra: 1,
  8787. bottom: 0.025
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(12 + 8 / 12, "feet"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Minimacro",
  8799. height: math.unit(20, "feet")
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(250, "feet")
  8804. },
  8805. {
  8806. name: "Megamacro",
  8807. height: math.unit(5, "miles")
  8808. },
  8809. {
  8810. name: "Gigamacro",
  8811. height: math.unit(8000, "miles")
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(150, "lb"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/natalie-nightring/front.svg",
  8824. extra: 1,
  8825. bottom: 0.06
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Uh Oh",
  8832. height: math.unit(0.1, "mm")
  8833. },
  8834. {
  8835. name: "Small",
  8836. height: math.unit(3, "inches")
  8837. },
  8838. {
  8839. name: "Human Scale",
  8840. height: math.unit(6, "feet")
  8841. },
  8842. {
  8843. name: "Librarian",
  8844. height: math.unit(50, "feet"),
  8845. default: true
  8846. },
  8847. {
  8848. name: "Immense",
  8849. height: math.unit(200, "miles")
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8855. {
  8856. front: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(180, "lbs"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/danni-rosie/front.svg",
  8862. extra: 1260 / 1128,
  8863. bottom: 0.022
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Micro",
  8870. height: math.unit(2, "inches"),
  8871. default: true
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(5 + 9 / 12, "feet"),
  8880. weight: math.unit(220, "lb"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/samantha-kruse/front.svg",
  8884. extra: (985 / 935),
  8885. bottom: 0.03
  8886. }
  8887. },
  8888. frontUndressed: {
  8889. height: math.unit(5 + 9 / 12, "feet"),
  8890. weight: math.unit(220, "lb"),
  8891. name: "Front (Undressed)",
  8892. image: {
  8893. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8894. extra: (973 / 923),
  8895. bottom: 0.025
  8896. }
  8897. },
  8898. fat: {
  8899. height: math.unit(5 + 9 / 12, "feet"),
  8900. weight: math.unit(900, "lb"),
  8901. name: "Front (Fat)",
  8902. image: {
  8903. source: "./media/characters/samantha-kruse/fat.svg",
  8904. extra: 2688 / 2561
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(5 + 9 / 12, "feet"),
  8912. default: true
  8913. }
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8918. {
  8919. back: {
  8920. height: math.unit(5 + 4 / 12, "feet"),
  8921. weight: math.unit(4963, "lb"),
  8922. name: "Back",
  8923. image: {
  8924. source: "./media/characters/amelia-rosie/back.svg",
  8925. extra: 1113 / 963,
  8926. bottom: 0.01
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Level 0",
  8933. height: math.unit(5 + 4 / 12, "feet")
  8934. },
  8935. {
  8936. name: "Level 1",
  8937. height: math.unit(164597, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Level 2",
  8942. height: math.unit(956243, "miles")
  8943. },
  8944. {
  8945. name: "Level 3",
  8946. height: math.unit(29421709423, "miles")
  8947. },
  8948. {
  8949. name: "Level 4",
  8950. height: math.unit(154, "lightyears")
  8951. },
  8952. {
  8953. name: "Level 5",
  8954. height: math.unit(4738272, "lightyears")
  8955. },
  8956. {
  8957. name: "Level 6",
  8958. height: math.unit(145787152896, "lightyears")
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(5 + 11 / 12, "feet"),
  8967. weight: math.unit(65, "kg"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/rook-kitara/front.svg",
  8971. extra: 1347 / 1274,
  8972. bottom: 0.005
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Totally Unfair",
  8979. height: math.unit(1.8, "mm")
  8980. },
  8981. {
  8982. name: "Lap Rookie",
  8983. height: math.unit(1.4, "feet")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(5 + 11 / 12, "feet"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "How Did This Happen",
  8992. height: math.unit(80, "miles")
  8993. }
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(7, "feet"),
  9001. weight: math.unit(300, "lb"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/pisces/front.svg",
  9005. extra: 2255 / 2115,
  9006. bottom: 0.03
  9007. }
  9008. },
  9009. back: {
  9010. height: math.unit(7, "feet"),
  9011. weight: math.unit(300, "lb"),
  9012. name: "Back",
  9013. image: {
  9014. source: "./media/characters/pisces/back.svg",
  9015. extra: 2146 / 2055,
  9016. bottom: 0.04
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(7, "feet"),
  9024. default: true
  9025. },
  9026. {
  9027. name: "Swimming Pool",
  9028. height: math.unit(12.2, "meters")
  9029. },
  9030. {
  9031. name: "Olympic Swimming Pool",
  9032. height: math.unit(56.3, "meters")
  9033. },
  9034. {
  9035. name: "Lake Superior",
  9036. height: math.unit(93900, "meters")
  9037. },
  9038. {
  9039. name: "Mediterranean Sea",
  9040. height: math.unit(644457, "meters")
  9041. },
  9042. {
  9043. name: "World's Oceans",
  9044. height: math.unit(4567491, "meters")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(2.3, "meters"),
  9053. weight: math.unit(120, "kg"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/zelas/front.svg"
  9057. }
  9058. },
  9059. side: {
  9060. height: math.unit(2.3, "meters"),
  9061. weight: math.unit(120, "kg"),
  9062. name: "Side",
  9063. image: {
  9064. source: "./media/characters/zelas/side.svg"
  9065. }
  9066. },
  9067. back: {
  9068. height: math.unit(2.3, "meters"),
  9069. weight: math.unit(120, "kg"),
  9070. name: "Back",
  9071. image: {
  9072. source: "./media/characters/zelas/back.svg"
  9073. }
  9074. },
  9075. foot: {
  9076. height: math.unit(1.116, "feet"),
  9077. name: "Foot",
  9078. image: {
  9079. source: "./media/characters/zelas/foot.svg"
  9080. }
  9081. },
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(2.3, "meters")
  9087. },
  9088. {
  9089. name: "Macro",
  9090. height: math.unit(30, "meters"),
  9091. default: true
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(1, "inch"),
  9100. weight: math.unit(0.21, "grams"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/talbot/front.svg",
  9104. extra: 594 / 544
  9105. }
  9106. },
  9107. },
  9108. [
  9109. {
  9110. name: "Micro",
  9111. height: math.unit(1, "inch"),
  9112. default: true
  9113. },
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9118. {
  9119. front: {
  9120. height: math.unit(3 + 3 / 12, "feet"),
  9121. weight: math.unit(51.8, "lb"),
  9122. name: "Front",
  9123. image: {
  9124. source: "./media/characters/fliss/front.svg",
  9125. extra: 840 / 640
  9126. }
  9127. },
  9128. },
  9129. [
  9130. {
  9131. name: "Teeny Tiny",
  9132. height: math.unit(1, "mm")
  9133. },
  9134. {
  9135. name: "Small",
  9136. height: math.unit(1, "inch"),
  9137. default: true
  9138. },
  9139. {
  9140. name: "Standard Sylveon",
  9141. height: math.unit(3 + 3 / 12, "feet")
  9142. },
  9143. {
  9144. name: "Large Nuisance",
  9145. height: math.unit(33, "feet")
  9146. },
  9147. {
  9148. name: "City Filler",
  9149. height: math.unit(3000, "feet")
  9150. },
  9151. {
  9152. name: "New Horizon",
  9153. height: math.unit(6000, "miles")
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9159. {
  9160. front: {
  9161. height: math.unit(5, "cm"),
  9162. weight: math.unit(1.94, "g"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/fleta/front.svg",
  9166. extra: 835 / 803
  9167. }
  9168. },
  9169. back: {
  9170. height: math.unit(5, "cm"),
  9171. weight: math.unit(1.94, "g"),
  9172. name: "Back",
  9173. image: {
  9174. source: "./media/characters/fleta/back.svg",
  9175. extra: 835 / 803
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Micro",
  9182. height: math.unit(5, "cm"),
  9183. default: true
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(6, "feet"),
  9192. weight: math.unit(225, "lb"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/dominic/front.svg",
  9196. extra: 1770 / 1620,
  9197. bottom: 0.025
  9198. }
  9199. },
  9200. back: {
  9201. height: math.unit(6, "feet"),
  9202. weight: math.unit(225, "lb"),
  9203. name: "Back",
  9204. image: {
  9205. source: "./media/characters/dominic/back.svg",
  9206. extra: 1745 / 1620,
  9207. bottom: 0.065
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Nano",
  9214. height: math.unit(0.1, "mm")
  9215. },
  9216. {
  9217. name: "Micro-",
  9218. height: math.unit(1, "mm")
  9219. },
  9220. {
  9221. name: "Micro",
  9222. height: math.unit(4, "inches")
  9223. },
  9224. {
  9225. name: "Normal",
  9226. height: math.unit(6 + 4 / 12, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(115, "feet")
  9232. },
  9233. {
  9234. name: "Macro+",
  9235. height: math.unit(955, "feet")
  9236. },
  9237. {
  9238. name: "Megamacro",
  9239. height: math.unit(8990, "feet")
  9240. },
  9241. {
  9242. name: "Gigmacro",
  9243. height: math.unit(9310, "miles")
  9244. },
  9245. {
  9246. name: "Teramacro",
  9247. height: math.unit(1567005010, "miles")
  9248. },
  9249. {
  9250. name: "Examacro",
  9251. height: math.unit(1425, "parsecs")
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(400, "feet"),
  9260. weight: math.unit(44444444, "lb"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/major-colonel/front.svg"
  9264. }
  9265. },
  9266. back: {
  9267. height: math.unit(400, "feet"),
  9268. weight: math.unit(44444444, "lb"),
  9269. name: "Back",
  9270. image: {
  9271. source: "./media/characters/major-colonel/back.svg"
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(400, "feet"),
  9279. default: true
  9280. },
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9285. {
  9286. catFront: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(120, "lb"),
  9289. name: "Front (Cat Side)",
  9290. image: {
  9291. source: "./media/characters/axel-lycan/cat-front.svg",
  9292. extra: 430 / 402,
  9293. bottom: 43 / 472.35
  9294. }
  9295. },
  9296. catBack: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(120, "lb"),
  9299. name: "Back (Cat Side)",
  9300. image: {
  9301. source: "./media/characters/axel-lycan/cat-back.svg",
  9302. extra: 447 / 419,
  9303. bottom: 23.3 / 469
  9304. }
  9305. },
  9306. wolfFront: {
  9307. height: math.unit(6, "feet"),
  9308. weight: math.unit(120, "lb"),
  9309. name: "Front (Wolf Side)",
  9310. image: {
  9311. source: "./media/characters/axel-lycan/wolf-front.svg",
  9312. extra: 485 / 456,
  9313. bottom: 19 / 504
  9314. }
  9315. },
  9316. wolfBack: {
  9317. height: math.unit(6, "feet"),
  9318. weight: math.unit(120, "lb"),
  9319. name: "Back (Wolf Side)",
  9320. image: {
  9321. source: "./media/characters/axel-lycan/wolf-back.svg",
  9322. extra: 475 / 438,
  9323. bottom: 39.2 / 514
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(1, "km"),
  9331. default: true
  9332. },
  9333. ]
  9334. ))
  9335. characterMakers.push(() => makeCharacter(
  9336. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9337. {
  9338. front: {
  9339. height: math.unit(5 + 9 / 12, "feet"),
  9340. weight: math.unit(175, "lb"),
  9341. name: "Front",
  9342. image: {
  9343. source: "./media/characters/vanrel-hyena/front.svg",
  9344. extra: 1086 / 1010,
  9345. bottom: 0.04
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(5 + 9 / 12, "feet"),
  9353. default: true
  9354. },
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(6, "feet"),
  9362. weight: math.unit(103, "lb"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/abbott-absol/front.svg",
  9366. extra: 2010 / 1842
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Megamicro",
  9373. height: math.unit(0.1, "mm")
  9374. },
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(1, "inch")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(6, "feet"),
  9382. default: true
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(264, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/hector/front.svg",
  9395. extra: 2280 / 2130,
  9396. bottom: 0.07
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(12.25, "foot"),
  9404. default: true
  9405. },
  9406. {
  9407. name: "Macro",
  9408. height: math.unit(160, "feet")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(150, "lb"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/sal/front.svg",
  9421. extra: 1846 / 1699,
  9422. bottom: 0.04
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Megamacro",
  9429. height: math.unit(10, "miles"),
  9430. default: true
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9436. {
  9437. front: {
  9438. height: math.unit(3, "meters"),
  9439. weight: math.unit(450, "kg"),
  9440. name: "front",
  9441. image: {
  9442. source: "./media/characters/ranger/front.svg",
  9443. extra: 2401 / 2243,
  9444. bottom: 0.05
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(3, "meters"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9458. {
  9459. front: {
  9460. height: math.unit(14, "feet"),
  9461. weight: math.unit(800, "kg"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/theresa/front.svg",
  9465. extra: 3575 / 3346,
  9466. bottom: 0.03
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(14, "feet"),
  9474. default: true
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(3, "kg"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/ine/front.svg",
  9487. extra: 678 / 539,
  9488. bottom: 0.023
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(2.265, "feet"),
  9496. default: true
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9502. {
  9503. front: {
  9504. height: math.unit(5, "feet"),
  9505. weight: math.unit(30, "kg"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/vial/front.svg",
  9509. extra: 1365 / 1277,
  9510. bottom: 0.04
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(5, "feet"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9524. {
  9525. side: {
  9526. height: math.unit(3.4, "meters"),
  9527. weight: math.unit(1000, "lb"),
  9528. name: "Side",
  9529. image: {
  9530. source: "./media/characters/rovoska/side.svg",
  9531. extra: 4403 / 1515
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Normal",
  9538. height: math.unit(3.4, "meters"),
  9539. default: true
  9540. },
  9541. ]
  9542. ))
  9543. characterMakers.push(() => makeCharacter(
  9544. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9545. {
  9546. front: {
  9547. height: math.unit(8, "feet"),
  9548. weight: math.unit(315, "lb"),
  9549. name: "Front",
  9550. image: {
  9551. source: "./media/characters/gunner-rotthbauer/front.svg"
  9552. }
  9553. },
  9554. back: {
  9555. height: math.unit(8, "feet"),
  9556. weight: math.unit(315, "lb"),
  9557. name: "Back",
  9558. image: {
  9559. source: "./media/characters/gunner-rotthbauer/back.svg"
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Micro",
  9566. height: math.unit(3.5, "inches")
  9567. },
  9568. {
  9569. name: "Normal",
  9570. height: math.unit(8, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Macro",
  9575. height: math.unit(250, "feet")
  9576. },
  9577. {
  9578. name: "Megamacro",
  9579. height: math.unit(1, "AU")
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(5 + 5 / 12, "feet"),
  9588. weight: math.unit(140, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/allatia/front.svg",
  9592. extra: 1227 / 1180,
  9593. bottom: 0.027
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(5 + 5 / 12, "feet")
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(250, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(8, "miles")
  9610. }
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(120, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/tene/front.svg",
  9622. extra: 1728 / 1578,
  9623. bottom: 0.022
  9624. }
  9625. },
  9626. stomping: {
  9627. height: math.unit(2.025, "meters"),
  9628. weight: math.unit(120, "lb"),
  9629. name: "Stomping",
  9630. image: {
  9631. source: "./media/characters/tene/stomping.svg",
  9632. extra: 938 / 873,
  9633. bottom: 0.01
  9634. }
  9635. },
  9636. sitting: {
  9637. height: math.unit(1, "meter"),
  9638. weight: math.unit(120, "lb"),
  9639. name: "Sitting",
  9640. image: {
  9641. source: "./media/characters/tene/sitting.svg",
  9642. extra: 437 / 415,
  9643. bottom: 0.1
  9644. }
  9645. },
  9646. feral: {
  9647. height: math.unit(3.9, "feet"),
  9648. weight: math.unit(250, "lb"),
  9649. name: "Feral",
  9650. image: {
  9651. source: "./media/characters/tene/feral.svg",
  9652. extra: 717 / 458,
  9653. bottom: 0.179
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(6, "feet")
  9661. },
  9662. {
  9663. name: "Macro",
  9664. height: math.unit(300, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(5, "miles")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9675. {
  9676. side: {
  9677. height: math.unit(6, "feet"),
  9678. name: "Side",
  9679. image: {
  9680. source: "./media/characters/evander/side.svg",
  9681. extra: 877 / 477
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(0.83, "meters"),
  9689. default: true
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(12, "feet"),
  9698. weight: math.unit(1000, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9702. extra: 1762 / 1611
  9703. }
  9704. },
  9705. back: {
  9706. height: math.unit(12, "feet"),
  9707. weight: math.unit(1000, "lb"),
  9708. name: "Back",
  9709. image: {
  9710. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9711. extra: 1762 / 1611
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(12, "feet"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Kaiju",
  9723. height: math.unit(150, "feet")
  9724. },
  9725. ]
  9726. ))
  9727. characterMakers.push(() => makeCharacter(
  9728. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9729. {
  9730. front: {
  9731. height: math.unit(6, "feet"),
  9732. weight: math.unit(150, "lb"),
  9733. name: "Front",
  9734. image: {
  9735. source: "./media/characters/zero-alurus/front.svg"
  9736. }
  9737. },
  9738. back: {
  9739. height: math.unit(6, "feet"),
  9740. weight: math.unit(150, "lb"),
  9741. name: "Back",
  9742. image: {
  9743. source: "./media/characters/zero-alurus/back.svg"
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(5 + 10 / 12, "feet")
  9751. },
  9752. {
  9753. name: "Macro",
  9754. height: math.unit(60, "feet"),
  9755. default: true
  9756. },
  9757. {
  9758. name: "Macro+",
  9759. height: math.unit(450, "feet")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(6, "feet"),
  9768. weight: math.unit(200, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/mega-shi/front.svg",
  9772. extra: 1279 / 1250,
  9773. bottom: 0.02
  9774. }
  9775. },
  9776. back: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(200, "lb"),
  9779. name: "Back",
  9780. image: {
  9781. source: "./media/characters/mega-shi/back.svg",
  9782. extra: 1279 / 1250,
  9783. bottom: 0.02
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Micro",
  9790. height: math.unit(16 + 6 / 12, "feet")
  9791. },
  9792. {
  9793. name: "Third Dimension",
  9794. height: math.unit(40, "meters")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(660, "feet"),
  9799. default: true
  9800. },
  9801. {
  9802. name: "Megamacro",
  9803. height: math.unit(10, "miles")
  9804. },
  9805. {
  9806. name: "Planetary Launch",
  9807. height: math.unit(500, "miles")
  9808. },
  9809. {
  9810. name: "Interstellar",
  9811. height: math.unit(1e9, "miles")
  9812. },
  9813. {
  9814. name: "Leaving the Universe",
  9815. height: math.unit(1, "gigaparsec")
  9816. },
  9817. {
  9818. name: "Travelling Universes",
  9819. height: math.unit(30e15, "parsecs")
  9820. },
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9825. {
  9826. front: {
  9827. height: math.unit(6, "feet"),
  9828. weight: math.unit(150, "lb"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/odyssey/front.svg",
  9832. extra: 1782 / 1582,
  9833. bottom: 0.01
  9834. }
  9835. },
  9836. side: {
  9837. height: math.unit(5.7, "feet"),
  9838. weight: math.unit(140, "lb"),
  9839. name: "Side",
  9840. image: {
  9841. source: "./media/characters/odyssey/side.svg",
  9842. extra: 6462 / 5700
  9843. }
  9844. },
  9845. },
  9846. [
  9847. {
  9848. name: "Normal",
  9849. height: math.unit(5 + 4 / 12, "feet")
  9850. },
  9851. {
  9852. name: "Macro",
  9853. height: math.unit(1, "km")
  9854. },
  9855. {
  9856. name: "Megamacro",
  9857. height: math.unit(3000, "km")
  9858. },
  9859. {
  9860. name: "Gigamacro",
  9861. height: math.unit(1, "AU"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Omniversal",
  9866. height: math.unit(100e14, "lightyears")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(300, "lb"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/mekuto/front.svg",
  9879. extra: 921 / 832,
  9880. bottom: 0.03
  9881. }
  9882. },
  9883. hand: {
  9884. height: math.unit(6 / 10.24, "feet"),
  9885. name: "Hand",
  9886. image: {
  9887. source: "./media/characters/mekuto/hand.svg"
  9888. }
  9889. },
  9890. foot: {
  9891. height: math.unit(6 / 5.05, "feet"),
  9892. name: "Foot",
  9893. image: {
  9894. source: "./media/characters/mekuto/foot.svg"
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Minimicro",
  9901. height: math.unit(0.2, "inches")
  9902. },
  9903. {
  9904. name: "Micro",
  9905. height: math.unit(1.5, "inches")
  9906. },
  9907. {
  9908. name: "Normal",
  9909. height: math.unit(5 + 11 / 12, "feet"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Minimacro",
  9914. height: math.unit(17 + 9 / 12, "feet")
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(177.5, "feet")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(152, "miles")
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9928. {
  9929. front: {
  9930. height: math.unit(6.5, "inches"),
  9931. weight: math.unit(13, "oz"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/dafydd-tomos/front.svg",
  9935. extra: 2990 / 2603,
  9936. bottom: 0.03
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(6.5, "inches"),
  9944. default: true
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9950. {
  9951. front: {
  9952. height: math.unit(6, "feet"),
  9953. weight: math.unit(150, "lb"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/splinter/front.svg",
  9957. extra: 2990 / 2882,
  9958. bottom: 0.04
  9959. }
  9960. },
  9961. back: {
  9962. height: math.unit(6, "feet"),
  9963. weight: math.unit(150, "lb"),
  9964. name: "Back",
  9965. image: {
  9966. source: "./media/characters/splinter/back.svg",
  9967. extra: 2990 / 2882,
  9968. bottom: 0.04
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(6, "feet")
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(230, "meters"),
  9980. default: true
  9981. },
  9982. ]
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(4 + 10 / 12, "feet"),
  9989. weight: math.unit(480, "lb"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/snow-gabumon/front.svg",
  9993. extra: 1140 / 963,
  9994. bottom: 0.058
  9995. }
  9996. },
  9997. back: {
  9998. height: math.unit(4 + 10 / 12, "feet"),
  9999. weight: math.unit(480, "lb"),
  10000. name: "Back",
  10001. image: {
  10002. source: "./media/characters/snow-gabumon/back.svg",
  10003. extra: 1115 / 962,
  10004. bottom: 0.041
  10005. }
  10006. },
  10007. frontUndresed: {
  10008. height: math.unit(4 + 10 / 12, "feet"),
  10009. weight: math.unit(480, "lb"),
  10010. name: "Front (Undressed)",
  10011. image: {
  10012. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10013. extra: 1061 / 960,
  10014. bottom: 0.045
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Micro",
  10021. height: math.unit(1, "inch")
  10022. },
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(4 + 10 / 12, "feet"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Macro",
  10030. height: math.unit(200, "feet")
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(120, "miles")
  10035. },
  10036. {
  10037. name: "Gigamacro",
  10038. height: math.unit(9800, "miles")
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(1.7, "meters"),
  10047. weight: math.unit(140, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/moody/front.svg",
  10051. extra: 3226 / 3007,
  10052. bottom: 0.087
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Micro",
  10059. height: math.unit(1, "mm")
  10060. },
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(1.7, "meters"),
  10064. default: true
  10065. },
  10066. {
  10067. name: "Macro",
  10068. height: math.unit(80, "meters")
  10069. },
  10070. {
  10071. name: "Macro+",
  10072. height: math.unit(500, "meters")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10078. {
  10079. front: {
  10080. height: math.unit(6, "feet"),
  10081. weight: math.unit(150, "lb"),
  10082. name: "Front",
  10083. image: {
  10084. source: "./media/characters/zyas/front.svg",
  10085. extra: 1180 / 1120,
  10086. bottom: 0.045
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(10, "feet"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Macro",
  10098. height: math.unit(500, "feet")
  10099. },
  10100. {
  10101. name: "Megamacro",
  10102. height: math.unit(5, "miles")
  10103. },
  10104. {
  10105. name: "Teramacro",
  10106. height: math.unit(150000, "miles")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(150, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/cuon/front.svg",
  10119. extra: 1390 / 1320,
  10120. bottom: 0.008
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Micro",
  10127. height: math.unit(3, "inches")
  10128. },
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(18 + 9 / 12, "feet"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(360, "feet")
  10137. },
  10138. {
  10139. name: "Megamacro",
  10140. height: math.unit(360, "miles")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(2.4, "meters"),
  10149. weight: math.unit(70, "kg"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/nyanuxk/front.svg",
  10153. extra: 1172 / 1084,
  10154. bottom: 0.065
  10155. }
  10156. },
  10157. side: {
  10158. height: math.unit(2.4, "meters"),
  10159. weight: math.unit(70, "kg"),
  10160. name: "Side",
  10161. image: {
  10162. source: "./media/characters/nyanuxk/side.svg",
  10163. extra: 1190 / 1132,
  10164. bottom: 0.007
  10165. }
  10166. },
  10167. back: {
  10168. height: math.unit(2.4, "meters"),
  10169. weight: math.unit(70, "kg"),
  10170. name: "Back",
  10171. image: {
  10172. source: "./media/characters/nyanuxk/back.svg",
  10173. extra: 1200 / 1141,
  10174. bottom: 0.015
  10175. }
  10176. },
  10177. foot: {
  10178. height: math.unit(0.52, "meters"),
  10179. name: "Foot",
  10180. image: {
  10181. source: "./media/characters/nyanuxk/foot.svg"
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(2, "cm")
  10189. },
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(2.4, "meters"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Smaller Macro",
  10197. height: math.unit(120, "meters")
  10198. },
  10199. {
  10200. name: "Bigger Macro",
  10201. height: math.unit(1.2, "km")
  10202. },
  10203. {
  10204. name: "Megamacro",
  10205. height: math.unit(15, "kilometers")
  10206. },
  10207. {
  10208. name: "Gigamacro",
  10209. height: math.unit(2000, "km")
  10210. },
  10211. {
  10212. name: "Teramacro",
  10213. height: math.unit(500000, "km")
  10214. },
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10219. {
  10220. side: {
  10221. height: math.unit(6, "feet"),
  10222. name: "Side",
  10223. image: {
  10224. source: "./media/characters/ailbhe/side.svg",
  10225. extra: 757 / 464,
  10226. bottom: 0.041
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(1.07, "meters"),
  10234. default: true
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(6, "feet"),
  10243. weight: math.unit(120, "kg"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/zevulfius/front.svg",
  10247. extra: 965 / 903
  10248. }
  10249. },
  10250. side: {
  10251. height: math.unit(6, "feet"),
  10252. weight: math.unit(120, "kg"),
  10253. name: "Side",
  10254. image: {
  10255. source: "./media/characters/zevulfius/side.svg",
  10256. extra: 939 / 900
  10257. }
  10258. },
  10259. back: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(120, "kg"),
  10262. name: "Back",
  10263. image: {
  10264. source: "./media/characters/zevulfius/back.svg",
  10265. extra: 918 / 854,
  10266. bottom: 0.005
  10267. }
  10268. },
  10269. foot: {
  10270. height: math.unit(6 / 3.72, "feet"),
  10271. name: "Foot",
  10272. image: {
  10273. source: "./media/characters/zevulfius/foot.svg"
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(750, "meters")
  10281. },
  10282. {
  10283. name: "Megamacro",
  10284. height: math.unit(20, "km"),
  10285. default: true
  10286. },
  10287. {
  10288. name: "Gigamacro",
  10289. height: math.unit(2000, "km")
  10290. },
  10291. {
  10292. name: "Teramacro",
  10293. height: math.unit(250000, "km")
  10294. },
  10295. ]
  10296. ))
  10297. characterMakers.push(() => makeCharacter(
  10298. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10299. {
  10300. front: {
  10301. height: math.unit(100, "feet"),
  10302. weight: math.unit(350, "kg"),
  10303. name: "Front",
  10304. image: {
  10305. source: "./media/characters/rikes/front.svg",
  10306. extra: 1565 / 1483,
  10307. bottom: 0.017
  10308. }
  10309. },
  10310. },
  10311. [
  10312. {
  10313. name: "Macro",
  10314. height: math.unit(100, "feet"),
  10315. default: true
  10316. },
  10317. ]
  10318. ))
  10319. characterMakers.push(() => makeCharacter(
  10320. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10321. {
  10322. anthro: {
  10323. height: math.unit(8, "feet"),
  10324. weight: math.unit(120, "kg"),
  10325. name: "Anthro",
  10326. image: {
  10327. source: "./media/characters/adam-silver-mane/anthro.svg",
  10328. extra: 5743 / 5339,
  10329. bottom: 0.07
  10330. }
  10331. },
  10332. taur: {
  10333. height: math.unit(16, "feet"),
  10334. weight: math.unit(1500, "kg"),
  10335. name: "Taur",
  10336. image: {
  10337. source: "./media/characters/adam-silver-mane/taur.svg",
  10338. extra: 1713 / 1571,
  10339. bottom: 0.01
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(8, "feet")
  10347. },
  10348. {
  10349. name: "Minimacro",
  10350. height: math.unit(80, "feet")
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(800, "feet"),
  10355. default: true
  10356. },
  10357. {
  10358. name: "Megamacro",
  10359. height: math.unit(8000, "feet")
  10360. },
  10361. {
  10362. name: "Gigamacro",
  10363. height: math.unit(800, "miles")
  10364. },
  10365. {
  10366. name: "Teramacro",
  10367. height: math.unit(80000, "miles")
  10368. },
  10369. {
  10370. name: "Celestial",
  10371. height: math.unit(8e6, "miles")
  10372. },
  10373. {
  10374. name: "Star Dragon",
  10375. height: math.unit(800000, "parsecs")
  10376. },
  10377. {
  10378. name: "Godly",
  10379. height: math.unit(800, "teraparsecs")
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(6, "feet"),
  10388. weight: math.unit(150, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/ky'owin/front.svg",
  10392. extra: 3888 / 3068,
  10393. bottom: 0.015
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(6 + 8 / 12, "feet")
  10401. },
  10402. {
  10403. name: "Large",
  10404. height: math.unit(68, "feet")
  10405. },
  10406. {
  10407. name: "Macro",
  10408. height: math.unit(132, "feet")
  10409. },
  10410. {
  10411. name: "Macro+",
  10412. height: math.unit(340, "feet")
  10413. },
  10414. {
  10415. name: "Macro++",
  10416. height: math.unit(680, "feet"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Megamacro",
  10421. height: math.unit(1, "mile")
  10422. },
  10423. {
  10424. name: "Megamacro+",
  10425. height: math.unit(10, "miles")
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10431. {
  10432. front: {
  10433. height: math.unit(4, "feet"),
  10434. weight: math.unit(50, "lb"),
  10435. name: "Front",
  10436. image: {
  10437. source: "./media/characters/mal/front.svg",
  10438. extra: 785 / 724,
  10439. bottom: 0.07
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Micro",
  10446. height: math.unit(4, "inches")
  10447. },
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(4, "feet"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Macro",
  10455. height: math.unit(200, "feet")
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10461. {
  10462. front: {
  10463. height: math.unit(6, "feet"),
  10464. weight: math.unit(150, "lb"),
  10465. name: "Front",
  10466. image: {
  10467. source: "./media/characters/jordan-deware/front.svg",
  10468. extra: 1191 / 1012
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Nano",
  10475. height: math.unit(0.01, "mm")
  10476. },
  10477. {
  10478. name: "Minimicro",
  10479. height: math.unit(1, "mm")
  10480. },
  10481. {
  10482. name: "Micro",
  10483. height: math.unit(0.5, "inches")
  10484. },
  10485. {
  10486. name: "Normal",
  10487. height: math.unit(4, "feet"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Minimacro",
  10492. height: math.unit(40, "meters")
  10493. },
  10494. {
  10495. name: "Small Macro",
  10496. height: math.unit(400, "meters")
  10497. },
  10498. {
  10499. name: "Macro",
  10500. height: math.unit(4, "miles")
  10501. },
  10502. {
  10503. name: "Megamacro",
  10504. height: math.unit(40, "miles")
  10505. },
  10506. {
  10507. name: "Megamacro+",
  10508. height: math.unit(400, "miles")
  10509. },
  10510. {
  10511. name: "Gigamacro",
  10512. height: math.unit(400000, "miles")
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10518. {
  10519. side: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(150, "lb"),
  10522. name: "Side",
  10523. image: {
  10524. source: "./media/characters/kimiko/side.svg",
  10525. extra: 600 / 358
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(15, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(220, "feet")
  10538. },
  10539. {
  10540. name: "Macro+",
  10541. height: math.unit(1450, "feet")
  10542. },
  10543. {
  10544. name: "Megamacro",
  10545. height: math.unit(11500, "feet")
  10546. },
  10547. {
  10548. name: "Gigamacro",
  10549. height: math.unit(9500, "miles")
  10550. },
  10551. {
  10552. name: "Teramacro",
  10553. height: math.unit(2208005005, "miles")
  10554. },
  10555. {
  10556. name: "Examacro",
  10557. height: math.unit(2750, "parsecs")
  10558. },
  10559. {
  10560. name: "Zettamacro",
  10561. height: math.unit(101500, "parsecs")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(70, "kg"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/andrew-sleepy/front.svg"
  10574. }
  10575. },
  10576. side: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(70, "kg"),
  10579. name: "Side",
  10580. image: {
  10581. source: "./media/characters/andrew-sleepy/side.svg"
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Micro",
  10588. height: math.unit(1, "mm"),
  10589. default: true
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(150, "lb"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/judio/front.svg",
  10602. extra: 1258 / 1110
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(5 + 6 / 12, "feet")
  10610. },
  10611. {
  10612. name: "Macro",
  10613. height: math.unit(1000, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(10, "miles")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(68, "kg"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/nomaxice/front.svg",
  10631. extra: 1498 / 1073,
  10632. bottom: 0.075
  10633. }
  10634. },
  10635. foot: {
  10636. height: math.unit(1.1, "feet"),
  10637. name: "Foot",
  10638. image: {
  10639. source: "./media/characters/nomaxice/foot.svg"
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Micro",
  10646. height: math.unit(8, "cm")
  10647. },
  10648. {
  10649. name: "Norm",
  10650. height: math.unit(1.82, "m")
  10651. },
  10652. {
  10653. name: "Norm+",
  10654. height: math.unit(8.8, "feet")
  10655. },
  10656. {
  10657. name: "Big",
  10658. height: math.unit(8, "meters"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(18, "meters")
  10664. },
  10665. {
  10666. name: "Macro+",
  10667. height: math.unit(88, "meters")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(12, "feet"),
  10676. weight: math.unit(1.5, "tons"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/dydros/front.svg",
  10680. extra: 863 / 800,
  10681. bottom: 0.015
  10682. }
  10683. },
  10684. back: {
  10685. height: math.unit(12, "feet"),
  10686. weight: math.unit(1.5, "tons"),
  10687. name: "Back",
  10688. image: {
  10689. source: "./media/characters/dydros/back.svg",
  10690. extra: 900 / 843,
  10691. bottom: 0.005
  10692. }
  10693. },
  10694. },
  10695. [
  10696. {
  10697. name: "Normal",
  10698. height: math.unit(12, "feet"),
  10699. default: true
  10700. },
  10701. ]
  10702. ))
  10703. characterMakers.push(() => makeCharacter(
  10704. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10705. {
  10706. front: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(100, "kg"),
  10709. name: "Front",
  10710. image: {
  10711. source: "./media/characters/riggi/front.svg",
  10712. extra: 5787 / 5303
  10713. }
  10714. },
  10715. hyper: {
  10716. height: math.unit(6 * 5 / 3, "feet"),
  10717. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10718. name: "Hyper",
  10719. image: {
  10720. source: "./media/characters/riggi/hyper.svg",
  10721. extra: 3595 / 3485
  10722. }
  10723. },
  10724. },
  10725. [
  10726. {
  10727. name: "Small Macro",
  10728. height: math.unit(50, "feet")
  10729. },
  10730. {
  10731. name: "Default",
  10732. height: math.unit(200, "feet"),
  10733. default: true
  10734. },
  10735. {
  10736. name: "Loom",
  10737. height: math.unit(10000, "feet")
  10738. },
  10739. {
  10740. name: "Cruising Altitude",
  10741. height: math.unit(30000, "feet")
  10742. },
  10743. {
  10744. name: "Megamacro",
  10745. height: math.unit(100, "miles")
  10746. },
  10747. {
  10748. name: "Continent Sized",
  10749. height: math.unit(2800, "miles")
  10750. },
  10751. {
  10752. name: "Earth Sized",
  10753. height: math.unit(8000, "miles")
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(250, "lb"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/alexi/front.svg",
  10766. extra: 3483 / 3291,
  10767. bottom: 0.04
  10768. }
  10769. },
  10770. back: {
  10771. height: math.unit(6, "feet"),
  10772. weight: math.unit(250, "lb"),
  10773. name: "Back",
  10774. image: {
  10775. source: "./media/characters/alexi/back.svg",
  10776. extra: 3533 / 3356,
  10777. bottom: 0.021
  10778. }
  10779. },
  10780. frontTransforming: {
  10781. height: math.unit(8.58, "feet"),
  10782. weight: math.unit(1300, "lb"),
  10783. name: "Transforming",
  10784. image: {
  10785. source: "./media/characters/alexi/front-transforming.svg",
  10786. extra: 437 / 409,
  10787. bottom: 19 / 458.66
  10788. }
  10789. },
  10790. frontTransformed: {
  10791. height: math.unit(12.5, "feet"),
  10792. weight: math.unit(4000, "lb"),
  10793. name: "Transformed",
  10794. image: {
  10795. source: "./media/characters/alexi/front-transformed.svg",
  10796. extra: 639 / 614,
  10797. bottom: 30.55 / 671
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Normal",
  10804. height: math.unit(14, "feet"),
  10805. default: true
  10806. },
  10807. {
  10808. name: "Minimacro",
  10809. height: math.unit(30, "meters")
  10810. },
  10811. {
  10812. name: "Macro",
  10813. height: math.unit(500, "meters")
  10814. },
  10815. {
  10816. name: "Megamacro",
  10817. height: math.unit(9000, "km")
  10818. },
  10819. {
  10820. name: "Teramacro",
  10821. height: math.unit(384000, "km")
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10827. {
  10828. front: {
  10829. height: math.unit(6, "feet"),
  10830. weight: math.unit(150, "lb"),
  10831. name: "Front",
  10832. image: {
  10833. source: "./media/characters/kayroo/front.svg",
  10834. extra: 1153 / 1038,
  10835. bottom: 0.06
  10836. }
  10837. },
  10838. foot: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(150, "lb"),
  10841. name: "Foot",
  10842. image: {
  10843. source: "./media/characters/kayroo/foot.svg"
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Normal",
  10850. height: math.unit(8, "feet"),
  10851. default: true
  10852. },
  10853. {
  10854. name: "Minimacro",
  10855. height: math.unit(250, "feet")
  10856. },
  10857. {
  10858. name: "Macro",
  10859. height: math.unit(2800, "feet")
  10860. },
  10861. {
  10862. name: "Megamacro",
  10863. height: math.unit(5200, "feet")
  10864. },
  10865. {
  10866. name: "Gigamacro",
  10867. height: math.unit(27000, "feet")
  10868. },
  10869. {
  10870. name: "Omega",
  10871. height: math.unit(45000, "feet")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10877. {
  10878. front: {
  10879. height: math.unit(18, "feet"),
  10880. weight: math.unit(5800, "lb"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/rhys/front.svg",
  10884. extra: 3386 / 3090,
  10885. bottom: 0.07
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(18, "feet"),
  10893. default: true
  10894. },
  10895. {
  10896. name: "Working Size",
  10897. height: math.unit(200, "feet")
  10898. },
  10899. {
  10900. name: "Demolition Size",
  10901. height: math.unit(2000, "feet")
  10902. },
  10903. {
  10904. name: "Maximum Licensed Size",
  10905. height: math.unit(5, "miles")
  10906. },
  10907. {
  10908. name: "Maximum Observed Size",
  10909. height: math.unit(10, "yottameters")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(250, "lb"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/toto/front.svg",
  10922. extra: 527 / 479,
  10923. bottom: 0.05
  10924. }
  10925. },
  10926. },
  10927. [
  10928. {
  10929. name: "Micro",
  10930. height: math.unit(3, "feet")
  10931. },
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(10, "feet")
  10935. },
  10936. {
  10937. name: "Macro",
  10938. height: math.unit(150, "feet"),
  10939. default: true
  10940. },
  10941. {
  10942. name: "Megamacro",
  10943. height: math.unit(1200, "feet")
  10944. },
  10945. ]
  10946. ))
  10947. characterMakers.push(() => makeCharacter(
  10948. { name: "King", species: ["lion"], tags: ["anthro"] },
  10949. {
  10950. back: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(150, "lb"),
  10953. name: "Back",
  10954. image: {
  10955. source: "./media/characters/king/back.svg"
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Micro",
  10962. height: math.unit(2, "inches")
  10963. },
  10964. {
  10965. name: "Normal",
  10966. height: math.unit(8, "feet")
  10967. },
  10968. {
  10969. name: "Macro",
  10970. height: math.unit(200, "feet"),
  10971. default: true
  10972. },
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(50, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10981. {
  10982. anthro: {
  10983. height: math.unit(6 + 5 / 12, "feet"),
  10984. weight: math.unit(280, "lb"),
  10985. name: "Anthro",
  10986. image: {
  10987. source: "./media/characters/cordite/anthro.svg",
  10988. extra: 1986 / 1905,
  10989. bottom: 0.025
  10990. }
  10991. },
  10992. feral: {
  10993. height: math.unit(2, "feet"),
  10994. weight: math.unit(90, "lb"),
  10995. name: "Feral",
  10996. image: {
  10997. source: "./media/characters/cordite/feral.svg",
  10998. extra: 1260 / 755,
  10999. bottom: 0.05
  11000. }
  11001. },
  11002. },
  11003. [
  11004. {
  11005. name: "Normal",
  11006. height: math.unit(6 + 5 / 12, "feet"),
  11007. default: true
  11008. },
  11009. ]
  11010. ))
  11011. characterMakers.push(() => makeCharacter(
  11012. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11013. {
  11014. front: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(150, "lb"),
  11017. name: "Front",
  11018. image: {
  11019. source: "./media/characters/pianostrong/front.svg",
  11020. extra: 6577 / 6254,
  11021. bottom: 0.02
  11022. }
  11023. },
  11024. side: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(150, "lb"),
  11027. name: "Side",
  11028. image: {
  11029. source: "./media/characters/pianostrong/side.svg",
  11030. extra: 6106 / 5730
  11031. }
  11032. },
  11033. back: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Back",
  11037. image: {
  11038. source: "./media/characters/pianostrong/back.svg",
  11039. extra: 6085 / 5733,
  11040. bottom: 0.01
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Macro",
  11047. height: math.unit(100, "feet")
  11048. },
  11049. {
  11050. name: "Macro+",
  11051. height: math.unit(300, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Macro++",
  11056. height: math.unit(1000, "feet")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(150, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/kona/front.svg",
  11069. extra: 2960 / 2629,
  11070. bottom: 0.005
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Normal",
  11077. height: math.unit(11 + 8 / 12, "feet")
  11078. },
  11079. {
  11080. name: "Macro",
  11081. height: math.unit(850, "feet"),
  11082. default: true
  11083. },
  11084. {
  11085. name: "Macro+",
  11086. height: math.unit(1.5, "km"),
  11087. default: true
  11088. },
  11089. {
  11090. name: "Megamacro",
  11091. height: math.unit(80, "miles")
  11092. },
  11093. {
  11094. name: "Gigamacro",
  11095. height: math.unit(3500, "miles")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11101. {
  11102. side: {
  11103. height: math.unit(1.9, "meters"),
  11104. weight: math.unit(326, "kg"),
  11105. name: "Side",
  11106. image: {
  11107. source: "./media/characters/levi/side.svg",
  11108. extra: 1704 / 1334,
  11109. bottom: 0.02
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(1.9, "meters"),
  11117. default: true
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(20, "meters")
  11122. },
  11123. {
  11124. name: "Macro+",
  11125. height: math.unit(200, "meters")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(2, "km")
  11130. },
  11131. {
  11132. name: "Megamacro+",
  11133. height: math.unit(20, "km")
  11134. },
  11135. {
  11136. name: "Gigamacro",
  11137. height: math.unit(2500, "km")
  11138. },
  11139. {
  11140. name: "Gigamacro+",
  11141. height: math.unit(120000, "km")
  11142. },
  11143. {
  11144. name: "Teramacro",
  11145. height: math.unit(7.77e6, "km")
  11146. },
  11147. ]
  11148. ))
  11149. characterMakers.push(() => makeCharacter(
  11150. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11151. {
  11152. front: {
  11153. height: math.unit(6 + 4 / 12, "feet"),
  11154. weight: math.unit(188, "lb"),
  11155. name: "Front",
  11156. image: {
  11157. source: "./media/characters/bmc/front.svg",
  11158. extra: 1067 / 1022,
  11159. bottom: 0.047
  11160. }
  11161. },
  11162. },
  11163. [
  11164. {
  11165. name: "Human-sized",
  11166. height: math.unit(6 + 4 / 12, "feet")
  11167. },
  11168. {
  11169. name: "Small",
  11170. height: math.unit(250, "feet")
  11171. },
  11172. {
  11173. name: "Normal",
  11174. height: math.unit(1250, "feet"),
  11175. default: true
  11176. },
  11177. {
  11178. name: "Good Day",
  11179. height: math.unit(88, "miles")
  11180. },
  11181. {
  11182. name: "Largest Measured Size",
  11183. height: math.unit(11.2e6, "lightyears")
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(20, "feet"),
  11192. weight: math.unit(2016, "kg"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/sven-the-kaiju/front.svg",
  11196. extra: 1277/1250,
  11197. bottom: 35/1312
  11198. }
  11199. },
  11200. mouth: {
  11201. height: math.unit(1.85, "feet"),
  11202. name: "Mouth",
  11203. image: {
  11204. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Fairy",
  11211. height: math.unit(6, "inches")
  11212. },
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(20, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Rampage",
  11220. height: math.unit(200, "feet")
  11221. },
  11222. {
  11223. name: "Archfey Forest Guardian",
  11224. height: math.unit(1, "mile")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(4, "meters"),
  11233. weight: math.unit(2, "tons"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/marik/front.svg",
  11237. extra: 1057 / 1003,
  11238. bottom: 0.08
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(4, "meters"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(20, "meters")
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(50, "km")
  11255. },
  11256. {
  11257. name: "Gigamacro",
  11258. height: math.unit(100, "km")
  11259. },
  11260. {
  11261. name: "Alpha Macro",
  11262. height: math.unit(7.88e7, "yottameters")
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(6, "feet"),
  11271. weight: math.unit(110, "lb"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/mel/front.svg",
  11275. extra: 736 / 617,
  11276. bottom: 0.017
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Pico",
  11283. height: math.unit(3, "pm")
  11284. },
  11285. {
  11286. name: "Nano",
  11287. height: math.unit(3, "nm")
  11288. },
  11289. {
  11290. name: "Micro",
  11291. height: math.unit(0.3, "mm"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Micro+",
  11296. height: math.unit(3, "mm")
  11297. },
  11298. {
  11299. name: "Normal",
  11300. height: math.unit(5 + 10.5 / 12, "feet")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11306. {
  11307. kaiju: {
  11308. height: math.unit(1.75, "meters"),
  11309. weight: math.unit(55, "kg"),
  11310. name: "Kaiju",
  11311. image: {
  11312. source: "./media/characters/lykonous/kaiju.svg",
  11313. extra: 1055 / 946,
  11314. bottom: 0.135
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(2.5, "meters"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Kaiju Dragon",
  11326. height: math.unit(60, "meters")
  11327. },
  11328. {
  11329. name: "Mega Kaiju",
  11330. height: math.unit(120, "km")
  11331. },
  11332. {
  11333. name: "Giga Kaiju",
  11334. height: math.unit(200, "megameters")
  11335. },
  11336. {
  11337. name: "Terra Kaiju",
  11338. height: math.unit(400, "gigameters")
  11339. },
  11340. {
  11341. name: "Kaiju Dragon God",
  11342. height: math.unit(13000, "exaparsecs")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(150, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/blü/front.svg",
  11355. extra: 1883 / 1564,
  11356. bottom: 0.031
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(13, "feet"),
  11364. default: true
  11365. },
  11366. {
  11367. name: "Big Boi",
  11368. height: math.unit(150, "meters")
  11369. },
  11370. {
  11371. name: "Mini Stomper",
  11372. height: math.unit(300, "meters")
  11373. },
  11374. {
  11375. name: "Macro",
  11376. height: math.unit(1000, "meters")
  11377. },
  11378. {
  11379. name: "Megamacro",
  11380. height: math.unit(11000, "meters")
  11381. },
  11382. {
  11383. name: "Gigamacro",
  11384. height: math.unit(11000, "km")
  11385. },
  11386. {
  11387. name: "Teramacro",
  11388. height: math.unit(420000, "km")
  11389. },
  11390. {
  11391. name: "Examacro",
  11392. height: math.unit(120, "parsecs")
  11393. },
  11394. {
  11395. name: "God Tho",
  11396. height: math.unit(98000000000, "parsecs")
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11402. {
  11403. taurFront: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(200, "lb"),
  11406. name: "Taur (Front)",
  11407. image: {
  11408. source: "./media/characters/scales/taur-front.svg",
  11409. extra: 1,
  11410. bottom: 0.05
  11411. }
  11412. },
  11413. taurBack: {
  11414. height: math.unit(6, "feet"),
  11415. weight: math.unit(200, "lb"),
  11416. name: "Taur (Back)",
  11417. image: {
  11418. source: "./media/characters/scales/taur-back.svg",
  11419. extra: 1,
  11420. bottom: 0.08
  11421. }
  11422. },
  11423. anthro: {
  11424. height: math.unit(6 * 7 / 12, "feet"),
  11425. weight: math.unit(100, "lb"),
  11426. name: "Anthro",
  11427. image: {
  11428. source: "./media/characters/scales/anthro.svg",
  11429. extra: 1,
  11430. bottom: 0.06
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(12, "feet"),
  11438. default: true
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/koragos/front.svg",
  11451. extra: 841 / 794,
  11452. bottom: 0.035
  11453. }
  11454. },
  11455. back: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(150, "lb"),
  11458. name: "Back",
  11459. image: {
  11460. source: "./media/characters/koragos/back.svg",
  11461. extra: 841 / 810,
  11462. bottom: 0.022
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(6 + 11 / 12, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(490, "feet")
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(10, "miles")
  11479. },
  11480. {
  11481. name: "Gigamacro",
  11482. height: math.unit(50, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(6, "feet"),
  11491. weight: math.unit(250, "lb"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/xylrem/front.svg",
  11495. extra: 3323 / 3050,
  11496. bottom: 0.065
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Micro",
  11503. height: math.unit(4, "feet")
  11504. },
  11505. {
  11506. name: "Normal",
  11507. height: math.unit(16, "feet"),
  11508. default: true
  11509. },
  11510. {
  11511. name: "Macro",
  11512. height: math.unit(2720, "feet")
  11513. },
  11514. {
  11515. name: "Megamacro",
  11516. height: math.unit(25000, "miles")
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(8, "feet"),
  11525. weight: math.unit(250, "kg"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/ikideru/front.svg",
  11529. extra: 930 / 870,
  11530. bottom: 0.087
  11531. }
  11532. },
  11533. back: {
  11534. height: math.unit(8, "feet"),
  11535. weight: math.unit(250, "kg"),
  11536. name: "Back",
  11537. image: {
  11538. source: "./media/characters/ikideru/back.svg",
  11539. extra: 919 / 852,
  11540. bottom: 0.055
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Rare",
  11547. height: math.unit(8, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Playful Loom",
  11552. height: math.unit(80, "feet")
  11553. },
  11554. {
  11555. name: "City Leaner",
  11556. height: math.unit(230, "feet")
  11557. },
  11558. {
  11559. name: "Megamacro",
  11560. height: math.unit(2500, "feet")
  11561. },
  11562. {
  11563. name: "Gigamacro",
  11564. height: math.unit(26400, "feet")
  11565. },
  11566. {
  11567. name: "Tectonic Shifter",
  11568. height: math.unit(1.7, "megameters")
  11569. },
  11570. {
  11571. name: "Planet Carer",
  11572. height: math.unit(21, "megameters")
  11573. },
  11574. {
  11575. name: "God",
  11576. height: math.unit(11157.22, "parsecs")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(120, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/neo/front.svg"
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Micro",
  11595. height: math.unit(2, "inches"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Human Size",
  11600. height: math.unit(5 + 8 / 12, "feet")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(13 + 10 / 12, "feet"),
  11609. weight: math.unit(5320, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/chauncey-chantz/front.svg",
  11613. extra: 1587 / 1435,
  11614. bottom: 0.02
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(13 + 10 / 12, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(45, "feet")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(250, "miles")
  11631. },
  11632. {
  11633. name: "Planetary",
  11634. height: math.unit(10000, "miles")
  11635. },
  11636. {
  11637. name: "Galactic",
  11638. height: math.unit(40000, "parsecs")
  11639. },
  11640. {
  11641. name: "Universal",
  11642. height: math.unit(1, "yottameter")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(150, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/epifox/front.svg",
  11655. extra: 1,
  11656. bottom: 0.075
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(6, "inches")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(12, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(3810, "feet")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(500, "miles")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11682. {
  11683. front: {
  11684. height: math.unit(1.8796, "m"),
  11685. weight: math.unit(230, "lb"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/colin-t/front.svg",
  11689. extra: 1272 / 1193,
  11690. bottom: 0.07
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Micro",
  11697. height: math.unit(0.571, "meters")
  11698. },
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(1.8796, "meters"),
  11702. default: true
  11703. },
  11704. {
  11705. name: "Tall",
  11706. height: math.unit(4, "meters")
  11707. },
  11708. {
  11709. name: "Macro",
  11710. height: math.unit(67.241, "meters")
  11711. },
  11712. {
  11713. name: "Megamacro",
  11714. height: math.unit(371.856, "meters")
  11715. },
  11716. {
  11717. name: "Planetary",
  11718. height: math.unit(12631.5689, "km")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(1.85, "meters"),
  11727. weight: math.unit(80, "kg"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/matvei/front.svg",
  11731. extra: 614 / 594,
  11732. bottom: 0.01
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(1.85, "meters"),
  11740. default: true
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(5 + 9 / 12, "feet"),
  11749. weight: math.unit(70, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/quincy/front.svg",
  11753. extra: 3041 / 2751
  11754. }
  11755. },
  11756. back: {
  11757. height: math.unit(5 + 9 / 12, "feet"),
  11758. weight: math.unit(70, "lb"),
  11759. name: "Back",
  11760. image: {
  11761. source: "./media/characters/quincy/back.svg",
  11762. extra: 3041 / 2751
  11763. }
  11764. },
  11765. flying: {
  11766. height: math.unit(5 + 4 / 12, "feet"),
  11767. weight: math.unit(70, "lb"),
  11768. name: "Flying",
  11769. image: {
  11770. source: "./media/characters/quincy/flying.svg",
  11771. extra: 1044 / 930
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Micro",
  11778. height: math.unit(3, "cm")
  11779. },
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(5 + 9 / 12, "feet")
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(200, "meters"),
  11787. default: true
  11788. },
  11789. {
  11790. name: "Megamacro",
  11791. height: math.unit(1000, "meters")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(3 + 11/12, "feet"),
  11800. weight: math.unit(50, "lb"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/vanrel/front.svg",
  11804. extra: 1104/949,
  11805. bottom: 52/1156
  11806. }
  11807. },
  11808. back: {
  11809. height: math.unit(3 + 11/12, "feet"),
  11810. weight: math.unit(50, "lb"),
  11811. name: "Back",
  11812. image: {
  11813. source: "./media/characters/vanrel/back.svg",
  11814. extra: 1119/976,
  11815. bottom: 37/1156
  11816. }
  11817. },
  11818. tome: {
  11819. height: math.unit(1.35, "feet"),
  11820. weight: math.unit(10, "lb"),
  11821. name: "Vanrel's Tome",
  11822. rename: true,
  11823. image: {
  11824. source: "./media/characters/vanrel/tome.svg"
  11825. }
  11826. },
  11827. beans: {
  11828. height: math.unit(0.89, "feet"),
  11829. name: "Beans",
  11830. image: {
  11831. source: "./media/characters/vanrel/beans.svg"
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(3 + 11/12, "feet"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(7 + 5 / 12, "feet"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/kuiper-vanrel/front.svg",
  11851. extra: 1219/1169,
  11852. bottom: 69/1288
  11853. }
  11854. },
  11855. back: {
  11856. height: math.unit(7 + 5 / 12, "feet"),
  11857. name: "Back",
  11858. image: {
  11859. source: "./media/characters/kuiper-vanrel/back.svg",
  11860. extra: 1236/1193,
  11861. bottom: 27/1263
  11862. }
  11863. },
  11864. foot: {
  11865. height: math.unit(0.55, "meters"),
  11866. name: "Foot",
  11867. image: {
  11868. source: "./media/characters/kuiper-vanrel/foot.svg",
  11869. }
  11870. },
  11871. battle: {
  11872. height: math.unit(6.824, "feet"),
  11873. name: "Battle",
  11874. image: {
  11875. source: "./media/characters/kuiper-vanrel/battle.svg",
  11876. extra: 1466 / 1327,
  11877. bottom: 29 / 1492.5
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(7 + 5 / 12, "feet"),
  11885. default: true
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(8 + 5 / 12, "feet"),
  11894. name: "Front",
  11895. image: {
  11896. source: "./media/characters/keset-vanrel/front.svg",
  11897. extra: 1231/1148,
  11898. bottom: 82/1313
  11899. }
  11900. },
  11901. back: {
  11902. height: math.unit(8 + 5 / 12, "feet"),
  11903. name: "Back",
  11904. image: {
  11905. source: "./media/characters/keset-vanrel/back.svg",
  11906. extra: 1240/1174,
  11907. bottom: 33/1273
  11908. }
  11909. },
  11910. hand: {
  11911. height: math.unit(0.6, "meters"),
  11912. name: "Hand",
  11913. image: {
  11914. source: "./media/characters/keset-vanrel/hand.svg"
  11915. }
  11916. },
  11917. foot: {
  11918. height: math.unit(0.94978, "meters"),
  11919. name: "Foot",
  11920. image: {
  11921. source: "./media/characters/keset-vanrel/foot.svg"
  11922. }
  11923. },
  11924. battle: {
  11925. height: math.unit(7.408, "feet"),
  11926. name: "Battle",
  11927. image: {
  11928. source: "./media/characters/keset-vanrel/battle.svg",
  11929. extra: 1890 / 1386,
  11930. bottom: 73.28 / 1970
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Normal",
  11937. height: math.unit(8 + 5 / 12, "feet"),
  11938. default: true
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(150, "lb"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/neos/front.svg",
  11951. extra: 1696 / 992,
  11952. bottom: 0.14
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(54, "cm"),
  11960. default: true
  11961. },
  11962. {
  11963. name: "Macro",
  11964. height: math.unit(100, "m")
  11965. },
  11966. {
  11967. name: "Megamacro",
  11968. height: math.unit(10, "km")
  11969. },
  11970. {
  11971. name: "Megamacro+",
  11972. height: math.unit(100, "km")
  11973. },
  11974. {
  11975. name: "Gigamacro",
  11976. height: math.unit(100, "Mm")
  11977. },
  11978. {
  11979. name: "Teramacro",
  11980. height: math.unit(100, "Gm")
  11981. },
  11982. {
  11983. name: "Examacro",
  11984. height: math.unit(100, "Em")
  11985. },
  11986. {
  11987. name: "Godly",
  11988. height: math.unit(10000, "Ym")
  11989. },
  11990. {
  11991. name: "Beyond Godly",
  11992. height: math.unit(25, "multiverses")
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11998. {
  11999. feminine: {
  12000. height: math.unit(5, "feet"),
  12001. weight: math.unit(100, "lb"),
  12002. name: "Feminine",
  12003. image: {
  12004. source: "./media/characters/sammy-mouse/feminine.svg",
  12005. extra: 2526 / 2425,
  12006. bottom: 0.123
  12007. }
  12008. },
  12009. masculine: {
  12010. height: math.unit(5, "feet"),
  12011. weight: math.unit(100, "lb"),
  12012. name: "Masculine",
  12013. image: {
  12014. source: "./media/characters/sammy-mouse/masculine.svg",
  12015. extra: 2526 / 2425,
  12016. bottom: 0.123
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Micro",
  12023. height: math.unit(5, "inches")
  12024. },
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(5, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(60, "feet")
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(4, "feet"),
  12041. weight: math.unit(50, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/kole/front.svg",
  12045. extra: 1423 / 1303,
  12046. bottom: 0.025
  12047. }
  12048. },
  12049. back: {
  12050. height: math.unit(4, "feet"),
  12051. weight: math.unit(50, "lb"),
  12052. name: "Back",
  12053. image: {
  12054. source: "./media/characters/kole/back.svg",
  12055. extra: 1426 / 1280,
  12056. bottom: 0.02
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Normal",
  12063. height: math.unit(4, "feet"),
  12064. default: true
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(2.5, "feet"),
  12073. weight: math.unit(32, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/rufran/front.svg",
  12077. extra: 1313/885,
  12078. bottom: 94/1407
  12079. }
  12080. },
  12081. side: {
  12082. height: math.unit(2.5, "feet"),
  12083. weight: math.unit(32, "lb"),
  12084. name: "Side",
  12085. image: {
  12086. source: "./media/characters/rufran/side.svg",
  12087. extra: 1109/852,
  12088. bottom: 118/1227
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(2.5, "feet"),
  12093. weight: math.unit(32, "lb"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/rufran/back.svg",
  12097. extra: 1280/878,
  12098. bottom: 131/1411
  12099. }
  12100. },
  12101. mouth: {
  12102. height: math.unit(1.13, "feet"),
  12103. name: "Mouth",
  12104. image: {
  12105. source: "./media/characters/rufran/mouth.svg"
  12106. }
  12107. },
  12108. foot: {
  12109. height: math.unit(1.33, "feet"),
  12110. name: "Foot",
  12111. image: {
  12112. source: "./media/characters/rufran/foot.svg"
  12113. }
  12114. },
  12115. koboldFront: {
  12116. height: math.unit(2 + 6 / 12, "feet"),
  12117. weight: math.unit(20, "lb"),
  12118. name: "Front (Kobold)",
  12119. image: {
  12120. source: "./media/characters/rufran/kobold-front.svg",
  12121. extra: 2041 / 1839,
  12122. bottom: 0.055
  12123. }
  12124. },
  12125. koboldBack: {
  12126. height: math.unit(2 + 6 / 12, "feet"),
  12127. weight: math.unit(20, "lb"),
  12128. name: "Back (Kobold)",
  12129. image: {
  12130. source: "./media/characters/rufran/kobold-back.svg",
  12131. extra: 2054 / 1839,
  12132. bottom: 0.01
  12133. }
  12134. },
  12135. koboldHand: {
  12136. height: math.unit(0.2166, "meters"),
  12137. name: "Hand (Kobold)",
  12138. image: {
  12139. source: "./media/characters/rufran/kobold-hand.svg"
  12140. }
  12141. },
  12142. koboldFoot: {
  12143. height: math.unit(0.185, "meters"),
  12144. name: "Foot (Kobold)",
  12145. image: {
  12146. source: "./media/characters/rufran/kobold-foot.svg"
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Micro",
  12153. height: math.unit(1, "inch")
  12154. },
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(2 + 6 / 12, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Big",
  12162. height: math.unit(60, "feet")
  12163. },
  12164. {
  12165. name: "Macro",
  12166. height: math.unit(325, "feet")
  12167. },
  12168. ]
  12169. ))
  12170. characterMakers.push(() => makeCharacter(
  12171. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12172. {
  12173. front: {
  12174. height: math.unit(0.3, "meters"),
  12175. weight: math.unit(3.5, "kg"),
  12176. name: "Front",
  12177. image: {
  12178. source: "./media/characters/chip/front.svg",
  12179. extra: 748 / 674
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Micro",
  12186. height: math.unit(1, "inch"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12193. {
  12194. side: {
  12195. height: math.unit(2.3, "meters"),
  12196. weight: math.unit(3500, "lb"),
  12197. name: "Side",
  12198. image: {
  12199. source: "./media/characters/torvid/side.svg",
  12200. extra: 1972 / 722,
  12201. bottom: 0.035
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(2.3, "meters"),
  12209. default: true
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(2, "meters"),
  12218. weight: math.unit(150.5, "kg"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/susan/front.svg",
  12222. extra: 693 / 635,
  12223. bottom: 0.05
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Megamacro",
  12230. height: math.unit(505, "miles"),
  12231. default: true
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(6, "feet"),
  12240. weight: math.unit(150, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/raindrops/front.svg",
  12244. extra: 2655 / 2461,
  12245. bottom: 49 / 2705
  12246. }
  12247. },
  12248. back: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(150, "lb"),
  12251. name: "Back",
  12252. image: {
  12253. source: "./media/characters/raindrops/back.svg",
  12254. extra: 2574 / 2400,
  12255. bottom: 65 / 2634
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Micro",
  12262. height: math.unit(6, "inches")
  12263. },
  12264. {
  12265. name: "Normal",
  12266. height: math.unit(6 + 2 / 12, "feet")
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(131, "feet"),
  12271. default: true
  12272. },
  12273. {
  12274. name: "Megamacro",
  12275. height: math.unit(15, "miles")
  12276. },
  12277. {
  12278. name: "Gigamacro",
  12279. height: math.unit(4000, "miles")
  12280. },
  12281. {
  12282. name: "Teramacro",
  12283. height: math.unit(315000, "miles")
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12289. {
  12290. front: {
  12291. height: math.unit(2.794, "meters"),
  12292. weight: math.unit(325, "kg"),
  12293. name: "Front",
  12294. image: {
  12295. source: "./media/characters/tezwa/front.svg",
  12296. extra: 2083 / 1906,
  12297. bottom: 0.031
  12298. }
  12299. },
  12300. foot: {
  12301. height: math.unit(0.687, "meters"),
  12302. name: "Foot",
  12303. image: {
  12304. source: "./media/characters/tezwa/foot.svg"
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Normal",
  12311. height: math.unit(9 + 2 / 12, "feet"),
  12312. default: true
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12318. {
  12319. front: {
  12320. height: math.unit(58, "feet"),
  12321. weight: math.unit(89000, "lb"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/typhus/front.svg",
  12325. extra: 816 / 800,
  12326. bottom: 0.065
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Macro",
  12333. height: math.unit(58, "feet"),
  12334. default: true
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(12, "feet"),
  12343. weight: math.unit(6, "tonnes"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/lyra-von-wulf/front.svg",
  12347. extra: 1,
  12348. bottom: 0.10
  12349. }
  12350. },
  12351. frontMecha: {
  12352. height: math.unit(12, "feet"),
  12353. weight: math.unit(12, "tonnes"),
  12354. name: "Front (Mecha)",
  12355. image: {
  12356. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12357. extra: 1,
  12358. bottom: 0.042
  12359. }
  12360. },
  12361. maw: {
  12362. height: math.unit(2.2, "feet"),
  12363. name: "Maw",
  12364. image: {
  12365. source: "./media/characters/lyra-von-wulf/maw.svg"
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(12, "feet"),
  12373. default: true
  12374. },
  12375. {
  12376. name: "Classic",
  12377. height: math.unit(50, "feet")
  12378. },
  12379. {
  12380. name: "Macro",
  12381. height: math.unit(500, "feet")
  12382. },
  12383. {
  12384. name: "Megamacro",
  12385. height: math.unit(1, "mile")
  12386. },
  12387. {
  12388. name: "Gigamacro",
  12389. height: math.unit(400, "miles")
  12390. },
  12391. {
  12392. name: "Teramacro",
  12393. height: math.unit(22000, "miles")
  12394. },
  12395. {
  12396. name: "Solarmacro",
  12397. height: math.unit(8600000, "miles")
  12398. },
  12399. {
  12400. name: "Galactic",
  12401. height: math.unit(1057000, "lightyears")
  12402. },
  12403. ]
  12404. ))
  12405. characterMakers.push(() => makeCharacter(
  12406. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12407. {
  12408. front: {
  12409. height: math.unit(6 + 10 / 12, "feet"),
  12410. weight: math.unit(150, "lb"),
  12411. name: "Front",
  12412. image: {
  12413. source: "./media/characters/dixon/front.svg",
  12414. extra: 3361 / 3209,
  12415. bottom: 0.01
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Normal",
  12422. height: math.unit(6 + 10 / 12, "feet"),
  12423. default: true
  12424. },
  12425. {
  12426. name: "Big",
  12427. height: math.unit(12, "meters")
  12428. },
  12429. {
  12430. name: "Macro",
  12431. height: math.unit(500, "meters")
  12432. },
  12433. {
  12434. name: "Megamacro",
  12435. height: math.unit(2, "km")
  12436. },
  12437. ]
  12438. ))
  12439. characterMakers.push(() => makeCharacter(
  12440. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12441. {
  12442. front: {
  12443. height: math.unit(185, "cm"),
  12444. weight: math.unit(68, "kg"),
  12445. name: "Front",
  12446. image: {
  12447. source: "./media/characters/kauko/front.svg",
  12448. extra: 1455 / 1421,
  12449. bottom: 0.03
  12450. }
  12451. },
  12452. back: {
  12453. height: math.unit(185, "cm"),
  12454. weight: math.unit(68, "kg"),
  12455. name: "Back",
  12456. image: {
  12457. source: "./media/characters/kauko/back.svg",
  12458. extra: 1455 / 1421,
  12459. bottom: 0.004
  12460. }
  12461. },
  12462. },
  12463. [
  12464. {
  12465. name: "Normal",
  12466. height: math.unit(185, "cm"),
  12467. default: true
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6, "feet"),
  12476. weight: math.unit(150, "kg"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/varg/front.svg",
  12480. extra: 1108 / 1018,
  12481. bottom: 0.0375
  12482. }
  12483. },
  12484. },
  12485. [
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(5, "meters")
  12489. },
  12490. {
  12491. name: "Macro",
  12492. height: math.unit(200, "meters")
  12493. },
  12494. {
  12495. name: "Megamacro",
  12496. height: math.unit(20, "kilometers")
  12497. },
  12498. {
  12499. name: "True Size",
  12500. height: math.unit(211, "km"),
  12501. default: true
  12502. },
  12503. {
  12504. name: "Gigamacro",
  12505. height: math.unit(1000, "km")
  12506. },
  12507. {
  12508. name: "Gigamacro+",
  12509. height: math.unit(8000, "km")
  12510. },
  12511. {
  12512. name: "Teramacro",
  12513. height: math.unit(1000000, "km")
  12514. },
  12515. ]
  12516. ))
  12517. characterMakers.push(() => makeCharacter(
  12518. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12519. {
  12520. front: {
  12521. height: math.unit(7 + 7 / 12, "feet"),
  12522. weight: math.unit(267, "lb"),
  12523. name: "Front",
  12524. image: {
  12525. source: "./media/characters/dayza/front.svg",
  12526. extra: 1262 / 1200,
  12527. bottom: 0.035
  12528. }
  12529. },
  12530. side: {
  12531. height: math.unit(7 + 7 / 12, "feet"),
  12532. weight: math.unit(267, "lb"),
  12533. name: "Side",
  12534. image: {
  12535. source: "./media/characters/dayza/side.svg",
  12536. extra: 1295 / 1245,
  12537. bottom: 0.05
  12538. }
  12539. },
  12540. back: {
  12541. height: math.unit(7 + 7 / 12, "feet"),
  12542. weight: math.unit(267, "lb"),
  12543. name: "Back",
  12544. image: {
  12545. source: "./media/characters/dayza/back.svg",
  12546. extra: 1241 / 1170
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Normal",
  12553. height: math.unit(7 + 7 / 12, "feet"),
  12554. default: true
  12555. },
  12556. {
  12557. name: "Macro",
  12558. height: math.unit(155, "feet")
  12559. },
  12560. ]
  12561. ))
  12562. characterMakers.push(() => makeCharacter(
  12563. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12564. {
  12565. front: {
  12566. height: math.unit(6 + 5 / 12, "feet"),
  12567. weight: math.unit(160, "lb"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/xanthos/front.svg",
  12571. extra: 1,
  12572. bottom: 0.04
  12573. }
  12574. },
  12575. back: {
  12576. height: math.unit(6 + 5 / 12, "feet"),
  12577. weight: math.unit(160, "lb"),
  12578. name: "Back",
  12579. image: {
  12580. source: "./media/characters/xanthos/back.svg",
  12581. extra: 1,
  12582. bottom: 0.03
  12583. }
  12584. },
  12585. hand: {
  12586. height: math.unit(0.928, "feet"),
  12587. name: "Hand",
  12588. image: {
  12589. source: "./media/characters/xanthos/hand.svg"
  12590. }
  12591. },
  12592. foot: {
  12593. height: math.unit(1.286, "feet"),
  12594. name: "Foot",
  12595. image: {
  12596. source: "./media/characters/xanthos/foot.svg"
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(6 + 5 / 12, "feet"),
  12604. default: true
  12605. },
  12606. {
  12607. name: "Normal+",
  12608. height: math.unit(6, "meters")
  12609. },
  12610. {
  12611. name: "Macro",
  12612. height: math.unit(40, "feet")
  12613. },
  12614. {
  12615. name: "Macro+",
  12616. height: math.unit(200, "meters")
  12617. },
  12618. {
  12619. name: "Megamacro",
  12620. height: math.unit(20, "km")
  12621. },
  12622. {
  12623. name: "Megamacro+",
  12624. height: math.unit(100, "km")
  12625. },
  12626. ]
  12627. ))
  12628. characterMakers.push(() => makeCharacter(
  12629. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12630. {
  12631. front: {
  12632. height: math.unit(6 + 3 / 12, "feet"),
  12633. weight: math.unit(215, "lb"),
  12634. name: "Front",
  12635. image: {
  12636. source: "./media/characters/grynn/front.svg",
  12637. extra: 4627 / 4209,
  12638. bottom: 0.047
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Micro",
  12645. height: math.unit(6, "inches")
  12646. },
  12647. {
  12648. name: "Normal",
  12649. height: math.unit(6 + 3 / 12, "feet"),
  12650. default: true
  12651. },
  12652. {
  12653. name: "Big",
  12654. height: math.unit(104, "feet")
  12655. },
  12656. {
  12657. name: "Macro",
  12658. height: math.unit(944, "feet")
  12659. },
  12660. {
  12661. name: "Macro+",
  12662. height: math.unit(9480, "feet")
  12663. },
  12664. {
  12665. name: "Megamacro",
  12666. height: math.unit(78752, "feet")
  12667. },
  12668. {
  12669. name: "Megamacro+",
  12670. height: math.unit(630128, "feet")
  12671. },
  12672. {
  12673. name: "Megamacro++",
  12674. height: math.unit(3150695, "feet")
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12680. {
  12681. front: {
  12682. height: math.unit(7 + 5 / 12, "feet"),
  12683. weight: math.unit(450, "lb"),
  12684. name: "Front",
  12685. image: {
  12686. source: "./media/characters/mocha-aura/front.svg",
  12687. extra: 1907 / 1817,
  12688. bottom: 0.04
  12689. }
  12690. },
  12691. back: {
  12692. height: math.unit(7 + 5 / 12, "feet"),
  12693. weight: math.unit(450, "lb"),
  12694. name: "Back",
  12695. image: {
  12696. source: "./media/characters/mocha-aura/back.svg",
  12697. extra: 1900 / 1825,
  12698. bottom: 0.045
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Nano",
  12705. height: math.unit(1, "nm")
  12706. },
  12707. {
  12708. name: "Megamicro",
  12709. height: math.unit(1, "mm")
  12710. },
  12711. {
  12712. name: "Micro",
  12713. height: math.unit(3, "inches")
  12714. },
  12715. {
  12716. name: "Normal",
  12717. height: math.unit(7 + 5 / 12, "feet"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(30, "feet")
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(3500, "feet")
  12727. },
  12728. {
  12729. name: "Teramacro",
  12730. height: math.unit(500000, "miles")
  12731. },
  12732. {
  12733. name: "Petamacro",
  12734. height: math.unit(50000000000000000, "parsecs")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(150, "lb"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/ilisha-devya/front.svg",
  12747. extra: 1,
  12748. bottom: 0.175
  12749. }
  12750. },
  12751. back: {
  12752. height: math.unit(6, "feet"),
  12753. weight: math.unit(150, "lb"),
  12754. name: "Back",
  12755. image: {
  12756. source: "./media/characters/ilisha-devya/back.svg",
  12757. extra: 1,
  12758. bottom: 0.015
  12759. }
  12760. },
  12761. },
  12762. [
  12763. {
  12764. name: "Macro",
  12765. height: math.unit(500, "feet"),
  12766. default: true
  12767. },
  12768. {
  12769. name: "Megamacro",
  12770. height: math.unit(10, "miles")
  12771. },
  12772. {
  12773. name: "Gigamacro",
  12774. height: math.unit(100000, "miles")
  12775. },
  12776. {
  12777. name: "Examacro",
  12778. height: math.unit(1e9, "lightyears")
  12779. },
  12780. {
  12781. name: "Omniversal",
  12782. height: math.unit(1e33, "lightyears")
  12783. },
  12784. {
  12785. name: "Beyond Infinite",
  12786. height: math.unit(1e100, "lightyears")
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12792. {
  12793. Side: {
  12794. height: math.unit(6, "feet"),
  12795. weight: math.unit(150, "lb"),
  12796. name: "Side",
  12797. image: {
  12798. source: "./media/characters/mira/side.svg",
  12799. extra: 900 / 799,
  12800. bottom: 0.02
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Human Size",
  12807. height: math.unit(6, "feet")
  12808. },
  12809. {
  12810. name: "Macro",
  12811. height: math.unit(100, "feet"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(10, "miles")
  12817. },
  12818. {
  12819. name: "Gigamacro",
  12820. height: math.unit(25000, "miles")
  12821. },
  12822. {
  12823. name: "Teramacro",
  12824. height: math.unit(300, "AU")
  12825. },
  12826. {
  12827. name: "Full Size",
  12828. height: math.unit(4.5e10, "lightyears")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(150, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/holly/front.svg",
  12841. extra: 639 / 606
  12842. }
  12843. },
  12844. back: {
  12845. height: math.unit(6, "feet"),
  12846. weight: math.unit(150, "lb"),
  12847. name: "Back",
  12848. image: {
  12849. source: "./media/characters/holly/back.svg",
  12850. extra: 623 / 598
  12851. }
  12852. },
  12853. frontWorking: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(150, "lb"),
  12856. name: "Front (Working)",
  12857. image: {
  12858. source: "./media/characters/holly/front-working.svg",
  12859. extra: 607 / 577,
  12860. bottom: 0.048
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Normal",
  12867. height: math.unit(12 + 3 / 12, "feet"),
  12868. default: true
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12874. {
  12875. front: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(150, "lb"),
  12878. name: "Front",
  12879. image: {
  12880. source: "./media/characters/porter/front.svg",
  12881. extra: 1,
  12882. bottom: 0.01
  12883. }
  12884. },
  12885. frontRobes: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front (Robes)",
  12889. image: {
  12890. source: "./media/characters/porter/front-robes.svg",
  12891. extra: 1.01,
  12892. bottom: 0.01
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(11 + 9 / 12, "feet"),
  12900. default: true
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12906. {
  12907. legendary: {
  12908. height: math.unit(6, "feet"),
  12909. weight: math.unit(150, "lb"),
  12910. name: "Legendary",
  12911. image: {
  12912. source: "./media/characters/lucy/legendary.svg",
  12913. extra: 1355 / 1100,
  12914. bottom: 0.045
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Legendary",
  12921. height: math.unit(86882 * 2, "miles"),
  12922. default: true
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(6, "feet"),
  12931. weight: math.unit(150, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/drusilla/front.svg",
  12935. extra: 678 / 635,
  12936. bottom: 0.03
  12937. }
  12938. },
  12939. back: {
  12940. height: math.unit(6, "feet"),
  12941. weight: math.unit(150, "lb"),
  12942. name: "Back",
  12943. image: {
  12944. source: "./media/characters/drusilla/back.svg",
  12945. extra: 678 / 635,
  12946. bottom: 0.005
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Macro",
  12953. height: math.unit(100, "feet")
  12954. },
  12955. {
  12956. name: "Canon Height",
  12957. height: math.unit(2000, "feet"),
  12958. default: true
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12964. {
  12965. front: {
  12966. height: math.unit(6, "feet"),
  12967. weight: math.unit(180, "lb"),
  12968. name: "Front",
  12969. image: {
  12970. source: "./media/characters/renard-thatch/front.svg",
  12971. extra: 2411 / 2275,
  12972. bottom: 0.01
  12973. }
  12974. },
  12975. frontPosing: {
  12976. height: math.unit(6, "feet"),
  12977. weight: math.unit(180, "lb"),
  12978. name: "Front (Posing)",
  12979. image: {
  12980. source: "./media/characters/renard-thatch/front-posing.svg",
  12981. extra: 2381 / 2261,
  12982. bottom: 0.01
  12983. }
  12984. },
  12985. back: {
  12986. height: math.unit(6, "feet"),
  12987. weight: math.unit(180, "lb"),
  12988. name: "Back",
  12989. image: {
  12990. source: "./media/characters/renard-thatch/back.svg",
  12991. extra: 2428 / 2288
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Micro",
  12998. height: math.unit(3, "inches")
  12999. },
  13000. {
  13001. name: "Default",
  13002. height: math.unit(6, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(75, "feet")
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13013. {
  13014. front: {
  13015. height: math.unit(1450, "feet"),
  13016. weight: math.unit(1.21e6, "tons"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/sekvra/front.svg",
  13020. extra: 1,
  13021. bottom: 0.03
  13022. }
  13023. },
  13024. frontClothed: {
  13025. height: math.unit(1450, "feet"),
  13026. weight: math.unit(1.21e6, "tons"),
  13027. name: "Front (Clothed)",
  13028. image: {
  13029. source: "./media/characters/sekvra/front-clothed.svg",
  13030. extra: 1,
  13031. bottom: 0.03
  13032. }
  13033. },
  13034. side: {
  13035. height: math.unit(1450, "feet"),
  13036. weight: math.unit(1.21e6, "tons"),
  13037. name: "Side",
  13038. image: {
  13039. source: "./media/characters/sekvra/side.svg",
  13040. extra: 1,
  13041. bottom: 0.025
  13042. }
  13043. },
  13044. back: {
  13045. height: math.unit(1450, "feet"),
  13046. weight: math.unit(1.21e6, "tons"),
  13047. name: "Back",
  13048. image: {
  13049. source: "./media/characters/sekvra/back.svg",
  13050. extra: 1,
  13051. bottom: 0.005
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Macro",
  13058. height: math.unit(1450, "feet"),
  13059. default: true
  13060. },
  13061. {
  13062. name: "Megamacro",
  13063. height: math.unit(15000, "feet")
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13069. {
  13070. front: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Front",
  13074. image: {
  13075. source: "./media/characters/carmine/front.svg",
  13076. extra: 1,
  13077. bottom: 0.035
  13078. }
  13079. },
  13080. frontArmor: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(150, "lb"),
  13083. name: "Front (Armor)",
  13084. image: {
  13085. source: "./media/characters/carmine/front-armor.svg",
  13086. extra: 1,
  13087. bottom: 0.035
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Large",
  13094. height: math.unit(1, "mile")
  13095. },
  13096. {
  13097. name: "Huge",
  13098. height: math.unit(40, "miles"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Colossal",
  13103. height: math.unit(2500, "miles")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/elyssia/front.svg",
  13116. extra: 2201 / 2035,
  13117. bottom: 0.05
  13118. }
  13119. },
  13120. frontClothed: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(150, "lb"),
  13123. name: "Front (Clothed)",
  13124. image: {
  13125. source: "./media/characters/elyssia/front-clothed.svg",
  13126. extra: 2201 / 2035,
  13127. bottom: 0.05
  13128. }
  13129. },
  13130. back: {
  13131. height: math.unit(6, "feet"),
  13132. weight: math.unit(150, "lb"),
  13133. name: "Back",
  13134. image: {
  13135. source: "./media/characters/elyssia/back.svg",
  13136. extra: 2201 / 2035,
  13137. bottom: 0.013
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Smaller",
  13144. height: math.unit(150, "feet")
  13145. },
  13146. {
  13147. name: "Standard",
  13148. height: math.unit(1400, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Distracted",
  13153. height: math.unit(15000, "feet")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(7 + 4 / 12, "feet"),
  13162. weight: math.unit(500, "lb"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/geno-maxwell/front.svg",
  13166. extra: 2207 / 2040,
  13167. bottom: 0.015
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Micro",
  13174. height: math.unit(3, "inches")
  13175. },
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(7 + 4 / 12, "feet"),
  13179. default: true
  13180. },
  13181. {
  13182. name: "Macro",
  13183. height: math.unit(220, "feet")
  13184. },
  13185. {
  13186. name: "Megamacro",
  13187. height: math.unit(11, "miles")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(7 + 4 / 12, "feet"),
  13196. weight: math.unit(500, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/regena-maxwell/front.svg",
  13200. extra: 3115 / 2770,
  13201. bottom: 0.02
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(7 + 4 / 12, "feet"),
  13209. default: true
  13210. },
  13211. {
  13212. name: "Macro",
  13213. height: math.unit(220, "feet")
  13214. },
  13215. {
  13216. name: "Megamacro",
  13217. height: math.unit(11, "miles")
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13230. extra: 860 / 690,
  13231. bottom: 0.03
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(1.7, "meters"),
  13239. default: true
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(6, "feet"),
  13248. weight: math.unit(150, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/quilly/front.svg",
  13252. extra: 890 / 776
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Gigamacro",
  13259. height: math.unit(404090, "miles"),
  13260. default: true
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(7 + 8 / 12, "feet"),
  13269. weight: math.unit(350, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/tempest/front.svg",
  13273. extra: 1175 / 1086,
  13274. bottom: 0.02
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Normal",
  13281. height: math.unit(7 + 8 / 12, "feet"),
  13282. default: true
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13288. {
  13289. side: {
  13290. height: math.unit(4 + 5 / 12, "feet"),
  13291. weight: math.unit(80, "lb"),
  13292. name: "Side",
  13293. image: {
  13294. source: "./media/characters/rodger/side.svg",
  13295. extra: 1235 / 1118
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Micro",
  13302. height: math.unit(1, "inch")
  13303. },
  13304. {
  13305. name: "Normal",
  13306. height: math.unit(4 + 5 / 12, "feet"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(120, "feet")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(6, "feet"),
  13320. weight: math.unit(150, "lb"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/danyel/front.svg",
  13324. extra: 1185 / 1123,
  13325. bottom: 0.05
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Shrunken",
  13332. height: math.unit(0.5, "mm")
  13333. },
  13334. {
  13335. name: "Micro",
  13336. height: math.unit(1, "mm"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Upsized",
  13341. height: math.unit(5 + 5 / 12, "feet")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(5 + 6 / 12, "feet"),
  13350. weight: math.unit(200, "lb"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/vivian-bijoux/front.svg",
  13354. extra: 1,
  13355. bottom: 0.072
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(5 + 6 / 12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Bad Dream",
  13367. height: math.unit(500, "feet")
  13368. },
  13369. {
  13370. name: "Nightmare",
  13371. height: math.unit(500, "miles")
  13372. },
  13373. ]
  13374. ))
  13375. characterMakers.push(() => makeCharacter(
  13376. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13377. {
  13378. front: {
  13379. height: math.unit(6 + 1 / 12, "feet"),
  13380. weight: math.unit(260, "lb"),
  13381. name: "Front",
  13382. image: {
  13383. source: "./media/characters/zeta/front.svg",
  13384. extra: 1968 / 1889,
  13385. bottom: 0.06
  13386. }
  13387. },
  13388. back: {
  13389. height: math.unit(6 + 1 / 12, "feet"),
  13390. weight: math.unit(260, "lb"),
  13391. name: "Back",
  13392. image: {
  13393. source: "./media/characters/zeta/back.svg",
  13394. extra: 1944 / 1858,
  13395. bottom: 0.03
  13396. }
  13397. },
  13398. hand: {
  13399. height: math.unit(1.112, "feet"),
  13400. name: "Hand",
  13401. image: {
  13402. source: "./media/characters/zeta/hand.svg"
  13403. }
  13404. },
  13405. foot: {
  13406. height: math.unit(1.48, "feet"),
  13407. name: "Foot",
  13408. image: {
  13409. source: "./media/characters/zeta/foot.svg"
  13410. }
  13411. },
  13412. },
  13413. [
  13414. {
  13415. name: "Micro",
  13416. height: math.unit(6, "inches")
  13417. },
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(6 + 1 / 12, "feet"),
  13421. default: true
  13422. },
  13423. {
  13424. name: "Macro",
  13425. height: math.unit(20, "feet")
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(150, "lb"),
  13435. name: "Front",
  13436. image: {
  13437. source: "./media/characters/jamie-larsen/front.svg",
  13438. extra: 962 / 933,
  13439. bottom: 0.02
  13440. }
  13441. },
  13442. back: {
  13443. height: math.unit(6, "feet"),
  13444. weight: math.unit(150, "lb"),
  13445. name: "Back",
  13446. image: {
  13447. source: "./media/characters/jamie-larsen/back.svg",
  13448. extra: 997 / 946
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Macro",
  13455. height: math.unit(28 + 7 / 12, "feet"),
  13456. default: true
  13457. },
  13458. {
  13459. name: "Macro+",
  13460. height: math.unit(180, "feet")
  13461. },
  13462. {
  13463. name: "Megamacro",
  13464. height: math.unit(10, "miles")
  13465. },
  13466. {
  13467. name: "Gigamacro",
  13468. height: math.unit(200000, "miles")
  13469. },
  13470. ]
  13471. ))
  13472. characterMakers.push(() => makeCharacter(
  13473. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13474. {
  13475. front: {
  13476. height: math.unit(6, "feet"),
  13477. weight: math.unit(120, "lb"),
  13478. name: "Front",
  13479. image: {
  13480. source: "./media/characters/vance/front.svg",
  13481. extra: 1980 / 1890,
  13482. bottom: 0.09
  13483. }
  13484. },
  13485. back: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(120, "lb"),
  13488. name: "Back",
  13489. image: {
  13490. source: "./media/characters/vance/back.svg",
  13491. extra: 2081 / 1994,
  13492. bottom: 0.014
  13493. }
  13494. },
  13495. hand: {
  13496. height: math.unit(0.88, "feet"),
  13497. name: "Hand",
  13498. image: {
  13499. source: "./media/characters/vance/hand.svg"
  13500. }
  13501. },
  13502. foot: {
  13503. height: math.unit(0.64, "feet"),
  13504. name: "Foot",
  13505. image: {
  13506. source: "./media/characters/vance/foot.svg"
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Small",
  13513. height: math.unit(90, "feet"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(100, "meters")
  13519. },
  13520. {
  13521. name: "Megamacro",
  13522. height: math.unit(15, "miles")
  13523. },
  13524. ]
  13525. ))
  13526. characterMakers.push(() => makeCharacter(
  13527. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13528. {
  13529. front: {
  13530. height: math.unit(6, "feet"),
  13531. weight: math.unit(180, "lb"),
  13532. name: "Front",
  13533. image: {
  13534. source: "./media/characters/xochitl/front.svg",
  13535. extra: 2297 / 2261,
  13536. bottom: 0.065
  13537. }
  13538. },
  13539. back: {
  13540. height: math.unit(6, "feet"),
  13541. weight: math.unit(180, "lb"),
  13542. name: "Back",
  13543. image: {
  13544. source: "./media/characters/xochitl/back.svg",
  13545. extra: 2386 / 2354,
  13546. bottom: 0.01
  13547. }
  13548. },
  13549. foot: {
  13550. height: math.unit(6 / 5 * 1.15, "feet"),
  13551. weight: math.unit(150, "lb"),
  13552. name: "Foot",
  13553. image: {
  13554. source: "./media/characters/xochitl/foot.svg"
  13555. }
  13556. },
  13557. },
  13558. [
  13559. {
  13560. name: "Macro",
  13561. height: math.unit(80, "feet")
  13562. },
  13563. {
  13564. name: "Macro+",
  13565. height: math.unit(400, "feet"),
  13566. default: true
  13567. },
  13568. {
  13569. name: "Gigamacro",
  13570. height: math.unit(80000, "miles")
  13571. },
  13572. {
  13573. name: "Gigamacro+",
  13574. height: math.unit(400000, "miles")
  13575. },
  13576. {
  13577. name: "Teramacro",
  13578. height: math.unit(300, "AU")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/vincent/front.svg",
  13591. extra: 1130 / 1080,
  13592. bottom: 0.055
  13593. }
  13594. },
  13595. beak: {
  13596. height: math.unit(6 * 0.1, "feet"),
  13597. name: "Beak",
  13598. image: {
  13599. source: "./media/characters/vincent/beak.svg"
  13600. }
  13601. },
  13602. hand: {
  13603. height: math.unit(6 * 0.85, "feet"),
  13604. weight: math.unit(150, "lb"),
  13605. name: "Hand",
  13606. image: {
  13607. source: "./media/characters/vincent/hand.svg"
  13608. }
  13609. },
  13610. foot: {
  13611. height: math.unit(6 * 0.19, "feet"),
  13612. weight: math.unit(150, "lb"),
  13613. name: "Foot",
  13614. image: {
  13615. source: "./media/characters/vincent/foot.svg"
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Base",
  13622. height: math.unit(6 + 5 / 12, "feet"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Macro",
  13627. height: math.unit(300, "feet")
  13628. },
  13629. {
  13630. name: "Megamacro",
  13631. height: math.unit(2, "miles")
  13632. },
  13633. {
  13634. name: "Gigamacro",
  13635. height: math.unit(1000, "miles")
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13641. {
  13642. front: {
  13643. height: math.unit(2, "meters"),
  13644. weight: math.unit(500, "kg"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/coatl/front.svg",
  13648. extra: 3948 / 3500,
  13649. bottom: 0.082
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Normal",
  13656. height: math.unit(4, "meters")
  13657. },
  13658. {
  13659. name: "Macro",
  13660. height: math.unit(100, "meters"),
  13661. default: true
  13662. },
  13663. {
  13664. name: "Macro+",
  13665. height: math.unit(300, "meters")
  13666. },
  13667. {
  13668. name: "Megamacro",
  13669. height: math.unit(3, "gigameters")
  13670. },
  13671. {
  13672. name: "Megamacro+",
  13673. height: math.unit(300, "terameters")
  13674. },
  13675. {
  13676. name: "Megamacro++",
  13677. height: math.unit(3, "lightyears")
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13683. {
  13684. front: {
  13685. height: math.unit(6, "feet"),
  13686. weight: math.unit(50, "kg"),
  13687. name: "front",
  13688. image: {
  13689. source: "./media/characters/shiroryu/front.svg",
  13690. extra: 1990 / 1935
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Mortal Mingling",
  13697. height: math.unit(3, "meters")
  13698. },
  13699. {
  13700. name: "Kaiju-ish",
  13701. height: math.unit(250, "meters")
  13702. },
  13703. {
  13704. name: "Somewhat Godly",
  13705. height: math.unit(400, "km"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Planetary",
  13710. height: math.unit(300, "megameters")
  13711. },
  13712. {
  13713. name: "Galaxy-dwarfing",
  13714. height: math.unit(450, "kiloparsecs")
  13715. },
  13716. {
  13717. name: "Universe Eater",
  13718. height: math.unit(150, "gigaparsecs")
  13719. },
  13720. {
  13721. name: "Almost Immeasurable",
  13722. height: math.unit(1.3e266, "yottaparsecs")
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(6, "feet"),
  13731. weight: math.unit(150, "lb"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/umeko/front.svg",
  13735. extra: 1,
  13736. bottom: 0.019
  13737. }
  13738. },
  13739. frontArmored: {
  13740. height: math.unit(6, "feet"),
  13741. weight: math.unit(150, "lb"),
  13742. name: "Front (Armored)",
  13743. image: {
  13744. source: "./media/characters/umeko/front-armored.svg",
  13745. extra: 1,
  13746. bottom: 0.021
  13747. }
  13748. },
  13749. },
  13750. [
  13751. {
  13752. name: "Macro",
  13753. height: math.unit(220, "feet"),
  13754. default: true
  13755. },
  13756. {
  13757. name: "Guardian Dragon",
  13758. height: math.unit(50, "miles")
  13759. },
  13760. {
  13761. name: "Cosmic",
  13762. height: math.unit(800000, "miles")
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13768. {
  13769. front: {
  13770. height: math.unit(6, "feet"),
  13771. weight: math.unit(150, "lb"),
  13772. name: "Front",
  13773. image: {
  13774. source: "./media/characters/cassidy/front.svg",
  13775. extra: 1,
  13776. bottom: 0.043
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Canon Height",
  13783. height: math.unit(120, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Macro+",
  13788. height: math.unit(400, "feet")
  13789. },
  13790. {
  13791. name: "Macro++",
  13792. height: math.unit(4000, "feet")
  13793. },
  13794. {
  13795. name: "Megamacro",
  13796. height: math.unit(3, "miles")
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/isaac/front.svg",
  13809. extra: 896 / 815,
  13810. bottom: 0.11
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Human Size",
  13817. height: math.unit(8, "feet"),
  13818. default: true
  13819. },
  13820. {
  13821. name: "Macro",
  13822. height: math.unit(400, "feet")
  13823. },
  13824. {
  13825. name: "Megamacro",
  13826. height: math.unit(50, "miles")
  13827. },
  13828. {
  13829. name: "Canon Height",
  13830. height: math.unit(200, "AU")
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(72, "kg"),
  13840. name: "Front",
  13841. image: {
  13842. source: "./media/characters/sleekit/front.svg",
  13843. extra: 4693 / 4487,
  13844. bottom: 0.012
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Minimum Height",
  13851. height: math.unit(10, "meters")
  13852. },
  13853. {
  13854. name: "Smaller",
  13855. height: math.unit(25, "meters")
  13856. },
  13857. {
  13858. name: "Larger",
  13859. height: math.unit(38, "meters"),
  13860. default: true
  13861. },
  13862. {
  13863. name: "Maximum height",
  13864. height: math.unit(100, "meters")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/nillia/front.svg",
  13877. extra: 2195 / 2037,
  13878. bottom: 0.005
  13879. }
  13880. },
  13881. back: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Back",
  13885. image: {
  13886. source: "./media/characters/nillia/back.svg",
  13887. extra: 2195 / 2037,
  13888. bottom: 0.005
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Canon Height",
  13895. height: math.unit(489, "feet"),
  13896. default: true
  13897. }
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/mesmyriza/front.svg",
  13909. extra: 2067 / 1784,
  13910. bottom: 0.035
  13911. }
  13912. },
  13913. foot: {
  13914. height: math.unit(6 / (250 / 35), "feet"),
  13915. name: "Foot",
  13916. image: {
  13917. source: "./media/characters/mesmyriza/foot.svg"
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Macro",
  13924. height: math.unit(457, "meters"),
  13925. default: true
  13926. },
  13927. {
  13928. name: "Megamacro",
  13929. height: math.unit(8, "megameters")
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(6, "feet"),
  13938. weight: math.unit(250, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/saudade/front.svg",
  13942. extra: 1172 / 1139,
  13943. bottom: 0.035
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Micro",
  13950. height: math.unit(3, "inches")
  13951. },
  13952. {
  13953. name: "Normal",
  13954. height: math.unit(6, "feet"),
  13955. default: true
  13956. },
  13957. {
  13958. name: "Macro",
  13959. height: math.unit(50, "feet")
  13960. },
  13961. {
  13962. name: "Megamacro",
  13963. height: math.unit(2800, "feet")
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(5 + 4 / 12, "feet"),
  13972. weight: math.unit(100, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/keireer/front.svg",
  13976. extra: 716 / 666,
  13977. bottom: 0.05
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Normal",
  13984. height: math.unit(5 + 4 / 12, "feet"),
  13985. default: true
  13986. },
  13987. ]
  13988. ))
  13989. characterMakers.push(() => makeCharacter(
  13990. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13991. {
  13992. front: {
  13993. height: math.unit(6, "feet"),
  13994. weight: math.unit(90, "kg"),
  13995. name: "Front",
  13996. image: {
  13997. source: "./media/characters/mirja/front.svg",
  13998. extra: 1789 / 1683,
  13999. bottom: 0.05
  14000. }
  14001. },
  14002. frontDressed: {
  14003. height: math.unit(6, "feet"),
  14004. weight: math.unit(90, "lb"),
  14005. name: "Front (Dressed)",
  14006. image: {
  14007. source: "./media/characters/mirja/front-dressed.svg",
  14008. extra: 1789 / 1683,
  14009. bottom: 0.05
  14010. }
  14011. },
  14012. back: {
  14013. height: math.unit(6, "feet"),
  14014. weight: math.unit(90, "lb"),
  14015. name: "Back",
  14016. image: {
  14017. source: "./media/characters/mirja/back.svg",
  14018. extra: 953 / 917,
  14019. bottom: 0.017
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "\"Incognito\"",
  14026. height: math.unit(3, "meters")
  14027. },
  14028. {
  14029. name: "Strolling Size",
  14030. height: math.unit(15, "km")
  14031. },
  14032. {
  14033. name: "Larger Strolling Size",
  14034. height: math.unit(400, "km")
  14035. },
  14036. {
  14037. name: "Preferred Size",
  14038. height: math.unit(5000, "km")
  14039. },
  14040. {
  14041. name: "True Size",
  14042. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14043. default: true
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(15, "feet"),
  14052. weight: math.unit(880, "kg"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/nightraver/front.svg",
  14056. extra: 2444 / 2160,
  14057. bottom: 0.027
  14058. }
  14059. },
  14060. back: {
  14061. height: math.unit(15, "feet"),
  14062. weight: math.unit(880, "kg"),
  14063. name: "Back",
  14064. image: {
  14065. source: "./media/characters/nightraver/back.svg",
  14066. extra: 2309 / 2180,
  14067. bottom: 0.005
  14068. }
  14069. },
  14070. sole: {
  14071. height: math.unit(2.878, "feet"),
  14072. name: "Sole",
  14073. image: {
  14074. source: "./media/characters/nightraver/sole.svg"
  14075. }
  14076. },
  14077. foot: {
  14078. height: math.unit(2.285, "feet"),
  14079. name: "Foot",
  14080. image: {
  14081. source: "./media/characters/nightraver/foot.svg"
  14082. }
  14083. },
  14084. maw: {
  14085. height: math.unit(2.67, "feet"),
  14086. name: "Maw",
  14087. image: {
  14088. source: "./media/characters/nightraver/maw.svg"
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Micro",
  14095. height: math.unit(1, "cm")
  14096. },
  14097. {
  14098. name: "Normal",
  14099. height: math.unit(15, "feet"),
  14100. default: true
  14101. },
  14102. {
  14103. name: "Macro",
  14104. height: math.unit(300, "feet")
  14105. },
  14106. {
  14107. name: "Megamacro",
  14108. height: math.unit(300, "miles")
  14109. },
  14110. {
  14111. name: "Gigamacro",
  14112. height: math.unit(10000, "miles")
  14113. },
  14114. ]
  14115. ))
  14116. characterMakers.push(() => makeCharacter(
  14117. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14118. {
  14119. side: {
  14120. height: math.unit(2, "inches"),
  14121. weight: math.unit(5, "grams"),
  14122. name: "Side",
  14123. image: {
  14124. source: "./media/characters/arc/side.svg"
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Micro",
  14131. height: math.unit(2, "inches"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(1.1938, "meters"),
  14141. weight: math.unit(54, "kg"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/nebula-shahar/front.svg",
  14145. extra: 1642 / 1436,
  14146. bottom: 0.06
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Megamicro",
  14153. height: math.unit(0.3, "mm")
  14154. },
  14155. {
  14156. name: "Micro",
  14157. height: math.unit(3, "cm")
  14158. },
  14159. {
  14160. name: "Normal",
  14161. height: math.unit(138, "cm"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Macro",
  14166. height: math.unit(30, "m")
  14167. },
  14168. ]
  14169. ))
  14170. characterMakers.push(() => makeCharacter(
  14171. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14172. {
  14173. front: {
  14174. height: math.unit(5.24, "feet"),
  14175. weight: math.unit(150, "lb"),
  14176. name: "Front",
  14177. image: {
  14178. source: "./media/characters/shayla/front.svg",
  14179. extra: 1512 / 1414,
  14180. bottom: 0.01
  14181. }
  14182. },
  14183. back: {
  14184. height: math.unit(5.24, "feet"),
  14185. weight: math.unit(150, "lb"),
  14186. name: "Back",
  14187. image: {
  14188. source: "./media/characters/shayla/back.svg",
  14189. extra: 1512 / 1414
  14190. }
  14191. },
  14192. hand: {
  14193. height: math.unit(0.7781496062992126, "feet"),
  14194. name: "Hand",
  14195. image: {
  14196. source: "./media/characters/shayla/hand.svg"
  14197. }
  14198. },
  14199. foot: {
  14200. height: math.unit(1.4206036745406823, "feet"),
  14201. name: "Foot",
  14202. image: {
  14203. source: "./media/characters/shayla/foot.svg"
  14204. }
  14205. },
  14206. },
  14207. [
  14208. {
  14209. name: "Micro",
  14210. height: math.unit(0.32, "feet")
  14211. },
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(5.24, "feet"),
  14215. default: true
  14216. },
  14217. {
  14218. name: "Macro",
  14219. height: math.unit(492.12, "feet")
  14220. },
  14221. {
  14222. name: "Megamacro",
  14223. height: math.unit(186.41, "miles")
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14229. {
  14230. front: {
  14231. height: math.unit(2.2, "m"),
  14232. weight: math.unit(120, "kg"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/pia-jr/front.svg",
  14236. extra: 1000 / 970,
  14237. bottom: 0.035
  14238. }
  14239. },
  14240. hand: {
  14241. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14242. name: "Hand",
  14243. image: {
  14244. source: "./media/characters/pia-jr/hand.svg"
  14245. }
  14246. },
  14247. paw: {
  14248. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14249. name: "Paw",
  14250. image: {
  14251. source: "./media/characters/pia-jr/paw.svg"
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Micro",
  14258. height: math.unit(1.2, "cm")
  14259. },
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(2.2, "m"),
  14263. default: true
  14264. },
  14265. {
  14266. name: "Macro",
  14267. height: math.unit(180, "m")
  14268. },
  14269. {
  14270. name: "Megamacro",
  14271. height: math.unit(420, "km")
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(2, "m"),
  14280. weight: math.unit(115, "kg"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/pia-sr/front.svg",
  14284. extra: 760 / 730,
  14285. bottom: 0.015
  14286. }
  14287. },
  14288. back: {
  14289. height: math.unit(2, "m"),
  14290. weight: math.unit(115, "kg"),
  14291. name: "Back",
  14292. image: {
  14293. source: "./media/characters/pia-sr/back.svg",
  14294. extra: 760 / 730,
  14295. bottom: 0.01
  14296. }
  14297. },
  14298. hand: {
  14299. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14300. name: "Hand",
  14301. image: {
  14302. source: "./media/characters/pia-sr/hand.svg"
  14303. }
  14304. },
  14305. foot: {
  14306. height: math.unit(1.83, "feet"),
  14307. name: "Foot",
  14308. image: {
  14309. source: "./media/characters/pia-sr/foot.svg"
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Micro",
  14316. height: math.unit(88, "mm")
  14317. },
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(2, "m"),
  14321. default: true
  14322. },
  14323. {
  14324. name: "Macro",
  14325. height: math.unit(200, "m")
  14326. },
  14327. {
  14328. name: "Megamacro",
  14329. height: math.unit(420, "km")
  14330. },
  14331. ]
  14332. ))
  14333. characterMakers.push(() => makeCharacter(
  14334. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14335. {
  14336. front: {
  14337. height: math.unit(8 + 2 / 12, "feet"),
  14338. weight: math.unit(300, "lb"),
  14339. name: "Front",
  14340. image: {
  14341. source: "./media/characters/kibibyte/front.svg",
  14342. extra: 2221 / 2098,
  14343. bottom: 0.04
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(8 + 2 / 12, "feet"),
  14351. default: true
  14352. },
  14353. {
  14354. name: "Socialable Macro",
  14355. height: math.unit(50, "feet")
  14356. },
  14357. {
  14358. name: "Macro",
  14359. height: math.unit(300, "feet")
  14360. },
  14361. {
  14362. name: "Megamacro",
  14363. height: math.unit(500, "miles")
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14369. {
  14370. front: {
  14371. height: math.unit(6, "feet"),
  14372. weight: math.unit(150, "lb"),
  14373. name: "Front",
  14374. image: {
  14375. source: "./media/characters/felix/front.svg",
  14376. extra: 762 / 722,
  14377. bottom: 0.02
  14378. }
  14379. },
  14380. frontClothed: {
  14381. height: math.unit(6, "feet"),
  14382. weight: math.unit(150, "lb"),
  14383. name: "Front (Clothed)",
  14384. image: {
  14385. source: "./media/characters/felix/front-clothed.svg",
  14386. extra: 762 / 722,
  14387. bottom: 0.02
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(6 + 8 / 12, "feet"),
  14395. default: true
  14396. },
  14397. {
  14398. name: "Macro",
  14399. height: math.unit(2600, "feet")
  14400. },
  14401. {
  14402. name: "Megamacro",
  14403. height: math.unit(450, "miles")
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(6 + 1 / 12, "feet"),
  14412. weight: math.unit(250, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/tobo/front.svg",
  14416. extra: 608 / 586,
  14417. bottom: 0.023
  14418. }
  14419. },
  14420. back: {
  14421. height: math.unit(6 + 1 / 12, "feet"),
  14422. weight: math.unit(250, "lb"),
  14423. name: "Back",
  14424. image: {
  14425. source: "./media/characters/tobo/back.svg",
  14426. extra: 608 / 586
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Nano",
  14433. height: math.unit(2, "nm")
  14434. },
  14435. {
  14436. name: "Megamicro",
  14437. height: math.unit(0.1, "mm")
  14438. },
  14439. {
  14440. name: "Micro",
  14441. height: math.unit(1, "inch"),
  14442. default: true
  14443. },
  14444. {
  14445. name: "Human-sized",
  14446. height: math.unit(6 + 1 / 12, "feet")
  14447. },
  14448. {
  14449. name: "Macro",
  14450. height: math.unit(250, "feet")
  14451. },
  14452. {
  14453. name: "Megamacro",
  14454. height: math.unit(75, "miles")
  14455. },
  14456. {
  14457. name: "Texas-sized",
  14458. height: math.unit(750, "miles")
  14459. },
  14460. {
  14461. name: "Teramacro",
  14462. height: math.unit(50000, "miles")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14468. {
  14469. front: {
  14470. height: math.unit(6, "feet"),
  14471. weight: math.unit(269, "lb"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/danny-kapowsky/front.svg",
  14475. extra: 766 / 736,
  14476. bottom: 0.044
  14477. }
  14478. },
  14479. back: {
  14480. height: math.unit(6, "feet"),
  14481. weight: math.unit(269, "lb"),
  14482. name: "Back",
  14483. image: {
  14484. source: "./media/characters/danny-kapowsky/back.svg",
  14485. extra: 797 / 760,
  14486. bottom: 0.025
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Macro",
  14493. height: math.unit(150, "feet"),
  14494. default: true
  14495. },
  14496. {
  14497. name: "Macro+",
  14498. height: math.unit(200, "feet")
  14499. },
  14500. {
  14501. name: "Macro++",
  14502. height: math.unit(300, "feet")
  14503. },
  14504. {
  14505. name: "Macro+++",
  14506. height: math.unit(400, "feet")
  14507. },
  14508. ]
  14509. ))
  14510. characterMakers.push(() => makeCharacter(
  14511. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14512. {
  14513. side: {
  14514. height: math.unit(6, "feet"),
  14515. weight: math.unit(170, "lb"),
  14516. name: "Side",
  14517. image: {
  14518. source: "./media/characters/finn/side.svg",
  14519. extra: 1953 / 1807,
  14520. bottom: 0.057
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Megamacro",
  14527. height: math.unit(14445, "feet"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(5 + 6 / 12, "feet"),
  14537. weight: math.unit(125, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/roy/front.svg",
  14541. extra: 1,
  14542. bottom: 0.11
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Micro",
  14549. height: math.unit(3, "inches"),
  14550. default: true
  14551. },
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(5 + 6 / 12, "feet")
  14555. },
  14556. {
  14557. name: "Lesser Macro",
  14558. height: math.unit(60, "feet")
  14559. },
  14560. {
  14561. name: "Greater Macro",
  14562. height: math.unit(120, "feet")
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14568. {
  14569. front: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(100, "lb"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/aevsivs/front.svg",
  14575. extra: 1,
  14576. bottom: 0.03
  14577. }
  14578. },
  14579. back: {
  14580. height: math.unit(6, "feet"),
  14581. weight: math.unit(100, "lb"),
  14582. name: "Back",
  14583. image: {
  14584. source: "./media/characters/aevsivs/back.svg"
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Micro",
  14591. height: math.unit(2, "inches"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Normal",
  14596. height: math.unit(5, "feet")
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(5 + 7 / 12, "feet"),
  14605. weight: math.unit(159, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/hildegard/front.svg",
  14609. extra: 289 / 269,
  14610. bottom: 7.63 / 297.8
  14611. }
  14612. },
  14613. back: {
  14614. height: math.unit(5 + 7 / 12, "feet"),
  14615. weight: math.unit(159, "lb"),
  14616. name: "Back",
  14617. image: {
  14618. source: "./media/characters/hildegard/back.svg",
  14619. extra: 280 / 260,
  14620. bottom: 2.3 / 282
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(5 + 7 / 12, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14634. {
  14635. bernard: {
  14636. height: math.unit(2 + 7 / 12, "feet"),
  14637. weight: math.unit(66, "lb"),
  14638. name: "Bernard",
  14639. rename: true,
  14640. image: {
  14641. source: "./media/characters/bernard-wilder/bernard.svg",
  14642. extra: 192 / 128,
  14643. bottom: 0.05
  14644. }
  14645. },
  14646. wilder: {
  14647. height: math.unit(5 + 8 / 12, "feet"),
  14648. weight: math.unit(143, "lb"),
  14649. name: "Wilder",
  14650. rename: true,
  14651. image: {
  14652. source: "./media/characters/bernard-wilder/wilder.svg",
  14653. extra: 361 / 312,
  14654. bottom: 0.02
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(2 + 7 / 12, "feet"),
  14662. default: true
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14668. {
  14669. anthro: {
  14670. height: math.unit(6 + 1 / 12, "feet"),
  14671. weight: math.unit(155, "lb"),
  14672. name: "Anthro",
  14673. image: {
  14674. source: "./media/characters/hearth/anthro.svg",
  14675. extra: 260 / 250,
  14676. bottom: 0.02
  14677. }
  14678. },
  14679. feral: {
  14680. height: math.unit(3.78, "feet"),
  14681. weight: math.unit(35, "kg"),
  14682. name: "Feral",
  14683. image: {
  14684. source: "./media/characters/hearth/feral.svg",
  14685. extra: 153 / 135,
  14686. bottom: 0.03
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(6 + 1 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(6, "feet"),
  14703. weight: math.unit(182, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/ingrid/front.svg",
  14707. extra: 294 / 268,
  14708. bottom: 0.027
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(6, "feet"),
  14716. default: true
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14722. {
  14723. eevee: {
  14724. height: math.unit(2 + 10 / 12, "feet"),
  14725. weight: math.unit(86, "lb"),
  14726. name: "Malgam",
  14727. image: {
  14728. source: "./media/characters/malgam/eevee.svg",
  14729. extra: 218 / 180,
  14730. bottom: 0.2
  14731. }
  14732. },
  14733. sylveon: {
  14734. height: math.unit(4, "feet"),
  14735. weight: math.unit(101, "lb"),
  14736. name: "Future Malgam",
  14737. rename: true,
  14738. image: {
  14739. source: "./media/characters/malgam/sylveon.svg",
  14740. extra: 371 / 325,
  14741. bottom: 0.015
  14742. }
  14743. },
  14744. gigantamax: {
  14745. height: math.unit(50, "feet"),
  14746. name: "Gigantamax Malgam",
  14747. rename: true,
  14748. image: {
  14749. source: "./media/characters/malgam/gigantamax.svg"
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Normal",
  14756. height: math.unit(2 + 10 / 12, "feet"),
  14757. default: true
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(5 + 11 / 12, "feet"),
  14766. weight: math.unit(188, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/fleur/front.svg",
  14770. extra: 309 / 283,
  14771. bottom: 0.007
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Normal",
  14778. height: math.unit(5 + 11 / 12, "feet"),
  14779. default: true
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(5 + 4 / 12, "feet"),
  14788. weight: math.unit(122, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/jude/front.svg",
  14792. extra: 288 / 273,
  14793. bottom: 0.03
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(5 + 4 / 12, "feet"),
  14801. default: true
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14807. {
  14808. front: {
  14809. height: math.unit(5 + 11 / 12, "feet"),
  14810. weight: math.unit(190, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/seara/front.svg",
  14814. extra: 1,
  14815. bottom: 0.05
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(5 + 11 / 12, "feet"),
  14823. default: true
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(16 + 5 / 12, "feet"),
  14832. weight: math.unit(524, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/caspian/front.svg",
  14836. extra: 1,
  14837. bottom: 0.04
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(16 + 5 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14851. {
  14852. front: {
  14853. height: math.unit(5 + 7 / 12, "feet"),
  14854. weight: math.unit(170, "lb"),
  14855. name: "Front",
  14856. image: {
  14857. source: "./media/characters/mika/front.svg",
  14858. extra: 1,
  14859. bottom: 0.016
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(5 + 7 / 12, "feet"),
  14867. default: true
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(6 + 2 / 12, "feet"),
  14876. weight: math.unit(268, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/sol/front.svg",
  14880. extra: 247 / 231,
  14881. bottom: 0.05
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(6 + 2 / 12, "feet"),
  14889. default: true
  14890. },
  14891. ]
  14892. ))
  14893. characterMakers.push(() => makeCharacter(
  14894. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14895. {
  14896. buizel: {
  14897. height: math.unit(2 + 5 / 12, "feet"),
  14898. weight: math.unit(87, "lb"),
  14899. name: "Buizel",
  14900. image: {
  14901. source: "./media/characters/umiko/buizel.svg",
  14902. extra: 172 / 157,
  14903. bottom: 0.01
  14904. }
  14905. },
  14906. floatzel: {
  14907. height: math.unit(5 + 9 / 12, "feet"),
  14908. weight: math.unit(250, "lb"),
  14909. name: "Floatzel",
  14910. image: {
  14911. source: "./media/characters/umiko/floatzel.svg",
  14912. extra: 262 / 248
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(2 + 5 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(6 + 2 / 12, "feet"),
  14929. weight: math.unit(146, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/iliac/front.svg",
  14933. extra: 389 / 365,
  14934. bottom: 0.035
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(6 + 2 / 12, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(6, "feet"),
  14951. weight: math.unit(170, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/topaz/front.svg",
  14955. extra: 317 / 303,
  14956. bottom: 0.055
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(6, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(5 + 11 / 12, "feet"),
  14973. weight: math.unit(144, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/gabriel/front.svg",
  14977. extra: 285 / 262,
  14978. bottom: 0.004
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(5 + 11 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14992. {
  14993. side: {
  14994. height: math.unit(6 + 5 / 12, "feet"),
  14995. weight: math.unit(300, "lb"),
  14996. name: "Side",
  14997. image: {
  14998. source: "./media/characters/tempest-suicune/side.svg",
  14999. extra: 195 / 154,
  15000. bottom: 0.04
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(6 + 5 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(7 + 2 / 12, "feet"),
  15017. weight: math.unit(322, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/vulcan/front.svg",
  15021. extra: 154 / 147,
  15022. bottom: 0.04
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(7 + 2 / 12, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(5 + 10 / 12, "feet"),
  15039. weight: math.unit(264, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/gault/front.svg",
  15043. extra: 161 / 140,
  15044. bottom: 0.028
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(5 + 10 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(6, "feet"),
  15061. weight: math.unit(150, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/shard/front.svg",
  15065. extra: 273 / 238,
  15066. bottom: 0.02
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(3 + 6 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(5 + 11 / 12, "feet"),
  15083. weight: math.unit(146, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/ashe/front.svg",
  15087. extra: 400 / 373,
  15088. bottom: 0.01
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(5 + 11 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(5 + 5 / 12, "feet"),
  15105. weight: math.unit(135, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/beatrix/front.svg",
  15109. extra: 392 / 379,
  15110. bottom: 0.01
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(6, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(6, "feet"),
  15127. weight: math.unit(150, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/ignatius/front.svg",
  15131. extra: 245 / 222,
  15132. bottom: 0.01
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(5 + 5 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(6 + 2 / 12, "feet"),
  15149. weight: math.unit(138, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/mei-li/front.svg",
  15153. extra: 237 / 229,
  15154. bottom: 0.03
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(6 + 2 / 12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(2 + 4 / 12, "feet"),
  15171. weight: math.unit(62, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/puru/front.svg",
  15175. extra: 206 / 149,
  15176. bottom: 0.06
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(2 + 4 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15190. {
  15191. anthro: {
  15192. height: math.unit(5 + 8/12, "feet"),
  15193. weight: math.unit(200, "lb"),
  15194. energyNeed: math.unit(2000, "kcal"),
  15195. name: "Anthro",
  15196. image: {
  15197. source: "./media/characters/kee/anthro.svg",
  15198. extra: 3251/3184,
  15199. bottom: 250/3501
  15200. }
  15201. },
  15202. taur: {
  15203. height: math.unit(11, "feet"),
  15204. weight: math.unit(500, "lb"),
  15205. energyNeed: math.unit(5000, "kcal"),
  15206. name: "Taur",
  15207. image: {
  15208. source: "./media/characters/kee/taur.svg",
  15209. extra: 1362/1320,
  15210. bottom: 83/1445
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(5 + 8/12, "feet"),
  15218. default: true
  15219. },
  15220. {
  15221. name: "Macro",
  15222. height: math.unit(35, "feet")
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15228. {
  15229. anthro: {
  15230. height: math.unit(7, "feet"),
  15231. weight: math.unit(190, "lb"),
  15232. name: "Anthro",
  15233. image: {
  15234. source: "./media/characters/cobalt-dracha/anthro.svg",
  15235. extra: 231 / 225,
  15236. bottom: 0.04
  15237. }
  15238. },
  15239. feral: {
  15240. height: math.unit(9 + 7 / 12, "feet"),
  15241. weight: math.unit(294, "lb"),
  15242. name: "Feral",
  15243. image: {
  15244. source: "./media/characters/cobalt-dracha/feral.svg",
  15245. extra: 692 / 633,
  15246. bottom: 0.05
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(7, "feet"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15260. {
  15261. fallen: {
  15262. height: math.unit(11 + 8 / 12, "feet"),
  15263. weight: math.unit(485, "lb"),
  15264. name: "Java (Fallen)",
  15265. rename: true,
  15266. image: {
  15267. source: "./media/characters/java/fallen.svg",
  15268. extra: 226 / 208,
  15269. bottom: 0.005
  15270. }
  15271. },
  15272. godkin: {
  15273. height: math.unit(10 + 6 / 12, "feet"),
  15274. weight: math.unit(328, "lb"),
  15275. name: "Java (Godkin)",
  15276. rename: true,
  15277. image: {
  15278. source: "./media/characters/java/godkin.svg",
  15279. extra: 270 / 262,
  15280. bottom: 0.02
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(11 + 8 / 12, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(7 + 8 / 12, "feet"),
  15297. weight: math.unit(320, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/skoll/front.svg",
  15301. extra: 232 / 220,
  15302. bottom: 0.02
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(7 + 8 / 12, "feet"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(5 + 9 / 12, "feet"),
  15319. weight: math.unit(170, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/purna/front.svg",
  15323. extra: 239 / 229,
  15324. bottom: 0.01
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(5 + 9 / 12, "feet"),
  15332. default: true
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(5 + 9 / 12, "feet"),
  15341. weight: math.unit(142, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/kuva/front.svg",
  15345. extra: 281 / 271,
  15346. bottom: 0.006
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(5 + 9 / 12, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15360. {
  15361. anthro: {
  15362. height: math.unit(9 + 2 / 12, "feet"),
  15363. weight: math.unit(270, "lb"),
  15364. name: "Anthro",
  15365. image: {
  15366. source: "./media/characters/embra/anthro.svg",
  15367. extra: 200 / 187,
  15368. bottom: 0.02
  15369. }
  15370. },
  15371. feral: {
  15372. height: math.unit(18 + 8 / 12, "feet"),
  15373. weight: math.unit(576, "lb"),
  15374. name: "Feral",
  15375. image: {
  15376. source: "./media/characters/embra/feral.svg",
  15377. extra: 152 / 137,
  15378. bottom: 0.037
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(9 + 2 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15392. {
  15393. anthro: {
  15394. height: math.unit(10 + 9 / 12, "feet"),
  15395. weight: math.unit(224, "lb"),
  15396. name: "Anthro",
  15397. image: {
  15398. source: "./media/characters/grottos/anthro.svg",
  15399. extra: 350 / 332,
  15400. bottom: 0.045
  15401. }
  15402. },
  15403. feral: {
  15404. height: math.unit(20 + 7 / 12, "feet"),
  15405. weight: math.unit(629, "lb"),
  15406. name: "Feral",
  15407. image: {
  15408. source: "./media/characters/grottos/feral.svg",
  15409. extra: 207 / 190,
  15410. bottom: 0.05
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(10 + 9 / 12, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15424. {
  15425. anthro: {
  15426. height: math.unit(9 + 6 / 12, "feet"),
  15427. weight: math.unit(298, "lb"),
  15428. name: "Anthro",
  15429. image: {
  15430. source: "./media/characters/frifna/anthro.svg",
  15431. extra: 282 / 269,
  15432. bottom: 0.015
  15433. }
  15434. },
  15435. feral: {
  15436. height: math.unit(16 + 2 / 12, "feet"),
  15437. weight: math.unit(624, "lb"),
  15438. name: "Feral",
  15439. image: {
  15440. source: "./media/characters/frifna/feral.svg"
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(9 + 6 / 12, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6 + 2 / 12, "feet"),
  15457. weight: math.unit(168, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/elise/front.svg",
  15461. extra: 276 / 271
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(6 + 2 / 12, "feet"),
  15469. default: true
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15475. {
  15476. front: {
  15477. height: math.unit(5 + 10 / 12, "feet"),
  15478. weight: math.unit(210, "lb"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/glade/front.svg",
  15482. extra: 258 / 247,
  15483. bottom: 0.008
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Normal",
  15490. height: math.unit(5 + 10 / 12, "feet"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(5 + 10 / 12, "feet"),
  15500. weight: math.unit(129, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/rina/front.svg",
  15504. extra: 266 / 255,
  15505. bottom: 0.005
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(5 + 10 / 12, "feet"),
  15513. default: true
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(6 + 1 / 12, "feet"),
  15522. weight: math.unit(192, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/veronica/front.svg",
  15526. extra: 319 / 309,
  15527. bottom: 0.005
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Normal",
  15534. height: math.unit(6 + 1 / 12, "feet"),
  15535. default: true
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(9 + 3 / 12, "feet"),
  15544. weight: math.unit(1100, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/braxton/front.svg",
  15548. extra: 1057 / 984,
  15549. bottom: 0.05
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Normal",
  15556. height: math.unit(9 + 3 / 12, "feet")
  15557. },
  15558. {
  15559. name: "Giant",
  15560. height: math.unit(300, "feet"),
  15561. default: true
  15562. },
  15563. {
  15564. name: "Macro",
  15565. height: math.unit(700, "feet")
  15566. },
  15567. {
  15568. name: "Megamacro",
  15569. height: math.unit(6000, "feet")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(6 + 7 / 12, "feet"),
  15578. weight: math.unit(150, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/blue-feyonics/front.svg",
  15582. extra: 1403 / 1306,
  15583. bottom: 0.047
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(6 + 7 / 12, "feet"),
  15591. default: true
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(1.8, "meters"),
  15600. weight: math.unit(60, "kg"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/maxwell/front.svg",
  15604. extra: 2060 / 1873
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Micro",
  15611. height: math.unit(1, "mm")
  15612. },
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(1.8, "meter"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "Macro",
  15620. height: math.unit(30, "meters")
  15621. },
  15622. {
  15623. name: "Megamacro",
  15624. height: math.unit(10, "km")
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(6, "feet"),
  15633. weight: math.unit(150, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/jack/front.svg",
  15637. extra: 1754 / 1640,
  15638. bottom: 0.01
  15639. }
  15640. },
  15641. },
  15642. [
  15643. {
  15644. name: "Normal",
  15645. height: math.unit(80000, "feet"),
  15646. default: true
  15647. },
  15648. {
  15649. name: "Max size",
  15650. height: math.unit(10, "lightyears")
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15656. {
  15657. urban: {
  15658. height: math.unit(5, "feet"),
  15659. weight: math.unit(240, "lb"),
  15660. name: "Urban",
  15661. image: {
  15662. source: "./media/characters/cafat/urban.svg",
  15663. extra: 1223/1126,
  15664. bottom: 205/1428
  15665. }
  15666. },
  15667. summer: {
  15668. height: math.unit(5, "feet"),
  15669. weight: math.unit(240, "lb"),
  15670. name: "Summer",
  15671. image: {
  15672. source: "./media/characters/cafat/summer.svg",
  15673. extra: 1223/1126,
  15674. bottom: 205/1428
  15675. }
  15676. },
  15677. winter: {
  15678. height: math.unit(5, "feet"),
  15679. weight: math.unit(240, "lb"),
  15680. name: "Winter",
  15681. image: {
  15682. source: "./media/characters/cafat/winter.svg",
  15683. extra: 1223/1126,
  15684. bottom: 205/1428
  15685. }
  15686. },
  15687. lingerie: {
  15688. height: math.unit(5, "feet"),
  15689. weight: math.unit(240, "lb"),
  15690. name: "Lingerie",
  15691. image: {
  15692. source: "./media/characters/cafat/lingerie.svg",
  15693. extra: 1223/1126,
  15694. bottom: 205/1428
  15695. }
  15696. },
  15697. upright: {
  15698. height: math.unit(6.3, "feet"),
  15699. weight: math.unit(240, "lb"),
  15700. name: "Upright",
  15701. image: {
  15702. source: "./media/characters/cafat/upright.svg",
  15703. bottom: 0.01
  15704. }
  15705. },
  15706. uprightFull: {
  15707. height: math.unit(6.3, "feet"),
  15708. weight: math.unit(240, "lb"),
  15709. name: "Upright (Full)",
  15710. image: {
  15711. source: "./media/characters/cafat/upright-full.svg",
  15712. bottom: 0.01
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Small",
  15719. height: math.unit(5, "feet"),
  15720. default: true
  15721. },
  15722. {
  15723. name: "Large",
  15724. height: math.unit(13, "feet")
  15725. },
  15726. ]
  15727. ))
  15728. characterMakers.push(() => makeCharacter(
  15729. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15730. {
  15731. front: {
  15732. height: math.unit(6, "feet"),
  15733. weight: math.unit(150, "lb"),
  15734. name: "Front",
  15735. image: {
  15736. source: "./media/characters/verin-raharra/front.svg",
  15737. extra: 5019 / 4835,
  15738. bottom: 0.023
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(7 + 5 / 12, "feet"),
  15746. default: true
  15747. },
  15748. {
  15749. name: "Upsized",
  15750. height: math.unit(20, "feet")
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(7, "feet"),
  15759. weight: math.unit(230, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/nakata/front.svg",
  15763. extra: 1.005,
  15764. bottom: 0.01
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(7, "feet"),
  15772. default: true
  15773. },
  15774. {
  15775. name: "Big",
  15776. height: math.unit(14, "feet")
  15777. },
  15778. {
  15779. name: "Macro",
  15780. height: math.unit(400, "feet")
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(4.91, "feet"),
  15789. weight: math.unit(100, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/lily/front.svg",
  15793. extra: 1585 / 1415,
  15794. bottom: 0.02
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(4.91, "feet"),
  15802. default: true
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15808. {
  15809. laying: {
  15810. height: math.unit(4 + 4 / 12, "feet"),
  15811. weight: math.unit(600, "lb"),
  15812. name: "Laying",
  15813. image: {
  15814. source: "./media/characters/sheila/laying.svg",
  15815. extra: 1333 / 1265,
  15816. bottom: 0.16
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(4 + 4 / 12, "feet"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15830. {
  15831. front: {
  15832. height: math.unit(6, "feet"),
  15833. weight: math.unit(190, "lb"),
  15834. name: "Front",
  15835. image: {
  15836. source: "./media/characters/sax/front.svg",
  15837. extra: 1187 / 973,
  15838. bottom: 0.042
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Micro",
  15845. height: math.unit(4, "inches"),
  15846. default: true
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(6, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/pandora/front.svg",
  15859. extra: 2720 / 2556,
  15860. bottom: 0.015
  15861. }
  15862. },
  15863. back: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(150, "lb"),
  15866. name: "Back",
  15867. image: {
  15868. source: "./media/characters/pandora/back.svg",
  15869. extra: 2720 / 2556,
  15870. bottom: 0.01
  15871. }
  15872. },
  15873. beans: {
  15874. height: math.unit(6 / 8, "feet"),
  15875. name: "Beans",
  15876. image: {
  15877. source: "./media/characters/pandora/beans.svg"
  15878. }
  15879. },
  15880. collar: {
  15881. height: math.unit(0.31, "feet"),
  15882. name: "Collar",
  15883. image: {
  15884. source: "./media/characters/pandora/collar.svg"
  15885. }
  15886. },
  15887. skirt: {
  15888. height: math.unit(6, "feet"),
  15889. weight: math.unit(150, "lb"),
  15890. name: "Skirt",
  15891. image: {
  15892. source: "./media/characters/pandora/skirt.svg",
  15893. extra: 1622 / 1525,
  15894. bottom: 0.015
  15895. }
  15896. },
  15897. hoodie: {
  15898. height: math.unit(6, "feet"),
  15899. weight: math.unit(150, "lb"),
  15900. name: "Hoodie",
  15901. image: {
  15902. source: "./media/characters/pandora/hoodie.svg",
  15903. extra: 1622 / 1525,
  15904. bottom: 0.015
  15905. }
  15906. },
  15907. casual: {
  15908. height: math.unit(6, "feet"),
  15909. weight: math.unit(150, "lb"),
  15910. name: "Casual",
  15911. image: {
  15912. source: "./media/characters/pandora/casual.svg",
  15913. extra: 1622 / 1525,
  15914. bottom: 0.015
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(6, "feet")
  15922. },
  15923. {
  15924. name: "Big Steppy",
  15925. height: math.unit(1, "km"),
  15926. default: true
  15927. },
  15928. {
  15929. name: "Galactic Steppy",
  15930. height: math.unit(2, "gigameters")
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15936. {
  15937. side: {
  15938. height: math.unit(10, "feet"),
  15939. weight: math.unit(800, "kg"),
  15940. name: "Side",
  15941. image: {
  15942. source: "./media/characters/venio-darcony/side.svg",
  15943. extra: 1373 / 1003,
  15944. bottom: 0.037
  15945. }
  15946. },
  15947. front: {
  15948. height: math.unit(19, "feet"),
  15949. weight: math.unit(800, "kg"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/venio-darcony/front.svg"
  15953. }
  15954. },
  15955. back: {
  15956. height: math.unit(19, "feet"),
  15957. weight: math.unit(800, "kg"),
  15958. name: "Back",
  15959. image: {
  15960. source: "./media/characters/venio-darcony/back.svg"
  15961. }
  15962. },
  15963. sideNsfw: {
  15964. height: math.unit(10, "feet"),
  15965. weight: math.unit(800, "kg"),
  15966. name: "Side (NSFW)",
  15967. image: {
  15968. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15969. extra: 1373 / 1003,
  15970. bottom: 0.037
  15971. }
  15972. },
  15973. frontNsfw: {
  15974. height: math.unit(19, "feet"),
  15975. weight: math.unit(800, "kg"),
  15976. name: "Front (NSFW)",
  15977. image: {
  15978. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15979. }
  15980. },
  15981. backNsfw: {
  15982. height: math.unit(19, "feet"),
  15983. weight: math.unit(800, "kg"),
  15984. name: "Back (NSFW)",
  15985. image: {
  15986. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15987. }
  15988. },
  15989. sideArmored: {
  15990. height: math.unit(10, "feet"),
  15991. weight: math.unit(800, "kg"),
  15992. name: "Side (Armored)",
  15993. image: {
  15994. source: "./media/characters/venio-darcony/side-armored.svg",
  15995. extra: 1373 / 1003,
  15996. bottom: 0.037
  15997. }
  15998. },
  15999. frontArmored: {
  16000. height: math.unit(19, "feet"),
  16001. weight: math.unit(900, "kg"),
  16002. name: "Front (Armored)",
  16003. image: {
  16004. source: "./media/characters/venio-darcony/front-armored.svg"
  16005. }
  16006. },
  16007. backArmored: {
  16008. height: math.unit(19, "feet"),
  16009. weight: math.unit(900, "kg"),
  16010. name: "Back (Armored)",
  16011. image: {
  16012. source: "./media/characters/venio-darcony/back-armored.svg"
  16013. }
  16014. },
  16015. sword: {
  16016. height: math.unit(10, "feet"),
  16017. weight: math.unit(50, "lb"),
  16018. name: "Sword",
  16019. image: {
  16020. source: "./media/characters/venio-darcony/sword.svg"
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Normal",
  16027. height: math.unit(10, "feet")
  16028. },
  16029. {
  16030. name: "Macro",
  16031. height: math.unit(130, "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Macro+",
  16036. height: math.unit(240, "feet")
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(6, "feet"),
  16045. weight: math.unit(150, "lb"),
  16046. name: "Front",
  16047. image: {
  16048. source: "./media/characters/veski/front.svg",
  16049. extra: 1299 / 1225,
  16050. bottom: 0.04
  16051. }
  16052. },
  16053. back: {
  16054. height: math.unit(6, "feet"),
  16055. weight: math.unit(150, "lb"),
  16056. name: "Back",
  16057. image: {
  16058. source: "./media/characters/veski/back.svg",
  16059. extra: 1299 / 1225,
  16060. bottom: 0.008
  16061. }
  16062. },
  16063. maw: {
  16064. height: math.unit(1.5 * 1.21, "feet"),
  16065. name: "Maw",
  16066. image: {
  16067. source: "./media/characters/veski/maw.svg"
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Macro",
  16074. height: math.unit(2, "km"),
  16075. default: true
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(5 + 7 / 12, "feet"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/isabelle/front.svg",
  16087. extra: 2130 / 1976,
  16088. bottom: 0.05
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Supermicro",
  16095. height: math.unit(10, "micrometers")
  16096. },
  16097. {
  16098. name: "Micro",
  16099. height: math.unit(1, "inch")
  16100. },
  16101. {
  16102. name: "Tiny",
  16103. height: math.unit(5, "inches")
  16104. },
  16105. {
  16106. name: "Standard",
  16107. height: math.unit(5 + 7 / 12, "inches")
  16108. },
  16109. {
  16110. name: "Macro",
  16111. height: math.unit(80, "meters"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Megamacro",
  16116. height: math.unit(250, "meters")
  16117. },
  16118. {
  16119. name: "Gigamacro",
  16120. height: math.unit(5, "km")
  16121. },
  16122. {
  16123. name: "Cosmic",
  16124. height: math.unit(2.5e6, "miles")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(150, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/hanzo/front.svg",
  16137. extra: 374 / 344,
  16138. bottom: 0.02
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(8, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(7, "feet"),
  16155. weight: math.unit(130, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/anna/front.svg",
  16159. extra: 169 / 145,
  16160. bottom: 0.06
  16161. }
  16162. },
  16163. full: {
  16164. height: math.unit(4.96, "feet"),
  16165. weight: math.unit(220, "lb"),
  16166. name: "Full",
  16167. image: {
  16168. source: "./media/characters/anna/full.svg",
  16169. extra: 138 / 114,
  16170. bottom: 0.15
  16171. }
  16172. },
  16173. tongue: {
  16174. height: math.unit(2.53, "feet"),
  16175. name: "Tongue",
  16176. image: {
  16177. source: "./media/characters/anna/tongue.svg"
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(7, "feet"),
  16185. default: true
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16191. {
  16192. front: {
  16193. height: math.unit(7, "feet"),
  16194. weight: math.unit(150, "lb"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/ian-corvid/front.svg",
  16198. extra: 150 / 142,
  16199. bottom: 0.02
  16200. }
  16201. },
  16202. back: {
  16203. height: math.unit(7, "feet"),
  16204. weight: math.unit(150, "lb"),
  16205. name: "Back",
  16206. image: {
  16207. source: "./media/characters/ian-corvid/back.svg",
  16208. extra: 150 / 143,
  16209. bottom: 0.01
  16210. }
  16211. },
  16212. stomping: {
  16213. height: math.unit(7, "feet"),
  16214. weight: math.unit(150, "lb"),
  16215. name: "Stomping",
  16216. image: {
  16217. source: "./media/characters/ian-corvid/stomping.svg",
  16218. extra: 76 / 72
  16219. }
  16220. },
  16221. sitting: {
  16222. height: math.unit(7 / 1.8, "feet"),
  16223. weight: math.unit(150, "lb"),
  16224. name: "Sitting",
  16225. image: {
  16226. source: "./media/characters/ian-corvid/sitting.svg",
  16227. extra: 1400 / 1269,
  16228. bottom: 0.15
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Tiny Microw",
  16235. height: math.unit(1, "inch")
  16236. },
  16237. {
  16238. name: "Microw",
  16239. height: math.unit(6, "inches")
  16240. },
  16241. {
  16242. name: "Crow",
  16243. height: math.unit(7 + 1 / 12, "feet"),
  16244. default: true
  16245. },
  16246. {
  16247. name: "Macrow",
  16248. height: math.unit(176, "feet")
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(5 + 7 / 12, "feet"),
  16257. weight: math.unit(147, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/natalie-kellon/front.svg",
  16261. extra: 1214 / 1141,
  16262. bottom: 0.02
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Micro",
  16269. height: math.unit(1 / 16, "inch")
  16270. },
  16271. {
  16272. name: "Tiny",
  16273. height: math.unit(4, "inches")
  16274. },
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(5 + 7 / 12, "feet"),
  16278. default: true
  16279. },
  16280. {
  16281. name: "Amazon",
  16282. height: math.unit(12, "feet")
  16283. },
  16284. {
  16285. name: "Giantess",
  16286. height: math.unit(160, "meters")
  16287. },
  16288. {
  16289. name: "Titaness",
  16290. height: math.unit(800, "meters")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/alluria/front.svg",
  16303. extra: 806 / 738,
  16304. bottom: 0.01
  16305. }
  16306. },
  16307. side: {
  16308. height: math.unit(6, "feet"),
  16309. weight: math.unit(150, "lb"),
  16310. name: "Side",
  16311. image: {
  16312. source: "./media/characters/alluria/side.svg",
  16313. extra: 800 / 750,
  16314. }
  16315. },
  16316. back: {
  16317. height: math.unit(6, "feet"),
  16318. weight: math.unit(150, "lb"),
  16319. name: "Back",
  16320. image: {
  16321. source: "./media/characters/alluria/back.svg",
  16322. extra: 806 / 738,
  16323. }
  16324. },
  16325. frontMaid: {
  16326. height: math.unit(6, "feet"),
  16327. weight: math.unit(150, "lb"),
  16328. name: "Front (Maid)",
  16329. image: {
  16330. source: "./media/characters/alluria/front-maid.svg",
  16331. extra: 806 / 738,
  16332. bottom: 0.01
  16333. }
  16334. },
  16335. sideMaid: {
  16336. height: math.unit(6, "feet"),
  16337. weight: math.unit(150, "lb"),
  16338. name: "Side (Maid)",
  16339. image: {
  16340. source: "./media/characters/alluria/side-maid.svg",
  16341. extra: 800 / 750,
  16342. bottom: 0.005
  16343. }
  16344. },
  16345. backMaid: {
  16346. height: math.unit(6, "feet"),
  16347. weight: math.unit(150, "lb"),
  16348. name: "Back (Maid)",
  16349. image: {
  16350. source: "./media/characters/alluria/back-maid.svg",
  16351. extra: 806 / 738,
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Micro",
  16358. height: math.unit(6, "inches"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(6, "feet"),
  16368. weight: math.unit(150, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/kyle/front.svg",
  16372. extra: 1069 / 962,
  16373. bottom: 77.228 / 1727.45
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Macro",
  16380. height: math.unit(150, "feet"),
  16381. default: true
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(6, "feet"),
  16390. weight: math.unit(300, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/duncan/front.svg",
  16394. extra: 1650 / 1482,
  16395. bottom: 0.05
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Macro",
  16402. height: math.unit(100, "feet"),
  16403. default: true
  16404. },
  16405. ]
  16406. ))
  16407. characterMakers.push(() => makeCharacter(
  16408. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16409. {
  16410. front: {
  16411. height: math.unit(5 + 4 / 12, "feet"),
  16412. weight: math.unit(220, "lb"),
  16413. name: "Front",
  16414. image: {
  16415. source: "./media/characters/memory/front.svg",
  16416. extra: 3641 / 3545,
  16417. bottom: 0.03
  16418. }
  16419. },
  16420. back: {
  16421. height: math.unit(5 + 4 / 12, "feet"),
  16422. weight: math.unit(220, "lb"),
  16423. name: "Back",
  16424. image: {
  16425. source: "./media/characters/memory/back.svg",
  16426. extra: 3641 / 3545,
  16427. bottom: 0.025
  16428. }
  16429. },
  16430. frontSkirt: {
  16431. height: math.unit(5 + 4 / 12, "feet"),
  16432. weight: math.unit(220, "lb"),
  16433. name: "Front (Skirt)",
  16434. image: {
  16435. source: "./media/characters/memory/front-skirt.svg",
  16436. extra: 3641 / 3545,
  16437. bottom: 0.03
  16438. }
  16439. },
  16440. frontDress: {
  16441. height: math.unit(5 + 4 / 12, "feet"),
  16442. weight: math.unit(220, "lb"),
  16443. name: "Front (Dress)",
  16444. image: {
  16445. source: "./media/characters/memory/front-dress.svg",
  16446. extra: 3641 / 3545,
  16447. bottom: 0.03
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Micro",
  16454. height: math.unit(6, "inches"),
  16455. default: true
  16456. },
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(5 + 4 / 12, "feet")
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(4 + 11 / 12, "feet"),
  16468. weight: math.unit(100, "lb"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/luno/front.svg",
  16472. extra: 1535 / 1487,
  16473. bottom: 0.03
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Micro",
  16480. height: math.unit(3, "inches")
  16481. },
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(4 + 11 / 12, "feet"),
  16485. default: true
  16486. },
  16487. {
  16488. name: "Macro",
  16489. height: math.unit(300, "feet")
  16490. },
  16491. {
  16492. name: "Megamacro",
  16493. height: math.unit(700, "miles")
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16499. {
  16500. front: {
  16501. height: math.unit(6 + 2 / 12, "feet"),
  16502. weight: math.unit(170, "lb"),
  16503. name: "Front",
  16504. image: {
  16505. source: "./media/characters/jamesy/front.svg",
  16506. extra: 440 / 382,
  16507. bottom: 0.005
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Micro",
  16514. height: math.unit(3, "inches")
  16515. },
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(6 + 2 / 12, "feet"),
  16519. default: true
  16520. },
  16521. {
  16522. name: "Macro",
  16523. height: math.unit(300, "feet")
  16524. },
  16525. {
  16526. name: "Megamacro",
  16527. height: math.unit(700, "miles")
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(6, "feet"),
  16536. weight: math.unit(160, "lb"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/mark/front.svg",
  16540. extra: 3300 / 3100,
  16541. bottom: 136.42 / 3440.47
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Macro",
  16548. height: math.unit(120, "meters")
  16549. },
  16550. {
  16551. name: "Bigger Macro",
  16552. height: math.unit(350, "meters")
  16553. },
  16554. {
  16555. name: "Megamacro",
  16556. height: math.unit(8, "km"),
  16557. default: true
  16558. },
  16559. {
  16560. name: "Continental",
  16561. height: math.unit(4550, "km")
  16562. },
  16563. {
  16564. name: "Planetary",
  16565. height: math.unit(65000, "km")
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(6, "feet"),
  16574. weight: math.unit(400, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/mac/front.svg",
  16578. extra: 1048 / 987.7,
  16579. bottom: 60 / 1107.6,
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Macro",
  16586. height: math.unit(500, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(5 + 2 / 12, "feet"),
  16596. weight: math.unit(190, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/bari/front.svg",
  16600. extra: 3156 / 2880,
  16601. bottom: 0.03
  16602. }
  16603. },
  16604. back: {
  16605. height: math.unit(5 + 2 / 12, "feet"),
  16606. weight: math.unit(190, "lb"),
  16607. name: "Back",
  16608. image: {
  16609. source: "./media/characters/bari/back.svg",
  16610. extra: 3260 / 2834,
  16611. bottom: 0.025
  16612. }
  16613. },
  16614. frontPlush: {
  16615. height: math.unit(5 + 2 / 12, "feet"),
  16616. weight: math.unit(190, "lb"),
  16617. name: "Front (Plush)",
  16618. image: {
  16619. source: "./media/characters/bari/front-plush.svg",
  16620. extra: 1112 / 1061,
  16621. bottom: 0.002
  16622. }
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Micro",
  16628. height: math.unit(3, "inches")
  16629. },
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(5 + 2 / 12, "feet"),
  16633. default: true
  16634. },
  16635. {
  16636. name: "Macro",
  16637. height: math.unit(20, "feet")
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16643. {
  16644. front: {
  16645. height: math.unit(6 + 1 / 12, "feet"),
  16646. weight: math.unit(275, "lb"),
  16647. name: "Front",
  16648. image: {
  16649. source: "./media/characters/hunter-misha-raven/front.svg"
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Mortal",
  16656. height: math.unit(6 + 1 / 12, "feet")
  16657. },
  16658. {
  16659. name: "Divine",
  16660. height: math.unit(1.12134e34, "parsecs"),
  16661. default: true
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(6 + 3 / 12, "feet"),
  16670. weight: math.unit(220, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/max-calore/front.svg",
  16674. extra: 1700 / 1648,
  16675. bottom: 0.01
  16676. }
  16677. },
  16678. back: {
  16679. height: math.unit(6 + 3 / 12, "feet"),
  16680. weight: math.unit(220, "lb"),
  16681. name: "Back",
  16682. image: {
  16683. source: "./media/characters/max-calore/back.svg",
  16684. extra: 1700 / 1648,
  16685. bottom: 0.01
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(6 + 3 / 12, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16699. {
  16700. side: {
  16701. height: math.unit(2 + 8 / 12, "feet"),
  16702. weight: math.unit(99, "lb"),
  16703. name: "Side",
  16704. image: {
  16705. source: "./media/characters/aspen/side.svg",
  16706. extra: 152 / 138,
  16707. bottom: 0.032
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(2 + 8 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16721. {
  16722. side: {
  16723. height: math.unit(3 + 2 / 12, "feet"),
  16724. weight: math.unit(224, "lb"),
  16725. name: "Side",
  16726. image: {
  16727. source: "./media/characters/sheila-feral-wolf/side.svg",
  16728. extra: 179 / 166,
  16729. bottom: 0.03
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(3 + 2 / 12, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16743. {
  16744. side: {
  16745. height: math.unit(1 + 9 / 12, "feet"),
  16746. weight: math.unit(38, "lb"),
  16747. name: "Side",
  16748. image: {
  16749. source: "./media/characters/michelle/side.svg",
  16750. extra: 147 / 136.7,
  16751. bottom: 0.03
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(1 + 9 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(1 + 1 / 12, "feet"),
  16768. weight: math.unit(18, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/nino/front.svg"
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(1 + 1 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(1, "feet"),
  16788. weight: math.unit(16, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/viola/front.svg"
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(1, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6 + 5 / 12, "feet"),
  16808. weight: math.unit(580, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/atlas/front.svg",
  16812. extra: 298.5 / 290,
  16813. bottom: 0.015
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(6 + 5 / 12, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16827. {
  16828. side: {
  16829. height: math.unit(1 + 10 / 12, "feet"),
  16830. weight: math.unit(25, "lb"),
  16831. name: "Side",
  16832. image: {
  16833. source: "./media/characters/davy/side.svg",
  16834. extra: 200 / 170,
  16835. bottom: 0.01
  16836. }
  16837. },
  16838. },
  16839. [
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(1 + 10 / 12, "feet"),
  16843. default: true
  16844. },
  16845. ]
  16846. ))
  16847. characterMakers.push(() => makeCharacter(
  16848. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16849. {
  16850. side: {
  16851. height: math.unit(4 + 8 / 12, "feet"),
  16852. weight: math.unit(166, "lb"),
  16853. name: "Side",
  16854. image: {
  16855. source: "./media/characters/fiona/side.svg",
  16856. extra: 232 / 220,
  16857. bottom: 0.03
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(4 + 8 / 12, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16871. {
  16872. front: {
  16873. height: math.unit(2, "feet"),
  16874. weight: math.unit(62, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/lyla/front.svg",
  16878. bottom: 0.1
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(2, "feet"),
  16886. default: true
  16887. },
  16888. ]
  16889. ))
  16890. characterMakers.push(() => makeCharacter(
  16891. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16892. {
  16893. side: {
  16894. height: math.unit(1.8, "feet"),
  16895. weight: math.unit(44, "lb"),
  16896. name: "Side",
  16897. image: {
  16898. source: "./media/characters/perseus/side.svg",
  16899. bottom: 0.21
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(1.8, "feet"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16913. {
  16914. side: {
  16915. height: math.unit(4 + 2 / 12, "feet"),
  16916. weight: math.unit(20, "lb"),
  16917. name: "Side",
  16918. image: {
  16919. source: "./media/characters/remus/side.svg"
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(4 + 2 / 12, "feet"),
  16927. default: true
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16933. {
  16934. front: {
  16935. height: math.unit(4 + 11 / 12, "feet"),
  16936. weight: math.unit(114, "lb"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/raf/front.svg",
  16940. bottom: 20.5 / 1863
  16941. }
  16942. },
  16943. side: {
  16944. height: math.unit(4 + 11 / 12, "feet"),
  16945. weight: math.unit(114, "lb"),
  16946. name: "Side",
  16947. image: {
  16948. source: "./media/characters/raf/side.svg",
  16949. bottom: 22 / 1822
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Micro",
  16956. height: math.unit(2, "inches")
  16957. },
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(4 + 11 / 12, "feet"),
  16961. default: true
  16962. },
  16963. {
  16964. name: "Macro",
  16965. height: math.unit(70, "feet")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(1.5, "meters"),
  16974. weight: math.unit(68, "kg"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/liam-einarr/front.svg",
  16978. extra: 2822 / 2666
  16979. }
  16980. },
  16981. back: {
  16982. height: math.unit(1.5, "meters"),
  16983. weight: math.unit(68, "kg"),
  16984. name: "Back",
  16985. image: {
  16986. source: "./media/characters/liam-einarr/back.svg",
  16987. extra: 2822 / 2666,
  16988. bottom: 0.015
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(1.5, "meters"),
  16996. default: true
  16997. },
  16998. {
  16999. name: "Macro",
  17000. height: math.unit(150, "meters")
  17001. },
  17002. {
  17003. name: "Megamacro",
  17004. height: math.unit(35, "km")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(6, "feet"),
  17013. weight: math.unit(75, "kg"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/linda/front.svg",
  17017. extra: 930 / 874,
  17018. bottom: 0.004
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(6, "feet"),
  17026. default: true
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(6 + 8 / 12, "feet"),
  17035. weight: math.unit(220, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/caylex/front.svg",
  17039. extra: 821 / 772,
  17040. bottom: 0.07
  17041. }
  17042. },
  17043. back: {
  17044. height: math.unit(6 + 8 / 12, "feet"),
  17045. weight: math.unit(220, "lb"),
  17046. name: "Back",
  17047. image: {
  17048. source: "./media/characters/caylex/back.svg",
  17049. extra: 821 / 772,
  17050. bottom: 0.022
  17051. }
  17052. },
  17053. hand: {
  17054. height: math.unit(1.25, "feet"),
  17055. name: "Hand",
  17056. image: {
  17057. source: "./media/characters/caylex/hand.svg"
  17058. }
  17059. },
  17060. foot: {
  17061. height: math.unit(1.6, "feet"),
  17062. name: "Foot",
  17063. image: {
  17064. source: "./media/characters/caylex/foot.svg"
  17065. }
  17066. },
  17067. armored: {
  17068. height: math.unit(6 + 8 / 12, "feet"),
  17069. weight: math.unit(250, "lb"),
  17070. name: "Armored",
  17071. image: {
  17072. source: "./media/characters/caylex/armored.svg",
  17073. extra: 1420 / 1310,
  17074. bottom: 0.045
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(6 + 8 / 12, "feet"),
  17082. default: true
  17083. },
  17084. {
  17085. name: "Normal+",
  17086. height: math.unit(12, "feet")
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(7 + 6 / 12, "feet"),
  17095. weight: math.unit(288, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/alana/front.svg",
  17099. extra: 679 / 653,
  17100. bottom: 22.5 / 701
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(7 + 6 / 12, "feet")
  17108. },
  17109. {
  17110. name: "Large",
  17111. height: math.unit(50, "feet")
  17112. },
  17113. {
  17114. name: "Macro",
  17115. height: math.unit(100, "feet"),
  17116. default: true
  17117. },
  17118. {
  17119. name: "Macro+",
  17120. height: math.unit(200, "feet")
  17121. },
  17122. ]
  17123. ))
  17124. characterMakers.push(() => makeCharacter(
  17125. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17126. {
  17127. front: {
  17128. height: math.unit(6 + 1 / 12, "feet"),
  17129. weight: math.unit(210, "lb"),
  17130. name: "Front",
  17131. image: {
  17132. source: "./media/characters/hasani/front.svg",
  17133. extra: 244 / 232,
  17134. bottom: 0.01
  17135. }
  17136. },
  17137. back: {
  17138. height: math.unit(6 + 1 / 12, "feet"),
  17139. weight: math.unit(210, "lb"),
  17140. name: "Back",
  17141. image: {
  17142. source: "./media/characters/hasani/back.svg",
  17143. extra: 244 / 232,
  17144. bottom: 0.01
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(6 + 1 / 12, "feet")
  17152. },
  17153. {
  17154. name: "Macro",
  17155. height: math.unit(175, "feet"),
  17156. default: true
  17157. },
  17158. ]
  17159. ))
  17160. characterMakers.push(() => makeCharacter(
  17161. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17162. {
  17163. front: {
  17164. height: math.unit(1.82, "meters"),
  17165. weight: math.unit(140, "lb"),
  17166. name: "Front",
  17167. image: {
  17168. source: "./media/characters/nita/front.svg",
  17169. extra: 2473 / 2363,
  17170. bottom: 0.01
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Normal",
  17177. height: math.unit(1.82, "m")
  17178. },
  17179. {
  17180. name: "Macro",
  17181. height: math.unit(300, "m")
  17182. },
  17183. {
  17184. name: "Mistake Canon",
  17185. height: math.unit(0.5, "miles"),
  17186. default: true
  17187. },
  17188. {
  17189. name: "Big Mistake",
  17190. height: math.unit(13, "miles")
  17191. },
  17192. {
  17193. name: "Playing God",
  17194. height: math.unit(2450, "miles")
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17200. {
  17201. front: {
  17202. height: math.unit(4, "feet"),
  17203. weight: math.unit(120, "lb"),
  17204. name: "Front",
  17205. image: {
  17206. source: "./media/characters/shiriko/front.svg",
  17207. extra: 970/934,
  17208. bottom: 5/975
  17209. }
  17210. },
  17211. },
  17212. [
  17213. {
  17214. name: "Normal",
  17215. height: math.unit(4, "feet"),
  17216. default: true
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17222. {
  17223. front: {
  17224. height: math.unit(6, "feet"),
  17225. name: "front",
  17226. image: {
  17227. source: "./media/characters/deja/front.svg",
  17228. extra: 926 / 840,
  17229. bottom: 0.07
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Planck Length",
  17236. height: math.unit(1.6e-35, "meters")
  17237. },
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(30.48, "meters"),
  17241. default: true
  17242. },
  17243. {
  17244. name: "Universal",
  17245. height: math.unit(8.8e26, "meters")
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17251. {
  17252. side: {
  17253. height: math.unit(8, "feet"),
  17254. weight: math.unit(6300, "lb"),
  17255. name: "Side",
  17256. image: {
  17257. source: "./media/characters/anima/side.svg",
  17258. bottom: 0.035
  17259. }
  17260. },
  17261. },
  17262. [
  17263. {
  17264. name: "Normal",
  17265. height: math.unit(8, "feet"),
  17266. default: true
  17267. },
  17268. ]
  17269. ))
  17270. characterMakers.push(() => makeCharacter(
  17271. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17272. {
  17273. front: {
  17274. height: math.unit(8, "feet"),
  17275. weight: math.unit(350, "lb"),
  17276. name: "Front",
  17277. image: {
  17278. source: "./media/characters/bianca/front.svg",
  17279. extra: 234 / 225,
  17280. bottom: 0.03
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(8, "feet"),
  17288. default: true
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17294. {
  17295. front: {
  17296. height: math.unit(6, "feet"),
  17297. weight: math.unit(150, "lb"),
  17298. name: "Front",
  17299. image: {
  17300. source: "./media/characters/adinia/front.svg",
  17301. extra: 1845 / 1672,
  17302. bottom: 0.02
  17303. }
  17304. },
  17305. back: {
  17306. height: math.unit(6, "feet"),
  17307. weight: math.unit(150, "lb"),
  17308. name: "Back",
  17309. image: {
  17310. source: "./media/characters/adinia/back.svg",
  17311. extra: 1845 / 1672,
  17312. bottom: 0.002
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(11 + 5 / 12, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17326. {
  17327. front: {
  17328. height: math.unit(3, "meters"),
  17329. weight: math.unit(200, "kg"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/lykasa/front.svg",
  17333. extra: 1076 / 976,
  17334. bottom: 0.06
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(3, "meters")
  17342. },
  17343. {
  17344. name: "Kaiju",
  17345. height: math.unit(120, "meters"),
  17346. default: true
  17347. },
  17348. {
  17349. name: "Mega Kaiju",
  17350. height: math.unit(240, "km")
  17351. },
  17352. {
  17353. name: "Giga Kaiju",
  17354. height: math.unit(400, "megameters")
  17355. },
  17356. {
  17357. name: "Tera Kaiju",
  17358. height: math.unit(800, "gigameters")
  17359. },
  17360. {
  17361. name: "Kaiju Dragon Goddess",
  17362. height: math.unit(26, "zettaparsecs")
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17368. {
  17369. side: {
  17370. height: math.unit(283 / 124 * 6, "feet"),
  17371. weight: math.unit(35000, "lb"),
  17372. name: "Side",
  17373. image: {
  17374. source: "./media/characters/malfaren/side.svg",
  17375. extra: 2500 / 1010,
  17376. bottom: 0.01
  17377. }
  17378. },
  17379. front: {
  17380. height: math.unit(22.36, "feet"),
  17381. weight: math.unit(35000, "lb"),
  17382. name: "Front",
  17383. image: {
  17384. source: "./media/characters/malfaren/front.svg",
  17385. extra: 1631 / 1476,
  17386. bottom: 0.01
  17387. }
  17388. },
  17389. maw: {
  17390. height: math.unit(6.9, "feet"),
  17391. name: "Maw",
  17392. image: {
  17393. source: "./media/characters/malfaren/maw.svg"
  17394. }
  17395. },
  17396. },
  17397. [
  17398. {
  17399. name: "Big",
  17400. height: math.unit(283 / 162 * 6, "feet"),
  17401. },
  17402. {
  17403. name: "Bigger",
  17404. height: math.unit(283 / 124 * 6, "feet")
  17405. },
  17406. {
  17407. name: "Massive",
  17408. height: math.unit(283 / 92 * 6, "feet"),
  17409. default: true
  17410. },
  17411. {
  17412. name: "👀💦",
  17413. height: math.unit(283 / 73 * 6, "feet"),
  17414. },
  17415. ]
  17416. ))
  17417. characterMakers.push(() => makeCharacter(
  17418. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17419. {
  17420. front: {
  17421. height: math.unit(1.7, "m"),
  17422. weight: math.unit(70, "kg"),
  17423. name: "Front",
  17424. image: {
  17425. source: "./media/characters/kernel/front.svg",
  17426. extra: 222 / 210,
  17427. bottom: 0.007
  17428. }
  17429. },
  17430. },
  17431. [
  17432. {
  17433. name: "Nano",
  17434. height: math.unit(17, "micrometers")
  17435. },
  17436. {
  17437. name: "Micro",
  17438. height: math.unit(1.7, "mm")
  17439. },
  17440. {
  17441. name: "Small",
  17442. height: math.unit(1.7, "cm")
  17443. },
  17444. {
  17445. name: "Normal",
  17446. height: math.unit(1.7, "m"),
  17447. default: true
  17448. },
  17449. ]
  17450. ))
  17451. characterMakers.push(() => makeCharacter(
  17452. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17453. {
  17454. front: {
  17455. height: math.unit(1.75, "meters"),
  17456. weight: math.unit(65, "kg"),
  17457. name: "Front",
  17458. image: {
  17459. source: "./media/characters/jayne-folest/front.svg",
  17460. extra: 2115 / 2007,
  17461. bottom: 0.02
  17462. }
  17463. },
  17464. back: {
  17465. height: math.unit(1.75, "meters"),
  17466. weight: math.unit(65, "kg"),
  17467. name: "Back",
  17468. image: {
  17469. source: "./media/characters/jayne-folest/back.svg",
  17470. extra: 2115 / 2007,
  17471. bottom: 0.005
  17472. }
  17473. },
  17474. frontClothed: {
  17475. height: math.unit(1.75, "meters"),
  17476. weight: math.unit(65, "kg"),
  17477. name: "Front (Clothed)",
  17478. image: {
  17479. source: "./media/characters/jayne-folest/front-clothed.svg",
  17480. extra: 2115 / 2007,
  17481. bottom: 0.035
  17482. }
  17483. },
  17484. hand: {
  17485. height: math.unit(1 / 1.260, "feet"),
  17486. name: "Hand",
  17487. image: {
  17488. source: "./media/characters/jayne-folest/hand.svg"
  17489. }
  17490. },
  17491. foot: {
  17492. height: math.unit(1 / 0.918, "feet"),
  17493. name: "Foot",
  17494. image: {
  17495. source: "./media/characters/jayne-folest/foot.svg"
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Micro",
  17502. height: math.unit(4, "cm")
  17503. },
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(1.75, "meters")
  17507. },
  17508. {
  17509. name: "Macro",
  17510. height: math.unit(47.5, "meters"),
  17511. default: true
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(180, "cm"),
  17520. weight: math.unit(70, "kg"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/algier/front.svg",
  17524. extra: 596 / 572,
  17525. bottom: 0.04
  17526. }
  17527. },
  17528. back: {
  17529. height: math.unit(180, "cm"),
  17530. weight: math.unit(70, "kg"),
  17531. name: "Back",
  17532. image: {
  17533. source: "./media/characters/algier/back.svg",
  17534. extra: 596 / 572,
  17535. bottom: 0.025
  17536. }
  17537. },
  17538. frontdressed: {
  17539. height: math.unit(180, "cm"),
  17540. weight: math.unit(150, "kg"),
  17541. name: "Front-dressed",
  17542. image: {
  17543. source: "./media/characters/algier/front-dressed.svg",
  17544. extra: 596 / 572,
  17545. bottom: 0.038
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Micro",
  17552. height: math.unit(5, "cm")
  17553. },
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(180, "cm"),
  17557. default: true
  17558. },
  17559. {
  17560. name: "Macro",
  17561. height: math.unit(64, "m")
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17567. {
  17568. upright: {
  17569. height: math.unit(7, "feet"),
  17570. weight: math.unit(300, "lb"),
  17571. name: "Upright",
  17572. image: {
  17573. source: "./media/characters/pretzel/upright.svg",
  17574. extra: 534 / 522,
  17575. bottom: 0.065
  17576. }
  17577. },
  17578. sprawling: {
  17579. height: math.unit(3.75, "feet"),
  17580. weight: math.unit(300, "lb"),
  17581. name: "Sprawling",
  17582. image: {
  17583. source: "./media/characters/pretzel/sprawling.svg",
  17584. extra: 314 / 281,
  17585. bottom: 0.1
  17586. }
  17587. },
  17588. tongue: {
  17589. height: math.unit(2, "feet"),
  17590. name: "Tongue",
  17591. image: {
  17592. source: "./media/characters/pretzel/tongue.svg"
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(7, "feet"),
  17600. default: true
  17601. },
  17602. {
  17603. name: "Oversized",
  17604. height: math.unit(15, "feet")
  17605. },
  17606. {
  17607. name: "Huge",
  17608. height: math.unit(30, "feet")
  17609. },
  17610. {
  17611. name: "Macro",
  17612. height: math.unit(250, "feet")
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17618. {
  17619. sideFront: {
  17620. height: math.unit(5 + 2 / 12, "feet"),
  17621. weight: math.unit(120, "lb"),
  17622. name: "Front Side",
  17623. image: {
  17624. source: "./media/characters/roxi/side-front.svg",
  17625. extra: 2924 / 2717,
  17626. bottom: 0.08
  17627. }
  17628. },
  17629. sideBack: {
  17630. height: math.unit(5 + 2 / 12, "feet"),
  17631. weight: math.unit(120, "lb"),
  17632. name: "Back Side",
  17633. image: {
  17634. source: "./media/characters/roxi/side-back.svg",
  17635. extra: 2904 / 2693,
  17636. bottom: 0.06
  17637. }
  17638. },
  17639. front: {
  17640. height: math.unit(5 + 2 / 12, "feet"),
  17641. weight: math.unit(120, "lb"),
  17642. name: "Front",
  17643. image: {
  17644. source: "./media/characters/roxi/front.svg",
  17645. extra: 2028 / 1907,
  17646. bottom: 0.01
  17647. }
  17648. },
  17649. frontAlt: {
  17650. height: math.unit(5 + 2 / 12, "feet"),
  17651. weight: math.unit(120, "lb"),
  17652. name: "Front (Alt)",
  17653. image: {
  17654. source: "./media/characters/roxi/front-alt.svg",
  17655. extra: 1828 / 1798,
  17656. bottom: 0.01
  17657. }
  17658. },
  17659. sitting: {
  17660. height: math.unit(2.8, "feet"),
  17661. weight: math.unit(120, "lb"),
  17662. name: "Sitting",
  17663. image: {
  17664. source: "./media/characters/roxi/sitting.svg",
  17665. extra: 2660 / 2462,
  17666. bottom: 0.1
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(5 + 2 / 12, "feet"),
  17674. default: true
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17680. {
  17681. side: {
  17682. height: math.unit(55, "feet"),
  17683. weight: math.unit(153, "tons"),
  17684. name: "Side",
  17685. image: {
  17686. source: "./media/characters/shadow/side.svg",
  17687. extra: 701 / 628,
  17688. bottom: 0.02
  17689. }
  17690. },
  17691. flying: {
  17692. height: math.unit(145, "feet"),
  17693. weight: math.unit(153, "tons"),
  17694. name: "Flying",
  17695. image: {
  17696. source: "./media/characters/shadow/flying.svg"
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(55, "feet"),
  17704. default: true
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17710. {
  17711. front: {
  17712. height: math.unit(6, "feet"),
  17713. weight: math.unit(200, "lb"),
  17714. name: "Front",
  17715. image: {
  17716. source: "./media/characters/marcie/front.svg",
  17717. extra: 960 / 876,
  17718. bottom: 58 / 1017.87
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Macro",
  17725. height: math.unit(1, "mile"),
  17726. default: true
  17727. },
  17728. ]
  17729. ))
  17730. characterMakers.push(() => makeCharacter(
  17731. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17732. {
  17733. front: {
  17734. height: math.unit(7, "feet"),
  17735. weight: math.unit(200, "lb"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/kachina/front.svg",
  17739. extra: 1290.68 / 1119,
  17740. bottom: 36.5 / 1327.18
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(7, "feet"),
  17748. default: true
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17754. {
  17755. looking: {
  17756. height: math.unit(2, "meters"),
  17757. weight: math.unit(300, "kg"),
  17758. name: "Looking",
  17759. image: {
  17760. source: "./media/characters/kash/looking.svg",
  17761. extra: 474 / 344,
  17762. bottom: 0.03
  17763. }
  17764. },
  17765. side: {
  17766. height: math.unit(2, "meters"),
  17767. weight: math.unit(300, "kg"),
  17768. name: "Side",
  17769. image: {
  17770. source: "./media/characters/kash/side.svg",
  17771. extra: 302 / 251,
  17772. bottom: 0.03
  17773. }
  17774. },
  17775. front: {
  17776. height: math.unit(2, "meters"),
  17777. weight: math.unit(300, "kg"),
  17778. name: "Front",
  17779. image: {
  17780. source: "./media/characters/kash/front.svg",
  17781. extra: 495 / 360,
  17782. bottom: 0.015
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(2, "meters"),
  17790. default: true
  17791. },
  17792. {
  17793. name: "Big",
  17794. height: math.unit(3, "meters")
  17795. },
  17796. {
  17797. name: "Large",
  17798. height: math.unit(5, "meters")
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17804. {
  17805. feeding: {
  17806. height: math.unit(6.7, "feet"),
  17807. weight: math.unit(350, "lb"),
  17808. name: "Feeding",
  17809. image: {
  17810. source: "./media/characters/lalim/feeding.svg",
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(6.7, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17824. {
  17825. front: {
  17826. height: math.unit(9.5, "feet"),
  17827. weight: math.unit(600, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/de'vout/front.svg",
  17831. extra: 1443 / 1328,
  17832. bottom: 0.025
  17833. }
  17834. },
  17835. back: {
  17836. height: math.unit(9.5, "feet"),
  17837. weight: math.unit(600, "lb"),
  17838. name: "Back",
  17839. image: {
  17840. source: "./media/characters/de'vout/back.svg",
  17841. extra: 1443 / 1328
  17842. }
  17843. },
  17844. frontDressed: {
  17845. height: math.unit(9.5, "feet"),
  17846. weight: math.unit(600, "lb"),
  17847. name: "Front (Dressed",
  17848. image: {
  17849. source: "./media/characters/de'vout/front-dressed.svg",
  17850. extra: 1443 / 1328,
  17851. bottom: 0.025
  17852. }
  17853. },
  17854. backDressed: {
  17855. height: math.unit(9.5, "feet"),
  17856. weight: math.unit(600, "lb"),
  17857. name: "Back (Dressed",
  17858. image: {
  17859. source: "./media/characters/de'vout/back-dressed.svg",
  17860. extra: 1443 / 1328
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(9.5, "feet"),
  17868. default: true
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(8, "feet"),
  17877. weight: math.unit(225, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/talana/front.svg",
  17881. extra: 1410 / 1300,
  17882. bottom: 0.015
  17883. }
  17884. },
  17885. frontDressed: {
  17886. height: math.unit(8, "feet"),
  17887. weight: math.unit(225, "lb"),
  17888. name: "Front (Dressed",
  17889. image: {
  17890. source: "./media/characters/talana/front-dressed.svg",
  17891. extra: 1410 / 1300,
  17892. bottom: 0.015
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(8, "feet"),
  17900. default: true
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17906. {
  17907. side: {
  17908. height: math.unit(7.2, "feet"),
  17909. weight: math.unit(150, "lb"),
  17910. name: "Side",
  17911. image: {
  17912. source: "./media/characters/xeauvok/side.svg",
  17913. extra: 1975 / 1523,
  17914. bottom: 0.07
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(7.2, "feet"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17928. {
  17929. side: {
  17930. height: math.unit(10, "feet"),
  17931. weight: math.unit(900, "kg"),
  17932. name: "Side",
  17933. image: {
  17934. source: "./media/characters/zara/side.svg",
  17935. extra: 504 / 498
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(10, "feet"),
  17943. default: true
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17949. {
  17950. side: {
  17951. height: math.unit(6, "feet"),
  17952. weight: math.unit(150, "lb"),
  17953. name: "Side",
  17954. image: {
  17955. source: "./media/characters/richard-dragon/side.svg",
  17956. extra: 845 / 340,
  17957. bottom: 0.017
  17958. }
  17959. },
  17960. maw: {
  17961. height: math.unit(2.97, "feet"),
  17962. name: "Maw",
  17963. image: {
  17964. source: "./media/characters/richard-dragon/maw.svg"
  17965. }
  17966. },
  17967. },
  17968. [
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17973. {
  17974. front: {
  17975. height: math.unit(4, "feet"),
  17976. weight: math.unit(100, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/richard-smeargle/front.svg",
  17980. extra: 2952 / 2820,
  17981. bottom: 0.028
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(4, "feet"),
  17989. default: true
  17990. },
  17991. {
  17992. name: "Dynamax",
  17993. height: math.unit(20, "meters")
  17994. },
  17995. ]
  17996. ))
  17997. characterMakers.push(() => makeCharacter(
  17998. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17999. {
  18000. front: {
  18001. height: math.unit(6, "feet"),
  18002. weight: math.unit(110, "lb"),
  18003. name: "Front",
  18004. image: {
  18005. source: "./media/characters/klay/front.svg",
  18006. extra: 962 / 883,
  18007. bottom: 0.04
  18008. }
  18009. },
  18010. back: {
  18011. height: math.unit(6, "feet"),
  18012. weight: math.unit(110, "lb"),
  18013. name: "Back",
  18014. image: {
  18015. source: "./media/characters/klay/back.svg",
  18016. extra: 962 / 883
  18017. }
  18018. },
  18019. beans: {
  18020. height: math.unit(1.15, "feet"),
  18021. name: "Beans",
  18022. image: {
  18023. source: "./media/characters/klay/beans.svg"
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Micro",
  18030. height: math.unit(6, "inches")
  18031. },
  18032. {
  18033. name: "Mini",
  18034. height: math.unit(3, "feet")
  18035. },
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(6, "feet"),
  18039. default: true
  18040. },
  18041. {
  18042. name: "Big",
  18043. height: math.unit(25, "feet")
  18044. },
  18045. {
  18046. name: "Macro",
  18047. height: math.unit(100, "feet")
  18048. },
  18049. {
  18050. name: "Megamacro",
  18051. height: math.unit(400, "feet")
  18052. },
  18053. ]
  18054. ))
  18055. characterMakers.push(() => makeCharacter(
  18056. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18057. {
  18058. front: {
  18059. height: math.unit(6, "feet"),
  18060. weight: math.unit(160, "lb"),
  18061. name: "Front",
  18062. image: {
  18063. source: "./media/characters/marcus/front.svg",
  18064. extra: 734 / 676,
  18065. bottom: 0.03
  18066. }
  18067. },
  18068. },
  18069. [
  18070. {
  18071. name: "Little",
  18072. height: math.unit(6, "feet")
  18073. },
  18074. {
  18075. name: "Normal",
  18076. height: math.unit(110, "feet"),
  18077. default: true
  18078. },
  18079. {
  18080. name: "Macro",
  18081. height: math.unit(250, "feet")
  18082. },
  18083. {
  18084. name: "Megamacro",
  18085. height: math.unit(1000, "feet")
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(7, "feet"),
  18094. weight: math.unit(275, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/claude-delroute/front.svg",
  18098. extra: 230 / 214,
  18099. bottom: 0.007
  18100. }
  18101. },
  18102. side: {
  18103. height: math.unit(7, "feet"),
  18104. weight: math.unit(275, "lb"),
  18105. name: "Side",
  18106. image: {
  18107. source: "./media/characters/claude-delroute/side.svg",
  18108. extra: 222 / 214,
  18109. bottom: 0.01
  18110. }
  18111. },
  18112. back: {
  18113. height: math.unit(7, "feet"),
  18114. weight: math.unit(275, "lb"),
  18115. name: "Back",
  18116. image: {
  18117. source: "./media/characters/claude-delroute/back.svg",
  18118. extra: 230 / 214,
  18119. bottom: 0.015
  18120. }
  18121. },
  18122. maw: {
  18123. height: math.unit(0.6407, "meters"),
  18124. name: "Maw",
  18125. image: {
  18126. source: "./media/characters/claude-delroute/maw.svg"
  18127. }
  18128. },
  18129. },
  18130. [
  18131. {
  18132. name: "Normal",
  18133. height: math.unit(7, "feet"),
  18134. default: true
  18135. },
  18136. {
  18137. name: "Lorge",
  18138. height: math.unit(20, "feet")
  18139. },
  18140. ]
  18141. ))
  18142. characterMakers.push(() => makeCharacter(
  18143. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18144. {
  18145. front: {
  18146. height: math.unit(8 + 4 / 12, "feet"),
  18147. weight: math.unit(600, "lb"),
  18148. name: "Front",
  18149. image: {
  18150. source: "./media/characters/dragonien/front.svg",
  18151. extra: 100 / 94,
  18152. bottom: 3.3 / 103.3445
  18153. }
  18154. },
  18155. back: {
  18156. height: math.unit(8 + 4 / 12, "feet"),
  18157. weight: math.unit(600, "lb"),
  18158. name: "Back",
  18159. image: {
  18160. source: "./media/characters/dragonien/back.svg",
  18161. extra: 776 / 746,
  18162. bottom: 6.4 / 782.0616
  18163. }
  18164. },
  18165. foot: {
  18166. height: math.unit(1.54, "feet"),
  18167. name: "Foot",
  18168. image: {
  18169. source: "./media/characters/dragonien/foot.svg",
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(8 + 4 / 12, "feet"),
  18177. default: true
  18178. },
  18179. {
  18180. name: "Macro",
  18181. height: math.unit(200, "feet")
  18182. },
  18183. {
  18184. name: "Megamacro",
  18185. height: math.unit(1, "mile")
  18186. },
  18187. {
  18188. name: "Gigamacro",
  18189. height: math.unit(1000, "miles")
  18190. },
  18191. ]
  18192. ))
  18193. characterMakers.push(() => makeCharacter(
  18194. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18195. {
  18196. front: {
  18197. height: math.unit(5 + 2 / 12, "feet"),
  18198. weight: math.unit(110, "lb"),
  18199. name: "Front",
  18200. image: {
  18201. source: "./media/characters/desta/front.svg",
  18202. extra: 767 / 726,
  18203. bottom: 11.7 / 779
  18204. }
  18205. },
  18206. back: {
  18207. height: math.unit(5 + 2 / 12, "feet"),
  18208. weight: math.unit(110, "lb"),
  18209. name: "Back",
  18210. image: {
  18211. source: "./media/characters/desta/back.svg",
  18212. extra: 777 / 728,
  18213. bottom: 6 / 784
  18214. }
  18215. },
  18216. frontAlt: {
  18217. height: math.unit(5 + 2 / 12, "feet"),
  18218. weight: math.unit(110, "lb"),
  18219. name: "Front",
  18220. image: {
  18221. source: "./media/characters/desta/front-alt.svg",
  18222. extra: 1482 / 1417
  18223. }
  18224. },
  18225. side: {
  18226. height: math.unit(5 + 2 / 12, "feet"),
  18227. weight: math.unit(110, "lb"),
  18228. name: "Side",
  18229. image: {
  18230. source: "./media/characters/desta/side.svg",
  18231. extra: 2579 / 2491,
  18232. bottom: 0.053
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Micro",
  18239. height: math.unit(6, "inches")
  18240. },
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(5 + 2 / 12, "feet"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Macro",
  18248. height: math.unit(62, "feet")
  18249. },
  18250. {
  18251. name: "Megamacro",
  18252. height: math.unit(1800, "feet")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(10, "feet"),
  18261. weight: math.unit(700, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/storm-alystar/front.svg",
  18265. extra: 2112 / 1898,
  18266. bottom: 0.034
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Micro",
  18273. height: math.unit(3.5, "inches")
  18274. },
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(10, "feet"),
  18278. default: true
  18279. },
  18280. {
  18281. name: "Macro",
  18282. height: math.unit(400, "feet")
  18283. },
  18284. {
  18285. name: "Deific",
  18286. height: math.unit(60, "miles")
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(2.35, "meters"),
  18295. weight: math.unit(119, "kg"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/ilia/front.svg",
  18299. extra: 1285 / 1255,
  18300. bottom: 0.06
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(2.35, "meters")
  18308. },
  18309. {
  18310. name: "Macro",
  18311. height: math.unit(140, "meters"),
  18312. default: true
  18313. },
  18314. {
  18315. name: "Megamacro",
  18316. height: math.unit(100, "miles")
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18322. {
  18323. front: {
  18324. height: math.unit(6 + 5 / 12, "feet"),
  18325. weight: math.unit(190, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/kingdead/front.svg",
  18329. extra: 1228 / 1177
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Micro",
  18336. height: math.unit(7, "inches")
  18337. },
  18338. {
  18339. name: "Normal",
  18340. height: math.unit(6 + 5 / 12, "feet")
  18341. },
  18342. {
  18343. name: "Macro",
  18344. height: math.unit(150, "feet"),
  18345. default: true
  18346. },
  18347. {
  18348. name: "Megamacro",
  18349. height: math.unit(200, "miles")
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18355. {
  18356. front: {
  18357. height: math.unit(8, "feet"),
  18358. weight: math.unit(600, "lb"),
  18359. name: "Front",
  18360. image: {
  18361. source: "./media/characters/kyrehx/front.svg",
  18362. extra: 1195 / 1095,
  18363. bottom: 0.034
  18364. }
  18365. },
  18366. },
  18367. [
  18368. {
  18369. name: "Micro",
  18370. height: math.unit(2, "inches")
  18371. },
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(8, "feet"),
  18375. default: true
  18376. },
  18377. {
  18378. name: "Macro",
  18379. height: math.unit(255, "feet")
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18388. weight: math.unit(184, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/xang/front.svg",
  18392. extra: 845 / 755
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18400. default: true
  18401. },
  18402. {
  18403. name: "Macro",
  18404. height: math.unit(0.935 * 146, "feet")
  18405. },
  18406. {
  18407. name: "Megamacro",
  18408. height: math.unit(0.935 * 3, "miles")
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18414. {
  18415. frontDressed: {
  18416. height: math.unit(5 + 7 / 12, "feet"),
  18417. weight: math.unit(140, "lb"),
  18418. name: "Front (Dressed)",
  18419. image: {
  18420. source: "./media/characters/doc-weardno/front-dressed.svg",
  18421. extra: 263 / 234
  18422. }
  18423. },
  18424. backDressed: {
  18425. height: math.unit(5 + 7 / 12, "feet"),
  18426. weight: math.unit(140, "lb"),
  18427. name: "Back (Dressed)",
  18428. image: {
  18429. source: "./media/characters/doc-weardno/back-dressed.svg",
  18430. extra: 266 / 238
  18431. }
  18432. },
  18433. front: {
  18434. height: math.unit(5 + 7 / 12, "feet"),
  18435. weight: math.unit(140, "lb"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/doc-weardno/front.svg",
  18439. extra: 254 / 233
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Micro",
  18446. height: math.unit(3, "inches")
  18447. },
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(5 + 7 / 12, "feet"),
  18451. default: true
  18452. },
  18453. {
  18454. name: "Macro",
  18455. height: math.unit(25, "feet")
  18456. },
  18457. {
  18458. name: "Megamacro",
  18459. height: math.unit(2, "miles")
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(6 + 2 / 12, "feet"),
  18468. weight: math.unit(153, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/seth-whilst/front.svg",
  18472. bottom: 0.07
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Micro",
  18479. height: math.unit(5, "inches")
  18480. },
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(6 + 2 / 12, "feet"),
  18484. default: true
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(3, "inches"),
  18493. weight: math.unit(8, "grams"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/pocket-jabari/front.svg",
  18497. extra: 1024 / 974,
  18498. bottom: 0.039
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Minimicro",
  18505. height: math.unit(8, "mm")
  18506. },
  18507. {
  18508. name: "Micro",
  18509. height: math.unit(3, "inches"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Normal",
  18514. height: math.unit(3, "feet")
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18520. {
  18521. front: {
  18522. height: math.unit(15, "feet"),
  18523. weight: math.unit(3280, "lb"),
  18524. name: "Front",
  18525. image: {
  18526. source: "./media/characters/sapphy/front.svg",
  18527. extra: 671 / 577,
  18528. bottom: 0.085
  18529. }
  18530. },
  18531. back: {
  18532. height: math.unit(15, "feet"),
  18533. weight: math.unit(3280, "lb"),
  18534. name: "Back",
  18535. image: {
  18536. source: "./media/characters/sapphy/back.svg",
  18537. extra: 631 / 607,
  18538. bottom: 0.045
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(15, "feet")
  18546. },
  18547. {
  18548. name: "Casual Macro",
  18549. height: math.unit(120, "feet")
  18550. },
  18551. {
  18552. name: "Macro",
  18553. height: math.unit(2150, "feet"),
  18554. default: true
  18555. },
  18556. {
  18557. name: "Megamacro",
  18558. height: math.unit(8, "miles")
  18559. },
  18560. {
  18561. name: "Galaxy Mom",
  18562. height: math.unit(6, "megalightyears")
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18568. {
  18569. front: {
  18570. height: math.unit(6, "feet"),
  18571. weight: math.unit(170, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/kiro/front.svg",
  18575. extra: 1064 / 1012,
  18576. bottom: 0.052
  18577. }
  18578. },
  18579. },
  18580. [
  18581. {
  18582. name: "Micro",
  18583. height: math.unit(6, "inches")
  18584. },
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(6, "feet"),
  18588. default: true
  18589. },
  18590. {
  18591. name: "Macro",
  18592. height: math.unit(72, "feet")
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(5 + 9 / 12, "feet"),
  18601. weight: math.unit(175, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/irishfox/front.svg",
  18605. extra: 1912 / 1680,
  18606. bottom: 0.02
  18607. }
  18608. },
  18609. },
  18610. [
  18611. {
  18612. name: "Nano",
  18613. height: math.unit(1, "mm")
  18614. },
  18615. {
  18616. name: "Micro",
  18617. height: math.unit(2, "inches")
  18618. },
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(5 + 9 / 12, "feet"),
  18622. default: true
  18623. },
  18624. {
  18625. name: "Macro",
  18626. height: math.unit(45, "feet")
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18632. {
  18633. front: {
  18634. height: math.unit(6 + 1 / 12, "feet"),
  18635. weight: math.unit(75, "lb"),
  18636. name: "Front",
  18637. image: {
  18638. source: "./media/characters/aronai-sieyes/front.svg",
  18639. extra: 1556 / 1480,
  18640. bottom: 0.015
  18641. }
  18642. },
  18643. side: {
  18644. height: math.unit(6 + 1 / 12, "feet"),
  18645. weight: math.unit(75, "lb"),
  18646. name: "Side",
  18647. image: {
  18648. source: "./media/characters/aronai-sieyes/side.svg",
  18649. extra: 1433 / 1390,
  18650. bottom: 0.0393
  18651. }
  18652. },
  18653. back: {
  18654. height: math.unit(6 + 1 / 12, "feet"),
  18655. weight: math.unit(75, "lb"),
  18656. name: "Back",
  18657. image: {
  18658. source: "./media/characters/aronai-sieyes/back.svg",
  18659. extra: 1544 / 1494,
  18660. bottom: 0.02
  18661. }
  18662. },
  18663. frontClothed: {
  18664. height: math.unit(6 + 1 / 12, "feet"),
  18665. weight: math.unit(75, "lb"),
  18666. name: "Front (Clothed)",
  18667. image: {
  18668. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18669. extra: 1582 / 1527
  18670. }
  18671. },
  18672. feral: {
  18673. height: math.unit(18, "feet"),
  18674. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18675. name: "Feral",
  18676. image: {
  18677. source: "./media/characters/aronai-sieyes/feral.svg",
  18678. extra: 1530 / 1240,
  18679. bottom: 0.035
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Micro",
  18686. height: math.unit(2, "inches")
  18687. },
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(6 + 1 / 12, "feet"),
  18691. default: true
  18692. }
  18693. ]
  18694. ))
  18695. characterMakers.push(() => makeCharacter(
  18696. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18697. {
  18698. front: {
  18699. height: math.unit(12, "feet"),
  18700. weight: math.unit(410, "kg"),
  18701. name: "Front",
  18702. image: {
  18703. source: "./media/characters/xuna/front.svg",
  18704. extra: 2184 / 1980
  18705. }
  18706. },
  18707. side: {
  18708. height: math.unit(12, "feet"),
  18709. weight: math.unit(410, "kg"),
  18710. name: "Side",
  18711. image: {
  18712. source: "./media/characters/xuna/side.svg",
  18713. extra: 2184 / 1980
  18714. }
  18715. },
  18716. back: {
  18717. height: math.unit(12, "feet"),
  18718. weight: math.unit(410, "kg"),
  18719. name: "Back",
  18720. image: {
  18721. source: "./media/characters/xuna/back.svg",
  18722. extra: 2184 / 1980
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Nano glow",
  18729. height: math.unit(10, "nm")
  18730. },
  18731. {
  18732. name: "Micro floof",
  18733. height: math.unit(0.3, "m")
  18734. },
  18735. {
  18736. name: "Huggable softy boi",
  18737. height: math.unit(3.6576, "m"),
  18738. default: true
  18739. },
  18740. {
  18741. name: "Admirable floof",
  18742. height: math.unit(80, "meters")
  18743. },
  18744. {
  18745. name: "Gentle macro",
  18746. height: math.unit(300, "meters")
  18747. },
  18748. {
  18749. name: "Very careful floof",
  18750. height: math.unit(3200, "meters")
  18751. },
  18752. {
  18753. name: "The mega floof",
  18754. height: math.unit(36000, "meters")
  18755. },
  18756. {
  18757. name: "Giga-fur-Wicker",
  18758. height: math.unit(4800000, "meters")
  18759. },
  18760. {
  18761. name: "Licky world",
  18762. height: math.unit(20000000, "meters")
  18763. },
  18764. {
  18765. name: "Floofy cyan sun",
  18766. height: math.unit(1500000000, "meters")
  18767. },
  18768. {
  18769. name: "Milky Wicker",
  18770. height: math.unit(1000000000000000000000, "meters")
  18771. },
  18772. {
  18773. name: "The observing Wicker",
  18774. height: math.unit(999999999999999999999999999, "meters")
  18775. },
  18776. ]
  18777. ))
  18778. characterMakers.push(() => makeCharacter(
  18779. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18780. {
  18781. front: {
  18782. height: math.unit(5 + 9 / 12, "feet"),
  18783. weight: math.unit(150, "lb"),
  18784. name: "Front",
  18785. image: {
  18786. source: "./media/characters/arokha-sieyes/front.svg",
  18787. extra: 1425 / 1284,
  18788. bottom: 0.05
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Normal",
  18795. height: math.unit(5 + 9 / 12, "feet")
  18796. },
  18797. {
  18798. name: "Macro",
  18799. height: math.unit(30, "meters"),
  18800. default: true
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18806. {
  18807. front: {
  18808. height: math.unit(6, "feet"),
  18809. weight: math.unit(180, "lb"),
  18810. name: "Front",
  18811. image: {
  18812. source: "./media/characters/arokh-sieyes/front.svg",
  18813. extra: 1830 / 1769,
  18814. bottom: 0.01
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(6, "feet")
  18822. },
  18823. {
  18824. name: "Macro",
  18825. height: math.unit(30, "meters"),
  18826. default: true
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18832. {
  18833. side: {
  18834. height: math.unit(13 + 1 / 12, "feet"),
  18835. weight: math.unit(8.5, "tonnes"),
  18836. name: "Side",
  18837. image: {
  18838. source: "./media/characters/goldeneye/side.svg",
  18839. extra: 1182 / 778,
  18840. bottom: 0.067
  18841. }
  18842. },
  18843. paw: {
  18844. height: math.unit(3.4, "feet"),
  18845. name: "Paw",
  18846. image: {
  18847. source: "./media/characters/goldeneye/paw.svg"
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(13 + 1 / 12, "feet"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18861. {
  18862. front: {
  18863. height: math.unit(6 + 1 / 12, "feet"),
  18864. weight: math.unit(210, "lb"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/leonardo-lycheborne/front.svg",
  18868. extra: 390 / 365,
  18869. bottom: 0.032
  18870. }
  18871. },
  18872. side: {
  18873. height: math.unit(6 + 1 / 12, "feet"),
  18874. weight: math.unit(210, "lb"),
  18875. name: "Side",
  18876. image: {
  18877. source: "./media/characters/leonardo-lycheborne/side.svg",
  18878. extra: 390 / 365,
  18879. bottom: 0.005
  18880. }
  18881. },
  18882. back: {
  18883. height: math.unit(6 + 1 / 12, "feet"),
  18884. weight: math.unit(210, "lb"),
  18885. name: "Back",
  18886. image: {
  18887. source: "./media/characters/leonardo-lycheborne/back.svg",
  18888. extra: 392 / 366,
  18889. bottom: 0.01
  18890. }
  18891. },
  18892. hand: {
  18893. height: math.unit(1.08, "feet"),
  18894. name: "Hand",
  18895. image: {
  18896. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18897. }
  18898. },
  18899. foot: {
  18900. height: math.unit(1.32, "feet"),
  18901. name: "Foot",
  18902. image: {
  18903. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18904. }
  18905. },
  18906. were: {
  18907. height: math.unit(20, "feet"),
  18908. weight: math.unit(7800, "lb"),
  18909. name: "Were",
  18910. image: {
  18911. source: "./media/characters/leonardo-lycheborne/were.svg",
  18912. extra: 308 / 294,
  18913. bottom: 0.048
  18914. }
  18915. },
  18916. feral: {
  18917. height: math.unit(7.5, "feet"),
  18918. weight: math.unit(600, "lb"),
  18919. name: "Feral",
  18920. image: {
  18921. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18922. extra: 210 / 186,
  18923. bottom: 0.108
  18924. }
  18925. },
  18926. taur: {
  18927. height: math.unit(11, "feet"),
  18928. weight: math.unit(3300, "lb"),
  18929. name: "Taur",
  18930. image: {
  18931. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18932. extra: 320 / 303,
  18933. bottom: 0.025
  18934. }
  18935. },
  18936. barghest: {
  18937. height: math.unit(11, "feet"),
  18938. weight: math.unit(1300, "lb"),
  18939. name: "Barghest",
  18940. image: {
  18941. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18942. extra: 323 / 302,
  18943. bottom: 0.027
  18944. }
  18945. },
  18946. dick: {
  18947. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18948. name: "Dick",
  18949. image: {
  18950. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18951. }
  18952. },
  18953. dickWere: {
  18954. height: math.unit((20) / 3.8, "feet"),
  18955. name: "Dick (Were)",
  18956. image: {
  18957. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(6 + 1 / 12, "feet"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18971. {
  18972. front: {
  18973. height: math.unit(10, "feet"),
  18974. weight: math.unit(350, "lb"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/jet/front.svg",
  18978. extra: 2050 / 1980,
  18979. bottom: 0.013
  18980. }
  18981. },
  18982. back: {
  18983. height: math.unit(10, "feet"),
  18984. weight: math.unit(350, "lb"),
  18985. name: "Back",
  18986. image: {
  18987. source: "./media/characters/jet/back.svg",
  18988. extra: 2050 / 1980,
  18989. bottom: 0.013
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Micro",
  18996. height: math.unit(6, "inches")
  18997. },
  18998. {
  18999. name: "Normal",
  19000. height: math.unit(10, "feet"),
  19001. default: true
  19002. },
  19003. {
  19004. name: "Macro",
  19005. height: math.unit(100, "feet")
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(15, "feet"),
  19014. weight: math.unit(2800, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/tanarath/front.svg",
  19018. extra: 2392 / 2220,
  19019. bottom: 0.03
  19020. }
  19021. },
  19022. back: {
  19023. height: math.unit(15, "feet"),
  19024. weight: math.unit(2800, "lb"),
  19025. name: "Back",
  19026. image: {
  19027. source: "./media/characters/tanarath/back.svg",
  19028. extra: 2392 / 2220,
  19029. bottom: 0.03
  19030. }
  19031. },
  19032. },
  19033. [
  19034. {
  19035. name: "Normal",
  19036. height: math.unit(15, "feet"),
  19037. default: true
  19038. },
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19043. {
  19044. front: {
  19045. height: math.unit(7 + 1 / 12, "feet"),
  19046. weight: math.unit(175, "lb"),
  19047. name: "Front",
  19048. image: {
  19049. source: "./media/characters/patty-cattybatty/front.svg",
  19050. extra: 908 / 874,
  19051. bottom: 0.025
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Micro",
  19058. height: math.unit(1, "inch")
  19059. },
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(7 + 1 / 12, "feet")
  19063. },
  19064. {
  19065. name: "Mini Macro",
  19066. height: math.unit(155, "feet")
  19067. },
  19068. {
  19069. name: "Macro",
  19070. height: math.unit(1077, "feet")
  19071. },
  19072. {
  19073. name: "Mega Macro",
  19074. height: math.unit(47650, "feet"),
  19075. default: true
  19076. },
  19077. {
  19078. name: "Giga Macro",
  19079. height: math.unit(440, "miles")
  19080. },
  19081. {
  19082. name: "Tera Macro",
  19083. height: math.unit(8700, "miles")
  19084. },
  19085. {
  19086. name: "Planetary Macro",
  19087. height: math.unit(32700, "miles")
  19088. },
  19089. {
  19090. name: "Solar Macro",
  19091. height: math.unit(550000, "miles")
  19092. },
  19093. {
  19094. name: "Celestial Macro",
  19095. height: math.unit(2.5, "AU")
  19096. },
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19101. {
  19102. front: {
  19103. height: math.unit(4 + 5 / 12, "feet"),
  19104. weight: math.unit(90, "lb"),
  19105. name: "Front",
  19106. image: {
  19107. source: "./media/characters/cappu/front.svg",
  19108. extra: 1247 / 1152,
  19109. bottom: 0.012
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(4 + 5 / 12, "feet"),
  19117. default: true
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19123. {
  19124. frontDressed: {
  19125. height: math.unit(70, "cm"),
  19126. weight: math.unit(6, "kg"),
  19127. name: "Front (Dressed)",
  19128. image: {
  19129. source: "./media/characters/sebi/front-dressed.svg",
  19130. extra: 713.5 / 686.5,
  19131. bottom: 0.003
  19132. }
  19133. },
  19134. front: {
  19135. height: math.unit(70, "cm"),
  19136. weight: math.unit(5, "kg"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/sebi/front.svg",
  19140. extra: 713.5 / 686.5,
  19141. bottom: 0.003
  19142. }
  19143. }
  19144. },
  19145. [
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(70, "cm"),
  19149. default: true
  19150. },
  19151. {
  19152. name: "Macro",
  19153. height: math.unit(8, "meters")
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19159. {
  19160. front: {
  19161. height: math.unit(6, "feet"),
  19162. weight: math.unit(150, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/typhek/front.svg",
  19166. extra: 1948 / 1929,
  19167. bottom: 0.025
  19168. }
  19169. },
  19170. side: {
  19171. height: math.unit(6, "feet"),
  19172. weight: math.unit(150, "lb"),
  19173. name: "Side",
  19174. image: {
  19175. source: "./media/characters/typhek/side.svg",
  19176. extra: 2034 / 2010,
  19177. bottom: 0.003
  19178. }
  19179. },
  19180. back: {
  19181. height: math.unit(6, "feet"),
  19182. weight: math.unit(150, "lb"),
  19183. name: "Back",
  19184. image: {
  19185. source: "./media/characters/typhek/back.svg",
  19186. extra: 2005 / 1978,
  19187. bottom: 0.004
  19188. }
  19189. },
  19190. palm: {
  19191. height: math.unit(1.2, "feet"),
  19192. name: "Palm",
  19193. image: {
  19194. source: "./media/characters/typhek/palm.svg"
  19195. }
  19196. },
  19197. fist: {
  19198. height: math.unit(1.1, "feet"),
  19199. name: "Fist",
  19200. image: {
  19201. source: "./media/characters/typhek/fist.svg"
  19202. }
  19203. },
  19204. foot: {
  19205. height: math.unit(1.57, "feet"),
  19206. name: "Foot",
  19207. image: {
  19208. source: "./media/characters/typhek/foot.svg"
  19209. }
  19210. },
  19211. sole: {
  19212. height: math.unit(2.05, "feet"),
  19213. name: "Sole",
  19214. image: {
  19215. source: "./media/characters/typhek/sole.svg"
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Macro",
  19222. height: math.unit(40, "stories"),
  19223. default: true
  19224. },
  19225. {
  19226. name: "Megamacro",
  19227. height: math.unit(1, "mile")
  19228. },
  19229. {
  19230. name: "Gigamacro",
  19231. height: math.unit(4000, "solarradii")
  19232. },
  19233. {
  19234. name: "Universal",
  19235. height: math.unit(1.1, "universes")
  19236. }
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19241. {
  19242. side: {
  19243. height: math.unit(5 + 7 / 12, "feet"),
  19244. weight: math.unit(150, "lb"),
  19245. name: "Side",
  19246. image: {
  19247. source: "./media/characters/kassy/side.svg",
  19248. extra: 1280 / 1225,
  19249. bottom: 0.002
  19250. }
  19251. },
  19252. front: {
  19253. height: math.unit(5 + 7 / 12, "feet"),
  19254. weight: math.unit(150, "lb"),
  19255. name: "Front",
  19256. image: {
  19257. source: "./media/characters/kassy/front.svg",
  19258. extra: 1280 / 1225,
  19259. bottom: 0.025
  19260. }
  19261. },
  19262. back: {
  19263. height: math.unit(5 + 7 / 12, "feet"),
  19264. weight: math.unit(150, "lb"),
  19265. name: "Back",
  19266. image: {
  19267. source: "./media/characters/kassy/back.svg",
  19268. extra: 1280 / 1225,
  19269. bottom: 0.002
  19270. }
  19271. },
  19272. foot: {
  19273. height: math.unit(1.266, "feet"),
  19274. name: "Foot",
  19275. image: {
  19276. source: "./media/characters/kassy/foot.svg"
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(5 + 7 / 12, "feet")
  19284. },
  19285. {
  19286. name: "Macro",
  19287. height: math.unit(137, "feet"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Megamacro",
  19292. height: math.unit(1, "mile")
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(6 + 1 / 12, "feet"),
  19301. weight: math.unit(200, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/neil/front.svg",
  19305. extra: 1326 / 1250,
  19306. bottom: 0.023
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(6 + 1 / 12, "feet"),
  19314. default: true
  19315. },
  19316. {
  19317. name: "Macro",
  19318. height: math.unit(200, "feet")
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(5 + 9 / 12, "feet"),
  19327. weight: math.unit(190, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/atticus/front.svg",
  19331. extra: 2934 / 2785,
  19332. bottom: 0.025
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(5 + 9 / 12, "feet"),
  19340. default: true
  19341. },
  19342. {
  19343. name: "Macro",
  19344. height: math.unit(180, "feet")
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19350. {
  19351. side: {
  19352. height: math.unit(9, "feet"),
  19353. weight: math.unit(650, "lb"),
  19354. name: "Side",
  19355. image: {
  19356. source: "./media/characters/milo/side.svg",
  19357. extra: 2644 / 2310,
  19358. bottom: 0.032
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(9, "feet"),
  19366. default: true
  19367. },
  19368. {
  19369. name: "Macro",
  19370. height: math.unit(300, "feet")
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19376. {
  19377. side: {
  19378. height: math.unit(8, "meters"),
  19379. weight: math.unit(90000, "kg"),
  19380. name: "Side",
  19381. image: {
  19382. source: "./media/characters/ijzer/side.svg",
  19383. extra: 2756 / 1600,
  19384. bottom: 0.01
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Small",
  19391. height: math.unit(3, "meters")
  19392. },
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(8, "meters"),
  19396. default: true
  19397. },
  19398. {
  19399. name: "Normal+",
  19400. height: math.unit(10, "meters")
  19401. },
  19402. {
  19403. name: "Bigger",
  19404. height: math.unit(24, "meters")
  19405. },
  19406. {
  19407. name: "Huge",
  19408. height: math.unit(80, "meters")
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(6 + 2 / 12, "feet"),
  19417. weight: math.unit(153, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/luca-cervicum/front.svg",
  19421. extra: 370 / 327,
  19422. bottom: 0.015
  19423. }
  19424. },
  19425. back: {
  19426. height: math.unit(6 + 2 / 12, "feet"),
  19427. weight: math.unit(153, "lb"),
  19428. name: "Back",
  19429. image: {
  19430. source: "./media/characters/luca-cervicum/back.svg",
  19431. extra: 367 / 333,
  19432. bottom: 0.005
  19433. }
  19434. },
  19435. frontGear: {
  19436. height: math.unit(6 + 2 / 12, "feet"),
  19437. weight: math.unit(173, "lb"),
  19438. name: "Front (Gear)",
  19439. image: {
  19440. source: "./media/characters/luca-cervicum/front-gear.svg",
  19441. extra: 377 / 333,
  19442. bottom: 0.006
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(6 + 2 / 12, "feet"),
  19450. default: true
  19451. },
  19452. ]
  19453. ))
  19454. characterMakers.push(() => makeCharacter(
  19455. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19456. {
  19457. front: {
  19458. height: math.unit(6 + 1 / 12, "feet"),
  19459. weight: math.unit(304, "lb"),
  19460. name: "Front",
  19461. image: {
  19462. source: "./media/characters/oliver/front.svg",
  19463. extra: 157 / 143,
  19464. bottom: 0.08
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(6 + 1 / 12, "feet"),
  19472. default: true
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(5 + 7 / 12, "feet"),
  19481. weight: math.unit(140, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/shane/front.svg",
  19485. extra: 304 / 289,
  19486. bottom: 0.005
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(5 + 7 / 12, "feet"),
  19494. default: true
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19500. {
  19501. front: {
  19502. height: math.unit(5 + 9 / 12, "feet"),
  19503. weight: math.unit(178, "lb"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/shin/front.svg",
  19507. extra: 159 / 151,
  19508. bottom: 0.015
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(5 + 9 / 12, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(5 + 10 / 12, "feet"),
  19525. weight: math.unit(168, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/xerxes/front.svg",
  19529. extra: 282 / 260,
  19530. bottom: 0.045
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(5 + 10 / 12, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19544. {
  19545. front: {
  19546. height: math.unit(6 + 7 / 12, "feet"),
  19547. weight: math.unit(208, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/chaska/front.svg",
  19551. extra: 332 / 319,
  19552. bottom: 0.015
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(6 + 7 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(5 + 8 / 12, "feet"),
  19569. weight: math.unit(208, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/enuk/front.svg",
  19573. extra: 437 / 406,
  19574. bottom: 0.02
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(5 + 8 / 12, "feet"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(5 + 10 / 12, "feet"),
  19591. weight: math.unit(252, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/bruun/front.svg",
  19595. extra: 197 / 187,
  19596. bottom: 0.012
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(5 + 10 / 12, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(6 + 10 / 12, "feet"),
  19613. weight: math.unit(255, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/alexeev/front.svg",
  19617. extra: 213 / 200,
  19618. bottom: 0.05
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(6 + 10 / 12, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(2 + 8 / 12, "feet"),
  19635. weight: math.unit(22, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/evelyn/front.svg",
  19639. extra: 208 / 180
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(2 + 8 / 12, "feet"),
  19647. default: true
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19653. {
  19654. front: {
  19655. height: math.unit(5 + 9 / 12, "feet"),
  19656. weight: math.unit(139, "lb"),
  19657. name: "Front",
  19658. image: {
  19659. source: "./media/characters/inca/front.svg",
  19660. extra: 294 / 291,
  19661. bottom: 0.03
  19662. }
  19663. },
  19664. },
  19665. [
  19666. {
  19667. name: "Normal",
  19668. height: math.unit(5 + 9 / 12, "feet"),
  19669. default: true
  19670. },
  19671. ]
  19672. ))
  19673. characterMakers.push(() => makeCharacter(
  19674. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19675. {
  19676. front: {
  19677. height: math.unit(5 + 1 / 12, "feet"),
  19678. weight: math.unit(84, "lb"),
  19679. name: "Front",
  19680. image: {
  19681. source: "./media/characters/magdalene/front.svg",
  19682. extra: 293 / 273
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(5 + 1 / 12, "feet"),
  19690. default: true
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(6 + 3 / 12, "feet"),
  19699. weight: math.unit(185, "lb"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/mera/front.svg",
  19703. extra: 291 / 277,
  19704. bottom: 0.03
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(6 + 3 / 12, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(6 + 7 / 12, "feet"),
  19721. weight: math.unit(160, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/ceres/front.svg",
  19725. extra: 1023 / 950,
  19726. bottom: 0.027
  19727. }
  19728. },
  19729. back: {
  19730. height: math.unit(6 + 7 / 12, "feet"),
  19731. weight: math.unit(160, "lb"),
  19732. name: "Back",
  19733. image: {
  19734. source: "./media/characters/ceres/back.svg",
  19735. extra: 1023 / 950
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(6 + 7 / 12, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(5 + 10 / 12, "feet"),
  19752. weight: math.unit(150, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/kris/front.svg",
  19756. extra: 885 / 803,
  19757. bottom: 0.03
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(5 + 10 / 12, "feet"),
  19765. default: true
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(7, "feet"),
  19774. weight: math.unit(120, "kg"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/taluthus/front.svg",
  19778. extra: 903 / 833,
  19779. bottom: 0.015
  19780. }
  19781. },
  19782. },
  19783. [
  19784. {
  19785. name: "Normal",
  19786. height: math.unit(7, "feet"),
  19787. default: true
  19788. },
  19789. {
  19790. name: "Macro",
  19791. height: math.unit(300, "feet")
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19797. {
  19798. front: {
  19799. height: math.unit(5 + 9 / 12, "feet"),
  19800. weight: math.unit(145, "lb"),
  19801. name: "Front",
  19802. image: {
  19803. source: "./media/characters/dawn/front.svg",
  19804. extra: 2094 / 2016,
  19805. bottom: 0.025
  19806. }
  19807. },
  19808. back: {
  19809. height: math.unit(5 + 9 / 12, "feet"),
  19810. weight: math.unit(160, "lb"),
  19811. name: "Back",
  19812. image: {
  19813. source: "./media/characters/dawn/back.svg",
  19814. extra: 2112 / 2080,
  19815. bottom: 0.005
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(6 + 7 / 12, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19829. {
  19830. anthro: {
  19831. height: math.unit(8 + 3 / 12, "feet"),
  19832. weight: math.unit(450, "lb"),
  19833. name: "Anthro",
  19834. image: {
  19835. source: "./media/characters/arador/anthro.svg",
  19836. extra: 1835 / 1718,
  19837. bottom: 0.025
  19838. }
  19839. },
  19840. feral: {
  19841. height: math.unit(4, "feet"),
  19842. weight: math.unit(200, "lb"),
  19843. name: "Feral",
  19844. image: {
  19845. source: "./media/characters/arador/feral.svg",
  19846. extra: 1683 / 1514,
  19847. bottom: 0.07
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(8 + 3 / 12, "feet")
  19855. },
  19856. {
  19857. name: "Macro",
  19858. height: math.unit(82.5, "feet"),
  19859. default: true
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(5 + 10 / 12, "feet"),
  19868. weight: math.unit(125, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/dharsi/front.svg",
  19872. extra: 716 / 630,
  19873. bottom: 0.035
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Nano",
  19880. height: math.unit(100, "nm")
  19881. },
  19882. {
  19883. name: "Micro",
  19884. height: math.unit(2, "inches")
  19885. },
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(5 + 10 / 12, "feet"),
  19889. default: true
  19890. },
  19891. {
  19892. name: "Macro",
  19893. height: math.unit(1000, "feet")
  19894. },
  19895. {
  19896. name: "Megamacro",
  19897. height: math.unit(10, "miles")
  19898. },
  19899. {
  19900. name: "Gigamacro",
  19901. height: math.unit(3000, "miles")
  19902. },
  19903. {
  19904. name: "Teramacro",
  19905. height: math.unit(500000, "miles")
  19906. },
  19907. {
  19908. name: "Teramacro+",
  19909. height: math.unit(30, "galaxies")
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(6, "feet"),
  19918. weight: math.unit(150, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/deathy/front.svg",
  19922. extra: 1552 / 1463,
  19923. bottom: 0.025
  19924. }
  19925. },
  19926. side: {
  19927. height: math.unit(6, "feet"),
  19928. weight: math.unit(150, "lb"),
  19929. name: "Side",
  19930. image: {
  19931. source: "./media/characters/deathy/side.svg",
  19932. extra: 1604 / 1455,
  19933. bottom: 0.025
  19934. }
  19935. },
  19936. back: {
  19937. height: math.unit(6, "feet"),
  19938. weight: math.unit(150, "lb"),
  19939. name: "Back",
  19940. image: {
  19941. source: "./media/characters/deathy/back.svg",
  19942. extra: 1580 / 1463,
  19943. bottom: 0.005
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Micro",
  19950. height: math.unit(5, "millimeters")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(6 + 5 / 12, "feet"),
  19955. default: true
  19956. },
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19961. {
  19962. front: {
  19963. height: math.unit(16, "feet"),
  19964. weight: math.unit(4000, "lb"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/juniper/front.svg",
  19968. bottom: 0.04
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(16, "feet"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(6, "feet"),
  19985. weight: math.unit(150, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/hipster/front.svg",
  19989. extra: 1312 / 1209,
  19990. bottom: 0.025
  19991. }
  19992. },
  19993. back: {
  19994. height: math.unit(6, "feet"),
  19995. weight: math.unit(150, "lb"),
  19996. name: "Back",
  19997. image: {
  19998. source: "./media/characters/hipster/back.svg",
  19999. extra: 1281 / 1196,
  20000. bottom: 0.01
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Micro",
  20007. height: math.unit(1, "mm")
  20008. },
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(4, "inches"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(500, "feet")
  20017. },
  20018. {
  20019. name: "Megamacro",
  20020. height: math.unit(1000, "miles")
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(6, "feet"),
  20029. weight: math.unit(150, "lb"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/tendirmuldr/front.svg",
  20033. extra: 1878 / 1772,
  20034. bottom: 0.015
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Megamacro",
  20041. height: math.unit(1500, "miles"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20048. {
  20049. front: {
  20050. height: math.unit(14, "feet"),
  20051. weight: math.unit(12000, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/mort/front.svg",
  20055. extra: 365 / 318,
  20056. bottom: 0.01
  20057. }
  20058. },
  20059. side: {
  20060. height: math.unit(14, "feet"),
  20061. weight: math.unit(12000, "lb"),
  20062. name: "Side",
  20063. image: {
  20064. source: "./media/characters/mort/side.svg",
  20065. extra: 365 / 318,
  20066. bottom: 0.052
  20067. },
  20068. default: true
  20069. },
  20070. back: {
  20071. height: math.unit(14, "feet"),
  20072. weight: math.unit(12000, "lb"),
  20073. name: "Back",
  20074. image: {
  20075. source: "./media/characters/mort/back.svg",
  20076. extra: 371 / 332,
  20077. bottom: 0.18
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(14, "feet"),
  20085. default: true
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20091. {
  20092. front: {
  20093. height: math.unit(8, "feet"),
  20094. weight: math.unit(1, "ton"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/lycoa/front.svg",
  20098. extra: 1875 / 1789,
  20099. bottom: 0.022
  20100. }
  20101. },
  20102. back: {
  20103. height: math.unit(8, "feet"),
  20104. weight: math.unit(1, "ton"),
  20105. name: "Back",
  20106. image: {
  20107. source: "./media/characters/lycoa/back.svg",
  20108. extra: 1835 / 1781,
  20109. bottom: 0.03
  20110. }
  20111. },
  20112. head: {
  20113. height: math.unit(2.1, "feet"),
  20114. name: "Head",
  20115. image: {
  20116. source: "./media/characters/lycoa/head.svg"
  20117. }
  20118. },
  20119. tailmaw: {
  20120. height: math.unit(1.9, "feet"),
  20121. name: "Tailmaw",
  20122. image: {
  20123. source: "./media/characters/lycoa/tailmaw.svg"
  20124. }
  20125. },
  20126. tentacles: {
  20127. height: math.unit(2.1, "feet"),
  20128. name: "Tentacles",
  20129. image: {
  20130. source: "./media/characters/lycoa/tentacles.svg"
  20131. }
  20132. },
  20133. dick: {
  20134. height: math.unit(1.73, "feet"),
  20135. name: "Dick",
  20136. image: {
  20137. source: "./media/characters/lycoa/dick.svg"
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(8, "feet"),
  20145. default: true
  20146. },
  20147. {
  20148. name: "Macro",
  20149. height: math.unit(30, "feet")
  20150. },
  20151. ]
  20152. ))
  20153. characterMakers.push(() => makeCharacter(
  20154. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20155. {
  20156. front: {
  20157. height: math.unit(4 + 2 / 12, "feet"),
  20158. weight: math.unit(70, "lb"),
  20159. name: "Front",
  20160. image: {
  20161. source: "./media/characters/naldara/front.svg",
  20162. extra: 841 / 720,
  20163. bottom: 0.04
  20164. }
  20165. },
  20166. naga: {
  20167. height: math.unit(23, "feet"),
  20168. weight: math.unit(15000, "kg"),
  20169. name: "Naga",
  20170. image: {
  20171. source: "./media/characters/naldara/naga.svg",
  20172. extra: 3290 / 2959,
  20173. bottom: 124 / 3432
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(4 + 2 / 12, "feet"),
  20181. default: true
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(13 + 7 / 12, "feet"),
  20190. weight: math.unit(1500, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/briar/front.svg",
  20194. extra: 626 / 596,
  20195. bottom: 0.08
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(13 + 7 / 12, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20209. {
  20210. side: {
  20211. height: math.unit(10, "feet"),
  20212. weight: math.unit(500, "lb"),
  20213. name: "Side",
  20214. image: {
  20215. source: "./media/characters/vanguard/side.svg",
  20216. extra: 502 / 425,
  20217. bottom: 0.087
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(10, "feet"),
  20225. default: true
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(7.5, "feet"),
  20234. weight: math.unit(2, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/artemis/front.svg",
  20238. extra: 1192 / 1075,
  20239. bottom: 0.07
  20240. }
  20241. },
  20242. frontNsfw: {
  20243. height: math.unit(7.5, "feet"),
  20244. weight: math.unit(2, "lb"),
  20245. name: "Front (NSFW)",
  20246. image: {
  20247. source: "./media/characters/artemis/front-nsfw.svg",
  20248. extra: 1192 / 1075,
  20249. bottom: 0.07
  20250. }
  20251. },
  20252. frontNsfwer: {
  20253. height: math.unit(7.5, "feet"),
  20254. weight: math.unit(2, "lb"),
  20255. name: "Front (NSFW-er)",
  20256. image: {
  20257. source: "./media/characters/artemis/front-nsfwer.svg",
  20258. extra: 1192 / 1075,
  20259. bottom: 0.07
  20260. }
  20261. },
  20262. side: {
  20263. height: math.unit(7.5, "feet"),
  20264. weight: math.unit(2, "lb"),
  20265. name: "Side",
  20266. image: {
  20267. source: "./media/characters/artemis/side.svg",
  20268. extra: 1192 / 1075,
  20269. bottom: 0.07
  20270. }
  20271. },
  20272. sideNsfw: {
  20273. height: math.unit(7.5, "feet"),
  20274. weight: math.unit(2, "lb"),
  20275. name: "Side (NSFW)",
  20276. image: {
  20277. source: "./media/characters/artemis/side-nsfw.svg",
  20278. extra: 1192 / 1075,
  20279. bottom: 0.07
  20280. }
  20281. },
  20282. sideNsfwer: {
  20283. height: math.unit(7.5, "feet"),
  20284. weight: math.unit(2, "lb"),
  20285. name: "Side (NSFW-er)",
  20286. image: {
  20287. source: "./media/characters/artemis/side-nsfwer.svg",
  20288. extra: 1192 / 1075,
  20289. bottom: 0.07
  20290. }
  20291. },
  20292. maw: {
  20293. height: math.unit(1.1, "feet"),
  20294. name: "Maw",
  20295. image: {
  20296. source: "./media/characters/artemis/maw.svg"
  20297. }
  20298. },
  20299. stomach: {
  20300. height: math.unit(0.95, "feet"),
  20301. name: "Stomach",
  20302. image: {
  20303. source: "./media/characters/artemis/stomach.svg"
  20304. }
  20305. },
  20306. dickCanine: {
  20307. height: math.unit(1, "feet"),
  20308. name: "Dick (Canine)",
  20309. image: {
  20310. source: "./media/characters/artemis/dick-canine.svg"
  20311. }
  20312. },
  20313. dickEquine: {
  20314. height: math.unit(0.85, "feet"),
  20315. name: "Dick (Equine)",
  20316. image: {
  20317. source: "./media/characters/artemis/dick-equine.svg"
  20318. }
  20319. },
  20320. dickExotic: {
  20321. height: math.unit(0.85, "feet"),
  20322. name: "Dick (Exotic)",
  20323. image: {
  20324. source: "./media/characters/artemis/dick-exotic.svg"
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(7.5, "feet"),
  20332. default: true
  20333. },
  20334. {
  20335. name: "Enlarged",
  20336. height: math.unit(12, "feet")
  20337. },
  20338. ]
  20339. ))
  20340. characterMakers.push(() => makeCharacter(
  20341. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20342. {
  20343. front: {
  20344. height: math.unit(5 + 3 / 12, "feet"),
  20345. weight: math.unit(160, "lb"),
  20346. name: "Front",
  20347. image: {
  20348. source: "./media/characters/kira/front.svg",
  20349. extra: 906 / 786,
  20350. bottom: 0.01
  20351. }
  20352. },
  20353. back: {
  20354. height: math.unit(5 + 3 / 12, "feet"),
  20355. weight: math.unit(160, "lb"),
  20356. name: "Back",
  20357. image: {
  20358. source: "./media/characters/kira/back.svg",
  20359. extra: 882 / 757,
  20360. bottom: 0.005
  20361. }
  20362. },
  20363. frontDressed: {
  20364. height: math.unit(5 + 3 / 12, "feet"),
  20365. weight: math.unit(160, "lb"),
  20366. name: "Front (Dressed)",
  20367. image: {
  20368. source: "./media/characters/kira/front-dressed.svg",
  20369. extra: 906 / 786,
  20370. bottom: 0.01
  20371. }
  20372. },
  20373. beans: {
  20374. height: math.unit(0.92, "feet"),
  20375. name: "Beans",
  20376. image: {
  20377. source: "./media/characters/kira/beans.svg"
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(5 + 3 / 12, "feet"),
  20385. default: true
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20391. {
  20392. front: {
  20393. height: math.unit(5 + 4 / 12, "feet"),
  20394. weight: math.unit(145, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/scramble/front.svg",
  20398. extra: 763 / 727,
  20399. bottom: 0.05
  20400. }
  20401. },
  20402. back: {
  20403. height: math.unit(5 + 4 / 12, "feet"),
  20404. weight: math.unit(145, "lb"),
  20405. name: "Back",
  20406. image: {
  20407. source: "./media/characters/scramble/back.svg",
  20408. extra: 826 / 737,
  20409. bottom: 0.002
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(5 + 4 / 12, "feet"),
  20417. default: true
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20423. {
  20424. side: {
  20425. height: math.unit(6 + 2 / 12, "feet"),
  20426. weight: math.unit(190, "lb"),
  20427. name: "Side",
  20428. image: {
  20429. source: "./media/characters/biscuit/side.svg",
  20430. extra: 858 / 791,
  20431. bottom: 0.044
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(6 + 2 / 12, "feet"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(5 + 2 / 12, "feet"),
  20448. weight: math.unit(120, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/poffin/front.svg",
  20452. extra: 786 / 680,
  20453. bottom: 0.005
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Normal",
  20460. height: math.unit(5 + 2 / 12, "feet"),
  20461. default: true
  20462. },
  20463. ]
  20464. ))
  20465. characterMakers.push(() => makeCharacter(
  20466. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20467. {
  20468. front: {
  20469. height: math.unit(6 + 3 / 12, "feet"),
  20470. weight: math.unit(519, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/dhari/front.svg",
  20474. extra: 1048 / 946,
  20475. bottom: 0.015
  20476. }
  20477. },
  20478. back: {
  20479. height: math.unit(6 + 3 / 12, "feet"),
  20480. weight: math.unit(519, "lb"),
  20481. name: "Back",
  20482. image: {
  20483. source: "./media/characters/dhari/back.svg",
  20484. extra: 1048 / 931,
  20485. bottom: 0.005
  20486. }
  20487. },
  20488. frontDressed: {
  20489. height: math.unit(6 + 3 / 12, "feet"),
  20490. weight: math.unit(519, "lb"),
  20491. name: "Front (Dressed)",
  20492. image: {
  20493. source: "./media/characters/dhari/front-dressed.svg",
  20494. extra: 1713 / 1546,
  20495. bottom: 0.02
  20496. }
  20497. },
  20498. backDressed: {
  20499. height: math.unit(6 + 3 / 12, "feet"),
  20500. weight: math.unit(519, "lb"),
  20501. name: "Back (Dressed)",
  20502. image: {
  20503. source: "./media/characters/dhari/back-dressed.svg",
  20504. extra: 1699 / 1537,
  20505. bottom: 0.01
  20506. }
  20507. },
  20508. maw: {
  20509. height: math.unit(0.95, "feet"),
  20510. name: "Maw",
  20511. image: {
  20512. source: "./media/characters/dhari/maw.svg"
  20513. }
  20514. },
  20515. wereFront: {
  20516. height: math.unit(12 + 8 / 12, "feet"),
  20517. weight: math.unit(4000, "lb"),
  20518. name: "Front (Were)",
  20519. image: {
  20520. source: "./media/characters/dhari/were-front.svg",
  20521. extra: 1065 / 969,
  20522. bottom: 0.015
  20523. }
  20524. },
  20525. wereBack: {
  20526. height: math.unit(12 + 8 / 12, "feet"),
  20527. weight: math.unit(4000, "lb"),
  20528. name: "Back (Were)",
  20529. image: {
  20530. source: "./media/characters/dhari/were-back.svg",
  20531. extra: 1065 / 969,
  20532. bottom: 0.012
  20533. }
  20534. },
  20535. wereMaw: {
  20536. height: math.unit(0.625, "meters"),
  20537. name: "Maw (Were)",
  20538. image: {
  20539. source: "./media/characters/dhari/were-maw.svg"
  20540. }
  20541. },
  20542. },
  20543. [
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(6 + 3 / 12, "feet"),
  20547. default: true
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20553. {
  20554. anthro: {
  20555. height: math.unit(5 + 7 / 12, "feet"),
  20556. weight: math.unit(175, "lb"),
  20557. name: "Anthro",
  20558. image: {
  20559. source: "./media/characters/rena-dyne/anthro.svg",
  20560. extra: 1849 / 1785,
  20561. bottom: 0.005
  20562. }
  20563. },
  20564. taur: {
  20565. height: math.unit(15 + 6 / 12, "feet"),
  20566. weight: math.unit(8000, "lb"),
  20567. name: "Taur",
  20568. image: {
  20569. source: "./media/characters/rena-dyne/taur.svg",
  20570. extra: 2315 / 2234,
  20571. bottom: 0.033
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(5 + 7 / 12, "feet"),
  20579. default: true
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(8, "feet"),
  20588. weight: math.unit(600, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/weremeep/front.svg",
  20592. extra: 967 / 862,
  20593. bottom: 0.01
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(8, "feet"),
  20601. default: true
  20602. },
  20603. {
  20604. name: "Lorg",
  20605. height: math.unit(12, "feet")
  20606. },
  20607. {
  20608. name: "Oh Lawd She Comin'",
  20609. height: math.unit(20, "feet")
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20615. {
  20616. front: {
  20617. height: math.unit(4, "feet"),
  20618. weight: math.unit(90, "lb"),
  20619. name: "Front",
  20620. image: {
  20621. source: "./media/characters/reza/front.svg",
  20622. extra: 1183 / 1111,
  20623. bottom: 0.017
  20624. }
  20625. },
  20626. back: {
  20627. height: math.unit(4, "feet"),
  20628. weight: math.unit(90, "lb"),
  20629. name: "Back",
  20630. image: {
  20631. source: "./media/characters/reza/back.svg",
  20632. extra: 1183 / 1111,
  20633. bottom: 0.01
  20634. }
  20635. },
  20636. drake: {
  20637. height: math.unit(30, "feet"),
  20638. weight: math.unit(246960, "lb"),
  20639. name: "Drake",
  20640. image: {
  20641. source: "./media/characters/reza/drake.svg",
  20642. extra: 2350 / 2024,
  20643. bottom: 60.7 / 2403
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Normal",
  20650. height: math.unit(4, "feet"),
  20651. default: true
  20652. },
  20653. ]
  20654. ))
  20655. characterMakers.push(() => makeCharacter(
  20656. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20657. {
  20658. side: {
  20659. height: math.unit(15, "feet"),
  20660. weight: math.unit(14, "tons"),
  20661. name: "Side",
  20662. image: {
  20663. source: "./media/characters/athea/side.svg",
  20664. extra: 960 / 540,
  20665. bottom: 0.003
  20666. }
  20667. },
  20668. sitting: {
  20669. height: math.unit(6 * 2.85, "feet"),
  20670. weight: math.unit(14, "tons"),
  20671. name: "Sitting",
  20672. image: {
  20673. source: "./media/characters/athea/sitting.svg",
  20674. extra: 621 / 581,
  20675. bottom: 0.075
  20676. }
  20677. },
  20678. maw: {
  20679. height: math.unit(7.59498031496063, "feet"),
  20680. name: "Maw",
  20681. image: {
  20682. source: "./media/characters/athea/maw.svg"
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Lap Cat",
  20689. height: math.unit(2.5, "feet")
  20690. },
  20691. {
  20692. name: "Minimacro",
  20693. height: math.unit(15, "feet"),
  20694. default: true
  20695. },
  20696. {
  20697. name: "Macro",
  20698. height: math.unit(120, "feet")
  20699. },
  20700. {
  20701. name: "Macro+",
  20702. height: math.unit(640, "feet")
  20703. },
  20704. {
  20705. name: "Colossus",
  20706. height: math.unit(2.2, "miles")
  20707. },
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20712. {
  20713. front: {
  20714. height: math.unit(8 + 8 / 12, "feet"),
  20715. weight: math.unit(130, "kg"),
  20716. name: "Front",
  20717. image: {
  20718. source: "./media/characters/seroko/front.svg",
  20719. extra: 1385 / 1280,
  20720. bottom: 0.025
  20721. }
  20722. },
  20723. back: {
  20724. height: math.unit(8 + 8 / 12, "feet"),
  20725. weight: math.unit(130, "kg"),
  20726. name: "Back",
  20727. image: {
  20728. source: "./media/characters/seroko/back.svg",
  20729. extra: 1369 / 1238,
  20730. bottom: 0.018
  20731. }
  20732. },
  20733. frontDressed: {
  20734. height: math.unit(8 + 8 / 12, "feet"),
  20735. weight: math.unit(130, "kg"),
  20736. name: "Front (Dressed)",
  20737. image: {
  20738. source: "./media/characters/seroko/front-dressed.svg",
  20739. extra: 1366 / 1275,
  20740. bottom: 0.03
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(8 + 8 / 12, "feet"),
  20748. default: true
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(5.5, "feet"),
  20757. weight: math.unit(160, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/quatzi/front.svg",
  20761. extra: 2346 / 2242,
  20762. bottom: 0.015
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(5.5, "feet"),
  20770. default: true
  20771. },
  20772. {
  20773. name: "Big",
  20774. height: math.unit(7.7, "feet")
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20780. {
  20781. front: {
  20782. height: math.unit(5 + 11 / 12, "feet"),
  20783. weight: math.unit(180, "lb"),
  20784. name: "Front",
  20785. image: {
  20786. source: "./media/characters/sen/front.svg",
  20787. extra: 1321 / 1254,
  20788. bottom: 0.015
  20789. }
  20790. },
  20791. side: {
  20792. height: math.unit(5 + 11 / 12, "feet"),
  20793. weight: math.unit(180, "lb"),
  20794. name: "Side",
  20795. image: {
  20796. source: "./media/characters/sen/side.svg",
  20797. extra: 1321 / 1254,
  20798. bottom: 0.007
  20799. }
  20800. },
  20801. back: {
  20802. height: math.unit(5 + 11 / 12, "feet"),
  20803. weight: math.unit(180, "lb"),
  20804. name: "Back",
  20805. image: {
  20806. source: "./media/characters/sen/back.svg",
  20807. extra: 1321 / 1254
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(5 + 11 / 12, "feet"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20821. {
  20822. front: {
  20823. height: math.unit(166.6, "cm"),
  20824. weight: math.unit(66.6, "kg"),
  20825. name: "Front",
  20826. image: {
  20827. source: "./media/characters/fruity/front.svg",
  20828. extra: 1510 / 1386,
  20829. bottom: 0.04
  20830. }
  20831. },
  20832. back: {
  20833. height: math.unit(166.6, "cm"),
  20834. weight: math.unit(66.6, "lb"),
  20835. name: "Back",
  20836. image: {
  20837. source: "./media/characters/fruity/back.svg",
  20838. extra: 1563 / 1435,
  20839. bottom: 0.005
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(166.6, "cm"),
  20847. default: true
  20848. },
  20849. {
  20850. name: "Demonic",
  20851. height: math.unit(166.6, "feet")
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20857. {
  20858. side: {
  20859. height: math.unit(10, "feet"),
  20860. weight: math.unit(500, "lb"),
  20861. name: "Side",
  20862. image: {
  20863. source: "./media/characters/zost/side.svg",
  20864. extra: 966 / 880,
  20865. bottom: 0.075
  20866. }
  20867. },
  20868. mawFront: {
  20869. height: math.unit(1.08, "meters"),
  20870. name: "Maw (Front)",
  20871. image: {
  20872. source: "./media/characters/zost/maw-front.svg"
  20873. }
  20874. },
  20875. mawSide: {
  20876. height: math.unit(2.66, "feet"),
  20877. name: "Maw (Side)",
  20878. image: {
  20879. source: "./media/characters/zost/maw-side.svg"
  20880. }
  20881. },
  20882. },
  20883. [
  20884. {
  20885. name: "Normal",
  20886. height: math.unit(10, "feet"),
  20887. default: true
  20888. },
  20889. ]
  20890. ))
  20891. characterMakers.push(() => makeCharacter(
  20892. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20893. {
  20894. front: {
  20895. height: math.unit(5 + 4 / 12, "feet"),
  20896. weight: math.unit(120, "lb"),
  20897. name: "Front",
  20898. image: {
  20899. source: "./media/characters/luci/front.svg",
  20900. extra: 1985 / 1884,
  20901. bottom: 0.04
  20902. }
  20903. },
  20904. back: {
  20905. height: math.unit(5 + 4 / 12, "feet"),
  20906. weight: math.unit(120, "lb"),
  20907. name: "Back",
  20908. image: {
  20909. source: "./media/characters/luci/back.svg",
  20910. extra: 1892 / 1791,
  20911. bottom: 0.002
  20912. }
  20913. },
  20914. },
  20915. [
  20916. {
  20917. name: "Normal",
  20918. height: math.unit(5 + 4 / 12, "feet"),
  20919. default: true
  20920. },
  20921. ]
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20925. {
  20926. front: {
  20927. height: math.unit(1500, "feet"),
  20928. weight: math.unit(3.8e6, "tons"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/2th/front.svg",
  20932. extra: 3489 / 3350,
  20933. bottom: 0.1
  20934. }
  20935. },
  20936. foot: {
  20937. height: math.unit(461, "feet"),
  20938. name: "Foot",
  20939. image: {
  20940. source: "./media/characters/2th/foot.svg"
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "\"Micro\"",
  20947. height: math.unit(15 + 7 / 12, "feet")
  20948. },
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(1500, "feet"),
  20952. default: true
  20953. },
  20954. {
  20955. name: "Macro",
  20956. height: math.unit(5000, "feet")
  20957. },
  20958. {
  20959. name: "Megamacro",
  20960. height: math.unit(15, "miles")
  20961. },
  20962. {
  20963. name: "Gigamacro",
  20964. height: math.unit(4000, "miles")
  20965. },
  20966. {
  20967. name: "Galactic",
  20968. height: math.unit(50, "AU")
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(5 + 6 / 12, "feet"),
  20977. weight: math.unit(220, "lb"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/amethyst/front.svg",
  20981. extra: 2078 / 2040,
  20982. bottom: 0.045
  20983. }
  20984. },
  20985. back: {
  20986. height: math.unit(5 + 6 / 12, "feet"),
  20987. weight: math.unit(220, "lb"),
  20988. name: "Back",
  20989. image: {
  20990. source: "./media/characters/amethyst/back.svg",
  20991. extra: 2021 / 1989,
  20992. bottom: 0.02
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(5 + 6 / 12, "feet"),
  21000. default: true
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(4 + 11 / 12, "feet"),
  21009. weight: math.unit(120, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/yumi-akiyama/front.svg",
  21013. extra: 1327 / 1235,
  21014. bottom: 0.02
  21015. }
  21016. },
  21017. back: {
  21018. height: math.unit(4 + 11 / 12, "feet"),
  21019. weight: math.unit(120, "lb"),
  21020. name: "Back",
  21021. image: {
  21022. source: "./media/characters/yumi-akiyama/back.svg",
  21023. extra: 1287 / 1245,
  21024. bottom: 0.002
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Galactic",
  21031. height: math.unit(50, "galaxies"),
  21032. default: true
  21033. },
  21034. {
  21035. name: "Universal",
  21036. height: math.unit(100, "universes")
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(8, "feet"),
  21045. weight: math.unit(500, "lb"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/rifter-yrmori/front.svg",
  21049. extra: 1180 / 1125,
  21050. bottom: 0.02
  21051. }
  21052. },
  21053. back: {
  21054. height: math.unit(8, "feet"),
  21055. weight: math.unit(500, "lb"),
  21056. name: "Back",
  21057. image: {
  21058. source: "./media/characters/rifter-yrmori/back.svg",
  21059. extra: 1190 / 1145,
  21060. bottom: 0.001
  21061. }
  21062. },
  21063. wings: {
  21064. height: math.unit(7.75, "feet"),
  21065. weight: math.unit(500, "lb"),
  21066. name: "Wings",
  21067. image: {
  21068. source: "./media/characters/rifter-yrmori/wings.svg",
  21069. extra: 1357 / 1285
  21070. }
  21071. },
  21072. maw: {
  21073. height: math.unit(0.8, "feet"),
  21074. name: "Maw",
  21075. image: {
  21076. source: "./media/characters/rifter-yrmori/maw.svg"
  21077. }
  21078. },
  21079. mawfront: {
  21080. height: math.unit(1.45, "feet"),
  21081. name: "Maw (Front)",
  21082. image: {
  21083. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Normal",
  21090. height: math.unit(8, "feet"),
  21091. default: true
  21092. },
  21093. {
  21094. name: "Macro",
  21095. height: math.unit(42, "meters")
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21101. {
  21102. were: {
  21103. height: math.unit(25 + 6 / 12, "feet"),
  21104. weight: math.unit(10000, "lb"),
  21105. name: "Were",
  21106. image: {
  21107. source: "./media/characters/tahajin/were.svg",
  21108. extra: 801 / 770,
  21109. bottom: 0.042
  21110. }
  21111. },
  21112. aquatic: {
  21113. height: math.unit(6 + 4 / 12, "feet"),
  21114. weight: math.unit(160, "lb"),
  21115. name: "Aquatic",
  21116. image: {
  21117. source: "./media/characters/tahajin/aquatic.svg",
  21118. extra: 572 / 542,
  21119. bottom: 0.04
  21120. }
  21121. },
  21122. chow: {
  21123. height: math.unit(8 + 11 / 12, "feet"),
  21124. weight: math.unit(450, "lb"),
  21125. name: "Chow",
  21126. image: {
  21127. source: "./media/characters/tahajin/chow.svg",
  21128. extra: 660 / 640,
  21129. bottom: 0.015
  21130. }
  21131. },
  21132. demiNaga: {
  21133. height: math.unit(6 + 8 / 12, "feet"),
  21134. weight: math.unit(300, "lb"),
  21135. name: "Demi Naga",
  21136. image: {
  21137. source: "./media/characters/tahajin/demi-naga.svg",
  21138. extra: 643 / 615,
  21139. bottom: 0.1
  21140. }
  21141. },
  21142. data: {
  21143. height: math.unit(5, "inches"),
  21144. weight: math.unit(0.1, "lb"),
  21145. name: "Data",
  21146. image: {
  21147. source: "./media/characters/tahajin/data.svg"
  21148. }
  21149. },
  21150. fluu: {
  21151. height: math.unit(5 + 7 / 12, "feet"),
  21152. weight: math.unit(140, "lb"),
  21153. name: "Fluu",
  21154. image: {
  21155. source: "./media/characters/tahajin/fluu.svg",
  21156. extra: 628 / 592,
  21157. bottom: 0.02
  21158. }
  21159. },
  21160. starWarrior: {
  21161. height: math.unit(4 + 5 / 12, "feet"),
  21162. weight: math.unit(50, "lb"),
  21163. name: "Star Warrior",
  21164. image: {
  21165. source: "./media/characters/tahajin/star-warrior.svg"
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(25 + 6 / 12, "feet"),
  21173. default: true
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21179. {
  21180. front: {
  21181. height: math.unit(8, "feet"),
  21182. weight: math.unit(350, "lb"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/gabira/front.svg",
  21186. extra: 608 / 580,
  21187. bottom: 0.03
  21188. }
  21189. },
  21190. back: {
  21191. height: math.unit(8, "feet"),
  21192. weight: math.unit(350, "lb"),
  21193. name: "Back",
  21194. image: {
  21195. source: "./media/characters/gabira/back.svg",
  21196. extra: 608 / 580,
  21197. bottom: 0.03
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(8, "feet"),
  21205. default: true
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21211. {
  21212. front: {
  21213. height: math.unit(5 + 3 / 12, "feet"),
  21214. weight: math.unit(137, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/sasha-katraine/front.svg",
  21218. bottom: 0.045
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Micro",
  21225. height: math.unit(5, "inches")
  21226. },
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(5 + 3 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21236. {
  21237. side: {
  21238. height: math.unit(4, "inches"),
  21239. weight: math.unit(200, "grams"),
  21240. name: "Side",
  21241. image: {
  21242. source: "./media/characters/der/side.svg",
  21243. extra: 719 / 400,
  21244. bottom: 30.6 / 749.9187
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Micro",
  21251. height: math.unit(4, "inches"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21258. {
  21259. side: {
  21260. height: math.unit(30, "meters"),
  21261. weight: math.unit(700, "tonnes"),
  21262. name: "Side",
  21263. image: {
  21264. source: "./media/characters/fixerdragon/side.svg",
  21265. extra: (1293.0514 - 116.03) / 1106.86,
  21266. bottom: 116.03 / 1293.0514
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Planck",
  21273. height: math.unit(1.6e-35, "meters")
  21274. },
  21275. {
  21276. name: "Micro",
  21277. height: math.unit(0.4, "meters")
  21278. },
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(30, "meters"),
  21282. default: true
  21283. },
  21284. {
  21285. name: "Megamacro",
  21286. height: math.unit(1.2, "megameters")
  21287. },
  21288. {
  21289. name: "Teramacro",
  21290. height: math.unit(130, "terameters")
  21291. },
  21292. {
  21293. name: "Yottamacro",
  21294. height: math.unit(6200, "yottameters")
  21295. },
  21296. ]
  21297. ));
  21298. characterMakers.push(() => makeCharacter(
  21299. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21300. {
  21301. front: {
  21302. height: math.unit(8, "feet"),
  21303. weight: math.unit(250, "lb"),
  21304. name: "Front",
  21305. image: {
  21306. source: "./media/characters/kite/front.svg",
  21307. extra: 2796 / 2659,
  21308. bottom: 0.002
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(8, "feet"),
  21316. default: true
  21317. },
  21318. {
  21319. name: "Macro",
  21320. height: math.unit(360, "feet")
  21321. },
  21322. {
  21323. name: "Megamacro",
  21324. height: math.unit(1500, "feet")
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21330. {
  21331. front: {
  21332. height: math.unit(5 + 10 / 12, "feet"),
  21333. weight: math.unit(150, "lb"),
  21334. name: "Front",
  21335. image: {
  21336. source: "./media/characters/poojawa-vynar/front.svg",
  21337. extra: (1506.1547 - 55) / 1356.6,
  21338. bottom: 55 / 1506.1547
  21339. }
  21340. },
  21341. frontTailless: {
  21342. height: math.unit(5 + 10 / 12, "feet"),
  21343. weight: math.unit(150, "lb"),
  21344. name: "Front (Tailless)",
  21345. image: {
  21346. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21347. extra: (1506.1547 - 55) / 1356.6,
  21348. bottom: 55 / 1506.1547
  21349. }
  21350. },
  21351. },
  21352. [
  21353. {
  21354. name: "Normal",
  21355. height: math.unit(5 + 10 / 12, "feet"),
  21356. default: true
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21362. {
  21363. front: {
  21364. height: math.unit(293, "meters"),
  21365. weight: math.unit(70400, "tons"),
  21366. name: "Front",
  21367. image: {
  21368. source: "./media/characters/violette/front.svg",
  21369. extra: 1227 / 1180,
  21370. bottom: 0.005
  21371. }
  21372. },
  21373. back: {
  21374. height: math.unit(293, "meters"),
  21375. weight: math.unit(70400, "tons"),
  21376. name: "Back",
  21377. image: {
  21378. source: "./media/characters/violette/back.svg",
  21379. extra: 1227 / 1180,
  21380. bottom: 0.005
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Macro",
  21387. height: math.unit(293, "meters"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(1050, "feet"),
  21397. weight: math.unit(200000, "tons"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/alessandra/front.svg",
  21401. extra: 960 / 912,
  21402. bottom: 0.06
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Macro",
  21409. height: math.unit(1050, "feet")
  21410. },
  21411. {
  21412. name: "Macro+",
  21413. height: math.unit(900, "meters"),
  21414. default: true
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(5, "feet"),
  21423. weight: math.unit(187, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/person/front.svg",
  21427. extra: 3087 / 2945,
  21428. bottom: 91 / 3181
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Micro",
  21435. height: math.unit(3, "inches")
  21436. },
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(5, "feet"),
  21440. default: true
  21441. },
  21442. {
  21443. name: "Macro",
  21444. height: math.unit(90, "feet")
  21445. },
  21446. {
  21447. name: "Max Size",
  21448. height: math.unit(280, "feet")
  21449. },
  21450. ]
  21451. ))
  21452. characterMakers.push(() => makeCharacter(
  21453. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21454. {
  21455. front: {
  21456. height: math.unit(4.5, "meters"),
  21457. weight: math.unit(3200, "lb"),
  21458. name: "Front",
  21459. image: {
  21460. source: "./media/characters/ty/front.svg",
  21461. extra: 1038 / 960,
  21462. bottom: 31.156 / 1068
  21463. }
  21464. },
  21465. back: {
  21466. height: math.unit(4.5, "meters"),
  21467. weight: math.unit(3200, "lb"),
  21468. name: "Back",
  21469. image: {
  21470. source: "./media/characters/ty/back.svg",
  21471. extra: 1044 / 966,
  21472. bottom: 7.48 / 1049
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Normal",
  21479. height: math.unit(4.5, "meters"),
  21480. default: true
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21486. {
  21487. front: {
  21488. height: math.unit(5 + 4 / 12, "feet"),
  21489. weight: math.unit(115, "lb"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/rocky/front.svg",
  21493. extra: 1012 / 975,
  21494. bottom: 54 / 1066
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Normal",
  21501. height: math.unit(5 + 4 / 12, "feet"),
  21502. default: true
  21503. },
  21504. ]
  21505. ))
  21506. characterMakers.push(() => makeCharacter(
  21507. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21508. {
  21509. upright: {
  21510. height: math.unit(6, "meters"),
  21511. weight: math.unit(4000, "kg"),
  21512. name: "Upright",
  21513. image: {
  21514. source: "./media/characters/ruin/upright.svg",
  21515. extra: 668 / 661,
  21516. bottom: 42 / 799.8396
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(6, "meters"),
  21524. default: true
  21525. },
  21526. ]
  21527. ))
  21528. characterMakers.push(() => makeCharacter(
  21529. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21530. {
  21531. front: {
  21532. height: math.unit(5, "feet"),
  21533. weight: math.unit(106, "lb"),
  21534. name: "Front",
  21535. image: {
  21536. source: "./media/characters/robin/front.svg",
  21537. extra: 862 / 799,
  21538. bottom: 42.4 / 914.8856
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(5, "feet"),
  21546. default: true
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21552. {
  21553. side: {
  21554. height: math.unit(3, "feet"),
  21555. weight: math.unit(225, "lb"),
  21556. name: "Side",
  21557. image: {
  21558. source: "./media/characters/saian/side.svg",
  21559. extra: 566 / 356,
  21560. bottom: 79.7 / 643
  21561. }
  21562. },
  21563. maw: {
  21564. height: math.unit(2.85, "feet"),
  21565. name: "Maw",
  21566. image: {
  21567. source: "./media/characters/saian/maw.svg"
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(3, "feet"),
  21575. default: true
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21581. {
  21582. side: {
  21583. height: math.unit(8, "feet"),
  21584. weight: math.unit(300, "lb"),
  21585. name: "Side",
  21586. image: {
  21587. source: "./media/characters/equus-silvermane/side.svg",
  21588. extra: 2176 / 2050,
  21589. bottom: 65.7 / 2245
  21590. }
  21591. },
  21592. front: {
  21593. height: math.unit(8, "feet"),
  21594. weight: math.unit(300, "lb"),
  21595. name: "Front",
  21596. image: {
  21597. source: "./media/characters/equus-silvermane/front.svg",
  21598. extra: 4633 / 4400,
  21599. bottom: 71.3 / 4706.915
  21600. }
  21601. },
  21602. sideStepping: {
  21603. height: math.unit(8, "feet"),
  21604. weight: math.unit(300, "lb"),
  21605. name: "Side (Stepping)",
  21606. image: {
  21607. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21608. extra: 1968 / 1860,
  21609. bottom: 16.4 / 1989
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(8, "feet")
  21617. },
  21618. {
  21619. name: "Minimacro",
  21620. height: math.unit(75, "feet"),
  21621. default: true
  21622. },
  21623. {
  21624. name: "Macro",
  21625. height: math.unit(150, "feet")
  21626. },
  21627. {
  21628. name: "Macro+",
  21629. height: math.unit(1000, "feet")
  21630. },
  21631. {
  21632. name: "Megamacro",
  21633. height: math.unit(1, "mile")
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21639. {
  21640. side: {
  21641. height: math.unit(20, "feet"),
  21642. weight: math.unit(30000, "kg"),
  21643. name: "Side",
  21644. image: {
  21645. source: "./media/characters/windar/side.svg",
  21646. extra: 1491 / 1248,
  21647. bottom: 82.56 / 1568
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Normal",
  21654. height: math.unit(20, "feet"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21661. {
  21662. side: {
  21663. height: math.unit(15.66, "feet"),
  21664. weight: math.unit(150, "lb"),
  21665. name: "Side",
  21666. image: {
  21667. source: "./media/characters/melody/side.svg",
  21668. extra: 1097 / 944,
  21669. bottom: 11.8 / 1109
  21670. }
  21671. },
  21672. sideOutfit: {
  21673. height: math.unit(15.66, "feet"),
  21674. weight: math.unit(150, "lb"),
  21675. name: "Side (Outfit)",
  21676. image: {
  21677. source: "./media/characters/melody/side-outfit.svg",
  21678. extra: 1097 / 944,
  21679. bottom: 11.8 / 1109
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Normal",
  21686. height: math.unit(15.66, "feet"),
  21687. default: true
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21693. {
  21694. front: {
  21695. height: math.unit(8, "feet"),
  21696. weight: math.unit(325, "lb"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/windera/front.svg",
  21700. extra: 3180 / 2845,
  21701. bottom: 178 / 3365
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(8, "feet"),
  21709. default: true
  21710. },
  21711. ]
  21712. ))
  21713. characterMakers.push(() => makeCharacter(
  21714. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21715. {
  21716. front: {
  21717. height: math.unit(28.75, "feet"),
  21718. weight: math.unit(2000, "kg"),
  21719. name: "Front",
  21720. image: {
  21721. source: "./media/characters/sonear/front.svg",
  21722. extra: 1041.1 / 964.9,
  21723. bottom: 53.7 / 1096.6
  21724. }
  21725. },
  21726. },
  21727. [
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(28.75, "feet"),
  21731. default: true
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21737. {
  21738. side: {
  21739. height: math.unit(25.5, "feet"),
  21740. weight: math.unit(23000, "kg"),
  21741. name: "Side",
  21742. image: {
  21743. source: "./media/characters/kanara/side.svg"
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(25.5, "feet"),
  21751. default: true
  21752. },
  21753. ]
  21754. ))
  21755. characterMakers.push(() => makeCharacter(
  21756. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21757. {
  21758. side: {
  21759. height: math.unit(10, "feet"),
  21760. weight: math.unit(1000, "kg"),
  21761. name: "Side",
  21762. image: {
  21763. source: "./media/characters/ereus/side.svg",
  21764. extra: 1157 / 959,
  21765. bottom: 153 / 1312.5
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(10, "feet"),
  21773. default: true
  21774. },
  21775. ]
  21776. ))
  21777. characterMakers.push(() => makeCharacter(
  21778. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21779. {
  21780. side: {
  21781. height: math.unit(4.5, "feet"),
  21782. weight: math.unit(500, "lb"),
  21783. name: "Side",
  21784. image: {
  21785. source: "./media/characters/e-ter/side.svg",
  21786. extra: 1550 / 1248,
  21787. bottom: 146 / 1694
  21788. }
  21789. },
  21790. },
  21791. [
  21792. {
  21793. name: "Normal",
  21794. height: math.unit(4.5, "feet"),
  21795. default: true
  21796. },
  21797. ]
  21798. ))
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21801. {
  21802. side: {
  21803. height: math.unit(9.7, "feet"),
  21804. weight: math.unit(4000, "kg"),
  21805. name: "Side",
  21806. image: {
  21807. source: "./media/characters/yamie/side.svg"
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(9.7, "feet"),
  21815. default: true
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(50, "feet"),
  21824. weight: math.unit(50000, "kg"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/anders/front.svg",
  21828. extra: 570 / 539,
  21829. bottom: 14.7 / 586.7
  21830. }
  21831. },
  21832. },
  21833. [
  21834. {
  21835. name: "Large",
  21836. height: math.unit(50, "feet")
  21837. },
  21838. {
  21839. name: "Macro",
  21840. height: math.unit(2000, "feet"),
  21841. default: true
  21842. },
  21843. {
  21844. name: "Megamacro",
  21845. height: math.unit(12, "miles")
  21846. },
  21847. ]
  21848. ))
  21849. characterMakers.push(() => makeCharacter(
  21850. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21851. {
  21852. front: {
  21853. height: math.unit(7 + 2 / 12, "feet"),
  21854. weight: math.unit(300, "lb"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/reban/front.svg",
  21858. extra: 516 / 487,
  21859. bottom: 42.82 / 558.356
  21860. }
  21861. },
  21862. dick: {
  21863. height: math.unit(7 / 5, "feet"),
  21864. name: "Dick",
  21865. image: {
  21866. source: "./media/characters/reban/dick.svg"
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Natural Height",
  21873. height: math.unit(7 + 2 / 12, "feet")
  21874. },
  21875. {
  21876. name: "Macro",
  21877. height: math.unit(500, "feet"),
  21878. default: true
  21879. },
  21880. {
  21881. name: "Canon Height",
  21882. height: math.unit(50, "AU")
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21888. {
  21889. front: {
  21890. height: math.unit(6, "feet"),
  21891. weight: math.unit(150, "lb"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/terrance-keayes/front.svg",
  21895. extra: 1.005,
  21896. bottom: 151 / 1615
  21897. }
  21898. },
  21899. side: {
  21900. height: math.unit(6, "feet"),
  21901. weight: math.unit(150, "lb"),
  21902. name: "Side",
  21903. image: {
  21904. source: "./media/characters/terrance-keayes/side.svg",
  21905. extra: 1.005,
  21906. bottom: 129.4 / 1544
  21907. }
  21908. },
  21909. back: {
  21910. height: math.unit(6, "feet"),
  21911. weight: math.unit(150, "lb"),
  21912. name: "Back",
  21913. image: {
  21914. source: "./media/characters/terrance-keayes/back.svg",
  21915. extra: 1.005,
  21916. bottom: 58.4 / 1557.3
  21917. }
  21918. },
  21919. dick: {
  21920. height: math.unit(6 * 0.208, "feet"),
  21921. name: "Dick",
  21922. image: {
  21923. source: "./media/characters/terrance-keayes/dick.svg"
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Canon Height",
  21930. height: math.unit(35, "miles"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21937. {
  21938. front: {
  21939. height: math.unit(6, "feet"),
  21940. weight: math.unit(150, "lb"),
  21941. name: "Front",
  21942. image: {
  21943. source: "./media/characters/ofelia/front.svg",
  21944. extra: 546 / 541,
  21945. bottom: 39 / 583
  21946. }
  21947. },
  21948. back: {
  21949. height: math.unit(6, "feet"),
  21950. weight: math.unit(150, "lb"),
  21951. name: "Back",
  21952. image: {
  21953. source: "./media/characters/ofelia/back.svg",
  21954. extra: 564 / 559.5,
  21955. bottom: 8.69 / 573.02
  21956. }
  21957. },
  21958. maw: {
  21959. height: math.unit(1, "feet"),
  21960. name: "Maw",
  21961. image: {
  21962. source: "./media/characters/ofelia/maw.svg"
  21963. }
  21964. },
  21965. foot: {
  21966. height: math.unit(1.949, "feet"),
  21967. name: "Foot",
  21968. image: {
  21969. source: "./media/characters/ofelia/foot.svg"
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Canon Height",
  21976. height: math.unit(2000, "miles"),
  21977. default: true
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21983. {
  21984. front: {
  21985. height: math.unit(6, "feet"),
  21986. weight: math.unit(150, "lb"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/samuel/front.svg",
  21990. extra: 265 / 258,
  21991. bottom: 2 / 266.1566
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Macro",
  21998. height: math.unit(100, "feet"),
  21999. default: true
  22000. },
  22001. {
  22002. name: "Full Size",
  22003. height: math.unit(1000, "miles")
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(6, "feet"),
  22012. weight: math.unit(300, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/beishir-kiel/front.svg",
  22016. extra: 569 / 547,
  22017. bottom: 41.9 / 609
  22018. }
  22019. },
  22020. maw: {
  22021. height: math.unit(6 * 0.202, "feet"),
  22022. name: "Maw",
  22023. image: {
  22024. source: "./media/characters/beishir-kiel/maw.svg"
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(300, "feet"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(5 + 7/12, "feet"),
  22041. weight: math.unit(120, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/logan-grey/front.svg",
  22045. extra: 1836/1738,
  22046. bottom: 108/1944
  22047. }
  22048. },
  22049. back: {
  22050. height: math.unit(5 + 7/12, "feet"),
  22051. weight: math.unit(120, "lb"),
  22052. name: "Back",
  22053. image: {
  22054. source: "./media/characters/logan-grey/back.svg",
  22055. extra: 1880/1794,
  22056. bottom: 24/1904
  22057. }
  22058. },
  22059. frontSfw: {
  22060. height: math.unit(5 + 7/12, "feet"),
  22061. weight: math.unit(120, "lb"),
  22062. name: "Front (SFW)",
  22063. image: {
  22064. source: "./media/characters/logan-grey/front-sfw.svg",
  22065. extra: 1836/1738,
  22066. bottom: 108/1944
  22067. }
  22068. },
  22069. backSfw: {
  22070. height: math.unit(5 + 7/12, "feet"),
  22071. weight: math.unit(120, "lb"),
  22072. name: "Back (SFW)",
  22073. image: {
  22074. source: "./media/characters/logan-grey/back-sfw.svg",
  22075. extra: 1880/1794,
  22076. bottom: 24/1904
  22077. }
  22078. },
  22079. hands: {
  22080. height: math.unit(0.84, "feet"),
  22081. name: "Hands",
  22082. image: {
  22083. source: "./media/characters/logan-grey/hands.svg"
  22084. }
  22085. },
  22086. paws: {
  22087. height: math.unit(0.72, "feet"),
  22088. name: "Paws",
  22089. image: {
  22090. source: "./media/characters/logan-grey/paws.svg"
  22091. }
  22092. },
  22093. cock: {
  22094. height: math.unit(1.45, "feet"),
  22095. name: "Cock",
  22096. image: {
  22097. source: "./media/characters/logan-grey/cock.svg"
  22098. }
  22099. },
  22100. cockAlt: {
  22101. height: math.unit(1.437, "feet"),
  22102. name: "Cock (alt)",
  22103. image: {
  22104. source: "./media/characters/logan-grey/cock-alt.svg"
  22105. }
  22106. },
  22107. },
  22108. [
  22109. {
  22110. name: "Normal",
  22111. height: math.unit(5 + 8 / 12, "feet")
  22112. },
  22113. {
  22114. name: "The 500 Foot Femboy",
  22115. height: math.unit(500, "feet"),
  22116. default: true
  22117. },
  22118. {
  22119. name: "Megmacro",
  22120. height: math.unit(20, "miles")
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(8 + 2 / 12, "feet"),
  22129. weight: math.unit(275, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/draganta/front.svg",
  22133. extra: 1177 / 1135,
  22134. bottom: 33.46 / 1212.1
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(8 + 6 / 12, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Macro",
  22146. height: math.unit(150, "feet")
  22147. },
  22148. {
  22149. name: "Megamacro",
  22150. height: math.unit(1000, "miles")
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(1.72, "m"),
  22159. weight: math.unit(80, "lb"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/voski/front.svg",
  22163. extra: 2076.22 / 2022.4,
  22164. bottom: 102.7 / 2177.3866
  22165. }
  22166. },
  22167. frontNsfw: {
  22168. height: math.unit(1.72, "m"),
  22169. weight: math.unit(80, "lb"),
  22170. name: "Front (NSFW)",
  22171. image: {
  22172. source: "./media/characters/voski/front-nsfw.svg",
  22173. extra: 2076.22 / 2022.4,
  22174. bottom: 102.7 / 2177.3866
  22175. }
  22176. },
  22177. back: {
  22178. height: math.unit(1.72, "m"),
  22179. weight: math.unit(80, "lb"),
  22180. name: "Back",
  22181. image: {
  22182. source: "./media/characters/voski/back.svg",
  22183. extra: 2104 / 2051,
  22184. bottom: 10.45 / 2113.63
  22185. }
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Normal",
  22191. height: math.unit(1.72, "m")
  22192. },
  22193. {
  22194. name: "Macro",
  22195. height: math.unit(55, "m"),
  22196. default: true
  22197. },
  22198. {
  22199. name: "Macro+",
  22200. height: math.unit(300, "m")
  22201. },
  22202. {
  22203. name: "Macro++",
  22204. height: math.unit(700, "m")
  22205. },
  22206. {
  22207. name: "Macro+++",
  22208. height: math.unit(4500, "m")
  22209. },
  22210. {
  22211. name: "Macro++++",
  22212. height: math.unit(45, "km")
  22213. },
  22214. {
  22215. name: "Macro+++++",
  22216. height: math.unit(1220, "km")
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(2.3, "m"),
  22225. weight: math.unit(304, "kg"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/icowom-lee/front.svg",
  22229. extra: 985 / 955,
  22230. bottom: 25.4 / 1012
  22231. }
  22232. },
  22233. fronttentacles: {
  22234. height: math.unit(2.3, "m"),
  22235. weight: math.unit(304, "kg"),
  22236. name: "Front-tentacles",
  22237. image: {
  22238. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22239. extra: 985 / 955,
  22240. bottom: 25.4 / 1012
  22241. }
  22242. },
  22243. back: {
  22244. height: math.unit(2.3, "m"),
  22245. weight: math.unit(304, "kg"),
  22246. name: "Back",
  22247. image: {
  22248. source: "./media/characters/icowom-lee/back.svg",
  22249. extra: 975 / 954,
  22250. bottom: 9.5 / 985
  22251. }
  22252. },
  22253. backtentacles: {
  22254. height: math.unit(2.3, "m"),
  22255. weight: math.unit(304, "kg"),
  22256. name: "Back-tentacles",
  22257. image: {
  22258. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22259. extra: 975 / 954,
  22260. bottom: 9.5 / 985
  22261. }
  22262. },
  22263. frontDressed: {
  22264. height: math.unit(2.3, "m"),
  22265. weight: math.unit(304, "kg"),
  22266. name: "Front (Dressed)",
  22267. image: {
  22268. source: "./media/characters/icowom-lee/front-dressed.svg",
  22269. extra: 3076 / 2933,
  22270. bottom: 51.4 / 3125.1889
  22271. }
  22272. },
  22273. rump: {
  22274. height: math.unit(0.776, "meters"),
  22275. name: "Rump",
  22276. image: {
  22277. source: "./media/characters/icowom-lee/rump.svg"
  22278. }
  22279. },
  22280. genitals: {
  22281. height: math.unit(0.78, "meters"),
  22282. name: "Genitals",
  22283. image: {
  22284. source: "./media/characters/icowom-lee/genitals.svg"
  22285. }
  22286. },
  22287. },
  22288. [
  22289. {
  22290. name: "Normal",
  22291. height: math.unit(2.3, "meters"),
  22292. default: true
  22293. },
  22294. {
  22295. name: "Macro",
  22296. height: math.unit(94, "meters"),
  22297. default: true
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22303. {
  22304. front: {
  22305. height: math.unit(22, "meters"),
  22306. weight: math.unit(21000, "kg"),
  22307. name: "Front",
  22308. image: {
  22309. source: "./media/characters/shock-diamond/front.svg",
  22310. extra: 2204 / 2053,
  22311. bottom: 65 / 2239.47
  22312. }
  22313. },
  22314. frontNude: {
  22315. height: math.unit(22, "meters"),
  22316. weight: math.unit(21000, "kg"),
  22317. name: "Front (Nude)",
  22318. image: {
  22319. source: "./media/characters/shock-diamond/front-nude.svg",
  22320. extra: 2514 / 2285,
  22321. bottom: 13 / 2527.56
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Normal",
  22328. height: math.unit(3, "meters")
  22329. },
  22330. {
  22331. name: "Macro",
  22332. height: math.unit(22, "meters"),
  22333. default: true
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22339. {
  22340. front: {
  22341. height: math.unit(5 + 4 / 12, "feet"),
  22342. weight: math.unit(120, "lb"),
  22343. name: "Front",
  22344. image: {
  22345. source: "./media/characters/rory/front.svg",
  22346. extra: 1318/1241,
  22347. bottom: 42/1360
  22348. }
  22349. },
  22350. back: {
  22351. height: math.unit(5 + 4 / 12, "feet"),
  22352. weight: math.unit(120, "lb"),
  22353. name: "Back",
  22354. image: {
  22355. source: "./media/characters/rory/back.svg",
  22356. extra: 1318/1241,
  22357. bottom: 42/1360
  22358. }
  22359. },
  22360. butt: {
  22361. height: math.unit(1.74, "feet"),
  22362. name: "Butt",
  22363. image: {
  22364. source: "./media/characters/rory/butt.svg"
  22365. }
  22366. },
  22367. dick: {
  22368. height: math.unit(1.02, "feet"),
  22369. name: "Dick",
  22370. image: {
  22371. source: "./media/characters/rory/dick.svg"
  22372. }
  22373. },
  22374. paws: {
  22375. height: math.unit(1, "feet"),
  22376. name: "Paws",
  22377. image: {
  22378. source: "./media/characters/rory/paws.svg"
  22379. }
  22380. },
  22381. frontAlt: {
  22382. height: math.unit(5 + 4 / 12, "feet"),
  22383. weight: math.unit(120, "lb"),
  22384. name: "Front (Alt)",
  22385. image: {
  22386. source: "./media/characters/rory/front-alt.svg",
  22387. extra: 589 / 556,
  22388. bottom: 45.7 / 635.76
  22389. }
  22390. },
  22391. frontAltNude: {
  22392. height: math.unit(5 + 4 / 12, "feet"),
  22393. weight: math.unit(120, "lb"),
  22394. name: "Front (Alt, Nude)",
  22395. image: {
  22396. source: "./media/characters/rory/front-alt-nude.svg",
  22397. extra: 589 / 556,
  22398. bottom: 45.7 / 635.76
  22399. }
  22400. },
  22401. side: {
  22402. height: math.unit(5 + 4 / 12, "feet"),
  22403. weight: math.unit(120, "lb"),
  22404. name: "Side",
  22405. image: {
  22406. source: "./media/characters/rory/side.svg",
  22407. extra: 597 / 564,
  22408. bottom: 55 / 653
  22409. }
  22410. },
  22411. backAlt: {
  22412. height: math.unit(5 + 4 / 12, "feet"),
  22413. weight: math.unit(120, "lb"),
  22414. name: "Back (Alt)",
  22415. image: {
  22416. source: "./media/characters/rory/back-alt.svg",
  22417. extra: 620 / 585,
  22418. bottom: 8.86 / 630.43
  22419. }
  22420. },
  22421. dickAlt: {
  22422. height: math.unit(0.86, "feet"),
  22423. name: "Dick (Alt)",
  22424. image: {
  22425. source: "./media/characters/rory/dick-alt.svg"
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(5 + 4 / 12, "feet"),
  22433. default: true
  22434. },
  22435. {
  22436. name: "Macro",
  22437. height: math.unit(100, "feet")
  22438. },
  22439. {
  22440. name: "Macro+",
  22441. height: math.unit(140, "feet")
  22442. },
  22443. {
  22444. name: "Macro++",
  22445. height: math.unit(300, "feet")
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(5 + 9 / 12, "feet"),
  22454. weight: math.unit(190, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/sprisk/front.svg",
  22458. extra: 1225 / 1180,
  22459. bottom: 42.7 / 1266.4
  22460. }
  22461. },
  22462. frontNsfw: {
  22463. height: math.unit(5 + 9 / 12, "feet"),
  22464. weight: math.unit(190, "lb"),
  22465. name: "Front (NSFW)",
  22466. image: {
  22467. source: "./media/characters/sprisk/front-nsfw.svg",
  22468. extra: 1225 / 1180,
  22469. bottom: 42.7 / 1266.4
  22470. }
  22471. },
  22472. back: {
  22473. height: math.unit(5 + 9 / 12, "feet"),
  22474. weight: math.unit(190, "lb"),
  22475. name: "Back",
  22476. image: {
  22477. source: "./media/characters/sprisk/back.svg",
  22478. extra: 1247 / 1200,
  22479. bottom: 5.6 / 1253.04
  22480. }
  22481. },
  22482. },
  22483. [
  22484. {
  22485. name: "Tiny",
  22486. height: math.unit(2, "inches")
  22487. },
  22488. {
  22489. name: "Normal",
  22490. height: math.unit(5 + 9 / 12, "feet"),
  22491. default: true
  22492. },
  22493. {
  22494. name: "Mini Macro",
  22495. height: math.unit(18, "feet")
  22496. },
  22497. {
  22498. name: "Macro",
  22499. height: math.unit(100, "feet")
  22500. },
  22501. {
  22502. name: "MACRO",
  22503. height: math.unit(50, "miles")
  22504. },
  22505. {
  22506. name: "M A C R O",
  22507. height: math.unit(300, "miles")
  22508. },
  22509. ]
  22510. ))
  22511. characterMakers.push(() => makeCharacter(
  22512. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22513. {
  22514. side: {
  22515. height: math.unit(15.6, "meters"),
  22516. weight: math.unit(700000, "kg"),
  22517. name: "Side",
  22518. image: {
  22519. source: "./media/characters/bunsen/side.svg",
  22520. extra: 1644 / 358
  22521. }
  22522. },
  22523. foot: {
  22524. height: math.unit(1.611 * 1644 / 358, "meter"),
  22525. name: "Foot",
  22526. image: {
  22527. source: "./media/characters/bunsen/foot.svg"
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Small",
  22534. height: math.unit(10, "feet")
  22535. },
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(15.6, "meters"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(4 + 11 / 12, "feet"),
  22548. weight: math.unit(140, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/sesh/front.svg",
  22552. extra: 3420 / 3231,
  22553. bottom: 72 / 3949.5
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(4 + 11 / 12, "feet")
  22561. },
  22562. {
  22563. name: "Grown",
  22564. height: math.unit(15, "feet"),
  22565. default: true
  22566. },
  22567. {
  22568. name: "Macro",
  22569. height: math.unit(1500, "feet")
  22570. },
  22571. {
  22572. name: "Megamacro",
  22573. height: math.unit(30, "miles")
  22574. },
  22575. {
  22576. name: "Continental",
  22577. height: math.unit(3000, "miles")
  22578. },
  22579. {
  22580. name: "Gravity Mass",
  22581. height: math.unit(300000, "miles")
  22582. },
  22583. {
  22584. name: "Planet Buster",
  22585. height: math.unit(30000000, "miles")
  22586. },
  22587. {
  22588. name: "Big",
  22589. height: math.unit(3000000000, "miles")
  22590. },
  22591. ]
  22592. ))
  22593. characterMakers.push(() => makeCharacter(
  22594. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22595. {
  22596. front: {
  22597. height: math.unit(9, "feet"),
  22598. weight: math.unit(350, "lb"),
  22599. name: "Front",
  22600. image: {
  22601. source: "./media/characters/pepper/front.svg",
  22602. extra: 1448 / 1312,
  22603. bottom: 9.4 / 1457.88
  22604. }
  22605. },
  22606. back: {
  22607. height: math.unit(9, "feet"),
  22608. weight: math.unit(350, "lb"),
  22609. name: "Back",
  22610. image: {
  22611. source: "./media/characters/pepper/back.svg",
  22612. extra: 1423 / 1300,
  22613. bottom: 4.6 / 1429
  22614. }
  22615. },
  22616. maw: {
  22617. height: math.unit(0.932, "feet"),
  22618. name: "Maw",
  22619. image: {
  22620. source: "./media/characters/pepper/maw.svg"
  22621. }
  22622. },
  22623. },
  22624. [
  22625. {
  22626. name: "Normal",
  22627. height: math.unit(9, "feet"),
  22628. default: true
  22629. },
  22630. ]
  22631. ))
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22634. {
  22635. front: {
  22636. height: math.unit(6, "feet"),
  22637. weight: math.unit(150, "lb"),
  22638. name: "Front",
  22639. image: {
  22640. source: "./media/characters/maelstrom/front.svg",
  22641. extra: 2100 / 1883,
  22642. bottom: 94 / 2196.7
  22643. }
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Less Kaiju",
  22649. height: math.unit(200, "feet")
  22650. },
  22651. {
  22652. name: "Kaiju",
  22653. height: math.unit(400, "feet"),
  22654. default: true
  22655. },
  22656. {
  22657. name: "Kaiju-er",
  22658. height: math.unit(600, "feet")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(6 + 5 / 12, "feet"),
  22667. weight: math.unit(180, "lb"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/lexir/front.svg",
  22671. extra: 180 / 172,
  22672. bottom: 12 / 192
  22673. }
  22674. },
  22675. back: {
  22676. height: math.unit(6 + 5 / 12, "feet"),
  22677. weight: math.unit(180, "lb"),
  22678. name: "Back",
  22679. image: {
  22680. source: "./media/characters/lexir/back.svg",
  22681. extra: 183.84 / 175.5,
  22682. bottom: 3.1 / 187
  22683. }
  22684. },
  22685. },
  22686. [
  22687. {
  22688. name: "Very Smal",
  22689. height: math.unit(1, "nm")
  22690. },
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(6 + 5 / 12, "feet"),
  22694. default: true
  22695. },
  22696. {
  22697. name: "Macro",
  22698. height: math.unit(1, "mile")
  22699. },
  22700. {
  22701. name: "Megamacro",
  22702. height: math.unit(50, "miles")
  22703. },
  22704. ]
  22705. ))
  22706. characterMakers.push(() => makeCharacter(
  22707. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22708. {
  22709. front: {
  22710. height: math.unit(1.5, "meters"),
  22711. weight: math.unit(100, "lb"),
  22712. name: "Front",
  22713. image: {
  22714. source: "./media/characters/maksio/front.svg",
  22715. extra: 1549 / 1531,
  22716. bottom: 123.7 / 1674.5429
  22717. }
  22718. },
  22719. back: {
  22720. height: math.unit(1.5, "meters"),
  22721. weight: math.unit(100, "lb"),
  22722. name: "Back",
  22723. image: {
  22724. source: "./media/characters/maksio/back.svg",
  22725. extra: 1541 / 1509,
  22726. bottom: 97 / 1639
  22727. }
  22728. },
  22729. hand: {
  22730. height: math.unit(0.621, "feet"),
  22731. name: "Hand",
  22732. image: {
  22733. source: "./media/characters/maksio/hand.svg"
  22734. }
  22735. },
  22736. foot: {
  22737. height: math.unit(1.611, "feet"),
  22738. name: "Foot",
  22739. image: {
  22740. source: "./media/characters/maksio/foot.svg"
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Shrunken",
  22747. height: math.unit(10, "cm")
  22748. },
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(150, "cm"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(100, "feet"),
  22761. name: "Front",
  22762. image: {
  22763. source: "./media/characters/erza-bear/front.svg",
  22764. extra: 2449 / 2390,
  22765. bottom: 46 / 2494
  22766. }
  22767. },
  22768. back: {
  22769. height: math.unit(100, "feet"),
  22770. name: "Back",
  22771. image: {
  22772. source: "./media/characters/erza-bear/back.svg",
  22773. extra: 2489 / 2430,
  22774. bottom: 85.4 / 2480
  22775. }
  22776. },
  22777. tail: {
  22778. height: math.unit(42, "feet"),
  22779. name: "Tail",
  22780. image: {
  22781. source: "./media/characters/erza-bear/tail.svg"
  22782. }
  22783. },
  22784. tongue: {
  22785. height: math.unit(8, "feet"),
  22786. name: "Tongue",
  22787. image: {
  22788. source: "./media/characters/erza-bear/tongue.svg"
  22789. }
  22790. },
  22791. dick: {
  22792. height: math.unit(10.5, "feet"),
  22793. name: "Dick",
  22794. image: {
  22795. source: "./media/characters/erza-bear/dick.svg"
  22796. }
  22797. },
  22798. dickVertical: {
  22799. height: math.unit(16.9, "feet"),
  22800. name: "Dick (Vertical)",
  22801. image: {
  22802. source: "./media/characters/erza-bear/dick-vertical.svg"
  22803. }
  22804. },
  22805. },
  22806. [
  22807. {
  22808. name: "Macro",
  22809. height: math.unit(100, "feet"),
  22810. default: true
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22816. {
  22817. front: {
  22818. height: math.unit(172, "cm"),
  22819. weight: math.unit(73, "kg"),
  22820. name: "Front",
  22821. image: {
  22822. source: "./media/characters/violet-flor/front.svg",
  22823. extra: 1530 / 1442,
  22824. bottom: 61.9 / 1588.8
  22825. }
  22826. },
  22827. back: {
  22828. height: math.unit(180, "cm"),
  22829. weight: math.unit(73, "kg"),
  22830. name: "Back",
  22831. image: {
  22832. source: "./media/characters/violet-flor/back.svg",
  22833. extra: 1692 / 1630,
  22834. bottom: 20 / 1712
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(172, "cm"),
  22842. default: true
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(6, "feet"),
  22851. weight: math.unit(220, "lb"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/lynn-rhea/front.svg",
  22855. extra: 310 / 273
  22856. }
  22857. },
  22858. back: {
  22859. height: math.unit(6, "feet"),
  22860. weight: math.unit(220, "lb"),
  22861. name: "Back",
  22862. image: {
  22863. source: "./media/characters/lynn-rhea/back.svg",
  22864. extra: 310 / 273
  22865. }
  22866. },
  22867. dicks: {
  22868. height: math.unit(0.9, "feet"),
  22869. name: "Dicks",
  22870. image: {
  22871. source: "./media/characters/lynn-rhea/dicks.svg"
  22872. }
  22873. },
  22874. slit: {
  22875. height: math.unit(0.4, "feet"),
  22876. name: "Slit",
  22877. image: {
  22878. source: "./media/characters/lynn-rhea/slit.svg"
  22879. }
  22880. },
  22881. },
  22882. [
  22883. {
  22884. name: "Micro",
  22885. height: math.unit(1, "inch")
  22886. },
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(60, "feet"),
  22890. default: true
  22891. },
  22892. {
  22893. name: "Megamacro",
  22894. height: math.unit(2, "miles")
  22895. },
  22896. {
  22897. name: "Gigamacro",
  22898. height: math.unit(3, "earths")
  22899. },
  22900. {
  22901. name: "Galactic",
  22902. height: math.unit(0.8, "galaxies")
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22908. {
  22909. front: {
  22910. height: math.unit(1600, "feet"),
  22911. weight: math.unit(85758785169, "kg"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/valathos/front.svg",
  22915. extra: 1451 / 1339
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Macro",
  22922. height: math.unit(1600, "feet"),
  22923. default: true
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22929. {
  22930. front: {
  22931. height: math.unit(7 + 5 / 12, "feet"),
  22932. weight: math.unit(300, "lb"),
  22933. name: "Front",
  22934. image: {
  22935. source: "./media/characters/azula/front.svg",
  22936. extra: 3208 / 2880,
  22937. bottom: 80.2 / 3277
  22938. }
  22939. },
  22940. back: {
  22941. height: math.unit(7 + 5 / 12, "feet"),
  22942. weight: math.unit(300, "lb"),
  22943. name: "Back",
  22944. image: {
  22945. source: "./media/characters/azula/back.svg",
  22946. extra: 3169 / 2822,
  22947. bottom: 150.6 / 3321
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(7 + 5 / 12, "feet"),
  22955. default: true
  22956. },
  22957. {
  22958. name: "Big",
  22959. height: math.unit(20, "feet")
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22965. {
  22966. front: {
  22967. height: math.unit(5 + 1 / 12, "feet"),
  22968. weight: math.unit(110, "lb"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/rupert/front.svg",
  22972. extra: 1549 / 1495,
  22973. bottom: 54.2 / 1604.4
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(5 + 1 / 12, "feet"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22987. {
  22988. front: {
  22989. height: math.unit(8 + 4 / 12, "feet"),
  22990. weight: math.unit(350, "lb"),
  22991. name: "Front",
  22992. image: {
  22993. source: "./media/characters/sheera-castellar/front.svg",
  22994. extra: 1957 / 1894,
  22995. bottom: 26.97 / 1975.017
  22996. }
  22997. },
  22998. side: {
  22999. height: math.unit(8 + 4 / 12, "feet"),
  23000. weight: math.unit(350, "lb"),
  23001. name: "Side",
  23002. image: {
  23003. source: "./media/characters/sheera-castellar/side.svg",
  23004. extra: 1957 / 1894
  23005. }
  23006. },
  23007. back: {
  23008. height: math.unit(8 + 4 / 12, "feet"),
  23009. weight: math.unit(350, "lb"),
  23010. name: "Back",
  23011. image: {
  23012. source: "./media/characters/sheera-castellar/back.svg",
  23013. extra: 1957 / 1894
  23014. }
  23015. },
  23016. angled: {
  23017. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23018. weight: math.unit(350, "lb"),
  23019. name: "Angled",
  23020. image: {
  23021. source: "./media/characters/sheera-castellar/angled.svg",
  23022. extra: 1807 / 1707,
  23023. bottom: 68 / 1875
  23024. }
  23025. },
  23026. genitals: {
  23027. height: math.unit(2.2, "feet"),
  23028. name: "Genitals",
  23029. image: {
  23030. source: "./media/characters/sheera-castellar/genitals.svg"
  23031. }
  23032. },
  23033. taur: {
  23034. height: math.unit(10 + 6/12, "feet"),
  23035. name: "Taur",
  23036. image: {
  23037. source: "./media/characters/sheera-castellar/taur.svg",
  23038. extra: 2017/1909,
  23039. bottom: 185/2202
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(8 + 4 / 12, "feet")
  23047. },
  23048. {
  23049. name: "Macro",
  23050. height: math.unit(150, "feet"),
  23051. default: true
  23052. },
  23053. {
  23054. name: "Macro+",
  23055. height: math.unit(800, "feet")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(6, "feet"),
  23064. weight: math.unit(150, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/jaipur/front.svg",
  23068. extra: 3860 / 3731,
  23069. bottom: 287 / 4140
  23070. }
  23071. },
  23072. back: {
  23073. height: math.unit(6, "feet"),
  23074. weight: math.unit(150, "lb"),
  23075. name: "Back",
  23076. image: {
  23077. source: "./media/characters/jaipur/back.svg",
  23078. extra: 4060 / 3930,
  23079. bottom: 151 / 4200
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(1.85, "meters"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(150, "meters")
  23092. },
  23093. {
  23094. name: "Macro+",
  23095. height: math.unit(0.5, "miles")
  23096. },
  23097. {
  23098. name: "Macro++",
  23099. height: math.unit(2.5, "miles")
  23100. },
  23101. {
  23102. name: "Macro+++",
  23103. height: math.unit(12, "miles")
  23104. },
  23105. {
  23106. name: "Macro++++",
  23107. height: math.unit(120, "miles")
  23108. },
  23109. {
  23110. name: "Macro+++++",
  23111. height: math.unit(1200, "miles")
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(6, "feet"),
  23120. weight: math.unit(150, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/sheila-wolf/front.svg",
  23124. extra: 1931 / 1808,
  23125. bottom: 29.5 / 1960
  23126. }
  23127. },
  23128. dick: {
  23129. height: math.unit(1.464, "feet"),
  23130. name: "Dick",
  23131. image: {
  23132. source: "./media/characters/sheila-wolf/dick.svg"
  23133. }
  23134. },
  23135. muzzle: {
  23136. height: math.unit(0.513, "feet"),
  23137. name: "Muzzle",
  23138. image: {
  23139. source: "./media/characters/sheila-wolf/muzzle.svg"
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(70, "feet"),
  23147. default: true
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23153. {
  23154. front: {
  23155. height: math.unit(32, "meters"),
  23156. weight: math.unit(300000, "kg"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/almor/front.svg",
  23160. extra: 1408 / 1322,
  23161. bottom: 94.6 / 1506.5
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Macro",
  23168. height: math.unit(32, "meters"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(7, "feet"),
  23178. weight: math.unit(200, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/silver/front.svg",
  23182. extra: 472.1 / 450.5,
  23183. bottom: 26.5 / 499.424
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(7, "feet"),
  23191. default: true
  23192. },
  23193. {
  23194. name: "Macro",
  23195. height: math.unit(800, "feet")
  23196. },
  23197. {
  23198. name: "Megamacro",
  23199. height: math.unit(250, "miles")
  23200. },
  23201. ]
  23202. ))
  23203. characterMakers.push(() => makeCharacter(
  23204. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23205. {
  23206. front: {
  23207. height: math.unit(6, "feet"),
  23208. weight: math.unit(150, "lb"),
  23209. name: "Front",
  23210. image: {
  23211. source: "./media/characters/pliskin/front.svg",
  23212. extra: 1469 / 1359,
  23213. bottom: 70 / 1540
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Micro",
  23220. height: math.unit(3, "inches")
  23221. },
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(5 + 11 / 12, "feet"),
  23225. default: true
  23226. },
  23227. {
  23228. name: "Macro",
  23229. height: math.unit(120, "feet")
  23230. },
  23231. ]
  23232. ))
  23233. characterMakers.push(() => makeCharacter(
  23234. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23235. {
  23236. front: {
  23237. height: math.unit(6, "feet"),
  23238. weight: math.unit(150, "lb"),
  23239. name: "Front",
  23240. image: {
  23241. source: "./media/characters/sammy/front.svg",
  23242. extra: 1193 / 1089,
  23243. bottom: 30.5 / 1226
  23244. }
  23245. },
  23246. },
  23247. [
  23248. {
  23249. name: "Macro",
  23250. height: math.unit(1700, "feet"),
  23251. default: true
  23252. },
  23253. {
  23254. name: "Examacro",
  23255. height: math.unit(2.5e9, "lightyears")
  23256. },
  23257. ]
  23258. ))
  23259. characterMakers.push(() => makeCharacter(
  23260. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23261. {
  23262. front: {
  23263. height: math.unit(21, "meters"),
  23264. weight: math.unit(12, "tonnes"),
  23265. name: "Front",
  23266. image: {
  23267. source: "./media/characters/kuru/front.svg",
  23268. extra: 4301 / 3785,
  23269. bottom: 371.3 / 4691
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Macro",
  23276. height: math.unit(21, "meters"),
  23277. default: true
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23283. {
  23284. front: {
  23285. height: math.unit(23, "meters"),
  23286. weight: math.unit(12.2, "tonnes"),
  23287. name: "Front",
  23288. image: {
  23289. source: "./media/characters/rakka/front.svg",
  23290. extra: 4670 / 4169,
  23291. bottom: 301 / 4968.7
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Macro",
  23298. height: math.unit(23, "meters"),
  23299. default: true
  23300. },
  23301. ]
  23302. ))
  23303. characterMakers.push(() => makeCharacter(
  23304. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23305. {
  23306. front: {
  23307. height: math.unit(6, "feet"),
  23308. weight: math.unit(150, "lb"),
  23309. name: "Front",
  23310. image: {
  23311. source: "./media/characters/rhys-feline/front.svg",
  23312. extra: 2488 / 2308,
  23313. bottom: 35.67 / 2519.19
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Really Small",
  23320. height: math.unit(1, "nm")
  23321. },
  23322. {
  23323. name: "Micro",
  23324. height: math.unit(4, "inches")
  23325. },
  23326. {
  23327. name: "Normal",
  23328. height: math.unit(4 + 10 / 12, "feet"),
  23329. default: true
  23330. },
  23331. {
  23332. name: "Macro",
  23333. height: math.unit(100, "feet")
  23334. },
  23335. {
  23336. name: "Megamacto",
  23337. height: math.unit(50, "miles")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23343. {
  23344. side: {
  23345. height: math.unit(30, "feet"),
  23346. weight: math.unit(35000, "kg"),
  23347. name: "Side",
  23348. image: {
  23349. source: "./media/characters/alydar/side.svg",
  23350. extra: 234 / 222,
  23351. bottom: 6.5 / 241
  23352. }
  23353. },
  23354. front: {
  23355. height: math.unit(30, "feet"),
  23356. weight: math.unit(35000, "kg"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/alydar/front.svg",
  23360. extra: 223.37 / 210.2,
  23361. bottom: 22.3 / 246.76
  23362. }
  23363. },
  23364. top: {
  23365. height: math.unit(64.54, "feet"),
  23366. weight: math.unit(35000, "kg"),
  23367. name: "Top",
  23368. image: {
  23369. source: "./media/characters/alydar/top.svg"
  23370. }
  23371. },
  23372. anthro: {
  23373. height: math.unit(30, "feet"),
  23374. weight: math.unit(9000, "kg"),
  23375. name: "Anthro",
  23376. image: {
  23377. source: "./media/characters/alydar/anthro.svg",
  23378. extra: 432 / 421,
  23379. bottom: 7.18 / 440
  23380. }
  23381. },
  23382. maw: {
  23383. height: math.unit(11.693, "feet"),
  23384. name: "Maw",
  23385. image: {
  23386. source: "./media/characters/alydar/maw.svg"
  23387. }
  23388. },
  23389. head: {
  23390. height: math.unit(11.693, "feet"),
  23391. name: "Head",
  23392. image: {
  23393. source: "./media/characters/alydar/head.svg"
  23394. }
  23395. },
  23396. headAlt: {
  23397. height: math.unit(12.861, "feet"),
  23398. name: "Head (Alt)",
  23399. image: {
  23400. source: "./media/characters/alydar/head-alt.svg"
  23401. }
  23402. },
  23403. wing: {
  23404. height: math.unit(20.712, "feet"),
  23405. name: "Wing",
  23406. image: {
  23407. source: "./media/characters/alydar/wing.svg"
  23408. }
  23409. },
  23410. wingFeather: {
  23411. height: math.unit(9.662, "feet"),
  23412. name: "Wing Feather",
  23413. image: {
  23414. source: "./media/characters/alydar/wing-feather.svg"
  23415. }
  23416. },
  23417. countourFeather: {
  23418. height: math.unit(4.154, "feet"),
  23419. name: "Contour Feather",
  23420. image: {
  23421. source: "./media/characters/alydar/contour-feather.svg"
  23422. }
  23423. },
  23424. },
  23425. [
  23426. {
  23427. name: "Diplomatic",
  23428. height: math.unit(13, "feet"),
  23429. default: true
  23430. },
  23431. {
  23432. name: "Small",
  23433. height: math.unit(30, "feet")
  23434. },
  23435. {
  23436. name: "Normal",
  23437. height: math.unit(95, "feet"),
  23438. default: true
  23439. },
  23440. {
  23441. name: "Large",
  23442. height: math.unit(285, "feet")
  23443. },
  23444. {
  23445. name: "Incomprehensible",
  23446. height: math.unit(450, "megameters")
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23452. {
  23453. side: {
  23454. height: math.unit(11, "feet"),
  23455. weight: math.unit(1750, "kg"),
  23456. name: "Side",
  23457. image: {
  23458. source: "./media/characters/selicia/side.svg",
  23459. extra: 440 / 396,
  23460. bottom: 24.8 / 465.979
  23461. }
  23462. },
  23463. maw: {
  23464. height: math.unit(4.665, "feet"),
  23465. name: "Maw",
  23466. image: {
  23467. source: "./media/characters/selicia/maw.svg"
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(11, "feet"),
  23475. default: true
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23481. {
  23482. side: {
  23483. height: math.unit(2 + 6 / 12, "feet"),
  23484. weight: math.unit(30, "lb"),
  23485. name: "Side",
  23486. image: {
  23487. source: "./media/characters/layla/side.svg",
  23488. extra: 244 / 188,
  23489. bottom: 18.2 / 262.1
  23490. }
  23491. },
  23492. back: {
  23493. height: math.unit(2 + 6 / 12, "feet"),
  23494. weight: math.unit(30, "lb"),
  23495. name: "Back",
  23496. image: {
  23497. source: "./media/characters/layla/back.svg",
  23498. extra: 308 / 241.5,
  23499. bottom: 8.9 / 316.8
  23500. }
  23501. },
  23502. cumming: {
  23503. height: math.unit(2 + 6 / 12, "feet"),
  23504. weight: math.unit(30, "lb"),
  23505. name: "Cumming",
  23506. image: {
  23507. source: "./media/characters/layla/cumming.svg",
  23508. extra: 342 / 279,
  23509. bottom: 595 / 938
  23510. }
  23511. },
  23512. dickFlaccid: {
  23513. height: math.unit(2.595, "feet"),
  23514. name: "Flaccid Genitals",
  23515. image: {
  23516. source: "./media/characters/layla/dick-flaccid.svg"
  23517. }
  23518. },
  23519. dickErect: {
  23520. height: math.unit(2.359, "feet"),
  23521. name: "Erect Genitals",
  23522. image: {
  23523. source: "./media/characters/layla/dick-erect.svg"
  23524. }
  23525. },
  23526. dragon: {
  23527. height: math.unit(40, "feet"),
  23528. name: "Dragon",
  23529. image: {
  23530. source: "./media/characters/layla/dragon.svg",
  23531. extra: 610/535,
  23532. bottom: 367/977
  23533. }
  23534. },
  23535. taur: {
  23536. height: math.unit(30, "feet"),
  23537. name: "Taur",
  23538. image: {
  23539. source: "./media/characters/layla/taur.svg",
  23540. extra: 1268/1199,
  23541. bottom: 112/1380
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Micro",
  23548. height: math.unit(1, "inch")
  23549. },
  23550. {
  23551. name: "Small",
  23552. height: math.unit(1, "foot")
  23553. },
  23554. {
  23555. name: "Normal",
  23556. height: math.unit(2 + 6 / 12, "feet"),
  23557. default: true
  23558. },
  23559. {
  23560. name: "Macro",
  23561. height: math.unit(200, "feet")
  23562. },
  23563. {
  23564. name: "Megamacro",
  23565. height: math.unit(1000, "miles")
  23566. },
  23567. {
  23568. name: "Planetary",
  23569. height: math.unit(8000, "miles")
  23570. },
  23571. {
  23572. name: "True Layla",
  23573. height: math.unit(200000 * 7, "multiverses")
  23574. },
  23575. ]
  23576. ))
  23577. characterMakers.push(() => makeCharacter(
  23578. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23579. {
  23580. back: {
  23581. height: math.unit(10.5, "feet"),
  23582. weight: math.unit(800, "lb"),
  23583. name: "Back",
  23584. image: {
  23585. source: "./media/characters/knox/back.svg",
  23586. extra: 1486 / 1089,
  23587. bottom: 107 / 1601.4
  23588. }
  23589. },
  23590. side: {
  23591. height: math.unit(10.5, "feet"),
  23592. weight: math.unit(800, "lb"),
  23593. name: "Side",
  23594. image: {
  23595. source: "./media/characters/knox/side.svg",
  23596. extra: 244 / 218,
  23597. bottom: 14 / 260
  23598. }
  23599. },
  23600. },
  23601. [
  23602. {
  23603. name: "Compact",
  23604. height: math.unit(10.5, "feet"),
  23605. default: true
  23606. },
  23607. {
  23608. name: "Dynamax",
  23609. height: math.unit(210, "feet")
  23610. },
  23611. {
  23612. name: "Full Macro",
  23613. height: math.unit(850, "feet")
  23614. },
  23615. ]
  23616. ))
  23617. characterMakers.push(() => makeCharacter(
  23618. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23619. {
  23620. front: {
  23621. height: math.unit(6, "feet"),
  23622. weight: math.unit(152, "lb"),
  23623. name: "Front",
  23624. image: {
  23625. source: "./media/characters/shin-pikachu/front.svg",
  23626. extra: 1854/1602,
  23627. bottom: 166/2020
  23628. }
  23629. },
  23630. hand: {
  23631. height: math.unit(1.055, "feet"),
  23632. name: "Hand",
  23633. image: {
  23634. source: "./media/characters/shin-pikachu/hand.svg"
  23635. }
  23636. },
  23637. foot: {
  23638. height: math.unit(1.1, "feet"),
  23639. name: "Foot",
  23640. image: {
  23641. source: "./media/characters/shin-pikachu/foot.svg"
  23642. }
  23643. },
  23644. collar: {
  23645. height: math.unit(0.386, "feet"),
  23646. name: "Collar",
  23647. image: {
  23648. source: "./media/characters/shin-pikachu/collar.svg"
  23649. }
  23650. },
  23651. },
  23652. [
  23653. {
  23654. name: "Smallest",
  23655. height: math.unit(0.5, "inches")
  23656. },
  23657. {
  23658. name: "Micro",
  23659. height: math.unit(6, "inches")
  23660. },
  23661. {
  23662. name: "Normal",
  23663. height: math.unit(6, "feet"),
  23664. default: true
  23665. },
  23666. {
  23667. name: "Macro",
  23668. height: math.unit(150, "feet")
  23669. },
  23670. ]
  23671. ))
  23672. characterMakers.push(() => makeCharacter(
  23673. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23674. {
  23675. front: {
  23676. height: math.unit(28, "feet"),
  23677. weight: math.unit(10500, "lb"),
  23678. name: "Front",
  23679. image: {
  23680. source: "./media/characters/kayda/front.svg",
  23681. extra: 1536 / 1428,
  23682. bottom: 68.7 / 1603
  23683. }
  23684. },
  23685. back: {
  23686. height: math.unit(28, "feet"),
  23687. weight: math.unit(10500, "lb"),
  23688. name: "Back",
  23689. image: {
  23690. source: "./media/characters/kayda/back.svg",
  23691. extra: 1557 / 1464,
  23692. bottom: 39.5 / 1597.49
  23693. }
  23694. },
  23695. dick: {
  23696. height: math.unit(3.858, "feet"),
  23697. name: "Dick",
  23698. image: {
  23699. source: "./media/characters/kayda/dick.svg"
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Macro",
  23706. height: math.unit(28, "feet"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(10 + 11 / 12, "feet"),
  23716. weight: math.unit(1400, "lb"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/brian/front.svg",
  23720. extra: 737 / 692,
  23721. bottom: 55.4 / 785
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(10 + 11 / 12, "feet"),
  23729. default: true
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23735. {
  23736. front: {
  23737. height: math.unit(5 + 8 / 12, "feet"),
  23738. weight: math.unit(140, "lb"),
  23739. name: "Front",
  23740. image: {
  23741. source: "./media/characters/khemri/front.svg",
  23742. extra: 4780 / 4059,
  23743. bottom: 80.1 / 4859.25
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Micro",
  23750. height: math.unit(6, "inches")
  23751. },
  23752. {
  23753. name: "Normal",
  23754. height: math.unit(5 + 8 / 12, "feet"),
  23755. default: true
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23761. {
  23762. front: {
  23763. height: math.unit(13, "feet"),
  23764. weight: math.unit(1700, "lb"),
  23765. name: "Front",
  23766. image: {
  23767. source: "./media/characters/felix-braveheart/front.svg",
  23768. extra: 1222 / 1157,
  23769. bottom: 53.2 / 1280
  23770. }
  23771. },
  23772. back: {
  23773. height: math.unit(13, "feet"),
  23774. weight: math.unit(1700, "lb"),
  23775. name: "Back",
  23776. image: {
  23777. source: "./media/characters/felix-braveheart/back.svg",
  23778. extra: 1277 / 1203,
  23779. bottom: 50.2 / 1327
  23780. }
  23781. },
  23782. feral: {
  23783. height: math.unit(6, "feet"),
  23784. weight: math.unit(400, "lb"),
  23785. name: "Feral",
  23786. image: {
  23787. source: "./media/characters/felix-braveheart/feral.svg",
  23788. extra: 682 / 625,
  23789. bottom: 6.9 / 688
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Normal",
  23796. height: math.unit(13, "feet"),
  23797. default: true
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23803. {
  23804. side: {
  23805. height: math.unit(5 + 11 / 12, "feet"),
  23806. weight: math.unit(1400, "lb"),
  23807. name: "Side",
  23808. image: {
  23809. source: "./media/characters/shadow-blade/side.svg",
  23810. extra: 1726 / 1267,
  23811. bottom: 58.4 / 1785
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(5 + 11 / 12, "feet"),
  23819. default: true
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(1 + 6 / 12, "feet"),
  23828. weight: math.unit(25, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/karla-halldor/front.svg",
  23832. extra: 1459 / 1383,
  23833. bottom: 12 / 1472
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(1 + 6 / 12, "feet"),
  23841. default: true
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23847. {
  23848. front: {
  23849. height: math.unit(6 + 2 / 12, "feet"),
  23850. weight: math.unit(160, "lb"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/ariam/front.svg",
  23854. extra: 714 / 617,
  23855. bottom: 23.4 / 737,
  23856. }
  23857. },
  23858. squatting: {
  23859. height: math.unit(4.1, "feet"),
  23860. weight: math.unit(160, "lb"),
  23861. name: "Squatting",
  23862. image: {
  23863. source: "./media/characters/ariam/squatting.svg",
  23864. extra: 2617 / 2112,
  23865. bottom: 61.2 / 2681,
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Normal",
  23872. height: math.unit(6 + 2 / 12, "feet"),
  23873. default: true
  23874. },
  23875. {
  23876. name: "Normal+",
  23877. height: math.unit(4, "meters")
  23878. },
  23879. {
  23880. name: "Macro",
  23881. height: math.unit(50, "meters")
  23882. },
  23883. {
  23884. name: "Macro+",
  23885. height: math.unit(100, "meters")
  23886. },
  23887. {
  23888. name: "Megamacro",
  23889. height: math.unit(20, "km")
  23890. },
  23891. ]
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23895. {
  23896. front: {
  23897. height: math.unit(1.67, "meters"),
  23898. weight: math.unit(140, "lb"),
  23899. name: "Front",
  23900. image: {
  23901. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23902. extra: 438 / 410,
  23903. bottom: 0.75 / 439
  23904. }
  23905. },
  23906. },
  23907. [
  23908. {
  23909. name: "Shrunken",
  23910. height: math.unit(7.6, "cm")
  23911. },
  23912. {
  23913. name: "Human Scale",
  23914. height: math.unit(1.67, "meters")
  23915. },
  23916. {
  23917. name: "Wolxi Scale",
  23918. height: math.unit(36.7, "meters"),
  23919. default: true
  23920. },
  23921. ]
  23922. ))
  23923. characterMakers.push(() => makeCharacter(
  23924. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23925. {
  23926. front: {
  23927. height: math.unit(1.73, "meters"),
  23928. weight: math.unit(240, "lb"),
  23929. name: "Front",
  23930. image: {
  23931. source: "./media/characters/izue-two-mothers/front.svg",
  23932. extra: 469 / 437,
  23933. bottom: 1.24 / 470.6
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Shrunken",
  23940. height: math.unit(7.86, "cm")
  23941. },
  23942. {
  23943. name: "Human Scale",
  23944. height: math.unit(1.73, "meters")
  23945. },
  23946. {
  23947. name: "Wolxi Scale",
  23948. height: math.unit(38, "meters"),
  23949. default: true
  23950. },
  23951. ]
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23955. {
  23956. front: {
  23957. height: math.unit(1.55, "meters"),
  23958. weight: math.unit(120, "lb"),
  23959. name: "Front",
  23960. image: {
  23961. source: "./media/characters/teeku-love-shack/front.svg",
  23962. extra: 387 / 362,
  23963. bottom: 1.51 / 388
  23964. }
  23965. },
  23966. },
  23967. [
  23968. {
  23969. name: "Shrunken",
  23970. height: math.unit(7, "cm")
  23971. },
  23972. {
  23973. name: "Human Scale",
  23974. height: math.unit(1.55, "meters")
  23975. },
  23976. {
  23977. name: "Wolxi Scale",
  23978. height: math.unit(34.1, "meters"),
  23979. default: true
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23985. {
  23986. front: {
  23987. height: math.unit(1.83, "meters"),
  23988. weight: math.unit(135, "lb"),
  23989. name: "Front",
  23990. image: {
  23991. source: "./media/characters/dejma-the-red/front.svg",
  23992. extra: 480 / 458,
  23993. bottom: 1.8 / 482
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Shrunken",
  24000. height: math.unit(8.3, "cm")
  24001. },
  24002. {
  24003. name: "Human Scale",
  24004. height: math.unit(1.83, "meters")
  24005. },
  24006. {
  24007. name: "Wolxi Scale",
  24008. height: math.unit(40, "meters"),
  24009. default: true
  24010. },
  24011. ]
  24012. ))
  24013. characterMakers.push(() => makeCharacter(
  24014. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24015. {
  24016. front: {
  24017. height: math.unit(1.78, "meters"),
  24018. weight: math.unit(65, "kg"),
  24019. name: "Front",
  24020. image: {
  24021. source: "./media/characters/aki/front.svg",
  24022. extra: 452 / 415
  24023. }
  24024. },
  24025. frontNsfw: {
  24026. height: math.unit(1.78, "meters"),
  24027. weight: math.unit(65, "kg"),
  24028. name: "Front (NSFW)",
  24029. image: {
  24030. source: "./media/characters/aki/front-nsfw.svg",
  24031. extra: 452 / 415
  24032. }
  24033. },
  24034. back: {
  24035. height: math.unit(1.78, "meters"),
  24036. weight: math.unit(65, "kg"),
  24037. name: "Back",
  24038. image: {
  24039. source: "./media/characters/aki/back.svg",
  24040. extra: 452 / 415
  24041. }
  24042. },
  24043. rump: {
  24044. height: math.unit(2.05, "feet"),
  24045. name: "Rump",
  24046. image: {
  24047. source: "./media/characters/aki/rump.svg"
  24048. }
  24049. },
  24050. dick: {
  24051. height: math.unit(0.95, "feet"),
  24052. name: "Dick",
  24053. image: {
  24054. source: "./media/characters/aki/dick.svg"
  24055. }
  24056. },
  24057. },
  24058. [
  24059. {
  24060. name: "Micro",
  24061. height: math.unit(15, "cm")
  24062. },
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(178, "cm"),
  24066. default: true
  24067. },
  24068. {
  24069. name: "Macro",
  24070. height: math.unit(214, "m")
  24071. },
  24072. {
  24073. name: "Macro+",
  24074. height: math.unit(534, "m")
  24075. },
  24076. ]
  24077. ))
  24078. characterMakers.push(() => makeCharacter(
  24079. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24080. {
  24081. front: {
  24082. height: math.unit(5 + 5 / 12, "feet"),
  24083. weight: math.unit(120, "lb"),
  24084. name: "Front",
  24085. image: {
  24086. source: "./media/characters/ari/front.svg",
  24087. extra: 714.5 / 682,
  24088. bottom: 8 / 722.5
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(5 + 5 / 12, "feet")
  24096. },
  24097. {
  24098. name: "Macro",
  24099. height: math.unit(100, "feet"),
  24100. default: true
  24101. },
  24102. {
  24103. name: "Megamacro",
  24104. height: math.unit(100, "miles")
  24105. },
  24106. {
  24107. name: "Gigamacro",
  24108. height: math.unit(80000, "miles")
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24114. {
  24115. side: {
  24116. height: math.unit(9, "feet"),
  24117. weight: math.unit(400, "kg"),
  24118. name: "Side",
  24119. image: {
  24120. source: "./media/characters/bolt/side.svg",
  24121. extra: 1126 / 896,
  24122. bottom: 60 / 1187.3,
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Micro",
  24129. height: math.unit(5, "inches")
  24130. },
  24131. {
  24132. name: "Normal",
  24133. height: math.unit(9, "feet"),
  24134. default: true
  24135. },
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(700, "feet")
  24139. },
  24140. {
  24141. name: "Max Size",
  24142. height: math.unit(1.52e22, "yottameters")
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24148. {
  24149. front: {
  24150. height: math.unit(4.53, "meters"),
  24151. weight: math.unit(3, "tons"),
  24152. name: "Front",
  24153. image: {
  24154. source: "./media/characters/draekon-sylviar/front.svg",
  24155. extra: 1228 / 1068,
  24156. bottom: 41 / 1270
  24157. }
  24158. },
  24159. tail: {
  24160. height: math.unit(1.772, "meter"),
  24161. name: "Tail",
  24162. image: {
  24163. source: "./media/characters/draekon-sylviar/tail.svg"
  24164. }
  24165. },
  24166. head: {
  24167. height: math.unit(1.331, "meter"),
  24168. name: "Head",
  24169. image: {
  24170. source: "./media/characters/draekon-sylviar/head.svg"
  24171. }
  24172. },
  24173. hand: {
  24174. height: math.unit(0.564, "meter"),
  24175. name: "Hand",
  24176. image: {
  24177. source: "./media/characters/draekon-sylviar/hand.svg"
  24178. }
  24179. },
  24180. foot: {
  24181. height: math.unit(0.621, "meter"),
  24182. name: "Foot",
  24183. image: {
  24184. source: "./media/characters/draekon-sylviar/foot.svg",
  24185. bottom: 32 / 324
  24186. }
  24187. },
  24188. dick: {
  24189. height: math.unit(61, "cm"),
  24190. name: "Dick",
  24191. image: {
  24192. source: "./media/characters/draekon-sylviar/dick.svg"
  24193. }
  24194. },
  24195. dickseparated: {
  24196. height: math.unit(61, "cm"),
  24197. name: "Dick-separated",
  24198. image: {
  24199. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Small",
  24206. height: math.unit(4.53 / 2, "meters"),
  24207. default: true
  24208. },
  24209. {
  24210. name: "Normal",
  24211. height: math.unit(4.53, "meters"),
  24212. default: true
  24213. },
  24214. {
  24215. name: "Large",
  24216. height: math.unit(4.53 * 2, "meters"),
  24217. },
  24218. ]
  24219. ))
  24220. characterMakers.push(() => makeCharacter(
  24221. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24222. {
  24223. front: {
  24224. height: math.unit(6 + 2 / 12, "feet"),
  24225. weight: math.unit(180, "lb"),
  24226. name: "Front",
  24227. image: {
  24228. source: "./media/characters/brawler/front.svg",
  24229. extra: 3301 / 3027,
  24230. bottom: 138 / 3439
  24231. }
  24232. },
  24233. },
  24234. [
  24235. {
  24236. name: "Normal",
  24237. height: math.unit(6 + 2 / 12, "feet"),
  24238. default: true
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(11, "feet"),
  24247. weight: math.unit(1000, "lb"),
  24248. name: "Front",
  24249. image: {
  24250. source: "./media/characters/alex/front.svg",
  24251. bottom: 44.5 / 620
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Micro",
  24258. height: math.unit(5, "inches")
  24259. },
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(11, "feet"),
  24263. default: true
  24264. },
  24265. {
  24266. name: "Macro",
  24267. height: math.unit(9.5e9, "feet")
  24268. },
  24269. {
  24270. name: "Max Size",
  24271. height: math.unit(1.4e283, "yottameters")
  24272. },
  24273. ]
  24274. ))
  24275. characterMakers.push(() => makeCharacter(
  24276. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24277. {
  24278. female: {
  24279. height: math.unit(29.9, "m"),
  24280. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24281. name: "Female",
  24282. image: {
  24283. source: "./media/characters/zenari/female.svg",
  24284. extra: 3281.6 / 3217,
  24285. bottom: 72.2 / 3353
  24286. }
  24287. },
  24288. male: {
  24289. height: math.unit(27.7, "m"),
  24290. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24291. name: "Male",
  24292. image: {
  24293. source: "./media/characters/zenari/male.svg",
  24294. extra: 3008 / 2991,
  24295. bottom: 54.6 / 3069
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Macro",
  24302. height: math.unit(29.7, "meters"),
  24303. default: true
  24304. },
  24305. ]
  24306. ))
  24307. characterMakers.push(() => makeCharacter(
  24308. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24309. {
  24310. female: {
  24311. height: math.unit(23.8, "m"),
  24312. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24313. name: "Female",
  24314. image: {
  24315. source: "./media/characters/mactarian/female.svg",
  24316. extra: 2662 / 2569,
  24317. bottom: 73 / 2736
  24318. }
  24319. },
  24320. male: {
  24321. height: math.unit(23.8, "m"),
  24322. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24323. name: "Male",
  24324. image: {
  24325. source: "./media/characters/mactarian/male.svg",
  24326. extra: 2673 / 2600,
  24327. bottom: 76 / 2750
  24328. }
  24329. },
  24330. },
  24331. [
  24332. {
  24333. name: "Macro",
  24334. height: math.unit(23.8, "meters"),
  24335. default: true
  24336. },
  24337. ]
  24338. ))
  24339. characterMakers.push(() => makeCharacter(
  24340. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24341. {
  24342. female: {
  24343. height: math.unit(19.3, "m"),
  24344. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24345. name: "Female",
  24346. image: {
  24347. source: "./media/characters/umok/female.svg",
  24348. extra: 2186 / 2078,
  24349. bottom: 87 / 2277
  24350. }
  24351. },
  24352. male: {
  24353. height: math.unit(19.5, "m"),
  24354. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24355. name: "Male",
  24356. image: {
  24357. source: "./media/characters/umok/male.svg",
  24358. extra: 2233 / 2140,
  24359. bottom: 24.4 / 2258
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Macro",
  24366. height: math.unit(19.3, "meters"),
  24367. default: true
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24373. {
  24374. female: {
  24375. height: math.unit(26.15, "m"),
  24376. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24377. name: "Female",
  24378. image: {
  24379. source: "./media/characters/joraxian/female.svg",
  24380. extra: 2912 / 2824,
  24381. bottom: 36 / 2956
  24382. }
  24383. },
  24384. male: {
  24385. height: math.unit(25.4, "m"),
  24386. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24387. name: "Male",
  24388. image: {
  24389. source: "./media/characters/joraxian/male.svg",
  24390. extra: 2877 / 2721,
  24391. bottom: 82 / 2967
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Macro",
  24398. height: math.unit(26.15, "meters"),
  24399. default: true
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24405. {
  24406. female: {
  24407. height: math.unit(21.6, "m"),
  24408. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24409. name: "Female",
  24410. image: {
  24411. source: "./media/characters/sthara/female.svg",
  24412. extra: 2516 / 2347,
  24413. bottom: 21.5 / 2537
  24414. }
  24415. },
  24416. male: {
  24417. height: math.unit(24, "m"),
  24418. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24419. name: "Male",
  24420. image: {
  24421. source: "./media/characters/sthara/male.svg",
  24422. extra: 2732 / 2607,
  24423. bottom: 23 / 2732
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Macro",
  24430. height: math.unit(21.6, "meters"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(6 + 4 / 12, "feet"),
  24440. weight: math.unit(175, "lb"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/luka-bryzant/front.svg",
  24444. extra: 311 / 289,
  24445. bottom: 4 / 315
  24446. }
  24447. },
  24448. back: {
  24449. height: math.unit(6 + 4 / 12, "feet"),
  24450. weight: math.unit(175, "lb"),
  24451. name: "Back",
  24452. image: {
  24453. source: "./media/characters/luka-bryzant/back.svg",
  24454. extra: 311 / 289,
  24455. bottom: 3.8 / 313.7
  24456. }
  24457. },
  24458. },
  24459. [
  24460. {
  24461. name: "Micro",
  24462. height: math.unit(10, "inches")
  24463. },
  24464. {
  24465. name: "Normal",
  24466. height: math.unit(6 + 4 / 12, "feet"),
  24467. default: true
  24468. },
  24469. {
  24470. name: "Large",
  24471. height: math.unit(12, "feet")
  24472. },
  24473. ]
  24474. ))
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24477. {
  24478. front: {
  24479. height: math.unit(5 + 7 / 12, "feet"),
  24480. weight: math.unit(185, "lb"),
  24481. name: "Front",
  24482. image: {
  24483. source: "./media/characters/aman-aquila/front.svg",
  24484. extra: 1013 / 976,
  24485. bottom: 45.6 / 1057
  24486. }
  24487. },
  24488. side: {
  24489. height: math.unit(5 + 7 / 12, "feet"),
  24490. weight: math.unit(185, "lb"),
  24491. name: "Side",
  24492. image: {
  24493. source: "./media/characters/aman-aquila/side.svg",
  24494. extra: 1054 / 1011,
  24495. bottom: 15 / 1070
  24496. }
  24497. },
  24498. back: {
  24499. height: math.unit(5 + 7 / 12, "feet"),
  24500. weight: math.unit(185, "lb"),
  24501. name: "Back",
  24502. image: {
  24503. source: "./media/characters/aman-aquila/back.svg",
  24504. extra: 1026 / 970,
  24505. bottom: 12 / 1039
  24506. }
  24507. },
  24508. head: {
  24509. height: math.unit(1.211, "feet"),
  24510. name: "Head",
  24511. image: {
  24512. source: "./media/characters/aman-aquila/head.svg",
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Minimicro",
  24519. height: math.unit(0.057, "inches")
  24520. },
  24521. {
  24522. name: "Micro",
  24523. height: math.unit(7, "inches")
  24524. },
  24525. {
  24526. name: "Mini",
  24527. height: math.unit(3 + 7 / 12, "feet")
  24528. },
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(5 + 7 / 12, "feet"),
  24532. default: true
  24533. },
  24534. {
  24535. name: "Macro",
  24536. height: math.unit(157 + 7 / 12, "feet")
  24537. },
  24538. {
  24539. name: "Megamacro",
  24540. height: math.unit(1557 + 7 / 12, "feet")
  24541. },
  24542. {
  24543. name: "Gigamacro",
  24544. height: math.unit(15557 + 7 / 12, "feet")
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24550. {
  24551. front: {
  24552. height: math.unit(3 + 2 / 12, "inches"),
  24553. weight: math.unit(0.3, "ounces"),
  24554. name: "Front",
  24555. image: {
  24556. source: "./media/characters/hiphae/front.svg",
  24557. extra: 1931 / 1683,
  24558. bottom: 24 / 1955
  24559. }
  24560. },
  24561. },
  24562. [
  24563. {
  24564. name: "Normal",
  24565. height: math.unit(3 + 1 / 2, "inches"),
  24566. default: true
  24567. },
  24568. ]
  24569. ))
  24570. characterMakers.push(() => makeCharacter(
  24571. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24572. {
  24573. front: {
  24574. height: math.unit(5 + 10 / 12, "feet"),
  24575. weight: math.unit(165, "lb"),
  24576. name: "Front",
  24577. image: {
  24578. source: "./media/characters/nicky/front.svg",
  24579. extra: 3144 / 2886,
  24580. bottom: 45.6 / 3192
  24581. }
  24582. },
  24583. back: {
  24584. height: math.unit(5 + 10 / 12, "feet"),
  24585. weight: math.unit(165, "lb"),
  24586. name: "Back",
  24587. image: {
  24588. source: "./media/characters/nicky/back.svg",
  24589. extra: 3055 / 2804,
  24590. bottom: 28.4 / 3087
  24591. }
  24592. },
  24593. frontclothed: {
  24594. height: math.unit(5 + 10 / 12, "feet"),
  24595. weight: math.unit(165, "lb"),
  24596. name: "Front-clothed",
  24597. image: {
  24598. source: "./media/characters/nicky/front-clothed.svg",
  24599. extra: 3184.9 / 2926.9,
  24600. bottom: 86.5 / 3239.9
  24601. }
  24602. },
  24603. foot: {
  24604. height: math.unit(1.16, "feet"),
  24605. name: "Foot",
  24606. image: {
  24607. source: "./media/characters/nicky/foot.svg"
  24608. }
  24609. },
  24610. feet: {
  24611. height: math.unit(1.34, "feet"),
  24612. name: "Feet",
  24613. image: {
  24614. source: "./media/characters/nicky/feet.svg"
  24615. }
  24616. },
  24617. maw: {
  24618. height: math.unit(0.9, "feet"),
  24619. name: "Maw",
  24620. image: {
  24621. source: "./media/characters/nicky/maw.svg"
  24622. }
  24623. },
  24624. },
  24625. [
  24626. {
  24627. name: "Normal",
  24628. height: math.unit(5 + 10 / 12, "feet"),
  24629. default: true
  24630. },
  24631. {
  24632. name: "Macro",
  24633. height: math.unit(60, "feet")
  24634. },
  24635. {
  24636. name: "Megamacro",
  24637. height: math.unit(1, "mile")
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24643. {
  24644. side: {
  24645. height: math.unit(10, "feet"),
  24646. weight: math.unit(600, "lb"),
  24647. name: "Side",
  24648. image: {
  24649. source: "./media/characters/blair/side.svg",
  24650. bottom: 16.6 / 475,
  24651. extra: 458 / 431
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Micro",
  24658. height: math.unit(8, "inches")
  24659. },
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(10, "feet"),
  24663. default: true
  24664. },
  24665. {
  24666. name: "Macro",
  24667. height: math.unit(180, "feet")
  24668. },
  24669. ]
  24670. ))
  24671. characterMakers.push(() => makeCharacter(
  24672. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24673. {
  24674. front: {
  24675. height: math.unit(5 + 4 / 12, "feet"),
  24676. weight: math.unit(125, "lb"),
  24677. name: "Front",
  24678. image: {
  24679. source: "./media/characters/fisher/front.svg",
  24680. extra: 444 / 390,
  24681. bottom: 2 / 444.8
  24682. }
  24683. },
  24684. },
  24685. [
  24686. {
  24687. name: "Micro",
  24688. height: math.unit(4, "inches")
  24689. },
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(5 + 4 / 12, "feet"),
  24693. default: true
  24694. },
  24695. {
  24696. name: "Macro",
  24697. height: math.unit(100, "feet")
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24703. {
  24704. front: {
  24705. height: math.unit(6.71, "feet"),
  24706. weight: math.unit(200, "lb"),
  24707. capacity: math.unit(1000000, "people"),
  24708. name: "Front",
  24709. image: {
  24710. source: "./media/characters/gliss/front.svg",
  24711. extra: 2347 / 2231,
  24712. bottom: 113 / 2462
  24713. }
  24714. },
  24715. hammerspaceSize: {
  24716. height: math.unit(6.71 * 717, "feet"),
  24717. weight: math.unit(200, "lb"),
  24718. capacity: math.unit(1000000, "people"),
  24719. name: "Hammerspace Size",
  24720. image: {
  24721. source: "./media/characters/gliss/front.svg",
  24722. extra: 2347 / 2231,
  24723. bottom: 113 / 2462
  24724. }
  24725. },
  24726. },
  24727. [
  24728. {
  24729. name: "Normal",
  24730. height: math.unit(6.71, "feet"),
  24731. default: true
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24737. {
  24738. side: {
  24739. height: math.unit(1.44, "m"),
  24740. weight: math.unit(80, "kg"),
  24741. name: "Side",
  24742. image: {
  24743. source: "./media/characters/dune-anderson/side.svg",
  24744. bottom: 49 / 1426
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Wolf-sized",
  24751. height: math.unit(1.44, "meters")
  24752. },
  24753. {
  24754. name: "Normal",
  24755. height: math.unit(5.05, "meters"),
  24756. default: true
  24757. },
  24758. {
  24759. name: "Big",
  24760. height: math.unit(14.4, "meters")
  24761. },
  24762. {
  24763. name: "Huge",
  24764. height: math.unit(144, "meters")
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(7, "feet"),
  24773. weight: math.unit(425, "lb"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/hind/front.svg",
  24777. extra: 2091 / 1860,
  24778. bottom: 129 / 2220
  24779. }
  24780. },
  24781. back: {
  24782. height: math.unit(7, "feet"),
  24783. weight: math.unit(425, "lb"),
  24784. name: "Back",
  24785. image: {
  24786. source: "./media/characters/hind/back.svg",
  24787. extra: 2091 / 1860,
  24788. bottom: 24.6 / 2309
  24789. }
  24790. },
  24791. tail: {
  24792. height: math.unit(2.8, "feet"),
  24793. name: "Tail",
  24794. image: {
  24795. source: "./media/characters/hind/tail.svg"
  24796. }
  24797. },
  24798. head: {
  24799. height: math.unit(2.55, "feet"),
  24800. name: "Head",
  24801. image: {
  24802. source: "./media/characters/hind/head.svg"
  24803. }
  24804. },
  24805. },
  24806. [
  24807. {
  24808. name: "XS",
  24809. height: math.unit(0.7, "feet")
  24810. },
  24811. {
  24812. name: "Normal",
  24813. height: math.unit(7, "feet"),
  24814. default: true
  24815. },
  24816. {
  24817. name: "XL",
  24818. height: math.unit(70, "feet")
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(6, "feet"),
  24827. weight: math.unit(150, "lb"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/dylan-skaven/front.svg",
  24831. extra: 2318 / 2063,
  24832. bottom: 93.4 / 2410
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Nano",
  24839. height: math.unit(1, "mm")
  24840. },
  24841. {
  24842. name: "Micro",
  24843. height: math.unit(1, "cm")
  24844. },
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(2.1, "meters"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24854. {
  24855. front: {
  24856. height: math.unit(7 + 5 / 12, "feet"),
  24857. weight: math.unit(357, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/solex-draconov/front.svg",
  24861. extra: 1993 / 1865,
  24862. bottom: 117 / 2111
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Natural Height",
  24869. height: math.unit(7 + 5 / 12, "feet"),
  24870. default: true
  24871. },
  24872. {
  24873. name: "Macro",
  24874. height: math.unit(350, "feet")
  24875. },
  24876. {
  24877. name: "Macro+",
  24878. height: math.unit(1000, "feet")
  24879. },
  24880. {
  24881. name: "Megamacro",
  24882. height: math.unit(20, "km")
  24883. },
  24884. {
  24885. name: "Megamacro+",
  24886. height: math.unit(1000, "km")
  24887. },
  24888. {
  24889. name: "Gigamacro",
  24890. height: math.unit(2.5, "Gm")
  24891. },
  24892. {
  24893. name: "Teramacro",
  24894. height: math.unit(15, "Tm")
  24895. },
  24896. {
  24897. name: "Galactic",
  24898. height: math.unit(30, "Zm")
  24899. },
  24900. {
  24901. name: "Universal",
  24902. height: math.unit(21000, "Ym")
  24903. },
  24904. {
  24905. name: "Omniversal",
  24906. height: math.unit(9.861e50, "Ym")
  24907. },
  24908. {
  24909. name: "Existential",
  24910. height: math.unit(1e300, "meters")
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24916. {
  24917. side: {
  24918. height: math.unit(25, "feet"),
  24919. weight: math.unit(90000, "lb"),
  24920. name: "Side",
  24921. image: {
  24922. source: "./media/characters/mandarax/side.svg",
  24923. extra: 614 / 332,
  24924. bottom: 55 / 630
  24925. }
  24926. },
  24927. head: {
  24928. height: math.unit(11.4, "feet"),
  24929. name: "Head",
  24930. image: {
  24931. source: "./media/characters/mandarax/head.svg"
  24932. }
  24933. },
  24934. belly: {
  24935. height: math.unit(33, "feet"),
  24936. name: "Belly",
  24937. capacity: math.unit(500, "people"),
  24938. image: {
  24939. source: "./media/characters/mandarax/belly.svg"
  24940. }
  24941. },
  24942. dick: {
  24943. height: math.unit(8.46, "feet"),
  24944. name: "Dick",
  24945. image: {
  24946. source: "./media/characters/mandarax/dick.svg"
  24947. }
  24948. },
  24949. top: {
  24950. height: math.unit(28, "meters"),
  24951. name: "Top",
  24952. image: {
  24953. source: "./media/characters/mandarax/top.svg"
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(25, "feet"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24967. {
  24968. front: {
  24969. height: math.unit(5, "feet"),
  24970. weight: math.unit(90, "lb"),
  24971. name: "Front",
  24972. image: {
  24973. source: "./media/characters/pixil/front.svg",
  24974. extra: 2000 / 1618,
  24975. bottom: 12.3 / 2011
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Normal",
  24982. height: math.unit(5, "feet"),
  24983. default: true
  24984. },
  24985. {
  24986. name: "Megamacro",
  24987. height: math.unit(10, "miles"),
  24988. },
  24989. ]
  24990. ))
  24991. characterMakers.push(() => makeCharacter(
  24992. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24993. {
  24994. front: {
  24995. height: math.unit(7 + 2 / 12, "feet"),
  24996. weight: math.unit(200, "lb"),
  24997. name: "Front",
  24998. image: {
  24999. source: "./media/characters/angel/front.svg",
  25000. extra: 1830 / 1737,
  25001. bottom: 22.6 / 1854,
  25002. }
  25003. },
  25004. },
  25005. [
  25006. {
  25007. name: "Normal",
  25008. height: math.unit(7 + 2 / 12, "feet"),
  25009. default: true
  25010. },
  25011. {
  25012. name: "Macro",
  25013. height: math.unit(1000, "feet")
  25014. },
  25015. {
  25016. name: "Megamacro",
  25017. height: math.unit(2, "miles")
  25018. },
  25019. {
  25020. name: "Gigamacro",
  25021. height: math.unit(20, "earths")
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25027. {
  25028. front: {
  25029. height: math.unit(5, "feet"),
  25030. weight: math.unit(180, "lb"),
  25031. name: "Front",
  25032. image: {
  25033. source: "./media/characters/mekana/front.svg",
  25034. extra: 1671 / 1605,
  25035. bottom: 3.5 / 1691
  25036. }
  25037. },
  25038. side: {
  25039. height: math.unit(5, "feet"),
  25040. weight: math.unit(180, "lb"),
  25041. name: "Side",
  25042. image: {
  25043. source: "./media/characters/mekana/side.svg",
  25044. extra: 1671 / 1605,
  25045. bottom: 3.5 / 1691
  25046. }
  25047. },
  25048. back: {
  25049. height: math.unit(5, "feet"),
  25050. weight: math.unit(180, "lb"),
  25051. name: "Back",
  25052. image: {
  25053. source: "./media/characters/mekana/back.svg",
  25054. extra: 1671 / 1605,
  25055. bottom: 3.5 / 1691
  25056. }
  25057. },
  25058. },
  25059. [
  25060. {
  25061. name: "Normal",
  25062. height: math.unit(5, "feet"),
  25063. default: true
  25064. },
  25065. ]
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25069. {
  25070. front: {
  25071. height: math.unit(4 + 6 / 12, "feet"),
  25072. weight: math.unit(80, "lb"),
  25073. name: "Front",
  25074. image: {
  25075. source: "./media/characters/pixie/front.svg",
  25076. extra: 1924 / 1825,
  25077. bottom: 22.4 / 1946
  25078. }
  25079. },
  25080. },
  25081. [
  25082. {
  25083. name: "Normal",
  25084. height: math.unit(4 + 6 / 12, "feet"),
  25085. default: true
  25086. },
  25087. {
  25088. name: "Macro",
  25089. height: math.unit(40, "feet")
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(2.1, "meters"),
  25098. weight: math.unit(200, "lb"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/the-lascivious/front.svg",
  25102. extra: 1 / 0.893,
  25103. bottom: 3.5 / 573.7
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Human Scale",
  25110. height: math.unit(2.1, "meters")
  25111. },
  25112. {
  25113. name: "Wolxi Scale",
  25114. height: math.unit(46.2, "m"),
  25115. default: true
  25116. },
  25117. {
  25118. name: "Boinker of Buildings",
  25119. height: math.unit(10, "km")
  25120. },
  25121. {
  25122. name: "Shagger of Skyscrapers",
  25123. height: math.unit(40, "km")
  25124. },
  25125. {
  25126. name: "Banger of Boroughs",
  25127. height: math.unit(4000, "km")
  25128. },
  25129. {
  25130. name: "Screwer of States",
  25131. height: math.unit(100000, "km")
  25132. },
  25133. {
  25134. name: "Pounder of Planets",
  25135. height: math.unit(2000000, "km")
  25136. },
  25137. ]
  25138. ))
  25139. characterMakers.push(() => makeCharacter(
  25140. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25141. {
  25142. front: {
  25143. height: math.unit(6, "feet"),
  25144. weight: math.unit(150, "lb"),
  25145. name: "Front",
  25146. image: {
  25147. source: "./media/characters/aj/front.svg",
  25148. extra: 2039 / 1562,
  25149. bottom: 40 / 2079
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Normal",
  25156. height: math.unit(11 + 6 / 12, "feet"),
  25157. default: true
  25158. },
  25159. {
  25160. name: "Megamacro",
  25161. height: math.unit(60, "megameters")
  25162. },
  25163. ]
  25164. ))
  25165. characterMakers.push(() => makeCharacter(
  25166. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25167. {
  25168. side: {
  25169. height: math.unit(31 + 8 / 12, "feet"),
  25170. weight: math.unit(75000, "kg"),
  25171. name: "Side",
  25172. image: {
  25173. source: "./media/characters/koros/side.svg",
  25174. extra: 1442 / 1297,
  25175. bottom: 122.7 / 1562
  25176. }
  25177. },
  25178. dicksKingsCrown: {
  25179. height: math.unit(6, "feet"),
  25180. name: "Dicks (King's Crown)",
  25181. image: {
  25182. source: "./media/characters/koros/dicks-kings-crown.svg"
  25183. }
  25184. },
  25185. dicksTailSet: {
  25186. height: math.unit(3, "feet"),
  25187. name: "Dicks (Tail Set)",
  25188. image: {
  25189. source: "./media/characters/koros/dicks-tail-set.svg"
  25190. }
  25191. },
  25192. dickCumming: {
  25193. height: math.unit(7.98, "feet"),
  25194. name: "Dick (Cumming)",
  25195. image: {
  25196. source: "./media/characters/koros/dick-cumming.svg"
  25197. }
  25198. },
  25199. dicksBack: {
  25200. height: math.unit(5.9, "feet"),
  25201. name: "Dicks (Back)",
  25202. image: {
  25203. source: "./media/characters/koros/dicks-back.svg"
  25204. }
  25205. },
  25206. dicksFront: {
  25207. height: math.unit(3.72, "feet"),
  25208. name: "Dicks (Front)",
  25209. image: {
  25210. source: "./media/characters/koros/dicks-front.svg"
  25211. }
  25212. },
  25213. dicksPeeking: {
  25214. height: math.unit(3.0, "feet"),
  25215. name: "Dicks (Peeking)",
  25216. image: {
  25217. source: "./media/characters/koros/dicks-peeking.svg"
  25218. }
  25219. },
  25220. eye: {
  25221. height: math.unit(1.7, "feet"),
  25222. name: "Eye",
  25223. image: {
  25224. source: "./media/characters/koros/eye.svg"
  25225. }
  25226. },
  25227. headFront: {
  25228. height: math.unit(11.69, "feet"),
  25229. name: "Head (Front)",
  25230. image: {
  25231. source: "./media/characters/koros/head-front.svg"
  25232. }
  25233. },
  25234. headSide: {
  25235. height: math.unit(14, "feet"),
  25236. name: "Head (Side)",
  25237. image: {
  25238. source: "./media/characters/koros/head-side.svg"
  25239. }
  25240. },
  25241. leg: {
  25242. height: math.unit(17, "feet"),
  25243. name: "Leg",
  25244. image: {
  25245. source: "./media/characters/koros/leg.svg"
  25246. }
  25247. },
  25248. mawSide: {
  25249. height: math.unit(12.8, "feet"),
  25250. name: "Maw (Side)",
  25251. image: {
  25252. source: "./media/characters/koros/maw-side.svg"
  25253. }
  25254. },
  25255. mawSpitting: {
  25256. height: math.unit(17, "feet"),
  25257. name: "Maw (Spitting)",
  25258. image: {
  25259. source: "./media/characters/koros/maw-spitting.svg"
  25260. }
  25261. },
  25262. slit: {
  25263. height: math.unit(2.8, "feet"),
  25264. name: "Slit",
  25265. image: {
  25266. source: "./media/characters/koros/slit.svg"
  25267. }
  25268. },
  25269. stomach: {
  25270. height: math.unit(6.8, "feet"),
  25271. capacity: math.unit(20, "people"),
  25272. name: "Stomach",
  25273. image: {
  25274. source: "./media/characters/koros/stomach.svg"
  25275. }
  25276. },
  25277. wingspanBottom: {
  25278. height: math.unit(114, "feet"),
  25279. name: "Wingspan (Bottom)",
  25280. image: {
  25281. source: "./media/characters/koros/wingspan-bottom.svg"
  25282. }
  25283. },
  25284. wingspanTop: {
  25285. height: math.unit(104, "feet"),
  25286. name: "Wingspan (Top)",
  25287. image: {
  25288. source: "./media/characters/koros/wingspan-top.svg"
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(31 + 8 / 12, "feet"),
  25296. default: true
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(18 + 5 / 12, "feet"),
  25305. weight: math.unit(3750, "kg"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/vexx/front.svg",
  25309. extra: 426 / 396,
  25310. bottom: 31.5 / 458
  25311. }
  25312. },
  25313. maw: {
  25314. height: math.unit(6, "feet"),
  25315. name: "Maw",
  25316. image: {
  25317. source: "./media/characters/vexx/maw.svg"
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Normal",
  25324. height: math.unit(18 + 5 / 12, "feet"),
  25325. default: true
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(17 + 6 / 12, "feet"),
  25334. weight: math.unit(150, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/baadra/front.svg",
  25338. extra: 3137 / 2890,
  25339. bottom: 168.4 / 3305
  25340. }
  25341. },
  25342. back: {
  25343. height: math.unit(17 + 6 / 12, "feet"),
  25344. weight: math.unit(150, "lb"),
  25345. name: "Back",
  25346. image: {
  25347. source: "./media/characters/baadra/back.svg",
  25348. extra: 3142 / 2890,
  25349. bottom: 220 / 3371
  25350. }
  25351. },
  25352. head: {
  25353. height: math.unit(5.45, "feet"),
  25354. name: "Head",
  25355. image: {
  25356. source: "./media/characters/baadra/head.svg"
  25357. }
  25358. },
  25359. headAngry: {
  25360. height: math.unit(4.95, "feet"),
  25361. name: "Head (Angry)",
  25362. image: {
  25363. source: "./media/characters/baadra/head-angry.svg"
  25364. }
  25365. },
  25366. headOpen: {
  25367. height: math.unit(6, "feet"),
  25368. name: "Head (Open)",
  25369. image: {
  25370. source: "./media/characters/baadra/head-open.svg"
  25371. }
  25372. },
  25373. },
  25374. [
  25375. {
  25376. name: "Normal",
  25377. height: math.unit(17 + 6 / 12, "feet"),
  25378. default: true
  25379. },
  25380. ]
  25381. ))
  25382. characterMakers.push(() => makeCharacter(
  25383. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25384. {
  25385. front: {
  25386. height: math.unit(7 + 3 / 12, "feet"),
  25387. weight: math.unit(180, "lb"),
  25388. name: "Front",
  25389. image: {
  25390. source: "./media/characters/juri/front.svg",
  25391. extra: 1401 / 1237,
  25392. bottom: 18.5 / 1418
  25393. }
  25394. },
  25395. side: {
  25396. height: math.unit(7 + 3 / 12, "feet"),
  25397. weight: math.unit(180, "lb"),
  25398. name: "Side",
  25399. image: {
  25400. source: "./media/characters/juri/side.svg",
  25401. extra: 1424 / 1242,
  25402. bottom: 18.5 / 1447
  25403. }
  25404. },
  25405. sitting: {
  25406. height: math.unit(6, "feet"),
  25407. weight: math.unit(180, "lb"),
  25408. name: "Sitting",
  25409. image: {
  25410. source: "./media/characters/juri/sitting.svg",
  25411. extra: 1270 / 1143,
  25412. bottom: 100 / 1343
  25413. }
  25414. },
  25415. back: {
  25416. height: math.unit(7 + 3 / 12, "feet"),
  25417. weight: math.unit(180, "lb"),
  25418. name: "Back",
  25419. image: {
  25420. source: "./media/characters/juri/back.svg",
  25421. extra: 1377 / 1240,
  25422. bottom: 23.7 / 1405
  25423. }
  25424. },
  25425. maw: {
  25426. height: math.unit(2.8, "feet"),
  25427. name: "Maw",
  25428. image: {
  25429. source: "./media/characters/juri/maw.svg"
  25430. }
  25431. },
  25432. stomach: {
  25433. height: math.unit(0.89, "feet"),
  25434. capacity: math.unit(4, "liters"),
  25435. name: "Stomach",
  25436. image: {
  25437. source: "./media/characters/juri/stomach.svg"
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(7 + 3 / 12, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25451. {
  25452. fox: {
  25453. height: math.unit(5 + 6 / 12, "feet"),
  25454. weight: math.unit(140, "lb"),
  25455. name: "Fox",
  25456. image: {
  25457. source: "./media/characters/maxene-sita/fox.svg",
  25458. extra: 146 / 138,
  25459. bottom: 2.1 / 148.19
  25460. }
  25461. },
  25462. foxLaying: {
  25463. height: math.unit(1.70, "feet"),
  25464. weight: math.unit(140, "lb"),
  25465. name: "Fox (Laying)",
  25466. image: {
  25467. source: "./media/characters/maxene-sita/fox-laying.svg",
  25468. extra: 910 / 572,
  25469. bottom: 71 / 981
  25470. }
  25471. },
  25472. kitsune: {
  25473. height: math.unit(10, "feet"),
  25474. weight: math.unit(800, "lb"),
  25475. name: "Kitsune",
  25476. image: {
  25477. source: "./media/characters/maxene-sita/kitsune.svg",
  25478. extra: 185 / 176,
  25479. bottom: 4.7 / 189.9
  25480. }
  25481. },
  25482. hellhound: {
  25483. height: math.unit(10, "feet"),
  25484. weight: math.unit(700, "lb"),
  25485. name: "Hellhound",
  25486. image: {
  25487. source: "./media/characters/maxene-sita/hellhound.svg",
  25488. extra: 1600 / 1545,
  25489. bottom: 81 / 1681
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(5 + 6 / 12, "feet"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25503. {
  25504. front: {
  25505. height: math.unit(3 + 4 / 12, "feet"),
  25506. weight: math.unit(70, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/maia/front.svg",
  25510. extra: 227 / 219.5,
  25511. bottom: 40 / 267
  25512. }
  25513. },
  25514. back: {
  25515. height: math.unit(3 + 4 / 12, "feet"),
  25516. weight: math.unit(70, "lb"),
  25517. name: "Back",
  25518. image: {
  25519. source: "./media/characters/maia/back.svg",
  25520. extra: 237 / 225
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(3 + 4 / 12, "feet"),
  25528. default: true
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(5 + 10 / 12, "feet"),
  25537. weight: math.unit(197, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/jabaro/front.svg",
  25541. extra: 225 / 216,
  25542. bottom: 5.06 / 230
  25543. }
  25544. },
  25545. back: {
  25546. height: math.unit(5 + 10 / 12, "feet"),
  25547. weight: math.unit(197, "lb"),
  25548. name: "Back",
  25549. image: {
  25550. source: "./media/characters/jabaro/back.svg",
  25551. extra: 225 / 219,
  25552. bottom: 1.9 / 227
  25553. }
  25554. },
  25555. },
  25556. [
  25557. {
  25558. name: "Normal",
  25559. height: math.unit(5 + 10 / 12, "feet"),
  25560. default: true
  25561. },
  25562. ]
  25563. ))
  25564. characterMakers.push(() => makeCharacter(
  25565. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25566. {
  25567. front: {
  25568. height: math.unit(5 + 8 / 12, "feet"),
  25569. weight: math.unit(139, "lb"),
  25570. name: "Front",
  25571. image: {
  25572. source: "./media/characters/risa/front.svg",
  25573. extra: 270 / 260,
  25574. bottom: 11.2 / 282
  25575. }
  25576. },
  25577. back: {
  25578. height: math.unit(5 + 8 / 12, "feet"),
  25579. weight: math.unit(139, "lb"),
  25580. name: "Back",
  25581. image: {
  25582. source: "./media/characters/risa/back.svg",
  25583. extra: 264 / 255,
  25584. bottom: 4 / 268
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(5 + 8 / 12, "feet"),
  25592. default: true
  25593. },
  25594. ]
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25598. {
  25599. front: {
  25600. height: math.unit(2 + 11 / 12, "feet"),
  25601. weight: math.unit(30, "lb"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/weatley/front.svg",
  25605. bottom: 10.7 / 414,
  25606. extra: 403.5 / 362
  25607. }
  25608. },
  25609. back: {
  25610. height: math.unit(2 + 11 / 12, "feet"),
  25611. weight: math.unit(30, "lb"),
  25612. name: "Back",
  25613. image: {
  25614. source: "./media/characters/weatley/back.svg",
  25615. bottom: 10.7 / 414,
  25616. extra: 403.5 / 362
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(2 + 11 / 12, "feet"),
  25624. default: true
  25625. },
  25626. ]
  25627. ))
  25628. characterMakers.push(() => makeCharacter(
  25629. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25630. {
  25631. front: {
  25632. height: math.unit(5 + 2 / 12, "feet"),
  25633. weight: math.unit(50, "kg"),
  25634. name: "Front",
  25635. image: {
  25636. source: "./media/characters/mercury-crescent/front.svg",
  25637. extra: 1088 / 1033,
  25638. bottom: 18.9 / 1109
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(5 + 2 / 12, "feet"),
  25646. default: true
  25647. },
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25652. {
  25653. front: {
  25654. height: math.unit(2, "feet"),
  25655. weight: math.unit(15, "kg"),
  25656. name: "Front",
  25657. image: {
  25658. source: "./media/characters/diamond-jones/front.svg",
  25659. extra: 727/723,
  25660. bottom: 46/773
  25661. }
  25662. },
  25663. },
  25664. [
  25665. {
  25666. name: "Normal",
  25667. height: math.unit(2, "feet"),
  25668. default: true
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(3, "feet"),
  25677. weight: math.unit(30, "kg"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/sweet-bit/front.svg",
  25681. extra: 675 / 567,
  25682. bottom: 27.7 / 703
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(3, "feet"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25696. {
  25697. side: {
  25698. height: math.unit(9.178, "feet"),
  25699. weight: math.unit(500, "lb"),
  25700. name: "Side",
  25701. image: {
  25702. source: "./media/characters/umbrazen/side.svg",
  25703. extra: 1730 / 1473,
  25704. bottom: 34.6 / 1765
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(9.178, "feet"),
  25712. default: true
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(10, "feet"),
  25721. weight: math.unit(750, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/arlist/front.svg",
  25725. extra: 961 / 778,
  25726. bottom: 6.2 / 986
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Normal",
  25733. height: math.unit(10, "feet"),
  25734. default: true
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(5 + 1 / 12, "feet"),
  25743. weight: math.unit(110, "lb"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/aradel/front.svg",
  25747. extra: 324 / 303,
  25748. bottom: 3.6 / 329.4
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(5 + 1 / 12, "feet"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(3 + 8 / 12, "feet"),
  25765. weight: math.unit(50, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/serryn/front.svg",
  25769. extra: 1792 / 1656,
  25770. bottom: 43.5 / 1840
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(3 + 8 / 12, "feet"),
  25778. default: true
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(7 + 10 / 12, "feet"),
  25787. weight: math.unit(255, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/xavier-thyme/front.svg",
  25791. extra: 3733 / 3642,
  25792. bottom: 131 / 3869
  25793. }
  25794. },
  25795. frontRaven: {
  25796. height: math.unit(7 + 10 / 12, "feet"),
  25797. weight: math.unit(255, "lb"),
  25798. name: "Front (Raven)",
  25799. image: {
  25800. source: "./media/characters/xavier-thyme/front-raven.svg",
  25801. extra: 4385 / 3642,
  25802. bottom: 131 / 4517
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Normal",
  25809. height: math.unit(7 + 10 / 12, "feet"),
  25810. default: true
  25811. },
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(1.6, "m"),
  25819. weight: math.unit(50, "kg"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/kiki/front.svg",
  25823. extra: 4682 / 3610,
  25824. bottom: 115 / 4777
  25825. }
  25826. },
  25827. },
  25828. [
  25829. {
  25830. name: "Normal",
  25831. height: math.unit(1.6, "meters"),
  25832. default: true
  25833. },
  25834. ]
  25835. ))
  25836. characterMakers.push(() => makeCharacter(
  25837. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25838. {
  25839. front: {
  25840. height: math.unit(50, "m"),
  25841. weight: math.unit(500, "tonnes"),
  25842. name: "Front",
  25843. image: {
  25844. source: "./media/characters/ryoko/front.svg",
  25845. extra: 4632 / 3926,
  25846. bottom: 193 / 4823
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(50, "meters"),
  25854. default: true
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(30, "m"),
  25863. weight: math.unit(22, "tonnes"),
  25864. name: "Front",
  25865. image: {
  25866. source: "./media/characters/elio/front.svg",
  25867. extra: 4582 / 3720,
  25868. bottom: 236 / 4828
  25869. }
  25870. },
  25871. },
  25872. [
  25873. {
  25874. name: "Normal",
  25875. height: math.unit(30, "meters"),
  25876. default: true
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25882. {
  25883. front: {
  25884. height: math.unit(6 + 3 / 12, "feet"),
  25885. weight: math.unit(120, "lb"),
  25886. name: "Front",
  25887. image: {
  25888. source: "./media/characters/azura/front.svg",
  25889. extra: 1149 / 1135,
  25890. bottom: 45 / 1194
  25891. }
  25892. },
  25893. frontClothed: {
  25894. height: math.unit(6 + 3 / 12, "feet"),
  25895. weight: math.unit(120, "lb"),
  25896. name: "Front (Clothed)",
  25897. image: {
  25898. source: "./media/characters/azura/front-clothed.svg",
  25899. extra: 1149 / 1135,
  25900. bottom: 45 / 1194
  25901. }
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(6 + 3 / 12, "feet"),
  25908. default: true
  25909. },
  25910. {
  25911. name: "Macro",
  25912. height: math.unit(20 + 6 / 12, "feet")
  25913. },
  25914. {
  25915. name: "Megamacro",
  25916. height: math.unit(12, "miles")
  25917. },
  25918. {
  25919. name: "Gigamacro",
  25920. height: math.unit(10000, "miles")
  25921. },
  25922. {
  25923. name: "Teramacro",
  25924. height: math.unit(900000, "miles")
  25925. },
  25926. ]
  25927. ))
  25928. characterMakers.push(() => makeCharacter(
  25929. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25930. {
  25931. front: {
  25932. height: math.unit(12, "feet"),
  25933. weight: math.unit(1, "ton"),
  25934. capacity: math.unit(660000, "gallons"),
  25935. name: "Front",
  25936. image: {
  25937. source: "./media/characters/zeus/front.svg",
  25938. extra: 5005 / 4717,
  25939. bottom: 363 / 5388
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Normal",
  25946. height: math.unit(12, "feet")
  25947. },
  25948. {
  25949. name: "Preferred Size",
  25950. height: math.unit(0.5, "miles"),
  25951. default: true
  25952. },
  25953. {
  25954. name: "Giga Horse",
  25955. height: math.unit(300, "miles")
  25956. },
  25957. {
  25958. name: "Riding Planets",
  25959. height: math.unit(30, "megameters")
  25960. },
  25961. {
  25962. name: "Cosmic Giant",
  25963. height: math.unit(3, "zettameters")
  25964. },
  25965. {
  25966. name: "Breeding God",
  25967. height: math.unit(9.92e22, "yottameters")
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25973. {
  25974. side: {
  25975. height: math.unit(9, "feet"),
  25976. weight: math.unit(1500, "kg"),
  25977. name: "Side",
  25978. image: {
  25979. source: "./media/characters/fang/side.svg",
  25980. extra: 924 / 866,
  25981. bottom: 47.5 / 972.3
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(9, "feet"),
  25989. default: true
  25990. },
  25991. {
  25992. name: "Macro",
  25993. height: math.unit(75 + 6 / 12, "feet")
  25994. },
  25995. {
  25996. name: "Teramacro",
  25997. height: math.unit(50000, "miles")
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26003. {
  26004. front: {
  26005. height: math.unit(10, "feet"),
  26006. weight: math.unit(2, "tons"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/rekhit/front.svg",
  26010. extra: 2796 / 2590,
  26011. bottom: 225 / 3022
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(10, "feet"),
  26019. default: true
  26020. },
  26021. {
  26022. name: "Macro",
  26023. height: math.unit(500, "feet")
  26024. },
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26029. {
  26030. front: {
  26031. height: math.unit(7 + 6.451 / 12, "feet"),
  26032. weight: math.unit(310, "lb"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/dahlia-verrick/front.svg",
  26036. extra: 1488 / 1365,
  26037. bottom: 6.2 / 1495
  26038. }
  26039. },
  26040. back: {
  26041. height: math.unit(7 + 6.451 / 12, "feet"),
  26042. weight: math.unit(310, "lb"),
  26043. name: "Back",
  26044. image: {
  26045. source: "./media/characters/dahlia-verrick/back.svg",
  26046. extra: 1472 / 1351,
  26047. bottom: 5.28 / 1477
  26048. }
  26049. },
  26050. frontBusiness: {
  26051. height: math.unit(7 + 6.451 / 12, "feet"),
  26052. weight: math.unit(200, "lb"),
  26053. name: "Front (Business)",
  26054. image: {
  26055. source: "./media/characters/dahlia-verrick/front-business.svg",
  26056. extra: 1478 / 1381,
  26057. bottom: 5.5 / 1484
  26058. }
  26059. },
  26060. frontCasual: {
  26061. height: math.unit(7 + 6.451 / 12, "feet"),
  26062. weight: math.unit(200, "lb"),
  26063. name: "Front (Casual)",
  26064. image: {
  26065. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26066. extra: 1478 / 1381,
  26067. bottom: 5.5 / 1484
  26068. }
  26069. },
  26070. },
  26071. [
  26072. {
  26073. name: "Travel-Sized",
  26074. height: math.unit(7.45, "inches")
  26075. },
  26076. {
  26077. name: "Normal",
  26078. height: math.unit(7 + 6.451 / 12, "feet"),
  26079. default: true
  26080. },
  26081. {
  26082. name: "Hitting the Town",
  26083. height: math.unit(37 + 8 / 12, "feet")
  26084. },
  26085. {
  26086. name: "Stomp in the Suburbs",
  26087. height: math.unit(964 + 9.728 / 12, "feet")
  26088. },
  26089. {
  26090. name: "Sit on the City",
  26091. height: math.unit(61747 + 10.592 / 12, "feet")
  26092. },
  26093. {
  26094. name: "Glomp the Globe",
  26095. height: math.unit(252919327 + 4.832 / 12, "feet")
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(6 + 4 / 12, "feet"),
  26104. weight: math.unit(320, "lb"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/balina-mahigan/front.svg",
  26108. extra: 447 / 428,
  26109. bottom: 18 / 466
  26110. }
  26111. },
  26112. back: {
  26113. height: math.unit(6 + 4 / 12, "feet"),
  26114. weight: math.unit(320, "lb"),
  26115. name: "Back",
  26116. image: {
  26117. source: "./media/characters/balina-mahigan/back.svg",
  26118. extra: 445 / 428,
  26119. bottom: 4.07 / 448
  26120. }
  26121. },
  26122. arm: {
  26123. height: math.unit(1.88, "feet"),
  26124. name: "Arm",
  26125. image: {
  26126. source: "./media/characters/balina-mahigan/arm.svg"
  26127. }
  26128. },
  26129. backPort: {
  26130. height: math.unit(0.685, "feet"),
  26131. name: "Back Port",
  26132. image: {
  26133. source: "./media/characters/balina-mahigan/back-port.svg"
  26134. }
  26135. },
  26136. hoofpaw: {
  26137. height: math.unit(1.41, "feet"),
  26138. name: "Hoofpaw",
  26139. image: {
  26140. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26141. }
  26142. },
  26143. leftHandBack: {
  26144. height: math.unit(0.938, "feet"),
  26145. name: "Left Hand (Back)",
  26146. image: {
  26147. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26148. }
  26149. },
  26150. leftHandFront: {
  26151. height: math.unit(0.938, "feet"),
  26152. name: "Left Hand (Front)",
  26153. image: {
  26154. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26155. }
  26156. },
  26157. rightHandBack: {
  26158. height: math.unit(0.95, "feet"),
  26159. name: "Right Hand (Back)",
  26160. image: {
  26161. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26162. }
  26163. },
  26164. rightHandFront: {
  26165. height: math.unit(0.95, "feet"),
  26166. name: "Right Hand (Front)",
  26167. image: {
  26168. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26169. }
  26170. },
  26171. },
  26172. [
  26173. {
  26174. name: "Normal",
  26175. height: math.unit(6 + 4 / 12, "feet"),
  26176. default: true
  26177. },
  26178. ]
  26179. ))
  26180. characterMakers.push(() => makeCharacter(
  26181. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26182. {
  26183. front: {
  26184. height: math.unit(6, "feet"),
  26185. weight: math.unit(320, "lb"),
  26186. name: "Front",
  26187. image: {
  26188. source: "./media/characters/balina-mejeri/front.svg",
  26189. extra: 517 / 488,
  26190. bottom: 44.2 / 561
  26191. }
  26192. },
  26193. },
  26194. [
  26195. {
  26196. name: "Normal",
  26197. height: math.unit(6 + 4 / 12, "feet")
  26198. },
  26199. {
  26200. name: "Business",
  26201. height: math.unit(155, "feet"),
  26202. default: true
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26208. {
  26209. kneeling: {
  26210. height: math.unit(6 + 4 / 12, "feet"),
  26211. weight: math.unit(300 * 20, "lb"),
  26212. name: "Kneeling",
  26213. image: {
  26214. source: "./media/characters/balbarian/kneeling.svg",
  26215. extra: 922 / 862,
  26216. bottom: 42.4 / 965
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Normal",
  26223. height: math.unit(6 + 4 / 12, "feet")
  26224. },
  26225. {
  26226. name: "Treasured",
  26227. height: math.unit(18 + 9 / 12, "feet"),
  26228. default: true
  26229. },
  26230. {
  26231. name: "Macro",
  26232. height: math.unit(900, "feet")
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26238. {
  26239. front: {
  26240. height: math.unit(6 + 4 / 12, "feet"),
  26241. weight: math.unit(325, "lb"),
  26242. name: "Front",
  26243. image: {
  26244. source: "./media/characters/balina-amarini/front.svg",
  26245. extra: 415 / 403,
  26246. bottom: 19 / 433.4
  26247. }
  26248. },
  26249. back: {
  26250. height: math.unit(6 + 4 / 12, "feet"),
  26251. weight: math.unit(325, "lb"),
  26252. name: "Back",
  26253. image: {
  26254. source: "./media/characters/balina-amarini/back.svg",
  26255. extra: 415 / 403,
  26256. bottom: 13.5 / 432
  26257. }
  26258. },
  26259. overdrive: {
  26260. height: math.unit(6 + 4 / 12, "feet"),
  26261. weight: math.unit(400, "lb"),
  26262. name: "Overdrive",
  26263. image: {
  26264. source: "./media/characters/balina-amarini/overdrive.svg",
  26265. extra: 269 / 259,
  26266. bottom: 12 / 282
  26267. }
  26268. },
  26269. },
  26270. [
  26271. {
  26272. name: "Boom",
  26273. height: math.unit(9 + 10 / 12, "feet"),
  26274. default: true
  26275. },
  26276. {
  26277. name: "Macro",
  26278. height: math.unit(280, "feet")
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26284. {
  26285. goddess: {
  26286. height: math.unit(600, "feet"),
  26287. weight: math.unit(2000000, "tons"),
  26288. name: "Goddess",
  26289. image: {
  26290. source: "./media/characters/lady-kubwa/goddess.svg",
  26291. extra: 1240.5 / 1223,
  26292. bottom: 22 / 1263
  26293. }
  26294. },
  26295. goddesser: {
  26296. height: math.unit(900, "feet"),
  26297. weight: math.unit(20000000, "lb"),
  26298. name: "Goddess-er",
  26299. image: {
  26300. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26301. extra: 899 / 888,
  26302. bottom: 12.6 / 912
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Macro",
  26309. height: math.unit(600, "feet"),
  26310. default: true
  26311. },
  26312. {
  26313. name: "Megamacro",
  26314. height: math.unit(250, "miles")
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(7 + 7 / 12, "feet"),
  26323. weight: math.unit(250, "lb"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/tala-grovehorn/front.svg",
  26327. extra: 2636 / 2525,
  26328. bottom: 147 / 2781
  26329. }
  26330. },
  26331. back: {
  26332. height: math.unit(7 + 7 / 12, "feet"),
  26333. weight: math.unit(250, "lb"),
  26334. name: "Back",
  26335. image: {
  26336. source: "./media/characters/tala-grovehorn/back.svg",
  26337. extra: 2635 / 2539,
  26338. bottom: 100 / 2732.8
  26339. }
  26340. },
  26341. mouth: {
  26342. height: math.unit(1.15, "feet"),
  26343. name: "Mouth",
  26344. image: {
  26345. source: "./media/characters/tala-grovehorn/mouth.svg"
  26346. }
  26347. },
  26348. dick: {
  26349. height: math.unit(2.36, "feet"),
  26350. name: "Dick",
  26351. image: {
  26352. source: "./media/characters/tala-grovehorn/dick.svg"
  26353. }
  26354. },
  26355. slit: {
  26356. height: math.unit(0.61, "feet"),
  26357. name: "Slit",
  26358. image: {
  26359. source: "./media/characters/tala-grovehorn/slit.svg"
  26360. }
  26361. },
  26362. },
  26363. [
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26368. {
  26369. front: {
  26370. height: math.unit(7 + 7 / 12, "feet"),
  26371. weight: math.unit(225, "lb"),
  26372. name: "Front",
  26373. image: {
  26374. source: "./media/characters/epona/front.svg",
  26375. extra: 2445 / 2290,
  26376. bottom: 251 / 2696
  26377. }
  26378. },
  26379. back: {
  26380. height: math.unit(7 + 7 / 12, "feet"),
  26381. weight: math.unit(225, "lb"),
  26382. name: "Back",
  26383. image: {
  26384. source: "./media/characters/epona/back.svg",
  26385. extra: 2546 / 2408,
  26386. bottom: 44 / 2589
  26387. }
  26388. },
  26389. genitals: {
  26390. height: math.unit(1.5, "feet"),
  26391. name: "Genitals",
  26392. image: {
  26393. source: "./media/characters/epona/genitals.svg"
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Normal",
  26400. height: math.unit(7 + 7 / 12, "feet"),
  26401. default: true
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(7, "feet"),
  26410. weight: math.unit(518, "lb"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/avia-bloodbourn/front.svg",
  26414. extra: 1466 / 1350,
  26415. bottom: 65 / 1527
  26416. }
  26417. },
  26418. },
  26419. [
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(9.35, "feet"),
  26427. weight: math.unit(600, "lb"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/amera/front.svg",
  26431. extra: 891 / 818,
  26432. bottom: 30 / 922.7
  26433. }
  26434. },
  26435. back: {
  26436. height: math.unit(9.35, "feet"),
  26437. weight: math.unit(600, "lb"),
  26438. name: "Back",
  26439. image: {
  26440. source: "./media/characters/amera/back.svg",
  26441. extra: 876 / 824,
  26442. bottom: 6.8 / 884
  26443. }
  26444. },
  26445. dick: {
  26446. height: math.unit(2.14, "feet"),
  26447. name: "Dick",
  26448. image: {
  26449. source: "./media/characters/amera/dick.svg"
  26450. }
  26451. },
  26452. },
  26453. [
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(9.35, "feet"),
  26457. default: true
  26458. },
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26463. {
  26464. kneeling: {
  26465. height: math.unit(3 + 4 / 12, "feet"),
  26466. weight: math.unit(90, "lb"),
  26467. name: "Kneeling",
  26468. image: {
  26469. source: "./media/characters/rosewen/kneeling.svg",
  26470. extra: 1835 / 1571,
  26471. bottom: 27.7 / 1862
  26472. }
  26473. },
  26474. },
  26475. [
  26476. {
  26477. name: "Normal",
  26478. height: math.unit(3 + 4 / 12, "feet"),
  26479. default: true
  26480. },
  26481. ]
  26482. ))
  26483. characterMakers.push(() => makeCharacter(
  26484. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26485. {
  26486. front: {
  26487. height: math.unit(5 + 10 / 12, "feet"),
  26488. weight: math.unit(200, "lb"),
  26489. name: "Front",
  26490. image: {
  26491. source: "./media/characters/sabah/front.svg",
  26492. extra: 849 / 763,
  26493. bottom: 33.9 / 881
  26494. }
  26495. },
  26496. },
  26497. [
  26498. {
  26499. name: "Normal",
  26500. height: math.unit(5 + 10 / 12, "feet"),
  26501. default: true
  26502. },
  26503. ]
  26504. ))
  26505. characterMakers.push(() => makeCharacter(
  26506. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26507. {
  26508. front: {
  26509. height: math.unit(3 + 5 / 12, "feet"),
  26510. weight: math.unit(40, "kg"),
  26511. name: "Front",
  26512. image: {
  26513. source: "./media/characters/purple-flame/front.svg",
  26514. extra: 1577 / 1412,
  26515. bottom: 97 / 1694
  26516. }
  26517. },
  26518. frontDressed: {
  26519. height: math.unit(3 + 5 / 12, "feet"),
  26520. weight: math.unit(40, "kg"),
  26521. name: "Front (Dressed)",
  26522. image: {
  26523. source: "./media/characters/purple-flame/front-dressed.svg",
  26524. extra: 1577 / 1412,
  26525. bottom: 97 / 1694
  26526. }
  26527. },
  26528. headphones: {
  26529. height: math.unit(0.85, "feet"),
  26530. name: "Headphones",
  26531. image: {
  26532. source: "./media/characters/purple-flame/headphones.svg"
  26533. }
  26534. },
  26535. },
  26536. [
  26537. {
  26538. name: "Really Small",
  26539. height: math.unit(5, "cm")
  26540. },
  26541. {
  26542. name: "Micro",
  26543. height: math.unit(1 + 5 / 12, "feet")
  26544. },
  26545. {
  26546. name: "Normal",
  26547. height: math.unit(3 + 5 / 12, "feet"),
  26548. default: true
  26549. },
  26550. {
  26551. name: "Minimacro",
  26552. height: math.unit(125, "feet")
  26553. },
  26554. {
  26555. name: "Macro",
  26556. height: math.unit(0.5, "miles")
  26557. },
  26558. {
  26559. name: "Megamacro",
  26560. height: math.unit(50, "miles")
  26561. },
  26562. {
  26563. name: "Gigantic",
  26564. height: math.unit(750, "miles")
  26565. },
  26566. {
  26567. name: "Planetary",
  26568. height: math.unit(15000, "miles")
  26569. },
  26570. ]
  26571. ))
  26572. characterMakers.push(() => makeCharacter(
  26573. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26574. {
  26575. front: {
  26576. height: math.unit(14, "feet"),
  26577. weight: math.unit(959, "lb"),
  26578. name: "Front",
  26579. image: {
  26580. source: "./media/characters/arsenal/front.svg",
  26581. extra: 2357 / 2157,
  26582. bottom: 93 / 2458
  26583. }
  26584. },
  26585. },
  26586. [
  26587. {
  26588. name: "Normal",
  26589. height: math.unit(14, "feet"),
  26590. default: true
  26591. },
  26592. ]
  26593. ))
  26594. characterMakers.push(() => makeCharacter(
  26595. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26596. {
  26597. front: {
  26598. height: math.unit(6, "feet"),
  26599. weight: math.unit(150, "lb"),
  26600. name: "Front",
  26601. image: {
  26602. source: "./media/characters/adira/front.svg",
  26603. extra: 1078 / 1029,
  26604. bottom: 87 / 1166
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Micro",
  26611. height: math.unit(4, "inches"),
  26612. default: true
  26613. },
  26614. {
  26615. name: "Macro",
  26616. height: math.unit(50, "feet")
  26617. },
  26618. ]
  26619. ))
  26620. characterMakers.push(() => makeCharacter(
  26621. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26622. {
  26623. front: {
  26624. height: math.unit(16, "feet"),
  26625. weight: math.unit(1000, "lb"),
  26626. name: "Front",
  26627. image: {
  26628. source: "./media/characters/grim/front.svg",
  26629. extra: 622 / 614,
  26630. bottom: 18.1 / 642
  26631. }
  26632. },
  26633. back: {
  26634. height: math.unit(16, "feet"),
  26635. weight: math.unit(1000, "lb"),
  26636. name: "Back",
  26637. image: {
  26638. source: "./media/characters/grim/back.svg",
  26639. extra: 610.6 / 602,
  26640. bottom: 40.8 / 652
  26641. }
  26642. },
  26643. hunched: {
  26644. height: math.unit(9.75, "feet"),
  26645. weight: math.unit(1000, "lb"),
  26646. name: "Hunched",
  26647. image: {
  26648. source: "./media/characters/grim/hunched.svg",
  26649. extra: 304 / 297,
  26650. bottom: 35.4 / 394
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Normal",
  26657. height: math.unit(16, "feet"),
  26658. default: true
  26659. },
  26660. ]
  26661. ))
  26662. characterMakers.push(() => makeCharacter(
  26663. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26664. {
  26665. front: {
  26666. height: math.unit(2.3, "meters"),
  26667. weight: math.unit(300, "lb"),
  26668. name: "Front",
  26669. image: {
  26670. source: "./media/characters/sinja/front-sfw.svg",
  26671. extra: 1393 / 1294,
  26672. bottom: 70 / 1463
  26673. }
  26674. },
  26675. frontNsfw: {
  26676. height: math.unit(2.3, "meters"),
  26677. weight: math.unit(300, "lb"),
  26678. name: "Front (NSFW)",
  26679. image: {
  26680. source: "./media/characters/sinja/front-nsfw.svg",
  26681. extra: 1393 / 1294,
  26682. bottom: 70 / 1463
  26683. }
  26684. },
  26685. back: {
  26686. height: math.unit(2.3, "meters"),
  26687. weight: math.unit(300, "lb"),
  26688. name: "Back",
  26689. image: {
  26690. source: "./media/characters/sinja/back.svg",
  26691. extra: 1393 / 1294,
  26692. bottom: 70 / 1463
  26693. }
  26694. },
  26695. head: {
  26696. height: math.unit(1.771, "feet"),
  26697. name: "Head",
  26698. image: {
  26699. source: "./media/characters/sinja/head.svg"
  26700. }
  26701. },
  26702. slit: {
  26703. height: math.unit(0.8, "feet"),
  26704. name: "Slit",
  26705. image: {
  26706. source: "./media/characters/sinja/slit.svg"
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(2.3, "meters")
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(91, "meters"),
  26718. default: true
  26719. },
  26720. {
  26721. name: "Megamacro",
  26722. height: math.unit(91440, "meters")
  26723. },
  26724. {
  26725. name: "Gigamacro",
  26726. height: math.unit(60960000, "meters")
  26727. },
  26728. {
  26729. name: "Teramacro",
  26730. height: math.unit(9144000000, "meters")
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(1.7, "meters"),
  26739. weight: math.unit(130, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/kyu/front.svg",
  26743. extra: 415 / 395,
  26744. bottom: 5 / 420
  26745. }
  26746. },
  26747. head: {
  26748. height: math.unit(1.75, "feet"),
  26749. name: "Head",
  26750. image: {
  26751. source: "./media/characters/kyu/head.svg"
  26752. }
  26753. },
  26754. foot: {
  26755. height: math.unit(0.81, "feet"),
  26756. name: "Foot",
  26757. image: {
  26758. source: "./media/characters/kyu/foot.svg"
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(1.7, "meters")
  26766. },
  26767. {
  26768. name: "Macro",
  26769. height: math.unit(131, "feet"),
  26770. default: true
  26771. },
  26772. {
  26773. name: "Megamacro",
  26774. height: math.unit(91440, "meters")
  26775. },
  26776. {
  26777. name: "Gigamacro",
  26778. height: math.unit(60960000, "meters")
  26779. },
  26780. {
  26781. name: "Teramacro",
  26782. height: math.unit(9144000000, "meters")
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(7 + 1 / 12, "feet"),
  26791. weight: math.unit(250, "lb"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/joey/front.svg",
  26795. extra: 1791 / 1537,
  26796. bottom: 28 / 1816
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Micro",
  26803. height: math.unit(3, "inches")
  26804. },
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(7 + 1 / 12, "feet"),
  26808. default: true
  26809. },
  26810. ]
  26811. ))
  26812. characterMakers.push(() => makeCharacter(
  26813. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26814. {
  26815. front: {
  26816. height: math.unit(165, "cm"),
  26817. weight: math.unit(140, "lb"),
  26818. name: "Front",
  26819. image: {
  26820. source: "./media/characters/sam-evans/front.svg",
  26821. extra: 3417 / 3230,
  26822. bottom: 41.3 / 3417
  26823. }
  26824. },
  26825. frontSixTails: {
  26826. height: math.unit(165, "cm"),
  26827. weight: math.unit(140, "lb"),
  26828. name: "Front-six-tails",
  26829. image: {
  26830. source: "./media/characters/sam-evans/front-six-tails.svg",
  26831. extra: 3417 / 3230,
  26832. bottom: 41.3 / 3417
  26833. }
  26834. },
  26835. back: {
  26836. height: math.unit(165, "cm"),
  26837. weight: math.unit(140, "lb"),
  26838. name: "Back",
  26839. image: {
  26840. source: "./media/characters/sam-evans/back.svg",
  26841. extra: 3227 / 3032,
  26842. bottom: 6.8 / 3234
  26843. }
  26844. },
  26845. face: {
  26846. height: math.unit(0.68, "feet"),
  26847. name: "Face",
  26848. image: {
  26849. source: "./media/characters/sam-evans/face.svg"
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(165, "cm"),
  26857. default: true
  26858. },
  26859. {
  26860. name: "Macro",
  26861. height: math.unit(100, "meters")
  26862. },
  26863. {
  26864. name: "Macro+",
  26865. height: math.unit(800, "meters")
  26866. },
  26867. {
  26868. name: "Macro++",
  26869. height: math.unit(3, "km")
  26870. },
  26871. {
  26872. name: "Macro+++",
  26873. height: math.unit(30, "km")
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(10, "feet"),
  26882. weight: math.unit(750, "lb"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/juliet-a/front.svg",
  26886. extra: 1766 / 1720,
  26887. bottom: 43 / 1809
  26888. }
  26889. },
  26890. back: {
  26891. height: math.unit(10, "feet"),
  26892. weight: math.unit(750, "lb"),
  26893. name: "Back",
  26894. image: {
  26895. source: "./media/characters/juliet-a/back.svg",
  26896. extra: 1781 / 1734,
  26897. bottom: 35 / 1810,
  26898. }
  26899. },
  26900. },
  26901. [
  26902. {
  26903. name: "Normal",
  26904. height: math.unit(10, "feet"),
  26905. default: true
  26906. },
  26907. {
  26908. name: "Dragon Form",
  26909. height: math.unit(250, "feet")
  26910. },
  26911. {
  26912. name: "Macro",
  26913. height: math.unit(1000, "feet")
  26914. },
  26915. {
  26916. name: "Megamacro",
  26917. height: math.unit(10000, "feet")
  26918. }
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26923. {
  26924. regular: {
  26925. height: math.unit(7 + 3 / 12, "feet"),
  26926. weight: math.unit(260, "lb"),
  26927. name: "Regular",
  26928. image: {
  26929. source: "./media/characters/wild/regular.svg",
  26930. extra: 97.45 / 92,
  26931. bottom: 6.8 / 104.3
  26932. }
  26933. },
  26934. biggums: {
  26935. height: math.unit(8 + 6 / 12, "feet"),
  26936. weight: math.unit(425, "lb"),
  26937. name: "Biggums",
  26938. image: {
  26939. source: "./media/characters/wild/biggums.svg",
  26940. extra: 97.45 / 92,
  26941. bottom: 7.5 / 132.34
  26942. }
  26943. },
  26944. mawRegular: {
  26945. height: math.unit(1.24, "feet"),
  26946. name: "Maw (Regular)",
  26947. image: {
  26948. source: "./media/characters/wild/maw.svg"
  26949. }
  26950. },
  26951. mawBiggums: {
  26952. height: math.unit(1.47, "feet"),
  26953. name: "Maw (Biggums)",
  26954. image: {
  26955. source: "./media/characters/wild/maw.svg"
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(7 + 3 / 12, "feet"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26969. {
  26970. front: {
  26971. height: math.unit(2.5, "meters"),
  26972. weight: math.unit(200, "kg"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/vidar/front.svg",
  26976. extra: 2994 / 2795,
  26977. bottom: 56 / 3061
  26978. }
  26979. },
  26980. back: {
  26981. height: math.unit(2.5, "meters"),
  26982. weight: math.unit(200, "kg"),
  26983. name: "Back",
  26984. image: {
  26985. source: "./media/characters/vidar/back.svg",
  26986. extra: 3131 / 2928,
  26987. bottom: 13.5 / 3141.5
  26988. }
  26989. },
  26990. feral: {
  26991. height: math.unit(2.5, "meters"),
  26992. weight: math.unit(2000, "kg"),
  26993. name: "Feral",
  26994. image: {
  26995. source: "./media/characters/vidar/feral.svg",
  26996. extra: 2790 / 1765,
  26997. bottom: 6 / 2796
  26998. }
  26999. },
  27000. },
  27001. [
  27002. {
  27003. name: "Normal",
  27004. height: math.unit(2.5, "meters"),
  27005. default: true
  27006. },
  27007. {
  27008. name: "Macro",
  27009. height: math.unit(100, "meters")
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(5 + 9 / 12, "feet"),
  27018. weight: math.unit(120, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/ash/front.svg",
  27022. extra: 2189 / 1961,
  27023. bottom: 5.2 / 2194
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(5 + 9 / 12, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(9, "feet"),
  27040. weight: math.unit(10000, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/gygabite/front.svg",
  27044. bottom: 31.7 / 537.8,
  27045. extra: 505 / 370
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(9, "feet"),
  27053. default: true
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27059. {
  27060. front: {
  27061. height: math.unit(12, "feet"),
  27062. weight: math.unit(35000, "lb"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/p0tat0/front.svg",
  27066. extra: 1065 / 921,
  27067. bottom: 55.7 / 1121.25
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(12, "feet"),
  27075. default: true
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27081. {
  27082. side: {
  27083. height: math.unit(6.5, "feet"),
  27084. weight: math.unit(800, "lb"),
  27085. name: "Side",
  27086. image: {
  27087. source: "./media/characters/dusk/side.svg",
  27088. extra: 615 / 373,
  27089. bottom: 53 / 664
  27090. }
  27091. },
  27092. sitting: {
  27093. height: math.unit(7, "feet"),
  27094. weight: math.unit(800, "lb"),
  27095. name: "Sitting",
  27096. image: {
  27097. source: "./media/characters/dusk/sitting.svg",
  27098. extra: 753 / 425,
  27099. bottom: 33 / 774
  27100. }
  27101. },
  27102. head: {
  27103. height: math.unit(6.1, "feet"),
  27104. name: "Head",
  27105. image: {
  27106. source: "./media/characters/dusk/head.svg"
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(7, "feet"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(15, "feet"),
  27123. weight: math.unit(7000, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/jay-direwolf/front.svg",
  27127. extra: 1810 / 1732,
  27128. bottom: 66 / 1892
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Normal",
  27135. height: math.unit(15, "feet"),
  27136. default: true
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27142. {
  27143. front: {
  27144. height: math.unit(4 + 9 / 12, "feet"),
  27145. weight: math.unit(130, "lb"),
  27146. name: "Front",
  27147. image: {
  27148. source: "./media/characters/anchovie/front.svg",
  27149. extra: 382 / 350,
  27150. bottom: 25 / 409
  27151. }
  27152. },
  27153. back: {
  27154. height: math.unit(4 + 9 / 12, "feet"),
  27155. weight: math.unit(130, "lb"),
  27156. name: "Back",
  27157. image: {
  27158. source: "./media/characters/anchovie/back.svg",
  27159. extra: 385 / 352,
  27160. bottom: 16.6 / 402
  27161. }
  27162. },
  27163. frontDressed: {
  27164. height: math.unit(4 + 9 / 12, "feet"),
  27165. weight: math.unit(130, "lb"),
  27166. name: "Front (Dressed)",
  27167. image: {
  27168. source: "./media/characters/anchovie/front-dressed.svg",
  27169. extra: 382 / 350,
  27170. bottom: 25 / 409
  27171. }
  27172. },
  27173. backDressed: {
  27174. height: math.unit(4 + 9 / 12, "feet"),
  27175. weight: math.unit(130, "lb"),
  27176. name: "Back (Dressed)",
  27177. image: {
  27178. source: "./media/characters/anchovie/back-dressed.svg",
  27179. extra: 385 / 352,
  27180. bottom: 16.6 / 402
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Micro",
  27187. height: math.unit(6.4, "inches")
  27188. },
  27189. {
  27190. name: "Normal",
  27191. height: math.unit(4 + 9 / 12, "feet"),
  27192. default: true
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27198. {
  27199. front: {
  27200. height: math.unit(2, "meters"),
  27201. weight: math.unit(180, "lb"),
  27202. name: "Front",
  27203. image: {
  27204. source: "./media/characters/acidrenamon/front.svg",
  27205. extra: 987 / 890,
  27206. bottom: 22.8 / 1009
  27207. }
  27208. },
  27209. back: {
  27210. height: math.unit(2, "meters"),
  27211. weight: math.unit(180, "lb"),
  27212. name: "Back",
  27213. image: {
  27214. source: "./media/characters/acidrenamon/back.svg",
  27215. extra: 983 / 891,
  27216. bottom: 8.4 / 992
  27217. }
  27218. },
  27219. head: {
  27220. height: math.unit(1.92, "feet"),
  27221. name: "Head",
  27222. image: {
  27223. source: "./media/characters/acidrenamon/head.svg"
  27224. }
  27225. },
  27226. rump: {
  27227. height: math.unit(1.72, "feet"),
  27228. name: "Rump",
  27229. image: {
  27230. source: "./media/characters/acidrenamon/rump.svg"
  27231. }
  27232. },
  27233. tail: {
  27234. height: math.unit(4.2, "feet"),
  27235. name: "Tail",
  27236. image: {
  27237. source: "./media/characters/acidrenamon/tail.svg"
  27238. }
  27239. },
  27240. },
  27241. [
  27242. {
  27243. name: "Normal",
  27244. height: math.unit(2, "meters"),
  27245. default: true
  27246. },
  27247. {
  27248. name: "Minimacro",
  27249. height: math.unit(7, "meters")
  27250. },
  27251. {
  27252. name: "Macro",
  27253. height: math.unit(200, "meters")
  27254. },
  27255. {
  27256. name: "Gigamacro",
  27257. height: math.unit(0.2, "earths")
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(6, "feet"),
  27266. weight: math.unit(150, "lb"),
  27267. name: "Front",
  27268. image: {
  27269. source: "./media/characters/kenzie-lee/front.svg",
  27270. extra: 1525 / 1465,
  27271. bottom: 45 / 1570
  27272. }
  27273. },
  27274. side: {
  27275. height: math.unit(6, "feet"),
  27276. weight: math.unit(150, "lb"),
  27277. name: "Side",
  27278. image: {
  27279. source: "./media/characters/kenzie-lee/side.svg",
  27280. extra: 5505 / 5383,
  27281. bottom: 60 / 5573
  27282. }
  27283. },
  27284. paw: {
  27285. height: math.unit(0.57, "feet"),
  27286. name: "Paw",
  27287. image: {
  27288. source: "./media/characters/kenzie-lee/paw.svg"
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(152, "feet"),
  27296. default: true
  27297. },
  27298. {
  27299. name: "Megamacro",
  27300. height: math.unit(7, "miles")
  27301. },
  27302. {
  27303. name: "Gigamacro",
  27304. height: math.unit(8000, "miles")
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27310. {
  27311. side: {
  27312. height: math.unit(6, "feet"),
  27313. weight: math.unit(150, "lb"),
  27314. name: "Side",
  27315. image: {
  27316. source: "./media/characters/withers/side.svg",
  27317. extra: 1830 / 1728,
  27318. bottom: 96 / 1927
  27319. }
  27320. },
  27321. front: {
  27322. height: math.unit(6, "feet"),
  27323. weight: math.unit(150, "lb"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/withers/front.svg",
  27327. extra: 1514 / 1438,
  27328. bottom: 118 / 1632
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Macro",
  27335. height: math.unit(168, "feet"),
  27336. default: true
  27337. },
  27338. {
  27339. name: "Megamacro",
  27340. height: math.unit(15, "miles")
  27341. }
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(6 + 7 / 12, "feet"),
  27349. weight: math.unit(250, "lb"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/nemoskii/front.svg",
  27353. extra: 2270 / 1734,
  27354. bottom: 86 / 2354
  27355. }
  27356. },
  27357. back: {
  27358. height: math.unit(6 + 7 / 12, "feet"),
  27359. weight: math.unit(250, "lb"),
  27360. name: "Back",
  27361. image: {
  27362. source: "./media/characters/nemoskii/back.svg",
  27363. extra: 1845 / 1788,
  27364. bottom: 10.5 / 1852
  27365. }
  27366. },
  27367. head: {
  27368. height: math.unit(1.31, "feet"),
  27369. name: "Head",
  27370. image: {
  27371. source: "./media/characters/nemoskii/head.svg"
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Micro",
  27378. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27379. },
  27380. {
  27381. name: "Normal",
  27382. height: math.unit(6 + 7 / 12, "feet"),
  27383. default: true
  27384. },
  27385. {
  27386. name: "Macro",
  27387. height: math.unit((6 + 7 / 12) * 150, "feet")
  27388. },
  27389. {
  27390. name: "Macro+",
  27391. height: math.unit((6 + 7 / 12) * 500, "feet")
  27392. },
  27393. {
  27394. name: "Megamacro",
  27395. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27396. },
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(1, "mile"),
  27404. weight: math.unit(265261.9, "lb"),
  27405. name: "Front",
  27406. image: {
  27407. source: "./media/characters/shui/front.svg",
  27408. extra: 1633 / 1564,
  27409. bottom: 91.5 / 1726
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Macro",
  27416. height: math.unit(1, "mile"),
  27417. default: true
  27418. },
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27423. {
  27424. front: {
  27425. height: math.unit(12 + 6 / 12, "feet"),
  27426. weight: math.unit(1342, "lb"),
  27427. name: "Front",
  27428. image: {
  27429. source: "./media/characters/arokh-takakura/front.svg",
  27430. extra: 1089 / 1043,
  27431. bottom: 77.4 / 1176.7
  27432. }
  27433. },
  27434. back: {
  27435. height: math.unit(12 + 6 / 12, "feet"),
  27436. weight: math.unit(1342, "lb"),
  27437. name: "Back",
  27438. image: {
  27439. source: "./media/characters/arokh-takakura/back.svg",
  27440. extra: 1046 / 1019,
  27441. bottom: 102 / 1150
  27442. }
  27443. },
  27444. },
  27445. [
  27446. {
  27447. name: "Big",
  27448. height: math.unit(12 + 6 / 12, "feet"),
  27449. default: true
  27450. },
  27451. ]
  27452. ))
  27453. characterMakers.push(() => makeCharacter(
  27454. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27455. {
  27456. front: {
  27457. height: math.unit(5 + 6 / 12, "feet"),
  27458. weight: math.unit(150, "lb"),
  27459. name: "Front",
  27460. image: {
  27461. source: "./media/characters/theo/front.svg",
  27462. extra: 1184 / 1131,
  27463. bottom: 7.4 / 1191
  27464. }
  27465. },
  27466. },
  27467. [
  27468. {
  27469. name: "Micro",
  27470. height: math.unit(5, "inches")
  27471. },
  27472. {
  27473. name: "Normal",
  27474. height: math.unit(5 + 6 / 12, "feet"),
  27475. default: true
  27476. },
  27477. ]
  27478. ))
  27479. characterMakers.push(() => makeCharacter(
  27480. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27481. {
  27482. front: {
  27483. height: math.unit(5 + 9 / 12, "feet"),
  27484. weight: math.unit(130, "lb"),
  27485. name: "Front",
  27486. image: {
  27487. source: "./media/characters/cecelia-swift/front.svg",
  27488. extra: 502 / 484,
  27489. bottom: 23 / 523
  27490. }
  27491. },
  27492. back: {
  27493. height: math.unit(5 + 9 / 12, "feet"),
  27494. weight: math.unit(130, "lb"),
  27495. name: "Back",
  27496. image: {
  27497. source: "./media/characters/cecelia-swift/back.svg",
  27498. extra: 499 / 485,
  27499. bottom: 12 / 511
  27500. }
  27501. },
  27502. head: {
  27503. height: math.unit(0.90, "feet"),
  27504. name: "Head",
  27505. image: {
  27506. source: "./media/characters/cecelia-swift/head.svg"
  27507. }
  27508. },
  27509. rump: {
  27510. height: math.unit(1.75, "feet"),
  27511. name: "Rump",
  27512. image: {
  27513. source: "./media/characters/cecelia-swift/rump.svg"
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(5 + 9 / 12, "feet"),
  27521. default: true
  27522. },
  27523. {
  27524. name: "Big",
  27525. height: math.unit(50, "feet")
  27526. },
  27527. {
  27528. name: "Macro",
  27529. height: math.unit(100, "feet")
  27530. },
  27531. {
  27532. name: "Macro+",
  27533. height: math.unit(500, "feet")
  27534. },
  27535. {
  27536. name: "Macro++",
  27537. height: math.unit(1000, "feet")
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27543. {
  27544. front: {
  27545. height: math.unit(6, "feet"),
  27546. weight: math.unit(150, "lb"),
  27547. name: "Front",
  27548. image: {
  27549. source: "./media/characters/kaunan/front.svg",
  27550. extra: 2890 / 2523,
  27551. bottom: 49 / 2939
  27552. }
  27553. },
  27554. },
  27555. [
  27556. {
  27557. name: "Macro",
  27558. height: math.unit(150, "feet"),
  27559. default: true
  27560. },
  27561. ]
  27562. ))
  27563. characterMakers.push(() => makeCharacter(
  27564. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27565. {
  27566. front: {
  27567. height: math.unit(175, "cm"),
  27568. weight: math.unit(60, "kg"),
  27569. name: "Front",
  27570. image: {
  27571. source: "./media/characters/fei/front.svg",
  27572. extra: 1873/1723,
  27573. bottom: 53/1926
  27574. }
  27575. },
  27576. },
  27577. [
  27578. {
  27579. name: "Mortal",
  27580. height: math.unit(175, "cm")
  27581. },
  27582. {
  27583. name: "Normal",
  27584. height: math.unit(3500, "m"),
  27585. default: true
  27586. },
  27587. {
  27588. name: "Stroll",
  27589. height: math.unit(17.5, "km")
  27590. },
  27591. {
  27592. name: "Showoff",
  27593. height: math.unit(175, "km")
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27599. {
  27600. front: {
  27601. height: math.unit(7, "feet"),
  27602. weight: math.unit(1000, "kg"),
  27603. name: "Front",
  27604. image: {
  27605. source: "./media/characters/edrax/front.svg",
  27606. extra: 2838 / 2550,
  27607. bottom: 130 / 2968
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Small",
  27614. height: math.unit(7, "feet")
  27615. },
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(1500, "meters")
  27619. },
  27620. {
  27621. name: "Mega",
  27622. height: math.unit(12000000, "km"),
  27623. default: true
  27624. },
  27625. {
  27626. name: "Megamacro",
  27627. height: math.unit(10600000, "lightyears")
  27628. },
  27629. {
  27630. name: "Hypermacro",
  27631. height: math.unit(256, "yottameters")
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27637. {
  27638. front: {
  27639. height: math.unit(10, "feet"),
  27640. weight: math.unit(750, "lb"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/clove/front.svg",
  27644. extra: 2031 / 1860,
  27645. bottom: 47.8 / 2080
  27646. }
  27647. },
  27648. back: {
  27649. height: math.unit(10, "feet"),
  27650. weight: math.unit(750, "lb"),
  27651. name: "Back",
  27652. image: {
  27653. source: "./media/characters/clove/back.svg",
  27654. extra: 2025 / 1859,
  27655. bottom: 46 / 2071
  27656. }
  27657. },
  27658. },
  27659. [
  27660. {
  27661. name: "Normal",
  27662. height: math.unit(10, "feet"),
  27663. default: true
  27664. },
  27665. ]
  27666. ))
  27667. characterMakers.push(() => makeCharacter(
  27668. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27669. {
  27670. front: {
  27671. height: math.unit(4, "feet"),
  27672. weight: math.unit(50, "lb"),
  27673. name: "Front",
  27674. image: {
  27675. source: "./media/characters/alex-rabbit/front.svg",
  27676. extra: 507 / 458,
  27677. bottom: 18.5 / 527
  27678. }
  27679. },
  27680. back: {
  27681. height: math.unit(4, "feet"),
  27682. weight: math.unit(50, "lb"),
  27683. name: "Back",
  27684. image: {
  27685. source: "./media/characters/alex-rabbit/back.svg",
  27686. extra: 502 / 460,
  27687. bottom: 18.9 / 521
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(4, "feet"),
  27695. default: true
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27701. {
  27702. front: {
  27703. height: math.unit(1 + 3 / 12, "feet"),
  27704. weight: math.unit(80, "lb"),
  27705. name: "Front",
  27706. image: {
  27707. source: "./media/characters/zander-rose/front.svg",
  27708. extra: 916 / 797,
  27709. bottom: 17 / 933
  27710. }
  27711. },
  27712. back: {
  27713. height: math.unit(1 + 3 / 12, "feet"),
  27714. weight: math.unit(80, "lb"),
  27715. name: "Back",
  27716. image: {
  27717. source: "./media/characters/zander-rose/back.svg",
  27718. extra: 903 / 779,
  27719. bottom: 31 / 934
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(1 + 3 / 12, "feet"),
  27727. default: true
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27733. {
  27734. anthro: {
  27735. height: math.unit(6, "feet"),
  27736. weight: math.unit(150, "lb"),
  27737. name: "Anthro",
  27738. image: {
  27739. source: "./media/characters/razz/anthro.svg",
  27740. extra: 1437 / 1343,
  27741. bottom: 48 / 1485
  27742. }
  27743. },
  27744. feral: {
  27745. height: math.unit(6, "feet"),
  27746. weight: math.unit(150, "lb"),
  27747. name: "Feral",
  27748. image: {
  27749. source: "./media/characters/razz/feral.svg",
  27750. extra: 2569 / 1385,
  27751. bottom: 95 / 2664
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Normal",
  27758. height: math.unit(6, "feet"),
  27759. default: true
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27765. {
  27766. front: {
  27767. height: math.unit(9 + 4 / 12, "feet"),
  27768. weight: math.unit(500, "lb"),
  27769. name: "Front",
  27770. image: {
  27771. source: "./media/characters/morrigan/front.svg",
  27772. extra: 2707 / 2579,
  27773. bottom: 156 / 2863
  27774. }
  27775. },
  27776. },
  27777. [
  27778. {
  27779. name: "Normal",
  27780. height: math.unit(9 + 4 / 12, "feet"),
  27781. default: true
  27782. },
  27783. ]
  27784. ))
  27785. characterMakers.push(() => makeCharacter(
  27786. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27787. {
  27788. front: {
  27789. height: math.unit(5, "stories"),
  27790. weight: math.unit(4000, "lb"),
  27791. name: "Front",
  27792. image: {
  27793. source: "./media/characters/jenene/front.svg",
  27794. extra: 1780 / 1710,
  27795. bottom: 57 / 1837
  27796. }
  27797. },
  27798. },
  27799. [
  27800. {
  27801. name: "Normal",
  27802. height: math.unit(5, "stories"),
  27803. default: true
  27804. },
  27805. ]
  27806. ))
  27807. characterMakers.push(() => makeCharacter(
  27808. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27809. {
  27810. taurSfw: {
  27811. height: math.unit(10, "meters"),
  27812. weight: math.unit(17500, "kg"),
  27813. name: "Taur",
  27814. image: {
  27815. source: "./media/characters/faey/taur-sfw.svg",
  27816. extra: 1200 / 968,
  27817. bottom: 41 / 1241
  27818. }
  27819. },
  27820. chestmaw: {
  27821. height: math.unit(2.01, "meters"),
  27822. name: "Chestmaw",
  27823. image: {
  27824. source: "./media/characters/faey/chestmaw.svg"
  27825. }
  27826. },
  27827. foot: {
  27828. height: math.unit(2.43, "meters"),
  27829. name: "Foot",
  27830. image: {
  27831. source: "./media/characters/faey/foot.svg"
  27832. }
  27833. },
  27834. jaws: {
  27835. height: math.unit(1.66, "meters"),
  27836. name: "Jaws",
  27837. image: {
  27838. source: "./media/characters/faey/jaws.svg"
  27839. }
  27840. },
  27841. tongues: {
  27842. height: math.unit(2.01, "meters"),
  27843. name: "Tongues",
  27844. image: {
  27845. source: "./media/characters/faey/tongues.svg"
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Small",
  27852. height: math.unit(10, "meters"),
  27853. default: true
  27854. },
  27855. {
  27856. name: "Big",
  27857. height: math.unit(500000, "km")
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(7, "feet"),
  27866. weight: math.unit(275, "lb"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/roku/front.svg",
  27870. extra: 903 / 878,
  27871. bottom: 37 / 940
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(7, "feet"),
  27879. default: true
  27880. },
  27881. {
  27882. name: "Macro",
  27883. height: math.unit(500, "feet")
  27884. },
  27885. {
  27886. name: "Megamacro",
  27887. height: math.unit(200, "miles")
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27893. {
  27894. front: {
  27895. height: math.unit(6 + 2 / 12, "feet"),
  27896. weight: math.unit(150, "lb"),
  27897. name: "Front",
  27898. image: {
  27899. source: "./media/characters/lira/front.svg",
  27900. extra: 1727 / 1605,
  27901. bottom: 26 / 1753
  27902. }
  27903. },
  27904. back: {
  27905. height: math.unit(6 + 2 / 12, "feet"),
  27906. weight: math.unit(150, "lb"),
  27907. name: "Back",
  27908. image: {
  27909. source: "./media/characters/lira/back.svg",
  27910. extra: 1713/1621,
  27911. bottom: 20/1733
  27912. }
  27913. },
  27914. hand: {
  27915. height: math.unit(0.75, "feet"),
  27916. name: "Hand",
  27917. image: {
  27918. source: "./media/characters/lira/hand.svg"
  27919. }
  27920. },
  27921. maw: {
  27922. height: math.unit(0.65, "feet"),
  27923. name: "Maw",
  27924. image: {
  27925. source: "./media/characters/lira/maw.svg"
  27926. }
  27927. },
  27928. pawDigi: {
  27929. height: math.unit(1.6, "feet"),
  27930. name: "Paw Digi",
  27931. image: {
  27932. source: "./media/characters/lira/paw-digi.svg"
  27933. }
  27934. },
  27935. pawPlanti: {
  27936. height: math.unit(1.4, "feet"),
  27937. name: "Paw Planti",
  27938. image: {
  27939. source: "./media/characters/lira/paw-planti.svg"
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Normal",
  27946. height: math.unit(6 + 2 / 12, "feet"),
  27947. default: true
  27948. },
  27949. {
  27950. name: "Macro",
  27951. height: math.unit(100, "feet")
  27952. },
  27953. {
  27954. name: "Macro²",
  27955. height: math.unit(1600, "feet")
  27956. },
  27957. {
  27958. name: "Planetary",
  27959. height: math.unit(20, "earths")
  27960. },
  27961. ]
  27962. ))
  27963. characterMakers.push(() => makeCharacter(
  27964. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27965. {
  27966. front: {
  27967. height: math.unit(6, "feet"),
  27968. weight: math.unit(150, "lb"),
  27969. name: "Front",
  27970. image: {
  27971. source: "./media/characters/hadjet/front.svg",
  27972. extra: 1480 / 1346,
  27973. bottom: 26 / 1506
  27974. }
  27975. },
  27976. frontNsfw: {
  27977. height: math.unit(6, "feet"),
  27978. weight: math.unit(150, "lb"),
  27979. name: "Front (NSFW)",
  27980. image: {
  27981. source: "./media/characters/hadjet/front-nsfw.svg",
  27982. extra: 1440 / 1358,
  27983. bottom: 52 / 1492
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Macro",
  27990. height: math.unit(10, "stories"),
  27991. default: true
  27992. },
  27993. {
  27994. name: "Megamacro",
  27995. height: math.unit(1.5, "miles")
  27996. },
  27997. {
  27998. name: "Megamacro+",
  27999. height: math.unit(5, "miles")
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28005. {
  28006. side: {
  28007. height: math.unit(106, "feet"),
  28008. weight: math.unit(500, "tonnes"),
  28009. name: "Side",
  28010. image: {
  28011. source: "./media/characters/kodran/side.svg",
  28012. extra: 553 / 480,
  28013. bottom: 33 / 586
  28014. }
  28015. },
  28016. front: {
  28017. height: math.unit(132, "feet"),
  28018. weight: math.unit(500, "tonnes"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/kodran/front.svg",
  28022. extra: 667 / 643,
  28023. bottom: 42 / 709
  28024. }
  28025. },
  28026. flying: {
  28027. height: math.unit(350, "feet"),
  28028. weight: math.unit(500, "tonnes"),
  28029. name: "Flying",
  28030. image: {
  28031. source: "./media/characters/kodran/flying.svg"
  28032. }
  28033. },
  28034. foot: {
  28035. height: math.unit(33, "feet"),
  28036. name: "Foot",
  28037. image: {
  28038. source: "./media/characters/kodran/foot.svg"
  28039. }
  28040. },
  28041. footFront: {
  28042. height: math.unit(19, "feet"),
  28043. name: "Foot (Front)",
  28044. image: {
  28045. source: "./media/characters/kodran/foot-front.svg",
  28046. extra: 261 / 261,
  28047. bottom: 91 / 352
  28048. }
  28049. },
  28050. headFront: {
  28051. height: math.unit(53, "feet"),
  28052. name: "Head (Front)",
  28053. image: {
  28054. source: "./media/characters/kodran/head-front.svg"
  28055. }
  28056. },
  28057. headSide: {
  28058. height: math.unit(65, "feet"),
  28059. name: "Head (Side)",
  28060. image: {
  28061. source: "./media/characters/kodran/head-side.svg"
  28062. }
  28063. },
  28064. throat: {
  28065. height: math.unit(79, "feet"),
  28066. name: "Throat",
  28067. image: {
  28068. source: "./media/characters/kodran/throat.svg"
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Large",
  28075. height: math.unit(106, "feet"),
  28076. default: true
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28082. {
  28083. side: {
  28084. height: math.unit(11, "feet"),
  28085. weight: math.unit(150, "lb"),
  28086. name: "Side",
  28087. image: {
  28088. source: "./media/characters/pyxaron/side.svg",
  28089. extra: 305 / 195,
  28090. bottom: 17 / 322
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Normal",
  28097. height: math.unit(11, "feet"),
  28098. default: true
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(6, "feet"),
  28107. weight: math.unit(150, "lb"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/meep/front.svg",
  28111. extra: 88 / 80,
  28112. bottom: 6 / 94
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Fun Sized",
  28119. height: math.unit(2, "inches"),
  28120. default: true
  28121. },
  28122. {
  28123. name: "Friend Sized",
  28124. height: math.unit(8, "inches")
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(15, "feet"),
  28133. weight: math.unit(2500, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/holly-rabbit/front.svg",
  28137. extra: 1433 / 1233,
  28138. bottom: 125 / 1558
  28139. }
  28140. },
  28141. dick: {
  28142. height: math.unit(4.6, "feet"),
  28143. name: "Dick",
  28144. image: {
  28145. source: "./media/characters/holly-rabbit/dick.svg"
  28146. }
  28147. },
  28148. },
  28149. [
  28150. {
  28151. name: "Normal",
  28152. height: math.unit(15, "feet"),
  28153. default: true
  28154. },
  28155. {
  28156. name: "Macro",
  28157. height: math.unit(250, "feet")
  28158. },
  28159. {
  28160. name: "Macro+",
  28161. height: math.unit(2500, "feet")
  28162. },
  28163. ]
  28164. ))
  28165. characterMakers.push(() => makeCharacter(
  28166. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28167. {
  28168. front: {
  28169. height: math.unit(3.02, "meters"),
  28170. weight: math.unit(500, "kg"),
  28171. name: "Front",
  28172. image: {
  28173. source: "./media/characters/drena/front.svg",
  28174. extra: 282 / 243,
  28175. bottom: 8 / 290
  28176. }
  28177. },
  28178. side: {
  28179. height: math.unit(3.02, "meters"),
  28180. weight: math.unit(500, "kg"),
  28181. name: "Side",
  28182. image: {
  28183. source: "./media/characters/drena/side.svg",
  28184. extra: 280 / 245,
  28185. bottom: 10 / 290
  28186. }
  28187. },
  28188. back: {
  28189. height: math.unit(3.02, "meters"),
  28190. weight: math.unit(500, "kg"),
  28191. name: "Back",
  28192. image: {
  28193. source: "./media/characters/drena/back.svg",
  28194. extra: 278 / 243,
  28195. bottom: 2 / 280
  28196. }
  28197. },
  28198. foot: {
  28199. height: math.unit(0.75, "meters"),
  28200. name: "Foot",
  28201. image: {
  28202. source: "./media/characters/drena/foot.svg"
  28203. }
  28204. },
  28205. maw: {
  28206. height: math.unit(0.82, "meters"),
  28207. name: "Maw",
  28208. image: {
  28209. source: "./media/characters/drena/maw.svg"
  28210. }
  28211. },
  28212. rump: {
  28213. height: math.unit(0.93, "meters"),
  28214. name: "Rump",
  28215. image: {
  28216. source: "./media/characters/drena/rump.svg"
  28217. }
  28218. },
  28219. },
  28220. [
  28221. {
  28222. name: "Normal",
  28223. height: math.unit(3.02, "meters"),
  28224. default: true
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28230. {
  28231. front: {
  28232. height: math.unit(6 + 4 / 12, "feet"),
  28233. weight: math.unit(250, "lb"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/remmyzilla/front.svg",
  28237. extra: 4033 / 3588,
  28238. bottom: 123 / 4156
  28239. }
  28240. },
  28241. back: {
  28242. height: math.unit(6 + 4 / 12, "feet"),
  28243. weight: math.unit(250, "lb"),
  28244. name: "Back",
  28245. image: {
  28246. source: "./media/characters/remmyzilla/back.svg",
  28247. extra: 2687 / 2555,
  28248. bottom: 48 / 2735
  28249. }
  28250. },
  28251. paw: {
  28252. height: math.unit(1.73, "feet"),
  28253. name: "Paw",
  28254. image: {
  28255. source: "./media/characters/remmyzilla/paw.svg"
  28256. }
  28257. },
  28258. maw: {
  28259. height: math.unit(1.73, "feet"),
  28260. name: "Maw",
  28261. image: {
  28262. source: "./media/characters/remmyzilla/maw.svg"
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Normal",
  28269. height: math.unit(6 + 4 / 12, "feet")
  28270. },
  28271. {
  28272. name: "Minimacro",
  28273. height: math.unit(12 + 8 / 12, "feet")
  28274. },
  28275. {
  28276. name: "Normal",
  28277. height: math.unit(640, "feet"),
  28278. default: true
  28279. },
  28280. {
  28281. name: "Megamacro",
  28282. height: math.unit(6400, "feet")
  28283. },
  28284. {
  28285. name: "Gigamacro",
  28286. height: math.unit(64000, "miles")
  28287. },
  28288. ]
  28289. ))
  28290. characterMakers.push(() => makeCharacter(
  28291. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28292. {
  28293. front: {
  28294. height: math.unit(2.5, "meters"),
  28295. weight: math.unit(300, "lb"),
  28296. name: "Front",
  28297. image: {
  28298. source: "./media/characters/lawrence/front.svg",
  28299. extra: 357 / 335,
  28300. bottom: 30 / 387
  28301. }
  28302. },
  28303. back: {
  28304. height: math.unit(2.5, "meters"),
  28305. weight: math.unit(300, "lb"),
  28306. name: "Back",
  28307. image: {
  28308. source: "./media/characters/lawrence/back.svg",
  28309. extra: 357 / 338,
  28310. bottom: 16 / 373
  28311. }
  28312. },
  28313. head: {
  28314. height: math.unit(0.9, "meter"),
  28315. name: "Head",
  28316. image: {
  28317. source: "./media/characters/lawrence/head.svg"
  28318. }
  28319. },
  28320. maw: {
  28321. height: math.unit(0.7, "meter"),
  28322. name: "Maw",
  28323. image: {
  28324. source: "./media/characters/lawrence/maw.svg"
  28325. }
  28326. },
  28327. footBottom: {
  28328. height: math.unit(0.5, "meter"),
  28329. name: "Foot (Bottom)",
  28330. image: {
  28331. source: "./media/characters/lawrence/foot-bottom.svg"
  28332. }
  28333. },
  28334. footTop: {
  28335. height: math.unit(0.5, "meter"),
  28336. name: "Foot (Top)",
  28337. image: {
  28338. source: "./media/characters/lawrence/foot-top.svg"
  28339. }
  28340. },
  28341. },
  28342. [
  28343. {
  28344. name: "Normal",
  28345. height: math.unit(2.5, "meters"),
  28346. default: true
  28347. },
  28348. {
  28349. name: "Macro",
  28350. height: math.unit(95, "meters")
  28351. },
  28352. {
  28353. name: "Megamacro",
  28354. height: math.unit(150, "km")
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28360. {
  28361. front: {
  28362. height: math.unit(4.2, "meters"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/sydney/front.svg",
  28366. extra: 1323 / 1277,
  28367. bottom: 111 / 1434
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(4.2, "meters"),
  28375. default: true
  28376. },
  28377. ]
  28378. ))
  28379. characterMakers.push(() => makeCharacter(
  28380. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28381. {
  28382. back: {
  28383. height: math.unit(201, "feet"),
  28384. name: "Back",
  28385. image: {
  28386. source: "./media/characters/jessica/back.svg",
  28387. extra: 273 / 259,
  28388. bottom: 7 / 280
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(201, "feet"),
  28396. default: true
  28397. },
  28398. {
  28399. name: "Megamacro",
  28400. height: math.unit(8, "miles")
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28406. {
  28407. side: {
  28408. height: math.unit(320, "cm"),
  28409. name: "Side",
  28410. image: {
  28411. source: "./media/characters/victoria/side.svg",
  28412. extra: 778 / 346,
  28413. bottom: 56 / 834
  28414. }
  28415. },
  28416. maw: {
  28417. height: math.unit(5.9, "feet"),
  28418. name: "Maw",
  28419. image: {
  28420. source: "./media/characters/victoria/maw.svg"
  28421. }
  28422. },
  28423. },
  28424. [
  28425. {
  28426. name: "Normal",
  28427. height: math.unit(320, "cm"),
  28428. default: true
  28429. },
  28430. ]
  28431. ))
  28432. characterMakers.push(() => makeCharacter(
  28433. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28434. {
  28435. front: {
  28436. height: math.unit(5 + 6 / 12, "feet"),
  28437. name: "Front",
  28438. image: {
  28439. source: "./media/characters/cat/front.svg",
  28440. extra: 1449/1295,
  28441. bottom: 34/1483
  28442. }
  28443. },
  28444. back: {
  28445. height: math.unit(5 + 6 / 12, "feet"),
  28446. name: "Back",
  28447. image: {
  28448. source: "./media/characters/cat/back.svg",
  28449. extra: 1466/1301,
  28450. bottom: 19/1485
  28451. }
  28452. },
  28453. taur: {
  28454. height: math.unit(7, "feet"),
  28455. name: "Taur",
  28456. image: {
  28457. source: "./media/characters/cat/taur.svg",
  28458. extra: 1389/1233,
  28459. bottom: 83/1472
  28460. }
  28461. },
  28462. lucarioFront: {
  28463. height: math.unit(4, "feet"),
  28464. name: "Lucario (Front)",
  28465. image: {
  28466. source: "./media/characters/cat/lucario-front.svg",
  28467. extra: 1149/1019,
  28468. bottom: 84/1233
  28469. }
  28470. },
  28471. lucarioBack: {
  28472. height: math.unit(4, "feet"),
  28473. name: "Lucario (Back)",
  28474. image: {
  28475. source: "./media/characters/cat/lucario-back.svg",
  28476. extra: 1190/1059,
  28477. bottom: 33/1223
  28478. }
  28479. },
  28480. megaLucario: {
  28481. height: math.unit(4, "feet"),
  28482. name: "Mega Lucario",
  28483. image: {
  28484. source: "./media/characters/cat/mega-lucario.svg",
  28485. extra: 1515 / 1319,
  28486. bottom: 63 / 1578
  28487. }
  28488. },
  28489. nickit: {
  28490. height: math.unit(2, "feet"),
  28491. name: "Nickit",
  28492. image: {
  28493. source: "./media/characters/cat/nickit.svg",
  28494. extra: 1980 / 1585,
  28495. bottom: 102 / 2082
  28496. }
  28497. },
  28498. lopunnyFront: {
  28499. height: math.unit(5, "feet"),
  28500. name: "Lopunny (Front)",
  28501. image: {
  28502. source: "./media/characters/cat/lopunny-front.svg",
  28503. extra: 1782 / 1469,
  28504. bottom: 38 / 1820
  28505. }
  28506. },
  28507. lopunnyBack: {
  28508. height: math.unit(5, "feet"),
  28509. name: "Lopunny (Back)",
  28510. image: {
  28511. source: "./media/characters/cat/lopunny-back.svg",
  28512. extra: 1660 / 1490,
  28513. bottom: 25 / 1685
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Really small",
  28520. height: math.unit(1, "nm")
  28521. },
  28522. {
  28523. name: "Micro",
  28524. height: math.unit(5, "inches")
  28525. },
  28526. {
  28527. name: "Normal",
  28528. height: math.unit(5 + 6 / 12, "feet"),
  28529. default: true
  28530. },
  28531. {
  28532. name: "Macro",
  28533. height: math.unit(50, "feet")
  28534. },
  28535. {
  28536. name: "Macro+",
  28537. height: math.unit(150, "feet")
  28538. },
  28539. {
  28540. name: "Megamacro",
  28541. height: math.unit(100, "miles")
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(63.4, "meters"),
  28550. weight: math.unit(3.28349e+6, "kilograms"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/kirina-violet/front.svg",
  28554. extra: 2812 / 2725,
  28555. bottom: 0 / 2812
  28556. }
  28557. },
  28558. back: {
  28559. height: math.unit(63.4, "meters"),
  28560. weight: math.unit(3.28349e+6, "kilograms"),
  28561. name: "Back",
  28562. image: {
  28563. source: "./media/characters/kirina-violet/back.svg",
  28564. extra: 2812 / 2725,
  28565. bottom: 0 / 2812
  28566. }
  28567. },
  28568. mouth: {
  28569. height: math.unit(4.35, "meters"),
  28570. name: "Mouth",
  28571. image: {
  28572. source: "./media/characters/kirina-violet/mouth.svg"
  28573. }
  28574. },
  28575. paw: {
  28576. height: math.unit(5.6, "meters"),
  28577. name: "Paw",
  28578. image: {
  28579. source: "./media/characters/kirina-violet/paw.svg"
  28580. }
  28581. },
  28582. tail: {
  28583. height: math.unit(18, "meters"),
  28584. name: "Tail",
  28585. image: {
  28586. source: "./media/characters/kirina-violet/tail.svg"
  28587. }
  28588. },
  28589. },
  28590. [
  28591. {
  28592. name: "Macro",
  28593. height: math.unit(63.4, "meters"),
  28594. default: true
  28595. },
  28596. ]
  28597. ))
  28598. characterMakers.push(() => makeCharacter(
  28599. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28600. {
  28601. front: {
  28602. height: math.unit(75, "feet"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/cat-gigachu/front.svg",
  28606. extra: 1239/1027,
  28607. bottom: 32/1271
  28608. }
  28609. },
  28610. back: {
  28611. height: math.unit(75, "feet"),
  28612. name: "Back",
  28613. image: {
  28614. source: "./media/characters/cat-gigachu/back.svg",
  28615. extra: 1229/1030,
  28616. bottom: 9/1238
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Dynamax",
  28623. height: math.unit(75, "feet"),
  28624. default: true
  28625. },
  28626. ]
  28627. ))
  28628. characterMakers.push(() => makeCharacter(
  28629. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28630. {
  28631. front: {
  28632. height: math.unit(6, "feet"),
  28633. weight: math.unit(150, "lb"),
  28634. name: "Front",
  28635. image: {
  28636. source: "./media/characters/sfaiyan/front.svg",
  28637. extra: 999 / 978,
  28638. bottom: 5 / 1004
  28639. }
  28640. },
  28641. },
  28642. [
  28643. {
  28644. name: "Normal",
  28645. height: math.unit(1.82, "meters")
  28646. },
  28647. {
  28648. name: "Giant",
  28649. height: math.unit(2.27, "km"),
  28650. default: true
  28651. },
  28652. ]
  28653. ))
  28654. characterMakers.push(() => makeCharacter(
  28655. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28656. {
  28657. front: {
  28658. height: math.unit(179, "cm"),
  28659. weight: math.unit(100, "kg"),
  28660. name: "Front",
  28661. image: {
  28662. source: "./media/characters/raunehkeli/front.svg",
  28663. extra: 1934 / 1926,
  28664. bottom: 0 / 1934
  28665. }
  28666. },
  28667. },
  28668. [
  28669. {
  28670. name: "Normal",
  28671. height: math.unit(179, "cm")
  28672. },
  28673. {
  28674. name: "Maximum",
  28675. height: math.unit(575, "meters"),
  28676. default: true
  28677. },
  28678. ]
  28679. ))
  28680. characterMakers.push(() => makeCharacter(
  28681. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28682. {
  28683. front: {
  28684. height: math.unit(6, "feet"),
  28685. weight: math.unit(150, "lb"),
  28686. name: "Front",
  28687. image: {
  28688. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28689. extra: 2625 / 2518,
  28690. bottom: 60 / 2685
  28691. }
  28692. },
  28693. },
  28694. [
  28695. {
  28696. name: "Normal",
  28697. height: math.unit(6 + 2 / 12, "feet")
  28698. },
  28699. {
  28700. name: "Macro",
  28701. height: math.unit(1180, "feet"),
  28702. default: true
  28703. },
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28708. {
  28709. front: {
  28710. height: math.unit(5 + 6 / 12, "feet"),
  28711. weight: math.unit(108, "lb"),
  28712. name: "Front",
  28713. image: {
  28714. source: "./media/characters/lilith-zott/front.svg",
  28715. extra: 2510 / 2238,
  28716. bottom: 100 / 2610
  28717. }
  28718. },
  28719. frontDressed: {
  28720. height: math.unit(5 + 6 / 12, "feet"),
  28721. weight: math.unit(108, "lb"),
  28722. name: "Front (Dressed)",
  28723. image: {
  28724. source: "./media/characters/lilith-zott/front-dressed.svg",
  28725. extra: 2510 / 2238,
  28726. bottom: 100 / 2610
  28727. }
  28728. },
  28729. },
  28730. [
  28731. {
  28732. name: "Normal",
  28733. height: math.unit(5 + 6 / 12, "feet")
  28734. },
  28735. {
  28736. name: "Macro",
  28737. height: math.unit(1030, "feet"),
  28738. default: true
  28739. },
  28740. ]
  28741. ))
  28742. characterMakers.push(() => makeCharacter(
  28743. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28744. {
  28745. front: {
  28746. height: math.unit(6, "feet"),
  28747. weight: math.unit(150, "lb"),
  28748. name: "Front",
  28749. image: {
  28750. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28751. extra: 2567 / 2435,
  28752. bottom: 39 / 2606
  28753. }
  28754. },
  28755. frontSuper: {
  28756. height: math.unit(6, "feet"),
  28757. name: "Front (Super)",
  28758. image: {
  28759. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28760. extra: 2567 / 2435,
  28761. bottom: 39 / 2606
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(5 + 10 / 12, "feet")
  28769. },
  28770. {
  28771. name: "Macro",
  28772. height: math.unit(1100, "feet"),
  28773. default: true
  28774. },
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28779. {
  28780. front: {
  28781. height: math.unit(100, "miles"),
  28782. name: "Front",
  28783. image: {
  28784. source: "./media/characters/sona/front.svg",
  28785. extra: 2433 / 2201,
  28786. bottom: 53 / 2486
  28787. }
  28788. },
  28789. foot: {
  28790. height: math.unit(16.1, "miles"),
  28791. name: "Foot",
  28792. image: {
  28793. source: "./media/characters/sona/foot.svg"
  28794. }
  28795. },
  28796. },
  28797. [
  28798. {
  28799. name: "Macro",
  28800. height: math.unit(100, "miles"),
  28801. default: true
  28802. },
  28803. ]
  28804. ))
  28805. characterMakers.push(() => makeCharacter(
  28806. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28807. {
  28808. front: {
  28809. height: math.unit(6, "feet"),
  28810. weight: math.unit(150, "lb"),
  28811. name: "Front",
  28812. image: {
  28813. source: "./media/characters/bailey/front.svg",
  28814. extra: 1778 / 1724,
  28815. bottom: 30 / 1808
  28816. }
  28817. },
  28818. },
  28819. [
  28820. {
  28821. name: "Micro",
  28822. height: math.unit(4, "inches")
  28823. },
  28824. {
  28825. name: "Normal",
  28826. height: math.unit(5 + 5 / 12, "feet"),
  28827. default: true
  28828. },
  28829. {
  28830. name: "Macro",
  28831. height: math.unit(250, "feet")
  28832. },
  28833. {
  28834. name: "Megamacro",
  28835. height: math.unit(100, "miles")
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28841. {
  28842. front: {
  28843. height: math.unit(5 + 2 / 12, "feet"),
  28844. weight: math.unit(120, "lb"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/snaps/front.svg",
  28848. extra: 2370 / 2177,
  28849. bottom: 48 / 2418
  28850. }
  28851. },
  28852. back: {
  28853. height: math.unit(5 + 2 / 12, "feet"),
  28854. weight: math.unit(120, "lb"),
  28855. name: "Back",
  28856. image: {
  28857. source: "./media/characters/snaps/back.svg",
  28858. extra: 2408 / 2258,
  28859. bottom: 15 / 2423
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Micro",
  28866. height: math.unit(9, "inches")
  28867. },
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(5 + 2 / 12, "feet"),
  28871. default: true
  28872. },
  28873. {
  28874. name: "Mini Macro",
  28875. height: math.unit(10, "feet")
  28876. },
  28877. ]
  28878. ))
  28879. characterMakers.push(() => makeCharacter(
  28880. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28881. {
  28882. front: {
  28883. height: math.unit(1.8, "meters"),
  28884. weight: math.unit(85, "kg"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/azteck/front.svg",
  28888. extra: 2815 / 2625,
  28889. bottom: 89 / 2904
  28890. }
  28891. },
  28892. back: {
  28893. height: math.unit(1.8, "meters"),
  28894. weight: math.unit(85, "kg"),
  28895. name: "Back",
  28896. image: {
  28897. source: "./media/characters/azteck/back.svg",
  28898. extra: 2856 / 2648,
  28899. bottom: 85 / 2941
  28900. }
  28901. },
  28902. frontDressed: {
  28903. height: math.unit(1.8, "meters"),
  28904. weight: math.unit(85, "kg"),
  28905. name: "Front (Dressed)",
  28906. image: {
  28907. source: "./media/characters/azteck/front-dressed.svg",
  28908. extra: 2147 / 2003,
  28909. bottom: 68 / 2215
  28910. }
  28911. },
  28912. head: {
  28913. height: math.unit(0.47, "meters"),
  28914. weight: math.unit(85, "kg"),
  28915. name: "Head",
  28916. image: {
  28917. source: "./media/characters/azteck/head.svg"
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Bite sized",
  28924. height: math.unit(16, "cm")
  28925. },
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(1.8, "meters"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(6, "feet"),
  28938. weight: math.unit(150, "lb"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/pidge/front.svg",
  28942. extra: 620 / 588,
  28943. bottom: 9 / 629
  28944. }
  28945. },
  28946. back: {
  28947. height: math.unit(6, "feet"),
  28948. weight: math.unit(150, "lb"),
  28949. name: "Back",
  28950. image: {
  28951. source: "./media/characters/pidge/back.svg",
  28952. extra: 620 / 588,
  28953. bottom: 9 / 629
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Macro",
  28960. height: math.unit(1, "mile"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(6, "feet"),
  28970. weight: math.unit(150, "lb"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/en/front.svg",
  28974. extra: 1697 / 1563,
  28975. bottom: 103 / 1800
  28976. }
  28977. },
  28978. back: {
  28979. height: math.unit(6, "feet"),
  28980. weight: math.unit(150, "lb"),
  28981. name: "Back",
  28982. image: {
  28983. source: "./media/characters/en/back.svg",
  28984. extra: 1700 / 1570,
  28985. bottom: 51 / 1751
  28986. }
  28987. },
  28988. frontDressed: {
  28989. height: math.unit(6, "feet"),
  28990. weight: math.unit(150, "lb"),
  28991. name: "Front (Dressed)",
  28992. image: {
  28993. source: "./media/characters/en/front-dressed.svg",
  28994. extra: 1697 / 1563,
  28995. bottom: 103 / 1800
  28996. }
  28997. },
  28998. backDressed: {
  28999. height: math.unit(6, "feet"),
  29000. weight: math.unit(150, "lb"),
  29001. name: "Back (Dressed)",
  29002. image: {
  29003. source: "./media/characters/en/back-dressed.svg",
  29004. extra: 1700 / 1570,
  29005. bottom: 51 / 1751
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Macro",
  29012. height: math.unit(210, "feet"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29019. {
  29020. front: {
  29021. height: math.unit(6, "feet"),
  29022. weight: math.unit(150, "lb"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/haze-orris/front.svg",
  29026. extra: 3975 / 3525,
  29027. bottom: 137 / 4112
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Micro",
  29034. height: math.unit(150, "mm"),
  29035. default: true
  29036. },
  29037. ]
  29038. ))
  29039. characterMakers.push(() => makeCharacter(
  29040. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29041. {
  29042. front: {
  29043. height: math.unit(6, "feet"),
  29044. weight: math.unit(150, "lb"),
  29045. name: "Front",
  29046. image: {
  29047. source: "./media/characters/casselene-yaro/front.svg",
  29048. extra: 4721 / 4541,
  29049. bottom: 82 / 4803
  29050. }
  29051. },
  29052. back: {
  29053. height: math.unit(6, "feet"),
  29054. weight: math.unit(150, "lb"),
  29055. name: "Back",
  29056. image: {
  29057. source: "./media/characters/casselene-yaro/back.svg",
  29058. extra: 4569 / 4377,
  29059. bottom: 69 / 4638
  29060. }
  29061. },
  29062. frontDressed: {
  29063. height: math.unit(6, "feet"),
  29064. weight: math.unit(150, "lb"),
  29065. name: "Front-dressed",
  29066. image: {
  29067. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29068. extra: 4721 / 4541,
  29069. bottom: 82 / 4803
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Macro",
  29076. height: math.unit(190, "feet"),
  29077. default: true
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(6, "feet"),
  29086. weight: math.unit(150, "lb"),
  29087. name: "Front",
  29088. image: {
  29089. source: "./media/characters/myra-rue-delore/front.svg",
  29090. extra: 1340 / 1308,
  29091. bottom: 67 / 1407
  29092. }
  29093. },
  29094. back: {
  29095. height: math.unit(6, "feet"),
  29096. weight: math.unit(150, "lb"),
  29097. name: "Back",
  29098. image: {
  29099. source: "./media/characters/myra-rue-delore/back.svg",
  29100. extra: 1341 / 1310,
  29101. bottom: 40 / 1381
  29102. }
  29103. },
  29104. frontDressed: {
  29105. height: math.unit(6, "feet"),
  29106. weight: math.unit(150, "lb"),
  29107. name: "Front (Dressed)",
  29108. image: {
  29109. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29110. extra: 1340 / 1308,
  29111. bottom: 67 / 1407
  29112. }
  29113. },
  29114. },
  29115. [
  29116. {
  29117. name: "Macro",
  29118. height: math.unit(150, "feet"),
  29119. default: true
  29120. },
  29121. ]
  29122. ))
  29123. characterMakers.push(() => makeCharacter(
  29124. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29125. {
  29126. front: {
  29127. height: math.unit(10, "feet"),
  29128. weight: math.unit(15015, "lb"),
  29129. name: "Front",
  29130. image: {
  29131. source: "./media/characters/fem!plat/front.svg",
  29132. extra: 2799 / 2604,
  29133. bottom: 149 / 2948
  29134. }
  29135. },
  29136. },
  29137. [
  29138. {
  29139. name: "Normal",
  29140. height: math.unit(10, "feet"),
  29141. default: true
  29142. },
  29143. {
  29144. name: "Macro",
  29145. height: math.unit(100, "feet")
  29146. },
  29147. {
  29148. name: "Megamacro",
  29149. height: math.unit(1000, "feet")
  29150. },
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29155. {
  29156. front: {
  29157. height: math.unit(15 + 5 / 12, "feet"),
  29158. weight: math.unit(4600, "lb"),
  29159. name: "Front",
  29160. image: {
  29161. source: "./media/characters/neapolitan-ananassa/front.svg",
  29162. extra: 2903 / 2736,
  29163. bottom: 0 / 2903
  29164. }
  29165. },
  29166. side: {
  29167. height: math.unit(15 + 5 / 12, "feet"),
  29168. weight: math.unit(4600, "lb"),
  29169. name: "Side",
  29170. image: {
  29171. source: "./media/characters/neapolitan-ananassa/side.svg",
  29172. extra: 2925 / 2719,
  29173. bottom: 0 / 2925
  29174. }
  29175. },
  29176. back: {
  29177. height: math.unit(15 + 5 / 12, "feet"),
  29178. weight: math.unit(4600, "lb"),
  29179. name: "Back",
  29180. image: {
  29181. source: "./media/characters/neapolitan-ananassa/back.svg",
  29182. extra: 2903 / 2736,
  29183. bottom: 0 / 2903
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "Normal",
  29190. height: math.unit(15 + 5 / 12, "feet"),
  29191. default: true
  29192. },
  29193. {
  29194. name: "Post-Millenium",
  29195. height: math.unit(35 + 5 / 12, "feet")
  29196. },
  29197. {
  29198. name: "Post-Era",
  29199. height: math.unit(450 + 5 / 12, "feet")
  29200. },
  29201. ]
  29202. ))
  29203. characterMakers.push(() => makeCharacter(
  29204. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29205. {
  29206. front: {
  29207. height: math.unit(300, "meters"),
  29208. weight: math.unit(125000, "tonnes"),
  29209. name: "Front",
  29210. image: {
  29211. source: "./media/characters/pazuzu/front.svg",
  29212. extra: 877 / 794,
  29213. bottom: 47 / 924
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Macro",
  29220. height: math.unit(300, "meters"),
  29221. default: true
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29227. {
  29228. side: {
  29229. height: math.unit(10 + 7 / 12, "feet"),
  29230. weight: math.unit(2.5, "tons"),
  29231. name: "Side",
  29232. image: {
  29233. source: "./media/characters/aasha/side.svg",
  29234. extra: 1345 / 1245,
  29235. bottom: 111 / 1456
  29236. }
  29237. },
  29238. back: {
  29239. height: math.unit(10 + 7 / 12, "feet"),
  29240. weight: math.unit(2.5, "tons"),
  29241. name: "Back",
  29242. image: {
  29243. source: "./media/characters/aasha/back.svg",
  29244. extra: 1133 / 1057,
  29245. bottom: 257 / 1390
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(10 + 7 / 12, "feet"),
  29253. default: true
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(6 + 3 / 12, "feet"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/nevan/front.svg",
  29265. extra: 704 / 704,
  29266. bottom: 28 / 732
  29267. }
  29268. },
  29269. back: {
  29270. height: math.unit(6 + 3 / 12, "feet"),
  29271. name: "Back",
  29272. image: {
  29273. source: "./media/characters/nevan/back.svg",
  29274. extra: 714 / 714,
  29275. bottom: 21 / 735
  29276. }
  29277. },
  29278. frontFlaccid: {
  29279. height: math.unit(6 + 3 / 12, "feet"),
  29280. name: "Front (Flaccid)",
  29281. image: {
  29282. source: "./media/characters/nevan/front-flaccid.svg",
  29283. extra: 704 / 704,
  29284. bottom: 28 / 732
  29285. }
  29286. },
  29287. frontErect: {
  29288. height: math.unit(6 + 3 / 12, "feet"),
  29289. name: "Front (Erect)",
  29290. image: {
  29291. source: "./media/characters/nevan/front-erect.svg",
  29292. extra: 704 / 704,
  29293. bottom: 28 / 732
  29294. }
  29295. },
  29296. backFlaccid: {
  29297. height: math.unit(6 + 3 / 12, "feet"),
  29298. name: "Back (Flaccid)",
  29299. image: {
  29300. source: "./media/characters/nevan/back-flaccid.svg",
  29301. extra: 714 / 714,
  29302. bottom: 21 / 735
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(6 + 3 / 12, "feet"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(4, "feet"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/arhan/front.svg",
  29322. extra: 3368 / 3133,
  29323. bottom: 0 / 3368
  29324. }
  29325. },
  29326. side: {
  29327. height: math.unit(4, "feet"),
  29328. name: "Side",
  29329. image: {
  29330. source: "./media/characters/arhan/side.svg",
  29331. extra: 3347 / 3105,
  29332. bottom: 0 / 3347
  29333. }
  29334. },
  29335. tongue: {
  29336. height: math.unit(1.42, "feet"),
  29337. name: "Tongue",
  29338. image: {
  29339. source: "./media/characters/arhan/tongue.svg"
  29340. }
  29341. },
  29342. head: {
  29343. height: math.unit(0.85, "feet"),
  29344. name: "Head",
  29345. image: {
  29346. source: "./media/characters/arhan/head.svg"
  29347. }
  29348. },
  29349. },
  29350. [
  29351. {
  29352. name: "Normal",
  29353. height: math.unit(4, "feet"),
  29354. default: true
  29355. },
  29356. ]
  29357. ))
  29358. characterMakers.push(() => makeCharacter(
  29359. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29360. {
  29361. front: {
  29362. height: math.unit(5 + 7.5 / 12, "feet"),
  29363. weight: math.unit(120, "lb"),
  29364. name: "Front",
  29365. image: {
  29366. source: "./media/characters/digi-duncan/front.svg",
  29367. extra: 330 / 326,
  29368. bottom: 16 / 346
  29369. }
  29370. },
  29371. side: {
  29372. height: math.unit(5 + 7.5 / 12, "feet"),
  29373. weight: math.unit(120, "lb"),
  29374. name: "Side",
  29375. image: {
  29376. source: "./media/characters/digi-duncan/side.svg",
  29377. extra: 341 / 337,
  29378. bottom: 1 / 342
  29379. }
  29380. },
  29381. back: {
  29382. height: math.unit(5 + 7.5 / 12, "feet"),
  29383. weight: math.unit(120, "lb"),
  29384. name: "Back",
  29385. image: {
  29386. source: "./media/characters/digi-duncan/back.svg",
  29387. extra: 330 / 326,
  29388. bottom: 12 / 342
  29389. }
  29390. },
  29391. },
  29392. [
  29393. {
  29394. name: "Speck",
  29395. height: math.unit(0.25, "mm")
  29396. },
  29397. {
  29398. name: "Micro",
  29399. height: math.unit(5, "mm")
  29400. },
  29401. {
  29402. name: "Tiny",
  29403. height: math.unit(0.5, "inches"),
  29404. default: true
  29405. },
  29406. {
  29407. name: "Human",
  29408. height: math.unit(5 + 7.5 / 12, "feet")
  29409. },
  29410. {
  29411. name: "Minigiant",
  29412. height: math.unit(8 + 5.25, "feet")
  29413. },
  29414. {
  29415. name: "Giant",
  29416. height: math.unit(2000, "feet")
  29417. },
  29418. {
  29419. name: "Mega",
  29420. height: math.unit(371.1, "miles")
  29421. },
  29422. ]
  29423. ))
  29424. characterMakers.push(() => makeCharacter(
  29425. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29426. {
  29427. front: {
  29428. height: math.unit(2, "meters"),
  29429. weight: math.unit(350, "kg"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29433. extra: 898 / 838,
  29434. bottom: 9 / 907
  29435. }
  29436. },
  29437. },
  29438. [
  29439. {
  29440. name: "Micro",
  29441. height: math.unit(8, "meters")
  29442. },
  29443. {
  29444. name: "Normal",
  29445. height: math.unit(50, "meters"),
  29446. default: true
  29447. },
  29448. {
  29449. name: "Macro",
  29450. height: math.unit(500, "meters")
  29451. },
  29452. ]
  29453. ))
  29454. characterMakers.push(() => makeCharacter(
  29455. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29456. {
  29457. front: {
  29458. height: math.unit(6 + 6 / 12, "feet"),
  29459. name: "Front",
  29460. image: {
  29461. source: "./media/characters/khardesh/front.svg",
  29462. extra: 888 / 797,
  29463. bottom: 25 / 913
  29464. }
  29465. },
  29466. },
  29467. [
  29468. {
  29469. name: "Normal",
  29470. height: math.unit(6 + 6 / 12, "feet"),
  29471. default: true
  29472. },
  29473. {
  29474. name: "Normal+",
  29475. height: math.unit(4, "meters")
  29476. },
  29477. {
  29478. name: "Macro",
  29479. height: math.unit(50, "meters")
  29480. },
  29481. {
  29482. name: "Macro+",
  29483. height: math.unit(100, "meters")
  29484. },
  29485. {
  29486. name: "Megamacro",
  29487. height: math.unit(20, "km")
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(6, "feet"),
  29496. weight: math.unit(150, "lb"),
  29497. name: "Front",
  29498. image: {
  29499. source: "./media/characters/kosho/front.svg",
  29500. extra: 1847 / 1847,
  29501. bottom: 86 / 1933
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Second-stage micro",
  29508. height: math.unit(0.5, "inches")
  29509. },
  29510. {
  29511. name: "First-stage micro",
  29512. height: math.unit(6, "inches")
  29513. },
  29514. {
  29515. name: "Normal",
  29516. height: math.unit(6, "feet"),
  29517. default: true
  29518. },
  29519. {
  29520. name: "First-stage macro",
  29521. height: math.unit(72, "feet")
  29522. },
  29523. {
  29524. name: "Second-stage macro",
  29525. height: math.unit(864, "feet")
  29526. },
  29527. ]
  29528. ))
  29529. characterMakers.push(() => makeCharacter(
  29530. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29531. {
  29532. normal: {
  29533. height: math.unit(4 + 6 / 12, "feet"),
  29534. name: "Normal",
  29535. image: {
  29536. source: "./media/characters/hydra/normal.svg",
  29537. extra: 2833 / 2634,
  29538. bottom: 68 / 2901
  29539. }
  29540. },
  29541. smol: {
  29542. height: math.unit(0.705, "inches"),
  29543. name: "Smol",
  29544. image: {
  29545. source: "./media/characters/hydra/smol.svg",
  29546. extra: 2715 / 2540,
  29547. bottom: 0 / 2715
  29548. }
  29549. },
  29550. },
  29551. [
  29552. {
  29553. name: "Normal",
  29554. height: math.unit(4 + 6 / 12, "feet"),
  29555. default: true
  29556. }
  29557. ]
  29558. ))
  29559. characterMakers.push(() => makeCharacter(
  29560. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29561. {
  29562. front: {
  29563. height: math.unit(0.6, "cm"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/daz/front.svg",
  29567. extra: 1682 / 1164,
  29568. bottom: 42 / 1724
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Normal",
  29575. height: math.unit(0.6, "cm"),
  29576. default: true
  29577. },
  29578. ]
  29579. ))
  29580. characterMakers.push(() => makeCharacter(
  29581. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29582. {
  29583. front: {
  29584. height: math.unit(6, "feet"),
  29585. weight: math.unit(235, "lb"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/theo-pangolin/front.svg",
  29589. extra: 1996 / 1969,
  29590. bottom: 115 / 2111
  29591. }
  29592. },
  29593. back: {
  29594. height: math.unit(6, "feet"),
  29595. weight: math.unit(235, "lb"),
  29596. name: "Back",
  29597. image: {
  29598. source: "./media/characters/theo-pangolin/back.svg",
  29599. extra: 1979 / 1979,
  29600. bottom: 40 / 2019
  29601. }
  29602. },
  29603. feral: {
  29604. height: math.unit(2, "feet"),
  29605. weight: math.unit(30, "lb"),
  29606. name: "Feral",
  29607. image: {
  29608. source: "./media/characters/theo-pangolin/feral.svg",
  29609. extra: 803 / 791,
  29610. bottom: 181 / 984
  29611. }
  29612. },
  29613. footFive: {
  29614. height: math.unit(1.43, "feet"),
  29615. name: "Foot (Five Toes)",
  29616. image: {
  29617. source: "./media/characters/theo-pangolin/foot-five.svg"
  29618. }
  29619. },
  29620. footFour: {
  29621. height: math.unit(1.43, "feet"),
  29622. name: "Foot (Four Toes)",
  29623. image: {
  29624. source: "./media/characters/theo-pangolin/foot-four.svg"
  29625. }
  29626. },
  29627. handFour: {
  29628. height: math.unit(0.81, "feet"),
  29629. name: "Hand (Four Fingers)",
  29630. image: {
  29631. source: "./media/characters/theo-pangolin/hand-four.svg"
  29632. }
  29633. },
  29634. handThree: {
  29635. height: math.unit(0.81, "feet"),
  29636. name: "Hand (Three Fingers)",
  29637. image: {
  29638. source: "./media/characters/theo-pangolin/hand-three.svg"
  29639. }
  29640. },
  29641. headFront: {
  29642. height: math.unit(1.37, "feet"),
  29643. name: "Head (Front)",
  29644. image: {
  29645. source: "./media/characters/theo-pangolin/head-front.svg"
  29646. }
  29647. },
  29648. headSide: {
  29649. height: math.unit(1.43, "feet"),
  29650. name: "Head (Side)",
  29651. image: {
  29652. source: "./media/characters/theo-pangolin/head-side.svg"
  29653. }
  29654. },
  29655. tongue: {
  29656. height: math.unit(2.29, "feet"),
  29657. name: "Tongue",
  29658. image: {
  29659. source: "./media/characters/theo-pangolin/tongue.svg"
  29660. }
  29661. },
  29662. },
  29663. [
  29664. {
  29665. name: "Normal",
  29666. height: math.unit(6, "feet")
  29667. },
  29668. {
  29669. name: "Macro",
  29670. height: math.unit(400, "feet"),
  29671. default: true
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29677. {
  29678. front: {
  29679. height: math.unit(6, "inches"),
  29680. weight: math.unit(0.036, "kg"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/renée/front.svg",
  29684. extra: 900 / 886,
  29685. bottom: 8 / 908
  29686. }
  29687. },
  29688. },
  29689. [
  29690. {
  29691. name: "Nano",
  29692. height: math.unit(1, "nm")
  29693. },
  29694. {
  29695. name: "Micro",
  29696. height: math.unit(1, "mm")
  29697. },
  29698. {
  29699. name: "Normal",
  29700. height: math.unit(6, "inches")
  29701. },
  29702. {
  29703. name: "Macro",
  29704. height: math.unit(2000, "feet"),
  29705. default: true
  29706. },
  29707. {
  29708. name: "Megamacro",
  29709. height: math.unit(2, "km")
  29710. },
  29711. {
  29712. name: "Gigamacro",
  29713. height: math.unit(2000, "km")
  29714. },
  29715. {
  29716. name: "Teramacro",
  29717. height: math.unit(250000, "km")
  29718. },
  29719. ]
  29720. ))
  29721. characterMakers.push(() => makeCharacter(
  29722. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29723. {
  29724. front: {
  29725. height: math.unit(4, "meters"),
  29726. weight: math.unit(150, "kg"),
  29727. name: "Front",
  29728. image: {
  29729. source: "./media/characters/caledvwlch/front.svg",
  29730. extra: 1760 / 1551,
  29731. bottom: 28 / 1788
  29732. }
  29733. },
  29734. side: {
  29735. height: math.unit(4, "meters"),
  29736. weight: math.unit(150, "kg"),
  29737. name: "Side",
  29738. image: {
  29739. source: "./media/characters/caledvwlch/side.svg",
  29740. extra: 1605 / 1536,
  29741. bottom: 31 / 1636
  29742. }
  29743. },
  29744. back: {
  29745. height: math.unit(4, "meters"),
  29746. weight: math.unit(150, "kg"),
  29747. name: "Back",
  29748. image: {
  29749. source: "./media/characters/caledvwlch/back.svg",
  29750. extra: 1635 / 1565,
  29751. bottom: 27 / 1662
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "\"Incognito\"",
  29758. height: math.unit(4, "meters")
  29759. },
  29760. {
  29761. name: "Small rampage",
  29762. height: math.unit(600, "meters")
  29763. },
  29764. {
  29765. name: "Mega",
  29766. height: math.unit(30, "km")
  29767. },
  29768. {
  29769. name: "Home-size",
  29770. height: math.unit(50, "km"),
  29771. default: true
  29772. },
  29773. {
  29774. name: "Giga",
  29775. height: math.unit(300, "km")
  29776. },
  29777. {
  29778. name: "Lounging",
  29779. height: math.unit(11000, "km")
  29780. },
  29781. {
  29782. name: "Planet snacking",
  29783. height: math.unit(2000000, "km")
  29784. },
  29785. ]
  29786. ))
  29787. characterMakers.push(() => makeCharacter(
  29788. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29789. {
  29790. front: {
  29791. height: math.unit(6, "feet"),
  29792. weight: math.unit(215, "lb"),
  29793. name: "Front",
  29794. image: {
  29795. source: "./media/characters/sapphire-svell/front.svg",
  29796. extra: 495 / 455,
  29797. bottom: 20 / 515
  29798. }
  29799. },
  29800. back: {
  29801. height: math.unit(6, "feet"),
  29802. weight: math.unit(216, "lb"),
  29803. name: "Back",
  29804. image: {
  29805. source: "./media/characters/sapphire-svell/back.svg",
  29806. extra: 497 / 477,
  29807. bottom: 7 / 504
  29808. }
  29809. },
  29810. maw: {
  29811. height: math.unit(1.57, "feet"),
  29812. name: "Maw",
  29813. image: {
  29814. source: "./media/characters/sapphire-svell/maw.svg"
  29815. }
  29816. },
  29817. foot: {
  29818. height: math.unit(1.07, "feet"),
  29819. name: "Foot",
  29820. image: {
  29821. source: "./media/characters/sapphire-svell/foot.svg"
  29822. }
  29823. },
  29824. toering: {
  29825. height: math.unit(1.7, "inch"),
  29826. name: "Toering",
  29827. image: {
  29828. source: "./media/characters/sapphire-svell/toering.svg"
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Normal",
  29835. height: math.unit(300, "feet"),
  29836. default: true
  29837. },
  29838. {
  29839. name: "Augmented",
  29840. height: math.unit(1250, "feet")
  29841. },
  29842. {
  29843. name: "Unleashed",
  29844. height: math.unit(3000, "feet")
  29845. },
  29846. ]
  29847. ))
  29848. characterMakers.push(() => makeCharacter(
  29849. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29850. {
  29851. side: {
  29852. height: math.unit(2 + 3 / 12, "feet"),
  29853. weight: math.unit(110, "lb"),
  29854. name: "Side",
  29855. image: {
  29856. source: "./media/characters/glitch-flux/side.svg",
  29857. extra: 997 / 805,
  29858. bottom: 20 / 1017
  29859. }
  29860. },
  29861. },
  29862. [
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(2 + 3 / 12, "feet"),
  29866. default: true
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29872. {
  29873. front: {
  29874. height: math.unit(4, "meters"),
  29875. name: "Front",
  29876. image: {
  29877. source: "./media/characters/mid/front.svg",
  29878. extra: 507 / 476,
  29879. bottom: 17 / 524
  29880. }
  29881. },
  29882. back: {
  29883. height: math.unit(4, "meters"),
  29884. name: "Back",
  29885. image: {
  29886. source: "./media/characters/mid/back.svg",
  29887. extra: 519 / 487,
  29888. bottom: 7 / 526
  29889. }
  29890. },
  29891. stuck: {
  29892. height: math.unit(2.2, "meters"),
  29893. name: "Stuck",
  29894. image: {
  29895. source: "./media/characters/mid/stuck.svg",
  29896. extra: 1951 / 1869,
  29897. bottom: 88 / 2039
  29898. }
  29899. }
  29900. },
  29901. [
  29902. {
  29903. name: "Normal",
  29904. height: math.unit(4, "meters"),
  29905. default: true
  29906. },
  29907. {
  29908. name: "Big",
  29909. height: math.unit(10, "meters")
  29910. },
  29911. {
  29912. name: "Macro",
  29913. height: math.unit(800, "meters")
  29914. },
  29915. {
  29916. name: "Megamacro",
  29917. height: math.unit(100, "km")
  29918. },
  29919. {
  29920. name: "Overgrown",
  29921. height: math.unit(1, "parsec")
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(2.5, "meters"),
  29930. weight: math.unit(225, "kg"),
  29931. name: "Front",
  29932. image: {
  29933. source: "./media/characters/iris/front.svg",
  29934. extra: 3348 / 3251,
  29935. bottom: 205 / 3553
  29936. }
  29937. },
  29938. maw: {
  29939. height: math.unit(0.56, "meter"),
  29940. name: "Maw",
  29941. image: {
  29942. source: "./media/characters/iris/maw.svg"
  29943. }
  29944. },
  29945. },
  29946. [
  29947. {
  29948. name: "Mewter cat",
  29949. height: math.unit(1.2, "meters")
  29950. },
  29951. {
  29952. name: "Minimacro",
  29953. height: math.unit(2.5, "meters"),
  29954. default: true
  29955. },
  29956. {
  29957. name: "Macro",
  29958. height: math.unit(180, "meters")
  29959. },
  29960. {
  29961. name: "Megamacro",
  29962. height: math.unit(2746, "meters")
  29963. },
  29964. ]
  29965. ))
  29966. characterMakers.push(() => makeCharacter(
  29967. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29968. {
  29969. front: {
  29970. height: math.unit(6, "feet"),
  29971. weight: math.unit(135, "lb"),
  29972. name: "Front",
  29973. image: {
  29974. source: "./media/characters/axel/front.svg",
  29975. extra: 908 / 908,
  29976. bottom: 58 / 966
  29977. }
  29978. },
  29979. side: {
  29980. height: math.unit(6, "feet"),
  29981. weight: math.unit(135, "lb"),
  29982. name: "Side",
  29983. image: {
  29984. source: "./media/characters/axel/side.svg",
  29985. extra: 958 / 958,
  29986. bottom: 11 / 969
  29987. }
  29988. },
  29989. back: {
  29990. height: math.unit(6, "feet"),
  29991. weight: math.unit(135, "lb"),
  29992. name: "Back",
  29993. image: {
  29994. source: "./media/characters/axel/back.svg",
  29995. extra: 887 / 887,
  29996. bottom: 34 / 921
  29997. }
  29998. },
  29999. head: {
  30000. height: math.unit(1.07, "feet"),
  30001. name: "Head",
  30002. image: {
  30003. source: "./media/characters/axel/head.svg"
  30004. }
  30005. },
  30006. beak: {
  30007. height: math.unit(1.4, "feet"),
  30008. name: "Beak",
  30009. image: {
  30010. source: "./media/characters/axel/beak.svg"
  30011. }
  30012. },
  30013. beakSide: {
  30014. height: math.unit(1.4, "feet"),
  30015. name: "Beak Side",
  30016. image: {
  30017. source: "./media/characters/axel/beak-side.svg"
  30018. }
  30019. },
  30020. sheath: {
  30021. height: math.unit(0.5, "feet"),
  30022. name: "Sheath",
  30023. image: {
  30024. source: "./media/characters/axel/sheath.svg"
  30025. }
  30026. },
  30027. dick: {
  30028. height: math.unit(0.98, "feet"),
  30029. name: "Dick",
  30030. image: {
  30031. source: "./media/characters/axel/dick.svg"
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Macro",
  30038. height: math.unit(68, "meters"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(3.5, "meters"),
  30048. weight: math.unit(1200, "kg"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/joanna/front.svg",
  30052. extra: 1596 / 1488,
  30053. bottom: 29 / 1625
  30054. }
  30055. },
  30056. back: {
  30057. height: math.unit(3.5, "meters"),
  30058. weight: math.unit(1200, "kg"),
  30059. name: "Back",
  30060. image: {
  30061. source: "./media/characters/joanna/back.svg",
  30062. extra: 1594 / 1495,
  30063. bottom: 26 / 1620
  30064. }
  30065. },
  30066. frontShorts: {
  30067. height: math.unit(3.5, "meters"),
  30068. weight: math.unit(1200, "kg"),
  30069. name: "Front (Shorts)",
  30070. image: {
  30071. source: "./media/characters/joanna/front-shorts.svg",
  30072. extra: 1596 / 1488,
  30073. bottom: 29 / 1625
  30074. }
  30075. },
  30076. frontBiker: {
  30077. height: math.unit(3.5, "meters"),
  30078. weight: math.unit(1200, "kg"),
  30079. name: "Front (Biker)",
  30080. image: {
  30081. source: "./media/characters/joanna/front-biker.svg",
  30082. extra: 1596 / 1488,
  30083. bottom: 29 / 1625
  30084. }
  30085. },
  30086. backBiker: {
  30087. height: math.unit(3.5, "meters"),
  30088. weight: math.unit(1200, "kg"),
  30089. name: "Back (Biker)",
  30090. image: {
  30091. source: "./media/characters/joanna/back-biker.svg",
  30092. extra: 1594 / 1495,
  30093. bottom: 88 / 1682
  30094. }
  30095. },
  30096. bikeLeft: {
  30097. height: math.unit(2.4, "meters"),
  30098. weight: math.unit(1600, "kg"),
  30099. name: "Bike (Left)",
  30100. image: {
  30101. source: "./media/characters/joanna/bike-left.svg",
  30102. extra: 720 / 720,
  30103. bottom: 8 / 728
  30104. }
  30105. },
  30106. bikeRight: {
  30107. height: math.unit(2.4, "meters"),
  30108. weight: math.unit(1600, "kg"),
  30109. name: "Bike (Right)",
  30110. image: {
  30111. source: "./media/characters/joanna/bike-right.svg",
  30112. extra: 720 / 720,
  30113. bottom: 8 / 728
  30114. }
  30115. },
  30116. },
  30117. [
  30118. {
  30119. name: "Incognito",
  30120. height: math.unit(3.5, "meters")
  30121. },
  30122. {
  30123. name: "Casual Big",
  30124. height: math.unit(200, "meters")
  30125. },
  30126. {
  30127. name: "Macro",
  30128. height: math.unit(600, "meters")
  30129. },
  30130. {
  30131. name: "Original",
  30132. height: math.unit(20, "km"),
  30133. default: true
  30134. },
  30135. {
  30136. name: "Giga",
  30137. height: math.unit(400, "km")
  30138. },
  30139. {
  30140. name: "Lounging",
  30141. height: math.unit(1500, "km")
  30142. },
  30143. {
  30144. name: "Planetary",
  30145. height: math.unit(200000, "km")
  30146. },
  30147. ]
  30148. ))
  30149. characterMakers.push(() => makeCharacter(
  30150. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30151. {
  30152. front: {
  30153. height: math.unit(6, "feet"),
  30154. weight: math.unit(150, "lb"),
  30155. name: "Front",
  30156. image: {
  30157. source: "./media/characters/hugo-sigil/front.svg",
  30158. extra: 522 / 500,
  30159. bottom: 2 / 524
  30160. }
  30161. },
  30162. back: {
  30163. height: math.unit(6, "feet"),
  30164. weight: math.unit(150, "lb"),
  30165. name: "Back",
  30166. image: {
  30167. source: "./media/characters/hugo-sigil/back.svg",
  30168. extra: 519 / 495,
  30169. bottom: 5 / 524
  30170. }
  30171. },
  30172. maw: {
  30173. height: math.unit(1.4, "feet"),
  30174. weight: math.unit(150, "lb"),
  30175. name: "Maw",
  30176. image: {
  30177. source: "./media/characters/hugo-sigil/maw.svg"
  30178. }
  30179. },
  30180. feet: {
  30181. height: math.unit(1.56, "feet"),
  30182. weight: math.unit(150, "lb"),
  30183. name: "Feet",
  30184. image: {
  30185. source: "./media/characters/hugo-sigil/feet.svg",
  30186. extra: 177 / 177,
  30187. bottom: 12 / 189
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(6, "feet")
  30195. },
  30196. {
  30197. name: "Macro",
  30198. height: math.unit(200, "feet"),
  30199. default: true
  30200. },
  30201. ]
  30202. ))
  30203. characterMakers.push(() => makeCharacter(
  30204. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30205. {
  30206. front: {
  30207. height: math.unit(6, "feet"),
  30208. weight: math.unit(150, "lb"),
  30209. name: "Front",
  30210. image: {
  30211. source: "./media/characters/peri/front.svg",
  30212. extra: 2354 / 2233,
  30213. bottom: 49 / 2403
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Really Small",
  30220. height: math.unit(1, "nm")
  30221. },
  30222. {
  30223. name: "Micro",
  30224. height: math.unit(4, "inches")
  30225. },
  30226. {
  30227. name: "Normal",
  30228. height: math.unit(7, "inches"),
  30229. default: true
  30230. },
  30231. {
  30232. name: "Macro",
  30233. height: math.unit(400, "feet")
  30234. },
  30235. {
  30236. name: "Megamacro",
  30237. height: math.unit(100, "miles")
  30238. },
  30239. ]
  30240. ))
  30241. characterMakers.push(() => makeCharacter(
  30242. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30243. {
  30244. frontSlim: {
  30245. height: math.unit(7, "feet"),
  30246. name: "Front (Slim)",
  30247. image: {
  30248. source: "./media/characters/issilora/front-slim.svg",
  30249. extra: 529 / 449,
  30250. bottom: 53 / 582
  30251. }
  30252. },
  30253. sideSlim: {
  30254. height: math.unit(7, "feet"),
  30255. name: "Side (Slim)",
  30256. image: {
  30257. source: "./media/characters/issilora/side-slim.svg",
  30258. extra: 570 / 480,
  30259. bottom: 30 / 600
  30260. }
  30261. },
  30262. backSlim: {
  30263. height: math.unit(7, "feet"),
  30264. name: "Back (Slim)",
  30265. image: {
  30266. source: "./media/characters/issilora/back-slim.svg",
  30267. extra: 537 / 455,
  30268. bottom: 46 / 583
  30269. }
  30270. },
  30271. frontBuff: {
  30272. height: math.unit(7, "feet"),
  30273. name: "Front (Buff)",
  30274. image: {
  30275. source: "./media/characters/issilora/front-buff.svg",
  30276. extra: 2310 / 2035,
  30277. bottom: 335 / 2645
  30278. }
  30279. },
  30280. head: {
  30281. height: math.unit(1.94, "feet"),
  30282. name: "Head",
  30283. image: {
  30284. source: "./media/characters/issilora/head.svg"
  30285. }
  30286. },
  30287. },
  30288. [
  30289. {
  30290. name: "Minimum",
  30291. height: math.unit(7, "feet")
  30292. },
  30293. {
  30294. name: "Comfortable",
  30295. height: math.unit(17, "feet")
  30296. },
  30297. {
  30298. name: "Fun Size",
  30299. height: math.unit(47, "feet")
  30300. },
  30301. {
  30302. name: "Natural Macro",
  30303. height: math.unit(137, "feet"),
  30304. default: true
  30305. },
  30306. {
  30307. name: "Maximum Kaiju",
  30308. height: math.unit(397, "feet")
  30309. },
  30310. ]
  30311. ))
  30312. characterMakers.push(() => makeCharacter(
  30313. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30314. {
  30315. front: {
  30316. height: math.unit(50 + 9/12, "feet"),
  30317. weight: math.unit(32.8, "tons"),
  30318. name: "Front",
  30319. image: {
  30320. source: "./media/characters/irb'iiritaahn/front.svg",
  30321. extra: 1878/1826,
  30322. bottom: 326/2204
  30323. }
  30324. },
  30325. back: {
  30326. height: math.unit(50 + 9/12, "feet"),
  30327. weight: math.unit(32.8, "tons"),
  30328. name: "Back",
  30329. image: {
  30330. source: "./media/characters/irb'iiritaahn/back.svg",
  30331. extra: 2052/2018,
  30332. bottom: 152/2204
  30333. }
  30334. },
  30335. head: {
  30336. height: math.unit(12.86, "feet"),
  30337. name: "Head",
  30338. image: {
  30339. source: "./media/characters/irb'iiritaahn/head.svg"
  30340. }
  30341. },
  30342. maw: {
  30343. height: math.unit(9.66, "feet"),
  30344. name: "Maw",
  30345. image: {
  30346. source: "./media/characters/irb'iiritaahn/maw.svg"
  30347. }
  30348. },
  30349. frontDick: {
  30350. height: math.unit(8.78461, "feet"),
  30351. name: "Front Dick",
  30352. image: {
  30353. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30354. }
  30355. },
  30356. rearDick: {
  30357. height: math.unit(8.78461, "feet"),
  30358. name: "Rear Dick",
  30359. image: {
  30360. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30361. }
  30362. },
  30363. rearDickUnfolded: {
  30364. height: math.unit(8.78, "feet"),
  30365. name: "Rear Dick (Unfolded)",
  30366. image: {
  30367. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30368. }
  30369. },
  30370. wings: {
  30371. height: math.unit(43, "feet"),
  30372. name: "Wings",
  30373. image: {
  30374. source: "./media/characters/irb'iiritaahn/wings.svg"
  30375. }
  30376. },
  30377. },
  30378. [
  30379. {
  30380. name: "Macro",
  30381. height: math.unit(50 + 9/12, "feet"),
  30382. default: true
  30383. },
  30384. ]
  30385. ))
  30386. characterMakers.push(() => makeCharacter(
  30387. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30388. {
  30389. front: {
  30390. height: math.unit(205, "cm"),
  30391. weight: math.unit(102, "kg"),
  30392. name: "Front",
  30393. image: {
  30394. source: "./media/characters/irbisgreif/front.svg",
  30395. extra: 785/706,
  30396. bottom: 13/798
  30397. }
  30398. },
  30399. back: {
  30400. height: math.unit(205, "cm"),
  30401. weight: math.unit(102, "kg"),
  30402. name: "Back",
  30403. image: {
  30404. source: "./media/characters/irbisgreif/back.svg",
  30405. extra: 713/701,
  30406. bottom: 26/739
  30407. }
  30408. },
  30409. frontDressed: {
  30410. height: math.unit(216, "cm"),
  30411. weight: math.unit(102, "kg"),
  30412. name: "Front-dressed",
  30413. image: {
  30414. source: "./media/characters/irbisgreif/front-dressed.svg",
  30415. extra: 902/776,
  30416. bottom: 14/916
  30417. }
  30418. },
  30419. sideDressed: {
  30420. height: math.unit(195, "cm"),
  30421. weight: math.unit(102, "kg"),
  30422. name: "Side-dressed",
  30423. image: {
  30424. source: "./media/characters/irbisgreif/side-dressed.svg",
  30425. extra: 788/688,
  30426. bottom: 21/809
  30427. }
  30428. },
  30429. backDressed: {
  30430. height: math.unit(216, "cm"),
  30431. weight: math.unit(102, "kg"),
  30432. name: "Back-dressed",
  30433. image: {
  30434. source: "./media/characters/irbisgreif/back-dressed.svg",
  30435. extra: 901/783,
  30436. bottom: 10/911
  30437. }
  30438. },
  30439. dick: {
  30440. height: math.unit(0.49, "feet"),
  30441. name: "Dick",
  30442. image: {
  30443. source: "./media/characters/irbisgreif/dick.svg"
  30444. }
  30445. },
  30446. wingTop: {
  30447. height: math.unit(1.93 , "feet"),
  30448. name: "Wing-top",
  30449. image: {
  30450. source: "./media/characters/irbisgreif/wing-top.svg"
  30451. }
  30452. },
  30453. wingBottom: {
  30454. height: math.unit(1.93 , "feet"),
  30455. name: "Wing-bottom",
  30456. image: {
  30457. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30458. }
  30459. },
  30460. },
  30461. [
  30462. {
  30463. name: "Normal",
  30464. height: math.unit(216, "cm"),
  30465. default: true
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(6, "feet"),
  30474. weight: math.unit(150, "lb"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/pride/front.svg",
  30478. extra: 1299/1230,
  30479. bottom: 18/1317
  30480. }
  30481. },
  30482. },
  30483. [
  30484. {
  30485. name: "Normal",
  30486. height: math.unit(7, "feet")
  30487. },
  30488. {
  30489. name: "Mini-macro",
  30490. height: math.unit(11, "feet")
  30491. },
  30492. {
  30493. name: "Macro",
  30494. height: math.unit(15, "meters"),
  30495. default: true
  30496. },
  30497. {
  30498. name: "Macro+",
  30499. height: math.unit(40, "meters")
  30500. },
  30501. ]
  30502. ))
  30503. characterMakers.push(() => makeCharacter(
  30504. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30505. {
  30506. front: {
  30507. height: math.unit(4 + 2 / 12, "feet"),
  30508. weight: math.unit(95, "lb"),
  30509. name: "Front",
  30510. image: {
  30511. source: "./media/characters/vaelophis-nyx/front.svg",
  30512. extra: 2532/2330,
  30513. bottom: 0/2532
  30514. }
  30515. },
  30516. back: {
  30517. height: math.unit(4 + 2 / 12, "feet"),
  30518. weight: math.unit(95, "lb"),
  30519. name: "Back",
  30520. image: {
  30521. source: "./media/characters/vaelophis-nyx/back.svg",
  30522. extra: 2484/2361,
  30523. bottom: 0/2484
  30524. }
  30525. },
  30526. feralSide: {
  30527. height: math.unit(2 + 1/12, "feet"),
  30528. weight: math.unit(20, "lb"),
  30529. name: "Feral (Side)",
  30530. image: {
  30531. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30532. extra: 1721/1581,
  30533. bottom: 70/1791
  30534. }
  30535. },
  30536. feralLazing: {
  30537. height: math.unit(1.08, "feet"),
  30538. weight: math.unit(20, "lb"),
  30539. name: "Feral (Lazing)",
  30540. image: {
  30541. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30542. extra: 822/822,
  30543. bottom: 248/1070
  30544. }
  30545. },
  30546. ear: {
  30547. height: math.unit(0.416, "feet"),
  30548. name: "Ear",
  30549. image: {
  30550. source: "./media/characters/vaelophis-nyx/ear.svg"
  30551. }
  30552. },
  30553. eye: {
  30554. height: math.unit(0.0748, "feet"),
  30555. name: "Eye",
  30556. image: {
  30557. source: "./media/characters/vaelophis-nyx/eye.svg"
  30558. }
  30559. },
  30560. mouth: {
  30561. height: math.unit(0.378, "feet"),
  30562. name: "Mouth",
  30563. image: {
  30564. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30565. }
  30566. },
  30567. spade: {
  30568. height: math.unit(0.55, "feet"),
  30569. name: "Spade",
  30570. image: {
  30571. source: "./media/characters/vaelophis-nyx/spade.svg"
  30572. }
  30573. },
  30574. },
  30575. [
  30576. {
  30577. name: "Normal",
  30578. height: math.unit(4 + 2/12, "feet"),
  30579. default: true
  30580. },
  30581. ]
  30582. ))
  30583. characterMakers.push(() => makeCharacter(
  30584. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30585. {
  30586. front: {
  30587. height: math.unit(7, "feet"),
  30588. weight: math.unit(231, "lb"),
  30589. name: "Front",
  30590. image: {
  30591. source: "./media/characters/flux/front.svg",
  30592. extra: 919/871,
  30593. bottom: 0/919
  30594. }
  30595. },
  30596. back: {
  30597. height: math.unit(7, "feet"),
  30598. weight: math.unit(231, "lb"),
  30599. name: "Back",
  30600. image: {
  30601. source: "./media/characters/flux/back.svg",
  30602. extra: 1040/992,
  30603. bottom: 0/1040
  30604. }
  30605. },
  30606. frontDressed: {
  30607. height: math.unit(7, "feet"),
  30608. weight: math.unit(231, "lb"),
  30609. name: "Front (Dressed)",
  30610. image: {
  30611. source: "./media/characters/flux/front-dressed.svg",
  30612. extra: 919/871,
  30613. bottom: 0/919
  30614. }
  30615. },
  30616. feralSide: {
  30617. height: math.unit(5, "feet"),
  30618. weight: math.unit(150, "lb"),
  30619. name: "Feral (Side)",
  30620. image: {
  30621. source: "./media/characters/flux/feral-side.svg",
  30622. extra: 598/528,
  30623. bottom: 28/626
  30624. }
  30625. },
  30626. head: {
  30627. height: math.unit(1.585, "feet"),
  30628. name: "Head",
  30629. image: {
  30630. source: "./media/characters/flux/head.svg"
  30631. }
  30632. },
  30633. headSide: {
  30634. height: math.unit(1.74, "feet"),
  30635. name: "Head (Side)",
  30636. image: {
  30637. source: "./media/characters/flux/head-side.svg"
  30638. }
  30639. },
  30640. headSideFire: {
  30641. height: math.unit(1.76, "feet"),
  30642. name: "Head (Side, Fire)",
  30643. image: {
  30644. source: "./media/characters/flux/head-side-fire.svg"
  30645. }
  30646. },
  30647. },
  30648. [
  30649. {
  30650. name: "Normal",
  30651. height: math.unit(7, "feet"),
  30652. default: true
  30653. },
  30654. ]
  30655. ))
  30656. characterMakers.push(() => makeCharacter(
  30657. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30658. {
  30659. front: {
  30660. height: math.unit(9, "feet"),
  30661. weight: math.unit(1012, "lb"),
  30662. name: "Front",
  30663. image: {
  30664. source: "./media/characters/ulfra-lupae/front.svg",
  30665. extra: 1083/1011,
  30666. bottom: 67/1150
  30667. }
  30668. },
  30669. },
  30670. [
  30671. {
  30672. name: "Micro",
  30673. height: math.unit(6, "inches")
  30674. },
  30675. {
  30676. name: "Socializing",
  30677. height: math.unit(6 + 5/12, "feet")
  30678. },
  30679. {
  30680. name: "Normal",
  30681. height: math.unit(9, "feet"),
  30682. default: true
  30683. },
  30684. {
  30685. name: "Macro",
  30686. height: math.unit(150, "feet")
  30687. },
  30688. ]
  30689. ))
  30690. characterMakers.push(() => makeCharacter(
  30691. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30692. {
  30693. front: {
  30694. height: math.unit(5 + 2/12, "feet"),
  30695. weight: math.unit(120, "lb"),
  30696. name: "Front",
  30697. image: {
  30698. source: "./media/characters/timber/front.svg",
  30699. extra: 2814/2705,
  30700. bottom: 181/2995
  30701. }
  30702. },
  30703. },
  30704. [
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(5 + 2/12, "feet"),
  30708. default: true
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30714. {
  30715. front: {
  30716. height: math.unit(5 + 7/12, "feet"),
  30717. weight: math.unit(220, "lb"),
  30718. name: "Front",
  30719. image: {
  30720. source: "./media/characters/nicki/front.svg",
  30721. extra: 453/419,
  30722. bottom: 7/460
  30723. }
  30724. },
  30725. frontAlt: {
  30726. height: math.unit(5 + 7/12, "feet"),
  30727. weight: math.unit(220, "lb"),
  30728. name: "Front-alt",
  30729. image: {
  30730. source: "./media/characters/nicki/front-alt.svg",
  30731. extra: 435/411,
  30732. bottom: 12/447
  30733. }
  30734. },
  30735. back: {
  30736. height: math.unit(5 + 7/12, "feet"),
  30737. weight: math.unit(220, "lb"),
  30738. name: "Back",
  30739. image: {
  30740. source: "./media/characters/nicki/back.svg",
  30741. extra: 440/413,
  30742. bottom: 19/459
  30743. }
  30744. },
  30745. taur: {
  30746. height: math.unit(7 + 6/12, "feet"),
  30747. weight: math.unit(700, "lb"),
  30748. name: "Taur",
  30749. image: {
  30750. source: "./media/characters/nicki/taur.svg",
  30751. extra: 975/773,
  30752. bottom: 0/975
  30753. }
  30754. },
  30755. frontNsfw: {
  30756. height: math.unit(5 + 7/12, "feet"),
  30757. weight: math.unit(220, "lb"),
  30758. name: "Front (NSFW)",
  30759. image: {
  30760. source: "./media/characters/nicki/front-nsfw.svg",
  30761. extra: 453/419,
  30762. bottom: 7/460
  30763. }
  30764. },
  30765. frontNsfwAlt: {
  30766. height: math.unit(5 + 7/12, "feet"),
  30767. weight: math.unit(220, "lb"),
  30768. name: "Front (Alt, NSFW)",
  30769. image: {
  30770. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30771. extra: 435/411,
  30772. bottom: 12/447
  30773. }
  30774. },
  30775. backNsfw: {
  30776. height: math.unit(5 + 7/12, "feet"),
  30777. weight: math.unit(220, "lb"),
  30778. name: "Back (NSFW)",
  30779. image: {
  30780. source: "./media/characters/nicki/back-nsfw.svg",
  30781. extra: 440/413,
  30782. bottom: 19/459
  30783. }
  30784. },
  30785. head: {
  30786. height: math.unit(2.1, "feet"),
  30787. name: "Head",
  30788. image: {
  30789. source: "./media/characters/nicki/head.svg"
  30790. }
  30791. },
  30792. paw: {
  30793. height: math.unit(1.88, "feet"),
  30794. name: "Paw",
  30795. image: {
  30796. source: "./media/characters/nicki/paw.svg"
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Normal",
  30803. height: math.unit(5 + 7/12, "feet"),
  30804. default: true
  30805. },
  30806. ]
  30807. ))
  30808. characterMakers.push(() => makeCharacter(
  30809. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30810. {
  30811. front: {
  30812. height: math.unit(7 + 10/12, "feet"),
  30813. weight: math.unit(3.5, "tons"),
  30814. name: "Front",
  30815. image: {
  30816. source: "./media/characters/lee/front.svg",
  30817. extra: 1773/1615,
  30818. bottom: 86/1859
  30819. }
  30820. },
  30821. hand: {
  30822. height: math.unit(1.78, "feet"),
  30823. name: "Hand",
  30824. image: {
  30825. source: "./media/characters/lee/hand.svg"
  30826. }
  30827. },
  30828. maw: {
  30829. height: math.unit(1.18, "feet"),
  30830. name: "Maw",
  30831. image: {
  30832. source: "./media/characters/lee/maw.svg"
  30833. }
  30834. },
  30835. },
  30836. [
  30837. {
  30838. name: "Normal",
  30839. height: math.unit(7 + 10/12, "feet"),
  30840. default: true
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30846. {
  30847. front: {
  30848. height: math.unit(9, "feet"),
  30849. name: "Front",
  30850. image: {
  30851. source: "./media/characters/guti/front.svg",
  30852. extra: 4551/4355,
  30853. bottom: 123/4674
  30854. }
  30855. },
  30856. tongue: {
  30857. height: math.unit(1, "feet"),
  30858. name: "Tongue",
  30859. image: {
  30860. source: "./media/characters/guti/tongue.svg"
  30861. }
  30862. },
  30863. paw: {
  30864. height: math.unit(1.18, "feet"),
  30865. name: "Paw",
  30866. image: {
  30867. source: "./media/characters/guti/paw.svg"
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(9, "feet"),
  30875. default: true
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30881. {
  30882. side: {
  30883. height: math.unit(5, "meters"),
  30884. name: "Side",
  30885. image: {
  30886. source: "./media/characters/vesper/side.svg",
  30887. extra: 1605/1518,
  30888. bottom: 0/1605
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Small",
  30895. height: math.unit(5, "meters")
  30896. },
  30897. {
  30898. name: "Sage",
  30899. height: math.unit(100, "meters"),
  30900. default: true
  30901. },
  30902. {
  30903. name: "Fun Size",
  30904. height: math.unit(600, "meters")
  30905. },
  30906. {
  30907. name: "Goddess",
  30908. height: math.unit(20000, "km")
  30909. },
  30910. {
  30911. name: "Maximum",
  30912. height: math.unit(5, "galaxies")
  30913. },
  30914. ]
  30915. ))
  30916. characterMakers.push(() => makeCharacter(
  30917. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30918. {
  30919. front: {
  30920. height: math.unit(6 + 3/12, "feet"),
  30921. weight: math.unit(190, "lb"),
  30922. name: "Front",
  30923. image: {
  30924. source: "./media/characters/gawain/front.svg",
  30925. extra: 2222/2139,
  30926. bottom: 90/2312
  30927. }
  30928. },
  30929. back: {
  30930. height: math.unit(6 + 3/12, "feet"),
  30931. weight: math.unit(190, "lb"),
  30932. name: "Back",
  30933. image: {
  30934. source: "./media/characters/gawain/back.svg",
  30935. extra: 2199/2111,
  30936. bottom: 73/2272
  30937. }
  30938. },
  30939. },
  30940. [
  30941. {
  30942. name: "Normal",
  30943. height: math.unit(6 + 3/12, "feet"),
  30944. default: true
  30945. },
  30946. ]
  30947. ))
  30948. characterMakers.push(() => makeCharacter(
  30949. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30950. {
  30951. side: {
  30952. height: math.unit(3.5, "meters"),
  30953. weight: math.unit(16000, "lb"),
  30954. name: "Side",
  30955. image: {
  30956. source: "./media/characters/dascalti/side.svg",
  30957. extra: 392/273,
  30958. bottom: 47/439
  30959. }
  30960. },
  30961. breath: {
  30962. height: math.unit(7.4, "feet"),
  30963. name: "Breath",
  30964. image: {
  30965. source: "./media/characters/dascalti/breath.svg"
  30966. }
  30967. },
  30968. fed: {
  30969. height: math.unit(3.6, "meters"),
  30970. weight: math.unit(16000, "lb"),
  30971. name: "Fed",
  30972. image: {
  30973. source: "./media/characters/dascalti/fed.svg",
  30974. extra: 1419/820,
  30975. bottom: 95/1514
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(3.5, "meters"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30989. {
  30990. front: {
  30991. height: math.unit(3 + 5/12, "feet"),
  30992. name: "Front",
  30993. image: {
  30994. source: "./media/characters/mauve/front.svg",
  30995. extra: 1126/1033,
  30996. bottom: 65/1191
  30997. }
  30998. },
  30999. side: {
  31000. height: math.unit(3 + 5/12, "feet"),
  31001. name: "Side",
  31002. image: {
  31003. source: "./media/characters/mauve/side.svg",
  31004. extra: 1089/1001,
  31005. bottom: 29/1118
  31006. }
  31007. },
  31008. back: {
  31009. height: math.unit(3 + 5/12, "feet"),
  31010. name: "Back",
  31011. image: {
  31012. source: "./media/characters/mauve/back.svg",
  31013. extra: 1173/1053,
  31014. bottom: 109/1282
  31015. }
  31016. },
  31017. },
  31018. [
  31019. {
  31020. name: "Normal",
  31021. height: math.unit(3 + 5/12, "feet"),
  31022. default: true
  31023. },
  31024. ]
  31025. ))
  31026. characterMakers.push(() => makeCharacter(
  31027. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31028. {
  31029. front: {
  31030. height: math.unit(6 + 3/12, "feet"),
  31031. weight: math.unit(430, "lb"),
  31032. name: "Front",
  31033. image: {
  31034. source: "./media/characters/carlos/front.svg",
  31035. extra: 1964/1913,
  31036. bottom: 70/2034
  31037. }
  31038. },
  31039. },
  31040. [
  31041. {
  31042. name: "Normal",
  31043. height: math.unit(6 + 3/12, "feet"),
  31044. default: true
  31045. },
  31046. ]
  31047. ))
  31048. characterMakers.push(() => makeCharacter(
  31049. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31050. {
  31051. back: {
  31052. height: math.unit(5 + 10/12, "feet"),
  31053. weight: math.unit(200, "lb"),
  31054. name: "Back",
  31055. image: {
  31056. source: "./media/characters/jax/back.svg",
  31057. extra: 764/739,
  31058. bottom: 25/789
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Normal",
  31065. height: math.unit(5 + 10/12, "feet"),
  31066. default: true
  31067. },
  31068. ]
  31069. ))
  31070. characterMakers.push(() => makeCharacter(
  31071. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31072. {
  31073. front: {
  31074. height: math.unit(8, "feet"),
  31075. weight: math.unit(250, "lb"),
  31076. name: "Front",
  31077. image: {
  31078. source: "./media/characters/eikthynir/front.svg",
  31079. extra: 1332/1166,
  31080. bottom: 82/1414
  31081. }
  31082. },
  31083. back: {
  31084. height: math.unit(8, "feet"),
  31085. weight: math.unit(250, "lb"),
  31086. name: "Back",
  31087. image: {
  31088. source: "./media/characters/eikthynir/back.svg",
  31089. extra: 1342/1190,
  31090. bottom: 19/1361
  31091. }
  31092. },
  31093. dick: {
  31094. height: math.unit(2.35, "feet"),
  31095. name: "Dick",
  31096. image: {
  31097. source: "./media/characters/eikthynir/dick.svg"
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(8, "feet"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(99, "meters"),
  31114. weight: math.unit(13000, "tons"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/zlmos/front.svg",
  31118. extra: 2202/1992,
  31119. bottom: 315/2517
  31120. }
  31121. },
  31122. },
  31123. [
  31124. {
  31125. name: "Macro",
  31126. height: math.unit(99, "meters"),
  31127. default: true
  31128. },
  31129. ]
  31130. ))
  31131. characterMakers.push(() => makeCharacter(
  31132. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31133. {
  31134. front: {
  31135. height: math.unit(6 + 5/12, "feet"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/purri/front.svg",
  31139. extra: 1698/1610,
  31140. bottom: 32/1730
  31141. }
  31142. },
  31143. frontAlt: {
  31144. height: math.unit(6 + 5/12, "feet"),
  31145. name: "Front (Alt)",
  31146. image: {
  31147. source: "./media/characters/purri/front-alt.svg",
  31148. extra: 450/420,
  31149. bottom: 26/476
  31150. }
  31151. },
  31152. boots: {
  31153. height: math.unit(5.5, "feet"),
  31154. name: "Boots",
  31155. image: {
  31156. source: "./media/characters/purri/boots.svg",
  31157. extra: 905/853,
  31158. bottom: 18/923
  31159. }
  31160. },
  31161. lying: {
  31162. height: math.unit(2, "feet"),
  31163. name: "Lying",
  31164. image: {
  31165. source: "./media/characters/purri/lying.svg",
  31166. extra: 940/843,
  31167. bottom: 146/1086
  31168. }
  31169. },
  31170. devious: {
  31171. height: math.unit(1.77, "feet"),
  31172. name: "Devious",
  31173. image: {
  31174. source: "./media/characters/purri/devious.svg",
  31175. extra: 1440/1155,
  31176. bottom: 147/1587
  31177. }
  31178. },
  31179. bean: {
  31180. height: math.unit(1.94, "feet"),
  31181. name: "Bean",
  31182. image: {
  31183. source: "./media/characters/purri/bean.svg"
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Micro",
  31190. height: math.unit(1, "mm")
  31191. },
  31192. {
  31193. name: "Normal",
  31194. height: math.unit(6 + 5/12, "feet"),
  31195. default: true
  31196. },
  31197. {
  31198. name: "Macro :3c",
  31199. height: math.unit(2, "miles")
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31205. {
  31206. front: {
  31207. height: math.unit(6 + 2/12, "feet"),
  31208. weight: math.unit(250, "lb"),
  31209. name: "Front",
  31210. image: {
  31211. source: "./media/characters/moonlight/front.svg",
  31212. extra: 1044/908,
  31213. bottom: 56/1100
  31214. }
  31215. },
  31216. feral: {
  31217. height: math.unit(3 + 1/12, "feet"),
  31218. weight: math.unit(50, "kg"),
  31219. name: "Feral",
  31220. image: {
  31221. source: "./media/characters/moonlight/feral.svg",
  31222. extra: 3705/2791,
  31223. bottom: 145/3850
  31224. }
  31225. },
  31226. paw: {
  31227. height: math.unit(1, "feet"),
  31228. name: "Paw",
  31229. image: {
  31230. source: "./media/characters/moonlight/paw.svg"
  31231. }
  31232. },
  31233. paws: {
  31234. height: math.unit(0.98, "feet"),
  31235. name: "Paws",
  31236. image: {
  31237. source: "./media/characters/moonlight/paws.svg",
  31238. extra: 939/939,
  31239. bottom: 50/989
  31240. }
  31241. },
  31242. mouth: {
  31243. height: math.unit(0.48, "feet"),
  31244. name: "Mouth",
  31245. image: {
  31246. source: "./media/characters/moonlight/mouth.svg"
  31247. }
  31248. },
  31249. dick: {
  31250. height: math.unit(1.46, "feet"),
  31251. name: "Dick",
  31252. image: {
  31253. source: "./media/characters/moonlight/dick.svg"
  31254. }
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(6 + 2/12, "feet"),
  31261. default: true
  31262. },
  31263. {
  31264. name: "Macro",
  31265. height: math.unit(300, "feet")
  31266. },
  31267. {
  31268. name: "Macro+",
  31269. height: math.unit(1, "mile")
  31270. },
  31271. {
  31272. name: "Mt. Moon",
  31273. height: math.unit(5, "miles")
  31274. },
  31275. {
  31276. name: "Megamacro",
  31277. height: math.unit(15, "miles")
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31283. {
  31284. back: {
  31285. height: math.unit(6, "feet"),
  31286. weight: math.unit(150, "lb"),
  31287. name: "Back",
  31288. image: {
  31289. source: "./media/characters/sylen/back.svg",
  31290. extra: 1335/1273,
  31291. bottom: 107/1442
  31292. }
  31293. },
  31294. },
  31295. [
  31296. {
  31297. name: "Normal",
  31298. height: math.unit(5 + 5/12, "feet")
  31299. },
  31300. {
  31301. name: "Megamacro",
  31302. height: math.unit(3, "miles"),
  31303. default: true
  31304. },
  31305. ]
  31306. ))
  31307. characterMakers.push(() => makeCharacter(
  31308. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31309. {
  31310. front: {
  31311. height: math.unit(6, "feet"),
  31312. weight: math.unit(190, "lb"),
  31313. name: "Front",
  31314. image: {
  31315. source: "./media/characters/huttser/front.svg",
  31316. extra: 1152/1058,
  31317. bottom: 23/1175
  31318. }
  31319. },
  31320. side: {
  31321. height: math.unit(6, "feet"),
  31322. weight: math.unit(190, "lb"),
  31323. name: "Side",
  31324. image: {
  31325. source: "./media/characters/huttser/side.svg",
  31326. extra: 1174/1065,
  31327. bottom: 18/1192
  31328. }
  31329. },
  31330. back: {
  31331. height: math.unit(6, "feet"),
  31332. weight: math.unit(190, "lb"),
  31333. name: "Back",
  31334. image: {
  31335. source: "./media/characters/huttser/back.svg",
  31336. extra: 1158/1056,
  31337. bottom: 12/1170
  31338. }
  31339. },
  31340. },
  31341. [
  31342. ]
  31343. ))
  31344. characterMakers.push(() => makeCharacter(
  31345. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31346. {
  31347. side: {
  31348. height: math.unit(12 + 9/12, "feet"),
  31349. weight: math.unit(15000, "lb"),
  31350. name: "Side",
  31351. image: {
  31352. source: "./media/characters/faan/side.svg",
  31353. extra: 2747/2697,
  31354. bottom: 0/2747
  31355. }
  31356. },
  31357. front: {
  31358. height: math.unit(12 + 9/12, "feet"),
  31359. weight: math.unit(15000, "lb"),
  31360. name: "Front",
  31361. image: {
  31362. source: "./media/characters/faan/front.svg",
  31363. extra: 607/571,
  31364. bottom: 24/631
  31365. }
  31366. },
  31367. head: {
  31368. height: math.unit(2.85, "feet"),
  31369. name: "Head",
  31370. image: {
  31371. source: "./media/characters/faan/head.svg"
  31372. }
  31373. },
  31374. headAlt: {
  31375. height: math.unit(3.13, "feet"),
  31376. name: "Head-alt",
  31377. image: {
  31378. source: "./media/characters/faan/head-alt.svg"
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(12 + 9/12, "feet"),
  31386. default: true
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(6, "feet"),
  31395. weight: math.unit(300, "lb"),
  31396. name: "Front",
  31397. image: {
  31398. source: "./media/characters/tanio/front.svg",
  31399. extra: 711/673,
  31400. bottom: 25/736
  31401. }
  31402. },
  31403. },
  31404. [
  31405. {
  31406. name: "Normal",
  31407. height: math.unit(6, "feet"),
  31408. default: true
  31409. },
  31410. ]
  31411. ))
  31412. characterMakers.push(() => makeCharacter(
  31413. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31414. {
  31415. front: {
  31416. height: math.unit(3, "inches"),
  31417. name: "Front",
  31418. image: {
  31419. source: "./media/characters/noboru/front.svg",
  31420. extra: 1039/932,
  31421. bottom: 18/1057
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Micro",
  31428. height: math.unit(3, "inches"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(1.85, "meters"),
  31438. weight: math.unit(80, "kg"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/daniel-barrett/front.svg",
  31442. extra: 355/337,
  31443. bottom: 9/364
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Pico",
  31450. height: math.unit(0.0433, "mm")
  31451. },
  31452. {
  31453. name: "Nano",
  31454. height: math.unit(1.5, "mm")
  31455. },
  31456. {
  31457. name: "Micro",
  31458. height: math.unit(5.3, "cm"),
  31459. default: true
  31460. },
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(1.85, "meters")
  31464. },
  31465. {
  31466. name: "Macro",
  31467. height: math.unit(64.7, "meters")
  31468. },
  31469. {
  31470. name: "Megamacro",
  31471. height: math.unit(2.26, "km")
  31472. },
  31473. {
  31474. name: "Gigamacro",
  31475. height: math.unit(79, "km")
  31476. },
  31477. {
  31478. name: "Teramacro",
  31479. height: math.unit(2765, "km")
  31480. },
  31481. {
  31482. name: "Petamacro",
  31483. height: math.unit(96678, "km")
  31484. },
  31485. ]
  31486. ))
  31487. characterMakers.push(() => makeCharacter(
  31488. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31489. {
  31490. front: {
  31491. height: math.unit(30, "meters"),
  31492. weight: math.unit(400, "tons"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/zeel/front.svg",
  31496. extra: 2599/2599,
  31497. bottom: 226/2825
  31498. }
  31499. },
  31500. },
  31501. [
  31502. {
  31503. name: "Macro",
  31504. height: math.unit(30, "meters"),
  31505. default: true
  31506. },
  31507. ]
  31508. ))
  31509. characterMakers.push(() => makeCharacter(
  31510. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31511. {
  31512. front: {
  31513. height: math.unit(6 + 7/12, "feet"),
  31514. weight: math.unit(210, "lb"),
  31515. name: "Front",
  31516. image: {
  31517. source: "./media/characters/tarn/front.svg",
  31518. extra: 3517/3220,
  31519. bottom: 91/3608
  31520. }
  31521. },
  31522. back: {
  31523. height: math.unit(6 + 7/12, "feet"),
  31524. weight: math.unit(210, "lb"),
  31525. name: "Back",
  31526. image: {
  31527. source: "./media/characters/tarn/back.svg",
  31528. extra: 3566/3241,
  31529. bottom: 34/3600
  31530. }
  31531. },
  31532. dick: {
  31533. height: math.unit(1.65, "feet"),
  31534. name: "Dick",
  31535. image: {
  31536. source: "./media/characters/tarn/dick.svg"
  31537. }
  31538. },
  31539. paw: {
  31540. height: math.unit(1.80, "feet"),
  31541. name: "Paw",
  31542. image: {
  31543. source: "./media/characters/tarn/paw.svg"
  31544. }
  31545. },
  31546. tongue: {
  31547. height: math.unit(0.97, "feet"),
  31548. name: "Tongue",
  31549. image: {
  31550. source: "./media/characters/tarn/tongue.svg"
  31551. }
  31552. },
  31553. },
  31554. [
  31555. {
  31556. name: "Micro",
  31557. height: math.unit(4, "inches")
  31558. },
  31559. {
  31560. name: "Normal",
  31561. height: math.unit(6 + 7/12, "feet"),
  31562. default: true
  31563. },
  31564. {
  31565. name: "Macro",
  31566. height: math.unit(300, "feet")
  31567. },
  31568. ]
  31569. ))
  31570. characterMakers.push(() => makeCharacter(
  31571. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31572. {
  31573. front: {
  31574. height: math.unit(5 + 7/12, "feet"),
  31575. weight: math.unit(80, "kg"),
  31576. name: "Front",
  31577. image: {
  31578. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31579. extra: 3023/2865,
  31580. bottom: 33/3056
  31581. }
  31582. },
  31583. back: {
  31584. height: math.unit(5 + 7/12, "feet"),
  31585. weight: math.unit(80, "kg"),
  31586. name: "Back",
  31587. image: {
  31588. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31589. extra: 3020/2886,
  31590. bottom: 30/3050
  31591. }
  31592. },
  31593. dick: {
  31594. height: math.unit(0.98, "feet"),
  31595. name: "Dick",
  31596. image: {
  31597. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31598. }
  31599. },
  31600. anatomy: {
  31601. height: math.unit(2.86, "feet"),
  31602. name: "Anatomy",
  31603. image: {
  31604. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Really Small",
  31611. height: math.unit(2, "inches")
  31612. },
  31613. {
  31614. name: "Micro",
  31615. height: math.unit(5.583, "inches")
  31616. },
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(5 + 7/12, "feet"),
  31620. default: true
  31621. },
  31622. {
  31623. name: "Macro",
  31624. height: math.unit(67, "feet")
  31625. },
  31626. {
  31627. name: "Megamacro",
  31628. height: math.unit(134, "feet")
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31634. {
  31635. front: {
  31636. height: math.unit(9, "feet"),
  31637. weight: math.unit(120, "lb"),
  31638. name: "Front",
  31639. image: {
  31640. source: "./media/characters/sally/front.svg",
  31641. extra: 1506/1349,
  31642. bottom: 66/1572
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Normal",
  31649. height: math.unit(9, "feet"),
  31650. default: true
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31656. {
  31657. front: {
  31658. height: math.unit(8, "feet"),
  31659. weight: math.unit(900, "lb"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/owen/front.svg",
  31663. extra: 1761/1657,
  31664. bottom: 74/1835
  31665. }
  31666. },
  31667. side: {
  31668. height: math.unit(8, "feet"),
  31669. weight: math.unit(900, "lb"),
  31670. name: "Side",
  31671. image: {
  31672. source: "./media/characters/owen/side.svg",
  31673. extra: 1797/1734,
  31674. bottom: 30/1827
  31675. }
  31676. },
  31677. back: {
  31678. height: math.unit(8, "feet"),
  31679. weight: math.unit(900, "lb"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/owen/back.svg",
  31683. extra: 1796/1706,
  31684. bottom: 59/1855
  31685. }
  31686. },
  31687. maw: {
  31688. height: math.unit(1.76, "feet"),
  31689. name: "Maw",
  31690. image: {
  31691. source: "./media/characters/owen/maw.svg"
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Normal",
  31698. height: math.unit(8, "feet"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31705. {
  31706. front: {
  31707. height: math.unit(4, "feet"),
  31708. weight: math.unit(400, "lb"),
  31709. name: "Front",
  31710. image: {
  31711. source: "./media/characters/ryth/front.svg",
  31712. extra: 1920/1748,
  31713. bottom: 42/1962
  31714. }
  31715. },
  31716. back: {
  31717. height: math.unit(4, "feet"),
  31718. weight: math.unit(400, "lb"),
  31719. name: "Back",
  31720. image: {
  31721. source: "./media/characters/ryth/back.svg",
  31722. extra: 1897/1690,
  31723. bottom: 89/1986
  31724. }
  31725. },
  31726. mouth: {
  31727. height: math.unit(1.39, "feet"),
  31728. name: "Mouth",
  31729. image: {
  31730. source: "./media/characters/ryth/mouth.svg"
  31731. }
  31732. },
  31733. tailmaw: {
  31734. height: math.unit(1.23, "feet"),
  31735. name: "Tailmaw",
  31736. image: {
  31737. source: "./media/characters/ryth/tailmaw.svg"
  31738. }
  31739. },
  31740. goia: {
  31741. height: math.unit(12, "feet"),
  31742. weight: math.unit(10800, "lb"),
  31743. name: "Goia",
  31744. image: {
  31745. source: "./media/characters/ryth/goia.svg",
  31746. extra: 3450/3198,
  31747. bottom: 61/3511
  31748. }
  31749. },
  31750. },
  31751. [
  31752. {
  31753. name: "Normal",
  31754. height: math.unit(4, "feet"),
  31755. default: true
  31756. },
  31757. ]
  31758. ))
  31759. characterMakers.push(() => makeCharacter(
  31760. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31761. {
  31762. front: {
  31763. height: math.unit(7, "feet"),
  31764. weight: math.unit(180, "lb"),
  31765. name: "Front",
  31766. image: {
  31767. source: "./media/characters/necrolance/front.svg",
  31768. extra: 1062/947,
  31769. bottom: 41/1103
  31770. }
  31771. },
  31772. back: {
  31773. height: math.unit(7, "feet"),
  31774. weight: math.unit(180, "lb"),
  31775. name: "Back",
  31776. image: {
  31777. source: "./media/characters/necrolance/back.svg",
  31778. extra: 1045/984,
  31779. bottom: 14/1059
  31780. }
  31781. },
  31782. wing: {
  31783. height: math.unit(2.67, "feet"),
  31784. name: "Wing",
  31785. image: {
  31786. source: "./media/characters/necrolance/wing.svg"
  31787. }
  31788. },
  31789. },
  31790. [
  31791. {
  31792. name: "Normal",
  31793. height: math.unit(7, "feet"),
  31794. default: true
  31795. },
  31796. ]
  31797. ))
  31798. characterMakers.push(() => makeCharacter(
  31799. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31800. {
  31801. front: {
  31802. height: math.unit(76, "meters"),
  31803. weight: math.unit(30000, "tons"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/tyler/front.svg",
  31807. extra: 1640/1640,
  31808. bottom: 114/1754
  31809. }
  31810. },
  31811. },
  31812. [
  31813. {
  31814. name: "Macro",
  31815. height: math.unit(76, "meters"),
  31816. default: true
  31817. },
  31818. ]
  31819. ))
  31820. characterMakers.push(() => makeCharacter(
  31821. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31822. {
  31823. front: {
  31824. height: math.unit(4 + 11/12, "feet"),
  31825. weight: math.unit(132, "lb"),
  31826. name: "Front",
  31827. image: {
  31828. source: "./media/characters/icey/front.svg",
  31829. extra: 2750/2550,
  31830. bottom: 33/2783
  31831. }
  31832. },
  31833. back: {
  31834. height: math.unit(4 + 11/12, "feet"),
  31835. weight: math.unit(132, "lb"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/icey/back.svg",
  31839. extra: 2624/2481,
  31840. bottom: 35/2659
  31841. }
  31842. },
  31843. },
  31844. [
  31845. {
  31846. name: "Normal",
  31847. height: math.unit(4 + 11/12, "feet"),
  31848. default: true
  31849. },
  31850. ]
  31851. ))
  31852. characterMakers.push(() => makeCharacter(
  31853. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31854. {
  31855. front: {
  31856. height: math.unit(100, "feet"),
  31857. weight: math.unit(0, "lb"),
  31858. name: "Front",
  31859. image: {
  31860. source: "./media/characters/smile/front.svg",
  31861. extra: 2983/2912,
  31862. bottom: 162/3145
  31863. }
  31864. },
  31865. back: {
  31866. height: math.unit(100, "feet"),
  31867. weight: math.unit(0, "lb"),
  31868. name: "Back",
  31869. image: {
  31870. source: "./media/characters/smile/back.svg",
  31871. extra: 3143/3031,
  31872. bottom: 91/3234
  31873. }
  31874. },
  31875. head: {
  31876. height: math.unit(26.3, "feet"),
  31877. weight: math.unit(0, "lb"),
  31878. name: "Head",
  31879. image: {
  31880. source: "./media/characters/smile/head.svg"
  31881. }
  31882. },
  31883. collar: {
  31884. height: math.unit(5.3, "feet"),
  31885. weight: math.unit(0, "lb"),
  31886. name: "Collar",
  31887. image: {
  31888. source: "./media/characters/smile/collar.svg"
  31889. }
  31890. },
  31891. },
  31892. [
  31893. {
  31894. name: "Macro",
  31895. height: math.unit(100, "feet"),
  31896. default: true
  31897. },
  31898. ]
  31899. ))
  31900. characterMakers.push(() => makeCharacter(
  31901. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31902. {
  31903. dragon: {
  31904. height: math.unit(26, "feet"),
  31905. weight: math.unit(36, "tons"),
  31906. name: "Dragon",
  31907. image: {
  31908. source: "./media/characters/arimphae/dragon.svg",
  31909. extra: 1574/983,
  31910. bottom: 357/1931
  31911. }
  31912. },
  31913. drake: {
  31914. height: math.unit(9, "feet"),
  31915. weight: math.unit(1.5, "tons"),
  31916. name: "Drake",
  31917. image: {
  31918. source: "./media/characters/arimphae/drake.svg",
  31919. extra: 1120/925,
  31920. bottom: 435/1555
  31921. }
  31922. },
  31923. },
  31924. [
  31925. {
  31926. name: "Small",
  31927. height: math.unit(26*5/9, "feet")
  31928. },
  31929. {
  31930. name: "Normal",
  31931. height: math.unit(26, "feet"),
  31932. default: true
  31933. },
  31934. ]
  31935. ))
  31936. characterMakers.push(() => makeCharacter(
  31937. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31938. {
  31939. front: {
  31940. height: math.unit(8 + 9/12, "feet"),
  31941. name: "Front",
  31942. image: {
  31943. source: "./media/characters/xander/front.svg",
  31944. extra: 848/673,
  31945. bottom: 62/910
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Normal",
  31952. height: math.unit(8 + 9/12, "feet"),
  31953. default: true
  31954. },
  31955. {
  31956. name: "Gaze Grabber",
  31957. height: math.unit(13 + 8/12, "feet")
  31958. },
  31959. {
  31960. name: "Jaw Dropper",
  31961. height: math.unit(27, "feet")
  31962. },
  31963. {
  31964. name: "Show Stopper",
  31965. height: math.unit(136, "feet")
  31966. },
  31967. {
  31968. name: "Superstar",
  31969. height: math.unit(1.9e6, "miles")
  31970. },
  31971. ]
  31972. ))
  31973. characterMakers.push(() => makeCharacter(
  31974. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31975. {
  31976. side: {
  31977. height: math.unit(2100, "feet"),
  31978. name: "Side",
  31979. image: {
  31980. source: "./media/characters/osiris/side.svg",
  31981. extra: 1105/939,
  31982. bottom: 167/1272
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Macro",
  31989. height: math.unit(2100, "feet"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31996. {
  31997. front: {
  31998. height: math.unit(6 + 8/12, "feet"),
  31999. weight: math.unit(225, "lb"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/rhys-londe/front.svg",
  32003. extra: 2258/2141,
  32004. bottom: 188/2446
  32005. }
  32006. },
  32007. back: {
  32008. height: math.unit(6 + 8/12, "feet"),
  32009. weight: math.unit(225, "lb"),
  32010. name: "Back",
  32011. image: {
  32012. source: "./media/characters/rhys-londe/back.svg",
  32013. extra: 2237/2137,
  32014. bottom: 63/2300
  32015. }
  32016. },
  32017. frontNsfw: {
  32018. height: math.unit(6 + 8/12, "feet"),
  32019. weight: math.unit(225, "lb"),
  32020. name: "Front (NSFW)",
  32021. image: {
  32022. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32023. extra: 2258/2141,
  32024. bottom: 188/2446
  32025. }
  32026. },
  32027. backNsfw: {
  32028. height: math.unit(6 + 8/12, "feet"),
  32029. weight: math.unit(225, "lb"),
  32030. name: "Back (NSFW)",
  32031. image: {
  32032. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32033. extra: 2237/2137,
  32034. bottom: 63/2300
  32035. }
  32036. },
  32037. dick: {
  32038. height: math.unit(30, "inches"),
  32039. name: "Dick",
  32040. image: {
  32041. source: "./media/characters/rhys-londe/dick.svg"
  32042. }
  32043. },
  32044. maw: {
  32045. height: math.unit(1.6, "feet"),
  32046. name: "Maw",
  32047. image: {
  32048. source: "./media/characters/rhys-londe/maw.svg"
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "Normal",
  32055. height: math.unit(6 + 8/12, "feet"),
  32056. default: true
  32057. },
  32058. ]
  32059. ))
  32060. characterMakers.push(() => makeCharacter(
  32061. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32062. {
  32063. front: {
  32064. height: math.unit(3 + 10/12, "feet"),
  32065. weight: math.unit(90, "lb"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/taivas-ensim/front.svg",
  32069. extra: 1327/1216,
  32070. bottom: 96/1423
  32071. }
  32072. },
  32073. back: {
  32074. height: math.unit(3 + 10/12, "feet"),
  32075. weight: math.unit(90, "lb"),
  32076. name: "Back",
  32077. image: {
  32078. source: "./media/characters/taivas-ensim/back.svg",
  32079. extra: 1355/1247,
  32080. bottom: 11/1366
  32081. }
  32082. },
  32083. frontNsfw: {
  32084. height: math.unit(3 + 10/12, "feet"),
  32085. weight: math.unit(90, "lb"),
  32086. name: "Front (NSFW)",
  32087. image: {
  32088. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32089. extra: 1327/1216,
  32090. bottom: 96/1423
  32091. }
  32092. },
  32093. backNsfw: {
  32094. height: math.unit(3 + 10/12, "feet"),
  32095. weight: math.unit(90, "lb"),
  32096. name: "Back (NSFW)",
  32097. image: {
  32098. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32099. extra: 1355/1247,
  32100. bottom: 11/1366
  32101. }
  32102. },
  32103. },
  32104. [
  32105. {
  32106. name: "Normal",
  32107. height: math.unit(3 + 10/12, "feet"),
  32108. default: true
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32114. {
  32115. front: {
  32116. height: math.unit(9 + 6/12, "feet"),
  32117. weight: math.unit(940, "lb"),
  32118. name: "Front",
  32119. image: {
  32120. source: "./media/characters/byliss/front.svg",
  32121. extra: 1327/1290,
  32122. bottom: 82/1409
  32123. }
  32124. },
  32125. back: {
  32126. height: math.unit(9 + 6/12, "feet"),
  32127. weight: math.unit(940, "lb"),
  32128. name: "Back",
  32129. image: {
  32130. source: "./media/characters/byliss/back.svg",
  32131. extra: 1376/1349,
  32132. bottom: 9/1385
  32133. }
  32134. },
  32135. frontNsfw: {
  32136. height: math.unit(9 + 6/12, "feet"),
  32137. weight: math.unit(940, "lb"),
  32138. name: "Front (NSFW)",
  32139. image: {
  32140. source: "./media/characters/byliss/front-nsfw.svg",
  32141. extra: 1327/1290,
  32142. bottom: 82/1409
  32143. }
  32144. },
  32145. backNsfw: {
  32146. height: math.unit(9 + 6/12, "feet"),
  32147. weight: math.unit(940, "lb"),
  32148. name: "Back (NSFW)",
  32149. image: {
  32150. source: "./media/characters/byliss/back-nsfw.svg",
  32151. extra: 1376/1349,
  32152. bottom: 9/1385
  32153. }
  32154. },
  32155. },
  32156. [
  32157. {
  32158. name: "Normal",
  32159. height: math.unit(9 + 6/12, "feet"),
  32160. default: true
  32161. },
  32162. ]
  32163. ))
  32164. characterMakers.push(() => makeCharacter(
  32165. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32166. {
  32167. front: {
  32168. height: math.unit(5 + 2/12, "feet"),
  32169. weight: math.unit(200, "lb"),
  32170. name: "Front",
  32171. image: {
  32172. source: "./media/characters/noraly/front.svg",
  32173. extra: 4985/4773,
  32174. bottom: 150/5135
  32175. }
  32176. },
  32177. full: {
  32178. height: math.unit(5 + 2/12, "feet"),
  32179. weight: math.unit(164, "lb"),
  32180. name: "Full",
  32181. image: {
  32182. source: "./media/characters/noraly/full.svg",
  32183. extra: 1114/1059,
  32184. bottom: 35/1149
  32185. }
  32186. },
  32187. fuller: {
  32188. height: math.unit(5 + 2/12, "feet"),
  32189. weight: math.unit(230, "lb"),
  32190. name: "Fuller",
  32191. image: {
  32192. source: "./media/characters/noraly/fuller.svg",
  32193. extra: 1114/1059,
  32194. bottom: 35/1149
  32195. }
  32196. },
  32197. fullest: {
  32198. height: math.unit(5 + 2/12, "feet"),
  32199. weight: math.unit(300, "lb"),
  32200. name: "Fullest",
  32201. image: {
  32202. source: "./media/characters/noraly/fullest.svg",
  32203. extra: 1114/1059,
  32204. bottom: 35/1149
  32205. }
  32206. },
  32207. },
  32208. [
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(5 + 2/12, "feet"),
  32212. default: true
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32218. {
  32219. front: {
  32220. height: math.unit(5 + 2/12, "feet"),
  32221. weight: math.unit(210, "lb"),
  32222. name: "Front",
  32223. image: {
  32224. source: "./media/characters/pera/front.svg",
  32225. extra: 1560/1531,
  32226. bottom: 165/1725
  32227. }
  32228. },
  32229. back: {
  32230. height: math.unit(5 + 2/12, "feet"),
  32231. weight: math.unit(210, "lb"),
  32232. name: "Back",
  32233. image: {
  32234. source: "./media/characters/pera/back.svg",
  32235. extra: 1523/1493,
  32236. bottom: 152/1675
  32237. }
  32238. },
  32239. dick: {
  32240. height: math.unit(2.4, "feet"),
  32241. name: "Dick",
  32242. image: {
  32243. source: "./media/characters/pera/dick.svg"
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(5 + 2/12, "feet"),
  32251. default: true
  32252. },
  32253. ]
  32254. ))
  32255. characterMakers.push(() => makeCharacter(
  32256. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32257. {
  32258. front: {
  32259. height: math.unit(12, "feet"),
  32260. weight: math.unit(3200, "lb"),
  32261. name: "Front",
  32262. image: {
  32263. source: "./media/characters/julian/front.svg",
  32264. extra: 2962/2701,
  32265. bottom: 184/3146
  32266. }
  32267. },
  32268. maw: {
  32269. height: math.unit(5.35, "feet"),
  32270. name: "Maw",
  32271. image: {
  32272. source: "./media/characters/julian/maw.svg"
  32273. }
  32274. },
  32275. paw: {
  32276. height: math.unit(3.07, "feet"),
  32277. name: "Paw",
  32278. image: {
  32279. source: "./media/characters/julian/paw.svg"
  32280. }
  32281. },
  32282. },
  32283. [
  32284. {
  32285. name: "Default",
  32286. height: math.unit(12, "feet"),
  32287. default: true
  32288. },
  32289. {
  32290. name: "Big",
  32291. height: math.unit(50, "feet")
  32292. },
  32293. {
  32294. name: "Really Big",
  32295. height: math.unit(1, "mile")
  32296. },
  32297. {
  32298. name: "Extremely Big",
  32299. height: math.unit(100, "miles")
  32300. },
  32301. {
  32302. name: "Planet Hugger",
  32303. height: math.unit(200, "megameters")
  32304. },
  32305. {
  32306. name: "Unreasonably Big",
  32307. height: math.unit(1e300, "meters")
  32308. },
  32309. ]
  32310. ))
  32311. characterMakers.push(() => makeCharacter(
  32312. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32313. {
  32314. solgooleo: {
  32315. height: math.unit(4, "meters"),
  32316. weight: math.unit(6000*1.5, "kg"),
  32317. volume: math.unit(6000, "liters"),
  32318. name: "Solgooleo",
  32319. image: {
  32320. source: "./media/characters/pi/solgooleo.svg",
  32321. extra: 388/331,
  32322. bottom: 29/417
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Normal",
  32329. height: math.unit(4, "meters"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32336. {
  32337. front: {
  32338. height: math.unit(8 + 2/12, "feet"),
  32339. weight: math.unit(4, "tons"),
  32340. name: "Front",
  32341. image: {
  32342. source: "./media/characters/shaun/front.svg",
  32343. extra: 1550/1505,
  32344. bottom: 353/1903
  32345. }
  32346. },
  32347. },
  32348. [
  32349. {
  32350. name: "Lorg",
  32351. height: math.unit(8 + 2/12, "feet"),
  32352. default: true
  32353. },
  32354. ]
  32355. ))
  32356. characterMakers.push(() => makeCharacter(
  32357. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32358. {
  32359. front: {
  32360. height: math.unit(7, "feet"),
  32361. name: "Front",
  32362. image: {
  32363. source: "./media/characters/sini/front.svg",
  32364. extra: 726/678,
  32365. bottom: 35/761
  32366. }
  32367. },
  32368. back: {
  32369. height: math.unit(7, "feet"),
  32370. name: "Back",
  32371. image: {
  32372. source: "./media/characters/sini/back.svg",
  32373. extra: 743/701,
  32374. bottom: 12/755
  32375. }
  32376. },
  32377. mawAnthro: {
  32378. height: math.unit(2.14, "feet"),
  32379. name: "Maw (Anthro)",
  32380. image: {
  32381. source: "./media/characters/sini/maw-anthro.svg"
  32382. }
  32383. },
  32384. dick: {
  32385. height: math.unit(1.45, "feet"),
  32386. name: "Dick (Anthro)",
  32387. image: {
  32388. source: "./media/characters/sini/dick-anthro.svg"
  32389. }
  32390. },
  32391. feral: {
  32392. height: math.unit(16, "feet"),
  32393. name: "Feral",
  32394. image: {
  32395. source: "./media/characters/sini/feral.svg",
  32396. extra: 814/605,
  32397. bottom: 11/825
  32398. }
  32399. },
  32400. mawFeral: {
  32401. height: math.unit(5.66, "feet"),
  32402. name: "Maw-feral",
  32403. image: {
  32404. source: "./media/characters/sini/maw-feral.svg"
  32405. }
  32406. },
  32407. footFeral: {
  32408. height: math.unit(5.17, "feet"),
  32409. name: "Foot-feral",
  32410. image: {
  32411. source: "./media/characters/sini/foot-feral.svg"
  32412. }
  32413. },
  32414. },
  32415. [
  32416. {
  32417. name: "Normal",
  32418. height: math.unit(7, "feet"),
  32419. default: true
  32420. },
  32421. ]
  32422. ))
  32423. characterMakers.push(() => makeCharacter(
  32424. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32425. {
  32426. side: {
  32427. height: math.unit(13, "meters"),
  32428. weight: math.unit(9072, "kg"),
  32429. name: "Side",
  32430. image: {
  32431. source: "./media/characters/raylldo/side.svg",
  32432. extra: 403/344,
  32433. bottom: 42/445
  32434. }
  32435. },
  32436. leaping: {
  32437. height: math.unit(12.3, "meters"),
  32438. weight: math.unit(9072, "kg"),
  32439. name: "Leaping",
  32440. image: {
  32441. source: "./media/characters/raylldo/leaping.svg",
  32442. extra: 470/249,
  32443. bottom: 13/483
  32444. }
  32445. },
  32446. flying: {
  32447. height: math.unit(18, "meters"),
  32448. weight: math.unit(9072, "kg"),
  32449. name: "Flying",
  32450. image: {
  32451. source: "./media/characters/raylldo/flying.svg"
  32452. }
  32453. },
  32454. head: {
  32455. height: math.unit(5.85, "meters"),
  32456. name: "Head",
  32457. image: {
  32458. source: "./media/characters/raylldo/head.svg"
  32459. }
  32460. },
  32461. maw: {
  32462. height: math.unit(5.32, "meters"),
  32463. name: "Maw",
  32464. image: {
  32465. source: "./media/characters/raylldo/maw.svg"
  32466. }
  32467. },
  32468. eye: {
  32469. height: math.unit(0.54, "meters"),
  32470. name: "Eye",
  32471. image: {
  32472. source: "./media/characters/raylldo/eye.svg"
  32473. }
  32474. },
  32475. },
  32476. [
  32477. {
  32478. name: "Normal",
  32479. height: math.unit(13, "meters"),
  32480. default: true
  32481. },
  32482. ]
  32483. ))
  32484. characterMakers.push(() => makeCharacter(
  32485. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32486. {
  32487. anthroFront: {
  32488. height: math.unit(9, "feet"),
  32489. weight: math.unit(600, "lb"),
  32490. name: "Anthro (Front)",
  32491. image: {
  32492. source: "./media/characters/glint/anthro-front.svg",
  32493. extra: 1097/1018,
  32494. bottom: 28/1125
  32495. }
  32496. },
  32497. anthroBack: {
  32498. height: math.unit(9, "feet"),
  32499. weight: math.unit(600, "lb"),
  32500. name: "Anthro (Back)",
  32501. image: {
  32502. source: "./media/characters/glint/anthro-back.svg",
  32503. extra: 1154/997,
  32504. bottom: 36/1190
  32505. }
  32506. },
  32507. feral: {
  32508. height: math.unit(11, "feet"),
  32509. weight: math.unit(50000, "lb"),
  32510. name: "Feral",
  32511. image: {
  32512. source: "./media/characters/glint/feral.svg",
  32513. extra: 3035/1585,
  32514. bottom: 1169/4204
  32515. }
  32516. },
  32517. dickAnthro: {
  32518. height: math.unit(0.7, "meters"),
  32519. name: "Dick (Anthro)",
  32520. image: {
  32521. source: "./media/characters/glint/dick-anthro.svg"
  32522. }
  32523. },
  32524. dickFeral: {
  32525. height: math.unit(2.65, "meters"),
  32526. name: "Dick (Feral)",
  32527. image: {
  32528. source: "./media/characters/glint/dick-feral.svg"
  32529. }
  32530. },
  32531. slitHidden: {
  32532. height: math.unit(5.85, "meters"),
  32533. name: "Slit (Hidden)",
  32534. image: {
  32535. source: "./media/characters/glint/slit-hidden.svg"
  32536. }
  32537. },
  32538. slitErect: {
  32539. height: math.unit(5.85, "meters"),
  32540. name: "Slit (Erect)",
  32541. image: {
  32542. source: "./media/characters/glint/slit-erect.svg"
  32543. }
  32544. },
  32545. mawAnthro: {
  32546. height: math.unit(0.63, "meters"),
  32547. name: "Maw (Anthro)",
  32548. image: {
  32549. source: "./media/characters/glint/maw.svg"
  32550. }
  32551. },
  32552. mawFeral: {
  32553. height: math.unit(2.89, "meters"),
  32554. name: "Maw (Feral)",
  32555. image: {
  32556. source: "./media/characters/glint/maw.svg"
  32557. }
  32558. },
  32559. },
  32560. [
  32561. {
  32562. name: "Normal",
  32563. height: math.unit(9, "feet"),
  32564. default: true
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32570. {
  32571. side: {
  32572. height: math.unit(15, "feet"),
  32573. weight: math.unit(5000, "kg"),
  32574. name: "Side",
  32575. image: {
  32576. source: "./media/characters/kairne/side.svg",
  32577. extra: 979/811,
  32578. bottom: 13/992
  32579. }
  32580. },
  32581. front: {
  32582. height: math.unit(15, "feet"),
  32583. weight: math.unit(5000, "kg"),
  32584. name: "Front",
  32585. image: {
  32586. source: "./media/characters/kairne/front.svg",
  32587. extra: 908/814,
  32588. bottom: 26/934
  32589. }
  32590. },
  32591. sideNsfw: {
  32592. height: math.unit(15, "feet"),
  32593. weight: math.unit(5000, "kg"),
  32594. name: "Side (NSFW)",
  32595. image: {
  32596. source: "./media/characters/kairne/side-nsfw.svg",
  32597. extra: 979/811,
  32598. bottom: 13/992
  32599. }
  32600. },
  32601. frontNsfw: {
  32602. height: math.unit(15, "feet"),
  32603. weight: math.unit(5000, "kg"),
  32604. name: "Front (NSFW)",
  32605. image: {
  32606. source: "./media/characters/kairne/front-nsfw.svg",
  32607. extra: 908/814,
  32608. bottom: 26/934
  32609. }
  32610. },
  32611. dickCaged: {
  32612. height: math.unit(0.65, "meters"),
  32613. name: "Dick-caged",
  32614. image: {
  32615. source: "./media/characters/kairne/dick-caged.svg"
  32616. }
  32617. },
  32618. dick: {
  32619. height: math.unit(0.79, "meters"),
  32620. name: "Dick",
  32621. image: {
  32622. source: "./media/characters/kairne/dick.svg"
  32623. }
  32624. },
  32625. genitals: {
  32626. height: math.unit(1.29, "meters"),
  32627. name: "Genitals",
  32628. image: {
  32629. source: "./media/characters/kairne/genitals.svg"
  32630. }
  32631. },
  32632. maw: {
  32633. height: math.unit(1.73, "meters"),
  32634. name: "Maw",
  32635. image: {
  32636. source: "./media/characters/kairne/maw.svg"
  32637. }
  32638. },
  32639. },
  32640. [
  32641. {
  32642. name: "Normal",
  32643. height: math.unit(15, "feet"),
  32644. default: true
  32645. },
  32646. ]
  32647. ))
  32648. characterMakers.push(() => makeCharacter(
  32649. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32650. {
  32651. front: {
  32652. height: math.unit(5 + 8/12, "feet"),
  32653. weight: math.unit(139, "lb"),
  32654. name: "Front",
  32655. image: {
  32656. source: "./media/characters/biscuit-jackal/front.svg",
  32657. extra: 2106/1961,
  32658. bottom: 58/2164
  32659. }
  32660. },
  32661. back: {
  32662. height: math.unit(5 + 8/12, "feet"),
  32663. weight: math.unit(139, "lb"),
  32664. name: "Back",
  32665. image: {
  32666. source: "./media/characters/biscuit-jackal/back.svg",
  32667. extra: 2132/1976,
  32668. bottom: 57/2189
  32669. }
  32670. },
  32671. werejackal: {
  32672. height: math.unit(6 + 3/12, "feet"),
  32673. weight: math.unit(188, "lb"),
  32674. name: "Werejackal",
  32675. image: {
  32676. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32677. extra: 2373/2178,
  32678. bottom: 53/2426
  32679. }
  32680. },
  32681. },
  32682. [
  32683. {
  32684. name: "Normal",
  32685. height: math.unit(5 + 8/12, "feet"),
  32686. default: true
  32687. },
  32688. ]
  32689. ))
  32690. characterMakers.push(() => makeCharacter(
  32691. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32692. {
  32693. front: {
  32694. height: math.unit(140, "cm"),
  32695. weight: math.unit(45, "kg"),
  32696. name: "Front",
  32697. image: {
  32698. source: "./media/characters/tayra-white/front.svg",
  32699. extra: 2229/2192,
  32700. bottom: 75/2304
  32701. }
  32702. },
  32703. },
  32704. [
  32705. {
  32706. name: "Normal",
  32707. height: math.unit(140, "cm"),
  32708. default: true
  32709. },
  32710. ]
  32711. ))
  32712. characterMakers.push(() => makeCharacter(
  32713. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32714. {
  32715. front: {
  32716. height: math.unit(4 + 5/12, "feet"),
  32717. name: "Front",
  32718. image: {
  32719. source: "./media/characters/scoop/front.svg",
  32720. extra: 1257/1136,
  32721. bottom: 69/1326
  32722. }
  32723. },
  32724. back: {
  32725. height: math.unit(4 + 5/12, "feet"),
  32726. name: "Back",
  32727. image: {
  32728. source: "./media/characters/scoop/back.svg",
  32729. extra: 1321/1152,
  32730. bottom: 32/1353
  32731. }
  32732. },
  32733. maw: {
  32734. height: math.unit(0.68, "feet"),
  32735. name: "Maw",
  32736. image: {
  32737. source: "./media/characters/scoop/maw.svg"
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Really Small",
  32744. height: math.unit(1, "mm")
  32745. },
  32746. {
  32747. name: "Micro",
  32748. height: math.unit(1, "inch")
  32749. },
  32750. {
  32751. name: "Normal",
  32752. height: math.unit(4 + 5/12, "feet"),
  32753. default: true
  32754. },
  32755. {
  32756. name: "Macro",
  32757. height: math.unit(200, "feet")
  32758. },
  32759. {
  32760. name: "Megamacro",
  32761. height: math.unit(3240, "feet")
  32762. },
  32763. {
  32764. name: "Teramacro",
  32765. height: math.unit(2500, "miles")
  32766. },
  32767. ]
  32768. ))
  32769. characterMakers.push(() => makeCharacter(
  32770. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32771. {
  32772. front: {
  32773. height: math.unit(15 + 7/12, "feet"),
  32774. name: "Front",
  32775. image: {
  32776. source: "./media/characters/saphinara/front.svg",
  32777. extra: 604/546,
  32778. bottom: 19/623
  32779. }
  32780. },
  32781. side: {
  32782. height: math.unit(15 + 7/12, "feet"),
  32783. name: "Side",
  32784. image: {
  32785. source: "./media/characters/saphinara/side.svg",
  32786. extra: 605/547,
  32787. bottom: 6/611
  32788. }
  32789. },
  32790. back: {
  32791. height: math.unit(15 + 7/12, "feet"),
  32792. name: "Back",
  32793. image: {
  32794. source: "./media/characters/saphinara/back.svg",
  32795. extra: 591/531,
  32796. bottom: 13/604
  32797. }
  32798. },
  32799. frontTail: {
  32800. height: math.unit(15 + 7/12, "feet"),
  32801. name: "Front (Full Tail)",
  32802. image: {
  32803. source: "./media/characters/saphinara/front-tail.svg",
  32804. extra: 748/547,
  32805. bottom: 66/814
  32806. }
  32807. },
  32808. },
  32809. [
  32810. {
  32811. name: "Normal",
  32812. height: math.unit(15 + 7/12, "feet"),
  32813. default: true
  32814. },
  32815. {
  32816. name: "Angry",
  32817. height: math.unit(30 + 6/12, "feet")
  32818. },
  32819. {
  32820. name: "Enraged",
  32821. height: math.unit(102 + 1/12, "feet")
  32822. },
  32823. ]
  32824. ))
  32825. characterMakers.push(() => makeCharacter(
  32826. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32827. {
  32828. front: {
  32829. height: math.unit(6 + 8/12, "feet"),
  32830. weight: math.unit(300, "lb"),
  32831. name: "Front",
  32832. image: {
  32833. source: "./media/characters/jrain/front.svg",
  32834. extra: 3039/2865,
  32835. bottom: 399/3438
  32836. }
  32837. },
  32838. back: {
  32839. height: math.unit(6 + 8/12, "feet"),
  32840. weight: math.unit(300, "lb"),
  32841. name: "Back",
  32842. image: {
  32843. source: "./media/characters/jrain/back.svg",
  32844. extra: 3089/2938,
  32845. bottom: 172/3261
  32846. }
  32847. },
  32848. head: {
  32849. height: math.unit(2.14, "feet"),
  32850. name: "Head",
  32851. image: {
  32852. source: "./media/characters/jrain/head.svg"
  32853. }
  32854. },
  32855. maw: {
  32856. height: math.unit(1.77, "feet"),
  32857. name: "Maw",
  32858. image: {
  32859. source: "./media/characters/jrain/maw.svg"
  32860. }
  32861. },
  32862. leftHand: {
  32863. height: math.unit(1.1, "feet"),
  32864. name: "Left Hand",
  32865. image: {
  32866. source: "./media/characters/jrain/left-hand.svg"
  32867. }
  32868. },
  32869. rightHand: {
  32870. height: math.unit(1.1, "feet"),
  32871. name: "Right Hand",
  32872. image: {
  32873. source: "./media/characters/jrain/right-hand.svg"
  32874. }
  32875. },
  32876. eye: {
  32877. height: math.unit(0.35, "feet"),
  32878. name: "Eye",
  32879. image: {
  32880. source: "./media/characters/jrain/eye.svg"
  32881. }
  32882. },
  32883. },
  32884. [
  32885. {
  32886. name: "Normal",
  32887. height: math.unit(6 + 8/12, "feet"),
  32888. default: true
  32889. },
  32890. {
  32891. name: "Casually Large",
  32892. height: math.unit(25, "feet")
  32893. },
  32894. {
  32895. name: "Giant",
  32896. height: math.unit(100, "feet")
  32897. },
  32898. {
  32899. name: "Kaiju",
  32900. height: math.unit(300, "feet")
  32901. },
  32902. ]
  32903. ))
  32904. characterMakers.push(() => makeCharacter(
  32905. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32906. {
  32907. dragon: {
  32908. height: math.unit(5, "meters"),
  32909. name: "Dragon",
  32910. image: {
  32911. source: "./media/characters/sabrina/dragon.svg",
  32912. extra: 3670 / 2365,
  32913. bottom: 333 / 4003
  32914. }
  32915. },
  32916. gryphon: {
  32917. height: math.unit(3, "meters"),
  32918. name: "Gryphon",
  32919. image: {
  32920. source: "./media/characters/sabrina/gryphon.svg",
  32921. extra: 1576 / 945,
  32922. bottom: 71 / 1647
  32923. }
  32924. },
  32925. snake: {
  32926. height: math.unit(12, "meters"),
  32927. name: "Snake",
  32928. image: {
  32929. source: "./media/characters/sabrina/snake.svg",
  32930. extra: 1758 / 1320,
  32931. bottom: 186 / 1944
  32932. }
  32933. },
  32934. collar: {
  32935. height: math.unit(1.86, "meters"),
  32936. name: "Collar",
  32937. image: {
  32938. source: "./media/characters/sabrina/collar.svg"
  32939. }
  32940. },
  32941. eye: {
  32942. height: math.unit(0.53, "meters"),
  32943. name: "Eye",
  32944. image: {
  32945. source: "./media/characters/sabrina/eye.svg"
  32946. }
  32947. },
  32948. foot: {
  32949. height: math.unit(1.86, "meters"),
  32950. name: "Foot",
  32951. image: {
  32952. source: "./media/characters/sabrina/foot.svg"
  32953. }
  32954. },
  32955. hand: {
  32956. height: math.unit(1.32, "meters"),
  32957. name: "Hand",
  32958. image: {
  32959. source: "./media/characters/sabrina/hand.svg"
  32960. }
  32961. },
  32962. head: {
  32963. height: math.unit(2.44, "meters"),
  32964. name: "Head",
  32965. image: {
  32966. source: "./media/characters/sabrina/head.svg"
  32967. }
  32968. },
  32969. headAngry: {
  32970. height: math.unit(2.44, "meters"),
  32971. name: "Head (Angry))",
  32972. image: {
  32973. source: "./media/characters/sabrina/head-angry.svg"
  32974. }
  32975. },
  32976. maw: {
  32977. height: math.unit(1.65, "meters"),
  32978. name: "Maw",
  32979. image: {
  32980. source: "./media/characters/sabrina/maw.svg"
  32981. }
  32982. },
  32983. spikes: {
  32984. height: math.unit(1.69, "meters"),
  32985. name: "Spikes",
  32986. image: {
  32987. source: "./media/characters/sabrina/spikes.svg"
  32988. }
  32989. },
  32990. stomach: {
  32991. height: math.unit(1.15, "meters"),
  32992. name: "Stomach",
  32993. image: {
  32994. source: "./media/characters/sabrina/stomach.svg"
  32995. }
  32996. },
  32997. tongue: {
  32998. height: math.unit(1.27, "meters"),
  32999. name: "Tongue",
  33000. image: {
  33001. source: "./media/characters/sabrina/tongue.svg"
  33002. }
  33003. },
  33004. wingDorsal: {
  33005. height: math.unit(4.85, "meters"),
  33006. name: "Wing (Dorsal)",
  33007. image: {
  33008. source: "./media/characters/sabrina/wing-dorsal.svg"
  33009. }
  33010. },
  33011. wingVentral: {
  33012. height: math.unit(4.85, "meters"),
  33013. name: "Wing (Ventral)",
  33014. image: {
  33015. source: "./media/characters/sabrina/wing-ventral.svg"
  33016. }
  33017. },
  33018. },
  33019. [
  33020. {
  33021. name: "Normal",
  33022. height: math.unit(5, "meters"),
  33023. default: true
  33024. },
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33029. {
  33030. frontMaid: {
  33031. height: math.unit(5 + 5/12, "feet"),
  33032. weight: math.unit(130, "lb"),
  33033. name: "Front (Maid)",
  33034. image: {
  33035. source: "./media/characters/midnight-tales/front-maid.svg",
  33036. extra: 489/454,
  33037. bottom: 61/550
  33038. }
  33039. },
  33040. frontFormal: {
  33041. height: math.unit(5 + 5/12, "feet"),
  33042. weight: math.unit(130, "lb"),
  33043. name: "Front (Formal)",
  33044. image: {
  33045. source: "./media/characters/midnight-tales/front-formal.svg",
  33046. extra: 489/454,
  33047. bottom: 61/550
  33048. }
  33049. },
  33050. back: {
  33051. height: math.unit(5 + 5/12, "feet"),
  33052. weight: math.unit(130, "lb"),
  33053. name: "Back",
  33054. image: {
  33055. source: "./media/characters/midnight-tales/back.svg",
  33056. extra: 498/456,
  33057. bottom: 33/531
  33058. }
  33059. },
  33060. frontBeast: {
  33061. height: math.unit(40, "feet"),
  33062. weight: math.unit(64000, "lb"),
  33063. name: "Front (Beast)",
  33064. image: {
  33065. source: "./media/characters/midnight-tales/front-beast.svg",
  33066. extra: 927/860,
  33067. bottom: 53/980
  33068. }
  33069. },
  33070. backBeast: {
  33071. height: math.unit(40, "feet"),
  33072. weight: math.unit(64000, "lb"),
  33073. name: "Back (Beast)",
  33074. image: {
  33075. source: "./media/characters/midnight-tales/back-beast.svg",
  33076. extra: 929/855,
  33077. bottom: 16/945
  33078. }
  33079. },
  33080. footBeast: {
  33081. height: math.unit(6.7, "feet"),
  33082. name: "Foot (Beast)",
  33083. image: {
  33084. source: "./media/characters/midnight-tales/foot-beast.svg"
  33085. }
  33086. },
  33087. headBeast: {
  33088. height: math.unit(8, "feet"),
  33089. name: "Head (Beast)",
  33090. image: {
  33091. source: "./media/characters/midnight-tales/head-beast.svg"
  33092. }
  33093. },
  33094. },
  33095. [
  33096. {
  33097. name: "Normal",
  33098. height: math.unit(5 + 5 / 12, "feet"),
  33099. default: true
  33100. },
  33101. {
  33102. name: "Macro",
  33103. height: math.unit(25, "feet")
  33104. },
  33105. ]
  33106. ))
  33107. characterMakers.push(() => makeCharacter(
  33108. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33109. {
  33110. front: {
  33111. height: math.unit(5 + 10/12, "feet"),
  33112. name: "Front",
  33113. image: {
  33114. source: "./media/characters/argon/front.svg",
  33115. extra: 2009/1935,
  33116. bottom: 118/2127
  33117. }
  33118. },
  33119. back: {
  33120. height: math.unit(5 + 10/12, "feet"),
  33121. name: "Back",
  33122. image: {
  33123. source: "./media/characters/argon/back.svg",
  33124. extra: 2047/1992,
  33125. bottom: 20/2067
  33126. }
  33127. },
  33128. frontDressed: {
  33129. height: math.unit(5 + 10/12, "feet"),
  33130. name: "Front (Dressed)",
  33131. image: {
  33132. source: "./media/characters/argon/front-dressed.svg",
  33133. extra: 2009/1935,
  33134. bottom: 118/2127
  33135. }
  33136. },
  33137. },
  33138. [
  33139. {
  33140. name: "Normal",
  33141. height: math.unit(5 + 10/12, "feet"),
  33142. default: true
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33148. {
  33149. front: {
  33150. height: math.unit(8 + 6/12, "feet"),
  33151. weight: math.unit(1150, "lb"),
  33152. name: "Front",
  33153. image: {
  33154. source: "./media/characters/kichi/front.svg",
  33155. extra: 1267/1164,
  33156. bottom: 61/1328
  33157. }
  33158. },
  33159. back: {
  33160. height: math.unit(8 + 6/12, "feet"),
  33161. weight: math.unit(1150, "lb"),
  33162. name: "Back",
  33163. image: {
  33164. source: "./media/characters/kichi/back.svg",
  33165. extra: 1273/1166,
  33166. bottom: 33/1306
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Normal",
  33173. height: math.unit(8 + 6/12, "feet"),
  33174. default: true
  33175. },
  33176. ]
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33180. {
  33181. front: {
  33182. height: math.unit(6, "feet"),
  33183. weight: math.unit(210, "lb"),
  33184. name: "Front",
  33185. image: {
  33186. source: "./media/characters/manetel-greyscale/front.svg",
  33187. extra: 350/312,
  33188. bottom: 8/358
  33189. }
  33190. },
  33191. },
  33192. [
  33193. {
  33194. name: "Micro",
  33195. height: math.unit(2, "inches")
  33196. },
  33197. {
  33198. name: "Normal",
  33199. height: math.unit(6, "feet"),
  33200. default: true
  33201. },
  33202. {
  33203. name: "Minimacro",
  33204. height: math.unit(17, "feet")
  33205. },
  33206. {
  33207. name: "Macro",
  33208. height: math.unit(117, "feet")
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33214. {
  33215. side: {
  33216. height: math.unit(5 + 1/12, "feet"),
  33217. weight: math.unit(418, "lb"),
  33218. name: "Side",
  33219. image: {
  33220. source: "./media/characters/softpurr/side.svg",
  33221. extra: 1993/1945,
  33222. bottom: 134/2127
  33223. }
  33224. },
  33225. front: {
  33226. height: math.unit(5 + 1/12, "feet"),
  33227. weight: math.unit(418, "lb"),
  33228. name: "Front",
  33229. image: {
  33230. source: "./media/characters/softpurr/front.svg",
  33231. extra: 1950/1856,
  33232. bottom: 174/2124
  33233. }
  33234. },
  33235. paw: {
  33236. height: math.unit(1, "feet"),
  33237. name: "Paw",
  33238. image: {
  33239. source: "./media/characters/softpurr/paw.svg"
  33240. }
  33241. },
  33242. },
  33243. [
  33244. {
  33245. name: "Normal",
  33246. height: math.unit(5 + 1/12, "feet"),
  33247. default: true
  33248. },
  33249. ]
  33250. ))
  33251. characterMakers.push(() => makeCharacter(
  33252. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33253. {
  33254. front: {
  33255. height: math.unit(260, "meters"),
  33256. name: "Front",
  33257. image: {
  33258. source: "./media/characters/anahita/front.svg",
  33259. extra: 665/635,
  33260. bottom: 89/754
  33261. }
  33262. },
  33263. },
  33264. [
  33265. {
  33266. name: "Macro",
  33267. height: math.unit(260, "meters"),
  33268. default: true
  33269. },
  33270. ]
  33271. ))
  33272. characterMakers.push(() => makeCharacter(
  33273. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33274. {
  33275. front: {
  33276. height: math.unit(4 + 10/12, "feet"),
  33277. weight: math.unit(160, "lb"),
  33278. name: "Front",
  33279. image: {
  33280. source: "./media/characters/chip-mouse/front.svg",
  33281. extra: 3528/3408,
  33282. bottom: 0/3528
  33283. }
  33284. },
  33285. frontNsfw: {
  33286. height: math.unit(4 + 10/12, "feet"),
  33287. weight: math.unit(160, "lb"),
  33288. name: "Front (NSFW)",
  33289. image: {
  33290. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33291. extra: 3528/3408,
  33292. bottom: 0/3528
  33293. }
  33294. },
  33295. },
  33296. [
  33297. {
  33298. name: "Normal",
  33299. height: math.unit(4 + 10/12, "feet"),
  33300. default: true
  33301. },
  33302. ]
  33303. ))
  33304. characterMakers.push(() => makeCharacter(
  33305. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33306. {
  33307. side: {
  33308. height: math.unit(10, "feet"),
  33309. weight: math.unit(14000, "lb"),
  33310. name: "Side",
  33311. image: {
  33312. source: "./media/characters/kremm/side.svg",
  33313. extra: 1390/1053,
  33314. bottom: 90/1480
  33315. }
  33316. },
  33317. gut: {
  33318. height: math.unit(5.8, "feet"),
  33319. name: "Gut",
  33320. image: {
  33321. source: "./media/characters/kremm/gut.svg"
  33322. }
  33323. },
  33324. ass: {
  33325. height: math.unit(6.1, "feet"),
  33326. name: "Ass",
  33327. image: {
  33328. source: "./media/characters/kremm/ass.svg"
  33329. }
  33330. },
  33331. jaws: {
  33332. height: math.unit(2.2, "feet"),
  33333. name: "Jaws",
  33334. image: {
  33335. source: "./media/characters/kremm/jaws.svg"
  33336. }
  33337. },
  33338. dick: {
  33339. height: math.unit(4.26, "feet"),
  33340. name: "Dick",
  33341. image: {
  33342. source: "./media/characters/kremm/dick.svg"
  33343. }
  33344. },
  33345. },
  33346. [
  33347. {
  33348. name: "Normal",
  33349. height: math.unit(10, "feet"),
  33350. default: true
  33351. },
  33352. ]
  33353. ))
  33354. characterMakers.push(() => makeCharacter(
  33355. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33356. {
  33357. front: {
  33358. height: math.unit(30, "stories"),
  33359. name: "Front",
  33360. image: {
  33361. source: "./media/characters/kai/front.svg",
  33362. extra: 1892/1718,
  33363. bottom: 162/2054
  33364. }
  33365. },
  33366. },
  33367. [
  33368. {
  33369. name: "Macro",
  33370. height: math.unit(30, "stories"),
  33371. default: true
  33372. },
  33373. ]
  33374. ))
  33375. characterMakers.push(() => makeCharacter(
  33376. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33377. {
  33378. front: {
  33379. height: math.unit(6 + 4/12, "feet"),
  33380. weight: math.unit(145, "lb"),
  33381. name: "Front",
  33382. image: {
  33383. source: "./media/characters/sykes/front.svg",
  33384. extra: 1321 / 1187,
  33385. bottom: 66 / 1387
  33386. }
  33387. },
  33388. back: {
  33389. height: math.unit(6 + 4/12, "feet"),
  33390. weight: math.unit(145, "lb"),
  33391. name: "Back",
  33392. image: {
  33393. source: "./media/characters/sykes/back.svg",
  33394. extra: 1326/1181,
  33395. bottom: 31/1357
  33396. }
  33397. },
  33398. handBack: {
  33399. height: math.unit(0.9, "feet"),
  33400. name: "Hand (Back)",
  33401. image: {
  33402. source: "./media/characters/sykes/hand-back.svg"
  33403. }
  33404. },
  33405. handFront: {
  33406. height: math.unit(0.839, "feet"),
  33407. name: "Hand (Front)",
  33408. image: {
  33409. source: "./media/characters/sykes/hand-front.svg"
  33410. }
  33411. },
  33412. leftFoot: {
  33413. height: math.unit(1.2, "feet"),
  33414. name: "Foot (Left)",
  33415. image: {
  33416. source: "./media/characters/sykes/foot-left.svg"
  33417. }
  33418. },
  33419. rightFoot: {
  33420. height: math.unit(1.2, "feet"),
  33421. name: "Foot (Right)",
  33422. image: {
  33423. source: "./media/characters/sykes/foot-right.svg"
  33424. }
  33425. },
  33426. maw: {
  33427. height: math.unit(1.93, "feet"),
  33428. name: "Maw",
  33429. image: {
  33430. source: "./media/characters/sykes/maw.svg"
  33431. }
  33432. },
  33433. teeth: {
  33434. height: math.unit(0.51, "feet"),
  33435. name: "Teeth",
  33436. image: {
  33437. source: "./media/characters/sykes/teeth.svg"
  33438. }
  33439. },
  33440. tongue: {
  33441. height: math.unit(2.13, "feet"),
  33442. name: "Tongue",
  33443. image: {
  33444. source: "./media/characters/sykes/tongue.svg"
  33445. }
  33446. },
  33447. uvula: {
  33448. height: math.unit(0.16, "feet"),
  33449. name: "Uvula",
  33450. image: {
  33451. source: "./media/characters/sykes/uvula.svg"
  33452. }
  33453. },
  33454. collar: {
  33455. height: math.unit(0.287, "feet"),
  33456. name: "Collar",
  33457. image: {
  33458. source: "./media/characters/sykes/collar.svg"
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Shrunken",
  33465. height: math.unit(5, "inches")
  33466. },
  33467. {
  33468. name: "Normal",
  33469. height: math.unit(6 + 4 / 12, "feet"),
  33470. default: true
  33471. },
  33472. {
  33473. name: "Big",
  33474. height: math.unit(15, "feet")
  33475. },
  33476. ]
  33477. ))
  33478. characterMakers.push(() => makeCharacter(
  33479. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33480. {
  33481. front: {
  33482. height: math.unit(5 + 8/12, "feet"),
  33483. weight: math.unit(190, "lb"),
  33484. name: "Front",
  33485. image: {
  33486. source: "./media/characters/oven-otter/front.svg",
  33487. extra: 1809/1740,
  33488. bottom: 181/1990
  33489. }
  33490. },
  33491. back: {
  33492. height: math.unit(5 + 8/12, "feet"),
  33493. weight: math.unit(190, "lb"),
  33494. name: "Back",
  33495. image: {
  33496. source: "./media/characters/oven-otter/back.svg",
  33497. extra: 1709/1635,
  33498. bottom: 118/1827
  33499. }
  33500. },
  33501. hand: {
  33502. height: math.unit(1.07, "feet"),
  33503. name: "Hand",
  33504. image: {
  33505. source: "./media/characters/oven-otter/hand.svg"
  33506. }
  33507. },
  33508. beans: {
  33509. height: math.unit(1.74, "feet"),
  33510. name: "Beans",
  33511. image: {
  33512. source: "./media/characters/oven-otter/beans.svg"
  33513. }
  33514. },
  33515. },
  33516. [
  33517. {
  33518. name: "Micro",
  33519. height: math.unit(0.5, "inches")
  33520. },
  33521. {
  33522. name: "Normal",
  33523. height: math.unit(5 + 8/12, "feet"),
  33524. default: true
  33525. },
  33526. {
  33527. name: "Macro",
  33528. height: math.unit(250, "feet")
  33529. },
  33530. {
  33531. name: "Really High",
  33532. height: math.unit(420, "feet")
  33533. },
  33534. ]
  33535. ))
  33536. characterMakers.push(() => makeCharacter(
  33537. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33538. {
  33539. front: {
  33540. height: math.unit(5, "meters"),
  33541. weight: math.unit(292000000000000, "kg"),
  33542. name: "Front",
  33543. image: {
  33544. source: "./media/characters/devourer/front.svg",
  33545. extra: 1800/1733,
  33546. bottom: 211/2011
  33547. }
  33548. },
  33549. maw: {
  33550. height: math.unit(1.1, "meter"),
  33551. name: "Maw",
  33552. image: {
  33553. source: "./media/characters/devourer/maw.svg"
  33554. }
  33555. },
  33556. },
  33557. [
  33558. {
  33559. name: "Small",
  33560. height: math.unit(3, "meters")
  33561. },
  33562. {
  33563. name: "Large",
  33564. height: math.unit(5, "meters"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33571. {
  33572. front: {
  33573. height: math.unit(6, "feet"),
  33574. weight: math.unit(400, "lb"),
  33575. name: "Front",
  33576. image: {
  33577. source: "./media/characters/ellarby/front.svg",
  33578. extra: 1909/1763,
  33579. bottom: 80/1989
  33580. }
  33581. },
  33582. back: {
  33583. height: math.unit(6, "feet"),
  33584. weight: math.unit(400, "lb"),
  33585. name: "Back",
  33586. image: {
  33587. source: "./media/characters/ellarby/back.svg",
  33588. extra: 1914/1784,
  33589. bottom: 172/2086
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Mischief",
  33596. height: math.unit(18, "inches")
  33597. },
  33598. {
  33599. name: "Trouble",
  33600. height: math.unit(12, "feet")
  33601. },
  33602. {
  33603. name: "Havoc",
  33604. height: math.unit(200, "feet"),
  33605. default: true
  33606. },
  33607. {
  33608. name: "Pandemonium",
  33609. height: math.unit(1, "mile")
  33610. },
  33611. {
  33612. name: "Catastrophe",
  33613. height: math.unit(100, "miles")
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33619. {
  33620. front: {
  33621. height: math.unit(4.7, "meters"),
  33622. weight: math.unit(6500, "kg"),
  33623. name: "Front",
  33624. image: {
  33625. source: "./media/characters/vex/front.svg",
  33626. extra: 1288/1140,
  33627. bottom: 100/1388
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(4.7, "meters"),
  33635. default: true
  33636. },
  33637. ]
  33638. ))
  33639. characterMakers.push(() => makeCharacter(
  33640. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33641. {
  33642. normal: {
  33643. height: math.unit(6, "feet"),
  33644. weight: math.unit(350, "lb"),
  33645. name: "Normal",
  33646. image: {
  33647. source: "./media/characters/teshy/normal.svg",
  33648. extra: 1795/1735,
  33649. bottom: 16/1811
  33650. }
  33651. },
  33652. monsterFront: {
  33653. height: math.unit(12, "feet"),
  33654. weight: math.unit(4700, "lb"),
  33655. name: "Monster (Front)",
  33656. image: {
  33657. source: "./media/characters/teshy/monster-front.svg",
  33658. extra: 2042/2034,
  33659. bottom: 128/2170
  33660. }
  33661. },
  33662. monsterSide: {
  33663. height: math.unit(12, "feet"),
  33664. weight: math.unit(4700, "lb"),
  33665. name: "Monster (Side)",
  33666. image: {
  33667. source: "./media/characters/teshy/monster-side.svg",
  33668. extra: 2067/2056,
  33669. bottom: 70/2137
  33670. }
  33671. },
  33672. monsterBack: {
  33673. height: math.unit(12, "feet"),
  33674. weight: math.unit(4700, "lb"),
  33675. name: "Monster (Back)",
  33676. image: {
  33677. source: "./media/characters/teshy/monster-back.svg",
  33678. extra: 1921/1914,
  33679. bottom: 171/2092
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Normal",
  33686. height: math.unit(6, "feet"),
  33687. default: true
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33693. {
  33694. front: {
  33695. height: math.unit(6, "feet"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/ramey/front.svg",
  33699. extra: 790/787,
  33700. bottom: 27/817
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(6, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(5 + 5/12, "feet"),
  33717. weight: math.unit(120, "lb"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/phirae/front.svg",
  33721. extra: 2491/2436,
  33722. bottom: 38/2529
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(5 + 5/12, "feet"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(6, "feet"),
  33739. weight: math.unit(150, "lb"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/stagglas/front.svg",
  33743. extra: 962/882,
  33744. bottom: 53/1015
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Normal",
  33751. height: math.unit(5 + 3/12, "feet"),
  33752. default: true
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33758. {
  33759. front: {
  33760. height: math.unit(5 + 4/12, "feet"),
  33761. weight: math.unit(145, "lb"),
  33762. name: "Front",
  33763. image: {
  33764. source: "./media/characters/starra/front.svg",
  33765. extra: 1790/1691,
  33766. bottom: 91/1881
  33767. }
  33768. },
  33769. },
  33770. [
  33771. {
  33772. name: "Normal",
  33773. height: math.unit(5 + 4/12, "feet"),
  33774. default: true
  33775. },
  33776. ]
  33777. ))
  33778. characterMakers.push(() => makeCharacter(
  33779. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33780. {
  33781. front: {
  33782. height: math.unit(2.2, "meters"),
  33783. name: "Front",
  33784. image: {
  33785. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33786. extra: 1194/1005,
  33787. bottom: 25/1219
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Normal",
  33794. height: math.unit(2.2, "meters"),
  33795. default: true
  33796. },
  33797. ]
  33798. ))
  33799. characterMakers.push(() => makeCharacter(
  33800. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33801. {
  33802. side: {
  33803. height: math.unit(8 + 2/12, "feet"),
  33804. weight: math.unit(1240, "lb"),
  33805. name: "Side",
  33806. image: {
  33807. source: "./media/characters/mika-valentine/side.svg",
  33808. extra: 2670/2501,
  33809. bottom: 250/2920
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(8 + 2/12, "feet"),
  33817. default: true
  33818. },
  33819. ]
  33820. ))
  33821. characterMakers.push(() => makeCharacter(
  33822. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33823. {
  33824. front: {
  33825. height: math.unit(7 + 2/12, "feet"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/xoltol/front.svg",
  33829. extra: 2212/2124,
  33830. bottom: 84/2296
  33831. }
  33832. },
  33833. side: {
  33834. height: math.unit(7 + 2/12, "feet"),
  33835. name: "Side",
  33836. image: {
  33837. source: "./media/characters/xoltol/side.svg",
  33838. extra: 2273/2197,
  33839. bottom: 26/2299
  33840. }
  33841. },
  33842. hand: {
  33843. height: math.unit(2.5, "feet"),
  33844. name: "Hand",
  33845. image: {
  33846. source: "./media/characters/xoltol/hand.svg"
  33847. }
  33848. },
  33849. },
  33850. [
  33851. {
  33852. name: "Small-ish",
  33853. height: math.unit(5 + 11/12, "feet")
  33854. },
  33855. {
  33856. name: "Normal",
  33857. height: math.unit(7 + 2/12, "feet")
  33858. },
  33859. {
  33860. name: "\"Macro\"",
  33861. height: math.unit(14 + 9/12, "feet"),
  33862. default: true
  33863. },
  33864. {
  33865. name: "Alternate Height",
  33866. height: math.unit(20, "feet")
  33867. },
  33868. {
  33869. name: "Actually Macro",
  33870. height: math.unit(100, "feet")
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(5 + 2/12, "feet"),
  33879. name: "Front",
  33880. image: {
  33881. source: "./media/characters/kotetsu-redwood/front.svg",
  33882. extra: 1053/942,
  33883. bottom: 60/1113
  33884. }
  33885. },
  33886. },
  33887. [
  33888. {
  33889. name: "Normal",
  33890. height: math.unit(5 + 2/12, "feet"),
  33891. default: true
  33892. },
  33893. ]
  33894. ))
  33895. characterMakers.push(() => makeCharacter(
  33896. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33897. {
  33898. front: {
  33899. height: math.unit(2.4, "meters"),
  33900. weight: math.unit(125, "kg"),
  33901. name: "Front",
  33902. image: {
  33903. source: "./media/characters/lilith/front.svg",
  33904. extra: 1590/1513,
  33905. bottom: 203/1793
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Humanoid",
  33912. height: math.unit(2.4, "meters")
  33913. },
  33914. {
  33915. name: "Normal",
  33916. height: math.unit(6, "meters"),
  33917. default: true
  33918. },
  33919. {
  33920. name: "Largest",
  33921. height: math.unit(55, "meters")
  33922. },
  33923. ]
  33924. ))
  33925. characterMakers.push(() => makeCharacter(
  33926. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33927. {
  33928. front: {
  33929. height: math.unit(8 + 4/12, "feet"),
  33930. weight: math.unit(535, "lb"),
  33931. name: "Front",
  33932. image: {
  33933. source: "./media/characters/beh'kah-bolger/front.svg",
  33934. extra: 1660/1603,
  33935. bottom: 37/1697
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Normal",
  33942. height: math.unit(8 + 4/12, "feet"),
  33943. default: true
  33944. },
  33945. {
  33946. name: "Kaiju",
  33947. height: math.unit(250, "feet")
  33948. },
  33949. {
  33950. name: "Still Growing",
  33951. height: math.unit(10, "miles")
  33952. },
  33953. {
  33954. name: "Continental",
  33955. height: math.unit(5000, "miles")
  33956. },
  33957. {
  33958. name: "Final Form",
  33959. height: math.unit(2500000, "miles")
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33965. {
  33966. front: {
  33967. height: math.unit(7 + 2/12, "feet"),
  33968. weight: math.unit(230, "kg"),
  33969. name: "Front",
  33970. image: {
  33971. source: "./media/characters/tatyana-milewska/front.svg",
  33972. extra: 1199/1150,
  33973. bottom: 86/1285
  33974. }
  33975. },
  33976. },
  33977. [
  33978. {
  33979. name: "Normal",
  33980. height: math.unit(7 + 2/12, "feet"),
  33981. default: true
  33982. },
  33983. {
  33984. name: "Big",
  33985. height: math.unit(12, "feet")
  33986. },
  33987. {
  33988. name: "Minimacro",
  33989. height: math.unit(20, "feet")
  33990. },
  33991. {
  33992. name: "Macro",
  33993. height: math.unit(120, "feet")
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33999. {
  34000. front: {
  34001. height: math.unit(7 + 8/12, "feet"),
  34002. weight: math.unit(152, "kg"),
  34003. name: "Front",
  34004. image: {
  34005. source: "./media/characters/helen-arri/front.svg",
  34006. extra: 440/423,
  34007. bottom: 14/454
  34008. }
  34009. },
  34010. back: {
  34011. height: math.unit(7 + 8/12, "feet"),
  34012. weight: math.unit(152, "kg"),
  34013. name: "Back",
  34014. image: {
  34015. source: "./media/characters/helen-arri/back.svg",
  34016. extra: 443/426,
  34017. bottom: 8/451
  34018. }
  34019. },
  34020. },
  34021. [
  34022. {
  34023. name: "Normal",
  34024. height: math.unit(7 + 8/12, "feet"),
  34025. default: true
  34026. },
  34027. {
  34028. name: "Big",
  34029. height: math.unit(14, "feet")
  34030. },
  34031. {
  34032. name: "Minimacro",
  34033. height: math.unit(24, "feet")
  34034. },
  34035. {
  34036. name: "Macro",
  34037. height: math.unit(140, "feet")
  34038. },
  34039. ]
  34040. ))
  34041. characterMakers.push(() => makeCharacter(
  34042. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34043. {
  34044. front: {
  34045. height: math.unit(6, "meters"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/ehanu-rehu/front.svg",
  34049. extra: 1800/1800,
  34050. bottom: 59/1859
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(6, "meters"),
  34058. default: true
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34064. {
  34065. front: {
  34066. height: math.unit(7 + 3/12, "feet"),
  34067. name: "Front",
  34068. image: {
  34069. source: "./media/characters/renholder/front.svg",
  34070. extra: 3096/2960,
  34071. bottom: 250/3346
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal Bat",
  34078. height: math.unit(7 + 3/12, "feet"),
  34079. default: true
  34080. },
  34081. {
  34082. name: "Slightly Tall Bat",
  34083. height: math.unit(100, "feet")
  34084. },
  34085. {
  34086. name: "Big Bat",
  34087. height: math.unit(1000, "feet")
  34088. },
  34089. {
  34090. name: "City-Sized Bat",
  34091. height: math.unit(200000, "feet")
  34092. },
  34093. {
  34094. name: "Bigger Bat",
  34095. height: math.unit(10000, "miles")
  34096. },
  34097. {
  34098. name: "Solar Sized Bat",
  34099. height: math.unit(100, "AU")
  34100. },
  34101. {
  34102. name: "Galactic Bat",
  34103. height: math.unit(200000, "lightyears")
  34104. },
  34105. {
  34106. name: "Universally Known Bat",
  34107. height: math.unit(1, "universe")
  34108. },
  34109. ]
  34110. ))
  34111. characterMakers.push(() => makeCharacter(
  34112. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34113. {
  34114. front: {
  34115. height: math.unit(6 + 11/12, "feet"),
  34116. weight: math.unit(250, "lb"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/cookiecat/front.svg",
  34120. extra: 893/827,
  34121. bottom: 14/907
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Micro",
  34128. height: math.unit(3, "inches")
  34129. },
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(6 + 11/12, "feet"),
  34133. default: true
  34134. },
  34135. {
  34136. name: "Macro",
  34137. height: math.unit(100, "feet")
  34138. },
  34139. {
  34140. name: "Macro+",
  34141. height: math.unit(404, "feet")
  34142. },
  34143. {
  34144. name: "Megamacro",
  34145. height: math.unit(165, "miles")
  34146. },
  34147. {
  34148. name: "Planetary",
  34149. height: math.unit(4600, "miles")
  34150. },
  34151. ]
  34152. ))
  34153. characterMakers.push(() => makeCharacter(
  34154. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34155. {
  34156. front: {
  34157. height: math.unit(10 + 3/12, "feet"),
  34158. weight: math.unit(1500, "lb"),
  34159. name: "Front",
  34160. image: {
  34161. source: "./media/characters/tux-kusanagi/front.svg",
  34162. extra: 944/840,
  34163. bottom: 39/983
  34164. }
  34165. },
  34166. back: {
  34167. height: math.unit(10 + 3/12, "feet"),
  34168. weight: math.unit(1500, "lb"),
  34169. name: "Back",
  34170. image: {
  34171. source: "./media/characters/tux-kusanagi/back.svg",
  34172. extra: 941/842,
  34173. bottom: 28/969
  34174. }
  34175. },
  34176. rump: {
  34177. height: math.unit(5.25, "feet"),
  34178. name: "Rump",
  34179. image: {
  34180. source: "./media/characters/tux-kusanagi/rump.svg"
  34181. }
  34182. },
  34183. beak: {
  34184. height: math.unit(1.54, "feet"),
  34185. name: "Beak",
  34186. image: {
  34187. source: "./media/characters/tux-kusanagi/beak.svg"
  34188. }
  34189. },
  34190. },
  34191. [
  34192. {
  34193. name: "Normal",
  34194. height: math.unit(10 + 3/12, "feet"),
  34195. default: true
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34201. {
  34202. front: {
  34203. height: math.unit(58, "feet"),
  34204. weight: math.unit(200, "tons"),
  34205. name: "Front",
  34206. image: {
  34207. source: "./media/characters/uzarmazari/front.svg",
  34208. extra: 1575/1455,
  34209. bottom: 152/1727
  34210. }
  34211. },
  34212. back: {
  34213. height: math.unit(58, "feet"),
  34214. weight: math.unit(200, "tons"),
  34215. name: "Back",
  34216. image: {
  34217. source: "./media/characters/uzarmazari/back.svg",
  34218. extra: 1585/1510,
  34219. bottom: 157/1742
  34220. }
  34221. },
  34222. head: {
  34223. height: math.unit(26, "feet"),
  34224. name: "Head",
  34225. image: {
  34226. source: "./media/characters/uzarmazari/head.svg"
  34227. }
  34228. },
  34229. },
  34230. [
  34231. {
  34232. name: "Normal",
  34233. height: math.unit(58, "feet"),
  34234. default: true
  34235. },
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34240. {
  34241. side: {
  34242. height: math.unit(15, "feet"),
  34243. name: "Side",
  34244. image: {
  34245. source: "./media/characters/akitu/side.svg",
  34246. extra: 1421/1321,
  34247. bottom: 157/1578
  34248. }
  34249. },
  34250. front: {
  34251. height: math.unit(15, "feet"),
  34252. name: "Front",
  34253. image: {
  34254. source: "./media/characters/akitu/front.svg",
  34255. extra: 1435/1326,
  34256. bottom: 232/1667
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(15, "feet"),
  34264. default: true
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34270. {
  34271. front: {
  34272. height: math.unit(10 + 8/12, "feet"),
  34273. name: "Front",
  34274. image: {
  34275. source: "./media/characters/azalie-croixland/front.svg",
  34276. extra: 1972/1856,
  34277. bottom: 31/2003
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Original Height",
  34284. height: math.unit(5 + 4/12, "feet")
  34285. },
  34286. {
  34287. name: "Normal Height",
  34288. height: math.unit(10 + 8/12, "feet"),
  34289. default: true
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34295. {
  34296. side: {
  34297. height: math.unit(7 + 1/12, "feet"),
  34298. weight: math.unit(245, "lb"),
  34299. name: "Side",
  34300. image: {
  34301. source: "./media/characters/kavus-kazian/side.svg",
  34302. extra: 349/342,
  34303. bottom: 15/364
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(7 + 1/12, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34317. {
  34318. normal: {
  34319. height: math.unit(5 + 11/12, "feet"),
  34320. name: "Normal",
  34321. image: {
  34322. source: "./media/characters/moonlight-rose/normal.svg",
  34323. extra: 1979/1835,
  34324. bottom: 14/1993
  34325. }
  34326. },
  34327. demon: {
  34328. height: math.unit(5, "km"),
  34329. name: "Demon",
  34330. image: {
  34331. source: "./media/characters/moonlight-rose/demon.svg",
  34332. extra: 986/916,
  34333. bottom: 28/1014
  34334. }
  34335. },
  34336. },
  34337. [
  34338. {
  34339. name: "\"Natural\" height",
  34340. height: math.unit(5 + 11/12, "feet")
  34341. },
  34342. {
  34343. name: "Comfortable Size",
  34344. height: math.unit(40, "meters")
  34345. },
  34346. {
  34347. name: "Common Size",
  34348. height: math.unit(50, "km"),
  34349. default: true
  34350. },
  34351. {
  34352. name: "Demonic",
  34353. height: math.unit(1.24415e+21, "meters")
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34359. {
  34360. front: {
  34361. height: math.unit(16, "feet"),
  34362. weight: math.unit(610, "kg"),
  34363. name: "Front",
  34364. image: {
  34365. source: "./media/characters/huckle/front.svg",
  34366. extra: 1731/1625,
  34367. bottom: 33/1764
  34368. }
  34369. },
  34370. back: {
  34371. height: math.unit(16, "feet"),
  34372. weight: math.unit(610, "kg"),
  34373. name: "Back",
  34374. image: {
  34375. source: "./media/characters/huckle/back.svg",
  34376. extra: 1738/1651,
  34377. bottom: 37/1775
  34378. }
  34379. },
  34380. laughing: {
  34381. height: math.unit(3.75, "feet"),
  34382. name: "Laughing",
  34383. image: {
  34384. source: "./media/characters/huckle/laughing.svg"
  34385. }
  34386. },
  34387. angry: {
  34388. height: math.unit(4.15, "feet"),
  34389. name: "Angry",
  34390. image: {
  34391. source: "./media/characters/huckle/angry.svg"
  34392. }
  34393. },
  34394. },
  34395. [
  34396. {
  34397. name: "Normal",
  34398. height: math.unit(16, "feet"),
  34399. default: true
  34400. },
  34401. {
  34402. name: "Mini Macro",
  34403. height: math.unit(463, "feet")
  34404. },
  34405. {
  34406. name: "Macro",
  34407. height: math.unit(1680, "meters")
  34408. },
  34409. {
  34410. name: "Mega Macro",
  34411. height: math.unit(175, "km")
  34412. },
  34413. {
  34414. name: "Terra Macro",
  34415. height: math.unit(32, "gigameters")
  34416. },
  34417. {
  34418. name: "Multiverse+",
  34419. height: math.unit(2.56e23, "yottameters")
  34420. },
  34421. ]
  34422. ))
  34423. characterMakers.push(() => makeCharacter(
  34424. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34425. {
  34426. front: {
  34427. height: math.unit(6 + 9/12, "feet"),
  34428. weight: math.unit(280, "lb"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/candy/front.svg",
  34432. extra: 234/217,
  34433. bottom: 11/245
  34434. }
  34435. },
  34436. },
  34437. [
  34438. {
  34439. name: "Really Small",
  34440. height: math.unit(0.1, "nm")
  34441. },
  34442. {
  34443. name: "Micro",
  34444. height: math.unit(2, "inches")
  34445. },
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(6 + 9/12, "feet"),
  34449. default: true
  34450. },
  34451. {
  34452. name: "Small Macro",
  34453. height: math.unit(69, "feet")
  34454. },
  34455. {
  34456. name: "Macro",
  34457. height: math.unit(160, "feet")
  34458. },
  34459. {
  34460. name: "Megamacro",
  34461. height: math.unit(22000, "miles")
  34462. },
  34463. {
  34464. name: "Gigamacro",
  34465. height: math.unit(50000, "miles")
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(4, "feet"),
  34474. weight: math.unit(90, "lb"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/joey-mcdonald/front.svg",
  34478. extra: 1059/852,
  34479. bottom: 33/1092
  34480. }
  34481. },
  34482. back: {
  34483. height: math.unit(4, "feet"),
  34484. weight: math.unit(90, "lb"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/joey-mcdonald/back.svg",
  34488. extra: 1077/879,
  34489. bottom: 5/1082
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(4, "feet"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(12 + 6/12, "feet"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/kass-lockheed/front.svg",
  34509. extra: 354/343,
  34510. bottom: 9/363
  34511. }
  34512. },
  34513. back: {
  34514. height: math.unit(12 + 6/12, "feet"),
  34515. name: "Back",
  34516. image: {
  34517. source: "./media/characters/kass-lockheed/back.svg",
  34518. extra: 364/352,
  34519. bottom: 3/367
  34520. }
  34521. },
  34522. dick: {
  34523. height: math.unit(3.12, "feet"),
  34524. name: "Dick",
  34525. image: {
  34526. source: "./media/characters/kass-lockheed/dick.svg"
  34527. }
  34528. },
  34529. head: {
  34530. height: math.unit(2.6, "feet"),
  34531. name: "Head",
  34532. image: {
  34533. source: "./media/characters/kass-lockheed/head.svg"
  34534. }
  34535. },
  34536. bleh: {
  34537. height: math.unit(2.85, "feet"),
  34538. name: "Bleh",
  34539. image: {
  34540. source: "./media/characters/kass-lockheed/bleh.svg"
  34541. }
  34542. },
  34543. smug: {
  34544. height: math.unit(2.85, "feet"),
  34545. name: "Smug",
  34546. image: {
  34547. source: "./media/characters/kass-lockheed/smug.svg"
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(12 + 6/12, "feet"),
  34555. default: true
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34561. {
  34562. front: {
  34563. height: math.unit(6 + 2/12, "feet"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/taylor/front.svg",
  34567. extra: 639/495,
  34568. bottom: 12/651
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Normal",
  34575. height: math.unit(6 + 2/12, "feet"),
  34576. default: true
  34577. },
  34578. {
  34579. name: "Big",
  34580. height: math.unit(15, "feet")
  34581. },
  34582. {
  34583. name: "Lorg",
  34584. height: math.unit(80, "feet")
  34585. },
  34586. {
  34587. name: "Too Lorg",
  34588. height: math.unit(120, "feet")
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34594. {
  34595. front: {
  34596. height: math.unit(15, "feet"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/kaizer/front.svg",
  34600. extra: 1612/1436,
  34601. bottom: 43/1655
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Normal",
  34608. height: math.unit(15, "feet"),
  34609. default: true
  34610. },
  34611. ]
  34612. ))
  34613. characterMakers.push(() => makeCharacter(
  34614. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34615. {
  34616. front: {
  34617. height: math.unit(2, "feet"),
  34618. weight: math.unit(30, "lb"),
  34619. name: "Front",
  34620. image: {
  34621. source: "./media/characters/sandy/front.svg",
  34622. extra: 1439/1307,
  34623. bottom: 194/1633
  34624. }
  34625. },
  34626. },
  34627. [
  34628. {
  34629. name: "Normal",
  34630. height: math.unit(2, "feet"),
  34631. default: true
  34632. },
  34633. ]
  34634. ))
  34635. characterMakers.push(() => makeCharacter(
  34636. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34637. {
  34638. front: {
  34639. height: math.unit(3, "feet"),
  34640. name: "Front",
  34641. image: {
  34642. source: "./media/characters/mellvi/front.svg",
  34643. extra: 1831/1630,
  34644. bottom: 58/1889
  34645. }
  34646. },
  34647. },
  34648. [
  34649. {
  34650. name: "Normal",
  34651. height: math.unit(3, "feet"),
  34652. default: true
  34653. },
  34654. ]
  34655. ))
  34656. characterMakers.push(() => makeCharacter(
  34657. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34658. {
  34659. front: {
  34660. height: math.unit(5 + 11/12, "feet"),
  34661. weight: math.unit(200, "lb"),
  34662. name: "Front",
  34663. image: {
  34664. source: "./media/characters/shirou/front.svg",
  34665. extra: 2491/2383,
  34666. bottom: 189/2680
  34667. }
  34668. },
  34669. back: {
  34670. height: math.unit(5 + 11/12, "feet"),
  34671. weight: math.unit(200, "lb"),
  34672. name: "Back",
  34673. image: {
  34674. source: "./media/characters/shirou/back.svg",
  34675. extra: 2554/2450,
  34676. bottom: 76/2630
  34677. }
  34678. },
  34679. },
  34680. [
  34681. {
  34682. name: "Normal",
  34683. height: math.unit(5 + 11/12, "feet"),
  34684. default: true
  34685. },
  34686. ]
  34687. ))
  34688. characterMakers.push(() => makeCharacter(
  34689. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34690. {
  34691. front: {
  34692. height: math.unit(6 + 3/12, "feet"),
  34693. weight: math.unit(177, "lb"),
  34694. name: "Front",
  34695. image: {
  34696. source: "./media/characters/noryu/front.svg",
  34697. extra: 973/885,
  34698. bottom: 10/983
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(6 + 3/12, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34712. {
  34713. front: {
  34714. height: math.unit(5 + 6/12, "feet"),
  34715. weight: math.unit(170, "lb"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/mevolas-rubenido/front.svg",
  34719. extra: 2109/1901,
  34720. bottom: 96/2205
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(5 + 6/12, "feet"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(100, "feet"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/dee/front.svg",
  34740. extra: 2153/2036,
  34741. bottom: 59/2212
  34742. }
  34743. },
  34744. back: {
  34745. height: math.unit(100, "feet"),
  34746. name: "Back",
  34747. image: {
  34748. source: "./media/characters/dee/back.svg",
  34749. extra: 2183/2058,
  34750. bottom: 75/2258
  34751. }
  34752. },
  34753. foot: {
  34754. height: math.unit(19.43, "feet"),
  34755. name: "Foot",
  34756. image: {
  34757. source: "./media/characters/dee/foot.svg"
  34758. }
  34759. },
  34760. hoof: {
  34761. height: math.unit(20.6, "feet"),
  34762. name: "Hoof",
  34763. image: {
  34764. source: "./media/characters/dee/hoof.svg"
  34765. }
  34766. },
  34767. },
  34768. [
  34769. {
  34770. name: "Macro",
  34771. height: math.unit(100, "feet"),
  34772. default: true
  34773. },
  34774. ]
  34775. ))
  34776. characterMakers.push(() => makeCharacter(
  34777. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34778. {
  34779. front: {
  34780. height: math.unit(5 + 6/12, "feet"),
  34781. name: "Front",
  34782. image: {
  34783. source: "./media/characters/teh/front.svg",
  34784. extra: 1002/847,
  34785. bottom: 62/1064
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(5 + 6/12, "feet"),
  34793. default: true
  34794. },
  34795. ]
  34796. ))
  34797. characterMakers.push(() => makeCharacter(
  34798. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34799. {
  34800. side: {
  34801. height: math.unit(6 + 1/12, "feet"),
  34802. weight: math.unit(204, "lb"),
  34803. name: "Side",
  34804. image: {
  34805. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34806. extra: 974/775,
  34807. bottom: 169/1143
  34808. }
  34809. },
  34810. sitting: {
  34811. height: math.unit(6 + 2/12, "feet"),
  34812. weight: math.unit(204, "lb"),
  34813. name: "Sitting",
  34814. image: {
  34815. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34816. extra: 1175/964,
  34817. bottom: 378/1553
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(6 + 1/12, "feet"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34831. {
  34832. front: {
  34833. height: math.unit(6, "inches"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/tululi/front.svg",
  34837. extra: 1997/1876,
  34838. bottom: 20/2017
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Normal",
  34845. height: math.unit(6, "inches"),
  34846. default: true
  34847. },
  34848. ]
  34849. ))
  34850. characterMakers.push(() => makeCharacter(
  34851. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34852. {
  34853. front: {
  34854. height: math.unit(4 + 1/12, "feet"),
  34855. name: "Front",
  34856. image: {
  34857. source: "./media/characters/star/front.svg",
  34858. extra: 1493/1189,
  34859. bottom: 48/1541
  34860. }
  34861. },
  34862. },
  34863. [
  34864. {
  34865. name: "Normal",
  34866. height: math.unit(4 + 1/12, "feet"),
  34867. default: true
  34868. },
  34869. ]
  34870. ))
  34871. characterMakers.push(() => makeCharacter(
  34872. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34873. {
  34874. front: {
  34875. height: math.unit(6 + 3/12, "feet"),
  34876. name: "Front",
  34877. image: {
  34878. source: "./media/characters/comet/front.svg",
  34879. extra: 1681/1462,
  34880. bottom: 26/1707
  34881. }
  34882. },
  34883. },
  34884. [
  34885. {
  34886. name: "Normal",
  34887. height: math.unit(6 + 3/12, "feet"),
  34888. default: true
  34889. },
  34890. ]
  34891. ))
  34892. characterMakers.push(() => makeCharacter(
  34893. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34894. {
  34895. front: {
  34896. height: math.unit(950, "feet"),
  34897. name: "Front",
  34898. image: {
  34899. source: "./media/characters/vortex/front.svg",
  34900. extra: 1497/1434,
  34901. bottom: 56/1553
  34902. }
  34903. },
  34904. maw: {
  34905. height: math.unit(285, "feet"),
  34906. name: "Maw",
  34907. image: {
  34908. source: "./media/characters/vortex/maw.svg"
  34909. }
  34910. },
  34911. },
  34912. [
  34913. {
  34914. name: "Macro",
  34915. height: math.unit(950, "feet"),
  34916. default: true
  34917. },
  34918. ]
  34919. ))
  34920. characterMakers.push(() => makeCharacter(
  34921. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34922. {
  34923. front: {
  34924. height: math.unit(600, "feet"),
  34925. weight: math.unit(0.02, "grams"),
  34926. name: "Front",
  34927. image: {
  34928. source: "./media/characters/doodle/front.svg",
  34929. extra: 1578/1413,
  34930. bottom: 37/1615
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Macro",
  34937. height: math.unit(600, "feet"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34944. {
  34945. front: {
  34946. height: math.unit(6 + 6/12, "feet"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/jai/front.svg",
  34950. extra: 1645/1534,
  34951. bottom: 115/1760
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(6 + 6/12, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(6 + 8/12, "feet"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/pixel/front.svg",
  34971. extra: 1900/1735,
  34972. bottom: 63/1963
  34973. }
  34974. },
  34975. },
  34976. [
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(6 + 8/12, "feet"),
  34980. default: true
  34981. },
  34982. ]
  34983. ))
  34984. characterMakers.push(() => makeCharacter(
  34985. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34986. {
  34987. front: {
  34988. height: math.unit(4 + 11/12, "feet"),
  34989. weight: math.unit(111, "lb"),
  34990. name: "Front",
  34991. image: {
  34992. source: "./media/characters/rhett/front.svg",
  34993. extra: 1682/1586,
  34994. bottom: 92/1774
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Mini",
  35001. height: math.unit(1 + 1/12, "feet")
  35002. },
  35003. {
  35004. name: "Normal",
  35005. height: math.unit(4 + 11/12, "feet"),
  35006. default: true
  35007. },
  35008. ]
  35009. ))
  35010. characterMakers.push(() => makeCharacter(
  35011. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35012. {
  35013. front: {
  35014. height: math.unit(3 + 3/12, "feet"),
  35015. name: "Front",
  35016. image: {
  35017. source: "./media/characters/penny/front.svg",
  35018. extra: 1406/1311,
  35019. bottom: 26/1432
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Normal",
  35026. height: math.unit(3 + 3/12, "feet"),
  35027. default: true
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35033. {
  35034. front: {
  35035. height: math.unit(4 + 11/12, "feet"),
  35036. name: "Front",
  35037. image: {
  35038. source: "./media/characters/monty/front.svg",
  35039. extra: 1479/1209,
  35040. bottom: 0/1479
  35041. }
  35042. },
  35043. },
  35044. [
  35045. {
  35046. name: "Normal",
  35047. height: math.unit(4 + 11/12, "feet"),
  35048. default: true
  35049. },
  35050. ]
  35051. ))
  35052. characterMakers.push(() => makeCharacter(
  35053. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35054. {
  35055. front: {
  35056. height: math.unit(8 + 4/12, "feet"),
  35057. name: "Front",
  35058. image: {
  35059. source: "./media/characters/sterling/front.svg",
  35060. extra: 1420/1236,
  35061. bottom: 27/1447
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Normal",
  35068. height: math.unit(8 + 4/12, "feet"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35075. {
  35076. front: {
  35077. height: math.unit(15, "feet"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/marble/front.svg",
  35081. extra: 973/937,
  35082. bottom: 32/1005
  35083. }
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Normal",
  35089. height: math.unit(15, "feet"),
  35090. default: true
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35096. {
  35097. front: {
  35098. height: math.unit(3, "inches"),
  35099. name: "Front",
  35100. image: {
  35101. source: "./media/characters/powder/front.svg",
  35102. extra: 1504/1334,
  35103. bottom: 518/2022
  35104. }
  35105. },
  35106. },
  35107. [
  35108. {
  35109. name: "Normal",
  35110. height: math.unit(3, "inches"),
  35111. default: true
  35112. },
  35113. ]
  35114. ))
  35115. characterMakers.push(() => makeCharacter(
  35116. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35117. {
  35118. front: {
  35119. height: math.unit(4 + 5/12, "feet"),
  35120. name: "Front",
  35121. image: {
  35122. source: "./media/characters/joey-raccoon/front.svg",
  35123. extra: 1273/1197,
  35124. bottom: 0/1273
  35125. }
  35126. },
  35127. },
  35128. [
  35129. {
  35130. name: "Normal",
  35131. height: math.unit(4 + 5/12, "feet"),
  35132. default: true
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35138. {
  35139. front: {
  35140. height: math.unit(8 + 4/12, "feet"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/vick/front.svg",
  35144. extra: 2187/2118,
  35145. bottom: 47/2234
  35146. }
  35147. },
  35148. },
  35149. [
  35150. {
  35151. name: "Normal",
  35152. height: math.unit(8 + 4/12, "feet"),
  35153. default: true
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35159. {
  35160. front: {
  35161. height: math.unit(5 + 5/12, "feet"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/mitsy/front.svg",
  35165. extra: 1842/1695,
  35166. bottom: 0/1842
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Normal",
  35173. height: math.unit(5 + 5/12, "feet"),
  35174. default: true
  35175. },
  35176. ]
  35177. ))
  35178. characterMakers.push(() => makeCharacter(
  35179. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35180. {
  35181. front: {
  35182. height: math.unit(6 + 3/12, "feet"),
  35183. name: "Front",
  35184. image: {
  35185. source: "./media/characters/silvy/front.svg",
  35186. extra: 1995/1836,
  35187. bottom: 225/2220
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(6 + 3/12, "feet"),
  35195. default: true
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35201. {
  35202. front: {
  35203. height: math.unit(3 + 8/12, "feet"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/rodney/front.svg",
  35207. extra: 1956/1747,
  35208. bottom: 31/1987
  35209. }
  35210. },
  35211. frontDressed: {
  35212. height: math.unit(2.9, "feet"),
  35213. name: "Front (Dressed)",
  35214. image: {
  35215. source: "./media/characters/rodney/front-dressed.svg",
  35216. extra: 1382/1241,
  35217. bottom: 385/1767
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(3 + 8/12, "feet"),
  35225. default: true
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35231. {
  35232. front: {
  35233. height: math.unit(5 + 9/12, "feet"),
  35234. weight: math.unit(194, "lbs"),
  35235. name: "Front",
  35236. image: {
  35237. source: "./media/characters/zakail-sudekai/front.svg",
  35238. extra: 2696/2533,
  35239. bottom: 248/2944
  35240. }
  35241. },
  35242. maw: {
  35243. height: math.unit(1.35, "feet"),
  35244. name: "Maw",
  35245. image: {
  35246. source: "./media/characters/zakail-sudekai/maw.svg"
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(5 + 9/12, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(8 + 4/12, "feet"),
  35263. weight: math.unit(1200, "lb"),
  35264. name: "Front",
  35265. image: {
  35266. source: "./media/characters/eleanor/front.svg",
  35267. extra: 1226/1192,
  35268. bottom: 52/1278
  35269. }
  35270. },
  35271. back: {
  35272. height: math.unit(8 + 4/12, "feet"),
  35273. weight: math.unit(1200, "lb"),
  35274. name: "Back",
  35275. image: {
  35276. source: "./media/characters/eleanor/back.svg",
  35277. extra: 1242/1184,
  35278. bottom: 60/1302
  35279. }
  35280. },
  35281. head: {
  35282. height: math.unit(2.62, "feet"),
  35283. name: "Head",
  35284. image: {
  35285. source: "./media/characters/eleanor/head.svg"
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Normal",
  35292. height: math.unit(8 + 4/12, "feet"),
  35293. default: true
  35294. },
  35295. ]
  35296. ))
  35297. characterMakers.push(() => makeCharacter(
  35298. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35299. {
  35300. front: {
  35301. height: math.unit(8 + 4/12, "feet"),
  35302. weight: math.unit(750, "lb"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/tanya/front.svg",
  35306. extra: 1749/1615,
  35307. bottom: 33/1782
  35308. }
  35309. },
  35310. },
  35311. [
  35312. {
  35313. name: "Normal",
  35314. height: math.unit(8 + 4/12, "feet"),
  35315. default: true
  35316. },
  35317. ]
  35318. ))
  35319. characterMakers.push(() => makeCharacter(
  35320. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35321. {
  35322. front: {
  35323. height: math.unit(5, "feet"),
  35324. weight: math.unit(225, "lb"),
  35325. name: "Front",
  35326. image: {
  35327. source: "./media/characters/cindy/front.svg",
  35328. extra: 1320/1250,
  35329. bottom: 42/1362
  35330. }
  35331. },
  35332. frontDressed: {
  35333. height: math.unit(5, "feet"),
  35334. weight: math.unit(225, "lb"),
  35335. name: "Front (Dressed)",
  35336. image: {
  35337. source: "./media/characters/cindy/front-dressed.svg",
  35338. extra: 1320/1250,
  35339. bottom: 42/1362
  35340. }
  35341. },
  35342. back: {
  35343. height: math.unit(5, "feet"),
  35344. weight: math.unit(225, "lb"),
  35345. name: "Back",
  35346. image: {
  35347. source: "./media/characters/cindy/back.svg",
  35348. extra: 1384/1346,
  35349. bottom: 14/1398
  35350. }
  35351. },
  35352. },
  35353. [
  35354. {
  35355. name: "Normal",
  35356. height: math.unit(5, "feet"),
  35357. default: true
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35363. {
  35364. front: {
  35365. height: math.unit(6 + 9/12, "feet"),
  35366. weight: math.unit(440, "lb"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/wilbur-owen/front.svg",
  35370. extra: 1575/1448,
  35371. bottom: 72/1647
  35372. }
  35373. },
  35374. back: {
  35375. height: math.unit(6 + 9/12, "feet"),
  35376. weight: math.unit(440, "lb"),
  35377. name: "Back",
  35378. image: {
  35379. source: "./media/characters/wilbur-owen/back.svg",
  35380. extra: 1578/1445,
  35381. bottom: 36/1614
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Normal",
  35388. height: math.unit(6 + 9/12, "feet"),
  35389. default: true
  35390. },
  35391. ]
  35392. ))
  35393. characterMakers.push(() => makeCharacter(
  35394. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35395. {
  35396. front: {
  35397. height: math.unit(6 + 5/12, "feet"),
  35398. weight: math.unit(650, "lb"),
  35399. name: "Front",
  35400. image: {
  35401. source: "./media/characters/keegan/front.svg",
  35402. extra: 2387/2198,
  35403. bottom: 33/2420
  35404. }
  35405. },
  35406. side: {
  35407. height: math.unit(6 + 5/12, "feet"),
  35408. weight: math.unit(650, "lb"),
  35409. name: "Side",
  35410. image: {
  35411. source: "./media/characters/keegan/side.svg",
  35412. extra: 2390/2202,
  35413. bottom: 47/2437
  35414. }
  35415. },
  35416. back: {
  35417. height: math.unit(6 + 5/12, "feet"),
  35418. weight: math.unit(650, "lb"),
  35419. name: "Back",
  35420. image: {
  35421. source: "./media/characters/keegan/back.svg",
  35422. extra: 2418/2268,
  35423. bottom: 15/2433
  35424. }
  35425. },
  35426. frontSfw: {
  35427. height: math.unit(6 + 5/12, "feet"),
  35428. weight: math.unit(650, "lb"),
  35429. name: "Front (SFW)",
  35430. image: {
  35431. source: "./media/characters/keegan/front-sfw.svg",
  35432. extra: 2387/2198,
  35433. bottom: 33/2420
  35434. }
  35435. },
  35436. beans: {
  35437. height: math.unit(1.85, "feet"),
  35438. name: "Beans",
  35439. image: {
  35440. source: "./media/characters/keegan/beans.svg"
  35441. }
  35442. },
  35443. },
  35444. [
  35445. {
  35446. name: "Normal",
  35447. height: math.unit(6 + 5/12, "feet"),
  35448. default: true
  35449. },
  35450. ]
  35451. ))
  35452. characterMakers.push(() => makeCharacter(
  35453. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35454. {
  35455. front: {
  35456. height: math.unit(9, "feet"),
  35457. name: "Front",
  35458. image: {
  35459. source: "./media/characters/colton/front.svg",
  35460. extra: 1589/1326,
  35461. bottom: 139/1728
  35462. }
  35463. },
  35464. },
  35465. [
  35466. {
  35467. name: "Normal",
  35468. height: math.unit(9, "feet"),
  35469. default: true
  35470. },
  35471. ]
  35472. ))
  35473. characterMakers.push(() => makeCharacter(
  35474. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35475. {
  35476. front: {
  35477. height: math.unit(2 + 9/12, "feet"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/bora/front.svg",
  35481. extra: 1265/1250,
  35482. bottom: 24/1289
  35483. }
  35484. },
  35485. },
  35486. [
  35487. {
  35488. name: "Normal",
  35489. height: math.unit(2 + 9/12, "feet"),
  35490. default: true
  35491. },
  35492. ]
  35493. ))
  35494. characterMakers.push(() => makeCharacter(
  35495. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35496. {
  35497. front: {
  35498. height: math.unit(8, "feet"),
  35499. name: "Front",
  35500. image: {
  35501. source: "./media/characters/myu-myu/front.svg",
  35502. extra: 1949/1857,
  35503. bottom: 90/2039
  35504. }
  35505. },
  35506. },
  35507. [
  35508. {
  35509. name: "Normal",
  35510. height: math.unit(8, "feet"),
  35511. default: true
  35512. },
  35513. {
  35514. name: "Big",
  35515. height: math.unit(15, "feet")
  35516. },
  35517. {
  35518. name: "BIG",
  35519. height: math.unit(25, "feet")
  35520. },
  35521. ]
  35522. ))
  35523. characterMakers.push(() => makeCharacter(
  35524. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35525. {
  35526. side: {
  35527. height: math.unit(7 + 5/12, "feet"),
  35528. weight: math.unit(2800, "lb"),
  35529. name: "Side",
  35530. image: {
  35531. source: "./media/characters/haloren/side.svg",
  35532. extra: 1793/409,
  35533. bottom: 59/1852
  35534. }
  35535. },
  35536. frontPaw: {
  35537. height: math.unit(2.36, "feet"),
  35538. name: "Front paw",
  35539. image: {
  35540. source: "./media/characters/haloren/front-paw.svg"
  35541. }
  35542. },
  35543. hindPaw: {
  35544. height: math.unit(3.18, "feet"),
  35545. name: "Hind paw",
  35546. image: {
  35547. source: "./media/characters/haloren/hind-paw.svg"
  35548. }
  35549. },
  35550. maw: {
  35551. height: math.unit(5.05, "feet"),
  35552. name: "Maw",
  35553. image: {
  35554. source: "./media/characters/haloren/maw.svg"
  35555. }
  35556. },
  35557. dick: {
  35558. height: math.unit(2.90, "feet"),
  35559. name: "Dick",
  35560. image: {
  35561. source: "./media/characters/haloren/dick.svg"
  35562. }
  35563. },
  35564. },
  35565. [
  35566. {
  35567. name: "Normal",
  35568. height: math.unit(7 + 5/12, "feet"),
  35569. default: true
  35570. },
  35571. {
  35572. name: "Enhanced",
  35573. height: math.unit(14 + 3/12, "feet")
  35574. },
  35575. ]
  35576. ))
  35577. characterMakers.push(() => makeCharacter(
  35578. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35579. {
  35580. front: {
  35581. height: math.unit(171, "cm"),
  35582. name: "Front",
  35583. image: {
  35584. source: "./media/characters/kimmy/front.svg",
  35585. extra: 1491/1435,
  35586. bottom: 53/1544
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Small",
  35593. height: math.unit(9, "cm")
  35594. },
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(171, "cm"),
  35598. default: true
  35599. },
  35600. ]
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35604. {
  35605. front: {
  35606. height: math.unit(8, "feet"),
  35607. weight: math.unit(300, "lb"),
  35608. name: "Front",
  35609. image: {
  35610. source: "./media/characters/galeboomer/front.svg",
  35611. extra: 4651/4415,
  35612. bottom: 162/4813
  35613. }
  35614. },
  35615. back: {
  35616. height: math.unit(8, "feet"),
  35617. weight: math.unit(300, "lb"),
  35618. name: "Back",
  35619. image: {
  35620. source: "./media/characters/galeboomer/back.svg",
  35621. extra: 4544/4314,
  35622. bottom: 16/4560
  35623. }
  35624. },
  35625. frontAlt: {
  35626. height: math.unit(8, "feet"),
  35627. weight: math.unit(300, "lb"),
  35628. name: "Front (Alt)",
  35629. image: {
  35630. source: "./media/characters/galeboomer/front-alt.svg",
  35631. extra: 4458/4228,
  35632. bottom: 68/4526
  35633. }
  35634. },
  35635. maw: {
  35636. height: math.unit(1.2, "feet"),
  35637. name: "Maw",
  35638. image: {
  35639. source: "./media/characters/galeboomer/maw.svg"
  35640. }
  35641. },
  35642. },
  35643. [
  35644. {
  35645. name: "Normal",
  35646. height: math.unit(8, "feet"),
  35647. default: true
  35648. },
  35649. ]
  35650. ))
  35651. characterMakers.push(() => makeCharacter(
  35652. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35653. {
  35654. front: {
  35655. height: math.unit(5 + 9/12, "feet"),
  35656. weight: math.unit(120, "lb"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/chyr/front.svg",
  35660. extra: 1323/1254,
  35661. bottom: 63/1386
  35662. }
  35663. },
  35664. back: {
  35665. height: math.unit(5 + 9/12, "feet"),
  35666. weight: math.unit(120, "lb"),
  35667. name: "Back",
  35668. image: {
  35669. source: "./media/characters/chyr/back.svg",
  35670. extra: 1323/1252,
  35671. bottom: 48/1371
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Normal",
  35678. height: math.unit(5 + 9/12, "feet"),
  35679. default: true
  35680. },
  35681. ]
  35682. ))
  35683. characterMakers.push(() => makeCharacter(
  35684. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35685. {
  35686. front: {
  35687. height: math.unit(7, "feet"),
  35688. weight: math.unit(310, "lb"),
  35689. name: "Front",
  35690. image: {
  35691. source: "./media/characters/solarus/front.svg",
  35692. extra: 2415/2021,
  35693. bottom: 103/2518
  35694. }
  35695. },
  35696. back: {
  35697. height: math.unit(7, "feet"),
  35698. weight: math.unit(310, "lb"),
  35699. name: "Back",
  35700. image: {
  35701. source: "./media/characters/solarus/back.svg",
  35702. extra: 2463/2089,
  35703. bottom: 79/2542
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(7, "feet"),
  35711. default: true
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35717. {
  35718. front: {
  35719. height: math.unit(16, "feet"),
  35720. name: "Front",
  35721. image: {
  35722. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35723. extra: 1844/1780,
  35724. bottom: 58/1902
  35725. }
  35726. },
  35727. },
  35728. [
  35729. {
  35730. name: "Normal",
  35731. height: math.unit(16, "feet"),
  35732. default: true
  35733. },
  35734. ]
  35735. ))
  35736. characterMakers.push(() => makeCharacter(
  35737. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35738. {
  35739. front: {
  35740. height: math.unit(11 + 6/12, "feet"),
  35741. weight: math.unit(1366, "lb"),
  35742. name: "Front",
  35743. image: {
  35744. source: "./media/characters/lexor/front.svg",
  35745. extra: 1560/1481,
  35746. bottom: 211/1771
  35747. }
  35748. },
  35749. back: {
  35750. height: math.unit(11 + 6/12, "feet"),
  35751. weight: math.unit(1366, "lb"),
  35752. name: "Back",
  35753. image: {
  35754. source: "./media/characters/lexor/back.svg",
  35755. extra: 1614/1533,
  35756. bottom: 76/1690
  35757. }
  35758. },
  35759. maw: {
  35760. height: math.unit(3, "feet"),
  35761. name: "Maw",
  35762. image: {
  35763. source: "./media/characters/lexor/maw.svg"
  35764. }
  35765. },
  35766. dick: {
  35767. height: math.unit(2.59, "feet"),
  35768. name: "Dick",
  35769. image: {
  35770. source: "./media/characters/lexor/dick.svg"
  35771. }
  35772. },
  35773. },
  35774. [
  35775. {
  35776. name: "Normal",
  35777. height: math.unit(11 + 6/12, "feet"),
  35778. default: true
  35779. },
  35780. ]
  35781. ))
  35782. characterMakers.push(() => makeCharacter(
  35783. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35784. {
  35785. front: {
  35786. height: math.unit(5 + 8/12, "feet"),
  35787. name: "Front",
  35788. image: {
  35789. source: "./media/characters/magnum/front.svg",
  35790. extra: 942/855,
  35791. bottom: 26/968
  35792. }
  35793. },
  35794. },
  35795. [
  35796. {
  35797. name: "Normal",
  35798. height: math.unit(5 + 8/12, "feet"),
  35799. default: true
  35800. },
  35801. ]
  35802. ))
  35803. characterMakers.push(() => makeCharacter(
  35804. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35805. {
  35806. front: {
  35807. height: math.unit(18 + 4/12, "feet"),
  35808. weight: math.unit(1500, "kg"),
  35809. name: "Front",
  35810. image: {
  35811. source: "./media/characters/solas-sharpsman/front.svg",
  35812. extra: 1698/1589,
  35813. bottom: 0/1698
  35814. }
  35815. },
  35816. },
  35817. [
  35818. {
  35819. name: "Normal",
  35820. height: math.unit(18 + 4/12, "feet"),
  35821. default: true
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35827. {
  35828. front: {
  35829. height: math.unit(5 + 5/12, "feet"),
  35830. weight: math.unit(180, "lb"),
  35831. name: "Front",
  35832. image: {
  35833. source: "./media/characters/october/front.svg",
  35834. extra: 1800/1650,
  35835. bottom: 0/1800
  35836. }
  35837. },
  35838. frontNsfw: {
  35839. height: math.unit(5 + 5/12, "feet"),
  35840. weight: math.unit(180, "lb"),
  35841. name: "Front (NSFW)",
  35842. image: {
  35843. source: "./media/characters/october/front-nsfw.svg",
  35844. extra: 1392/1307,
  35845. bottom: 42/1434
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Normal",
  35852. height: math.unit(5 + 5/12, "feet"),
  35853. default: true
  35854. },
  35855. ]
  35856. ))
  35857. characterMakers.push(() => makeCharacter(
  35858. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35859. {
  35860. front: {
  35861. height: math.unit(8 + 6/12, "feet"),
  35862. name: "Front",
  35863. image: {
  35864. source: "./media/characters/essynkardi/front.svg",
  35865. extra: 1914/1846,
  35866. bottom: 22/1936
  35867. }
  35868. },
  35869. },
  35870. [
  35871. {
  35872. name: "Normal",
  35873. height: math.unit(8 + 6/12, "feet"),
  35874. default: true
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35880. {
  35881. front: {
  35882. height: math.unit(6 + 6/12, "feet"),
  35883. weight: math.unit(7, "lb"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/icky/front.svg",
  35887. extra: 813/782,
  35888. bottom: 66/879
  35889. }
  35890. },
  35891. back: {
  35892. height: math.unit(6 + 6/12, "feet"),
  35893. weight: math.unit(7, "lb"),
  35894. name: "Back",
  35895. image: {
  35896. source: "./media/characters/icky/back.svg",
  35897. extra: 754/735,
  35898. bottom: 56/810
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Normal",
  35905. height: math.unit(6 + 6/12, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(15, "feet"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/rojas/front.svg",
  35918. extra: 1462/1408,
  35919. bottom: 95/1557
  35920. }
  35921. },
  35922. back: {
  35923. height: math.unit(15, "feet"),
  35924. name: "Back",
  35925. image: {
  35926. source: "./media/characters/rojas/back.svg",
  35927. extra: 1023/954,
  35928. bottom: 28/1051
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(15, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35942. {
  35943. frontHuman: {
  35944. height: math.unit(5 + 7/12, "feet"),
  35945. name: "Front (Human)",
  35946. image: {
  35947. source: "./media/characters/alek-dryagan/front-human.svg",
  35948. extra: 1687/1667,
  35949. bottom: 69/1756
  35950. }
  35951. },
  35952. backHuman: {
  35953. height: math.unit(5 + 7/12, "feet"),
  35954. name: "Back (Human)",
  35955. image: {
  35956. source: "./media/characters/alek-dryagan/back-human.svg",
  35957. extra: 1670/1649,
  35958. bottom: 65/1735
  35959. }
  35960. },
  35961. frontDemi: {
  35962. height: math.unit(65, "feet"),
  35963. name: "Front (Demi)",
  35964. image: {
  35965. source: "./media/characters/alek-dryagan/front-demi.svg",
  35966. extra: 1669/1642,
  35967. bottom: 49/1718
  35968. }
  35969. },
  35970. backDemi: {
  35971. height: math.unit(65, "feet"),
  35972. name: "Back (Demi)",
  35973. image: {
  35974. source: "./media/characters/alek-dryagan/back-demi.svg",
  35975. extra: 1658/1637,
  35976. bottom: 40/1698
  35977. }
  35978. },
  35979. mawHuman: {
  35980. height: math.unit(0.3, "feet"),
  35981. name: "Maw (Human)",
  35982. image: {
  35983. source: "./media/characters/alek-dryagan/maw-human.svg"
  35984. }
  35985. },
  35986. mawDemi: {
  35987. height: math.unit(3.8, "feet"),
  35988. name: "Maw (Demi)",
  35989. image: {
  35990. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35991. }
  35992. },
  35993. },
  35994. [
  35995. {
  35996. name: "Normal",
  35997. height: math.unit(5 + 7/12, "feet"),
  35998. default: true
  35999. },
  36000. ]
  36001. ))
  36002. characterMakers.push(() => makeCharacter(
  36003. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36004. {
  36005. frontHuman: {
  36006. height: math.unit(5 + 2/12, "feet"),
  36007. name: "Front (Human)",
  36008. image: {
  36009. source: "./media/characters/gen/front-human.svg",
  36010. extra: 1627/1538,
  36011. bottom: 71/1698
  36012. }
  36013. },
  36014. backHuman: {
  36015. height: math.unit(5 + 2/12, "feet"),
  36016. name: "Back (Human)",
  36017. image: {
  36018. source: "./media/characters/gen/back-human.svg",
  36019. extra: 1638/1548,
  36020. bottom: 69/1707
  36021. }
  36022. },
  36023. frontDemi: {
  36024. height: math.unit(5 + 2/12, "feet"),
  36025. name: "Front (Demi)",
  36026. image: {
  36027. source: "./media/characters/gen/front-demi.svg",
  36028. extra: 1627/1538,
  36029. bottom: 71/1698
  36030. }
  36031. },
  36032. backDemi: {
  36033. height: math.unit(5 + 2/12, "feet"),
  36034. name: "Back (Demi)",
  36035. image: {
  36036. source: "./media/characters/gen/back-demi.svg",
  36037. extra: 1638/1548,
  36038. bottom: 69/1707
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Normal",
  36045. height: math.unit(5 + 2/12, "feet"),
  36046. default: true
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36052. {
  36053. frontImp: {
  36054. height: math.unit(1 + 11/12, "feet"),
  36055. name: "Front (Imp)",
  36056. image: {
  36057. source: "./media/characters/max-kobold/front-imp.svg",
  36058. extra: 1238/1134,
  36059. bottom: 81/1319
  36060. }
  36061. },
  36062. backImp: {
  36063. height: math.unit(1 + 11/12, "feet"),
  36064. name: "Back (Imp)",
  36065. image: {
  36066. source: "./media/characters/max-kobold/back-imp.svg",
  36067. extra: 1334/1175,
  36068. bottom: 34/1368
  36069. }
  36070. },
  36071. frontDemi: {
  36072. height: math.unit(5 + 9/12, "feet"),
  36073. name: "Front (Demi)",
  36074. image: {
  36075. source: "./media/characters/max-kobold/front-demi.svg",
  36076. extra: 1715/1685,
  36077. bottom: 54/1769
  36078. }
  36079. },
  36080. backDemi: {
  36081. height: math.unit(5 + 9/12, "feet"),
  36082. name: "Back (Demi)",
  36083. image: {
  36084. source: "./media/characters/max-kobold/back-demi.svg",
  36085. extra: 1752/1729,
  36086. bottom: 41/1793
  36087. }
  36088. },
  36089. handImp: {
  36090. height: math.unit(0.45, "feet"),
  36091. name: "Hand (Imp)",
  36092. image: {
  36093. source: "./media/characters/max-kobold/hand.svg"
  36094. }
  36095. },
  36096. pawImp: {
  36097. height: math.unit(0.46, "feet"),
  36098. name: "Paw (Imp)",
  36099. image: {
  36100. source: "./media/characters/max-kobold/paw.svg"
  36101. }
  36102. },
  36103. handDemi: {
  36104. height: math.unit(0.80, "feet"),
  36105. name: "Hand (Demi)",
  36106. image: {
  36107. source: "./media/characters/max-kobold/hand.svg"
  36108. }
  36109. },
  36110. pawDemi: {
  36111. height: math.unit(1.1, "feet"),
  36112. name: "Paw (Demi)",
  36113. image: {
  36114. source: "./media/characters/max-kobold/paw.svg"
  36115. }
  36116. },
  36117. headImp: {
  36118. height: math.unit(1.33, "feet"),
  36119. name: "Head (Imp)",
  36120. image: {
  36121. source: "./media/characters/max-kobold/head-imp.svg"
  36122. }
  36123. },
  36124. mawImp: {
  36125. height: math.unit(0.75, "feet"),
  36126. name: "Maw (Imp)",
  36127. image: {
  36128. source: "./media/characters/max-kobold/maw-imp.svg"
  36129. }
  36130. },
  36131. mawDemi: {
  36132. height: math.unit(0.42, "feet"),
  36133. name: "Maw (Demi)",
  36134. image: {
  36135. source: "./media/characters/max-kobold/maw-demi.svg"
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(1 + 11/12, "feet"),
  36143. default: true
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36149. {
  36150. front: {
  36151. height: math.unit(7 + 5/12, "feet"),
  36152. name: "Front",
  36153. image: {
  36154. source: "./media/characters/carbon/front.svg",
  36155. extra: 1754/1689,
  36156. bottom: 65/1819
  36157. }
  36158. },
  36159. back: {
  36160. height: math.unit(7 + 5/12, "feet"),
  36161. name: "Back",
  36162. image: {
  36163. source: "./media/characters/carbon/back.svg",
  36164. extra: 1762/1695,
  36165. bottom: 24/1786
  36166. }
  36167. },
  36168. frontGigantamax: {
  36169. height: math.unit(150, "feet"),
  36170. name: "Front (Gigantamax)",
  36171. image: {
  36172. source: "./media/characters/carbon/front-gigantamax.svg",
  36173. extra: 1826/1669,
  36174. bottom: 59/1885
  36175. }
  36176. },
  36177. backGigantamax: {
  36178. height: math.unit(150, "feet"),
  36179. name: "Back (Gigantamax)",
  36180. image: {
  36181. source: "./media/characters/carbon/back-gigantamax.svg",
  36182. extra: 1796/1653,
  36183. bottom: 53/1849
  36184. }
  36185. },
  36186. maw: {
  36187. height: math.unit(0.48, "feet"),
  36188. name: "Maw",
  36189. image: {
  36190. source: "./media/characters/carbon/maw.svg"
  36191. }
  36192. },
  36193. mawGigantamax: {
  36194. height: math.unit(7.5, "feet"),
  36195. name: "Maw (Gigantamax)",
  36196. image: {
  36197. source: "./media/characters/carbon/maw-gigantamax.svg"
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(7 + 5/12, "feet"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(6, "feet"),
  36214. name: "Front",
  36215. image: {
  36216. source: "./media/characters/maverick/front.svg",
  36217. extra: 1672/1661,
  36218. bottom: 85/1757
  36219. }
  36220. },
  36221. back: {
  36222. height: math.unit(6, "feet"),
  36223. name: "Back",
  36224. image: {
  36225. source: "./media/characters/maverick/back.svg",
  36226. extra: 1642/1631,
  36227. bottom: 38/1680
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Normal",
  36234. height: math.unit(6, "feet"),
  36235. default: true
  36236. },
  36237. ]
  36238. ))
  36239. characterMakers.push(() => makeCharacter(
  36240. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36241. {
  36242. front: {
  36243. height: math.unit(15, "feet"),
  36244. weight: math.unit(615, "lb"),
  36245. name: "Front",
  36246. image: {
  36247. source: "./media/characters/grockle/front.svg",
  36248. extra: 1535/1427,
  36249. bottom: 56/1591
  36250. }
  36251. },
  36252. },
  36253. [
  36254. {
  36255. name: "Normal",
  36256. height: math.unit(15, "feet"),
  36257. default: true
  36258. },
  36259. {
  36260. name: "Large",
  36261. height: math.unit(150, "feet")
  36262. },
  36263. {
  36264. name: "Macro",
  36265. height: math.unit(1876, "feet")
  36266. },
  36267. {
  36268. name: "Mega Macro",
  36269. height: math.unit(121940, "feet")
  36270. },
  36271. {
  36272. name: "Giga Macro",
  36273. height: math.unit(750, "km")
  36274. },
  36275. {
  36276. name: "Tera Macro",
  36277. height: math.unit(750000, "km")
  36278. },
  36279. {
  36280. name: "Galactic",
  36281. height: math.unit(1.4e5, "km")
  36282. },
  36283. {
  36284. name: "Godlike",
  36285. height: math.unit(9.8e280, "galaxies")
  36286. },
  36287. ]
  36288. ))
  36289. characterMakers.push(() => makeCharacter(
  36290. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36291. {
  36292. front: {
  36293. height: math.unit(11, "meters"),
  36294. weight: math.unit(20, "tonnes"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/alistair/front.svg",
  36298. extra: 1265/1009,
  36299. bottom: 93/1358
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(11, "meters"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36313. {
  36314. front: {
  36315. height: math.unit(5 + 8/12, "feet"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/haruka/front.svg",
  36319. extra: 2012/1952,
  36320. bottom: 0/2012
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(5 + 8/12, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36334. {
  36335. back: {
  36336. height: math.unit(9, "feet"),
  36337. name: "Back",
  36338. image: {
  36339. source: "./media/characters/vivian-sylveon/back.svg",
  36340. extra: 1853/1714,
  36341. bottom: 0/1853
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(9, "feet"),
  36349. default: true
  36350. },
  36351. {
  36352. name: "Macro",
  36353. height: math.unit(500, "feet")
  36354. },
  36355. {
  36356. name: "Megamacro",
  36357. height: math.unit(600, "miles")
  36358. },
  36359. {
  36360. name: "Gigamacro",
  36361. height: math.unit(30000, "miles")
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36367. {
  36368. anthro: {
  36369. height: math.unit(5 + 10/12, "feet"),
  36370. weight: math.unit(100, "lb"),
  36371. name: "Anthro",
  36372. image: {
  36373. source: "./media/characters/daiki/anthro.svg",
  36374. extra: 1115/1027,
  36375. bottom: 69/1184
  36376. }
  36377. },
  36378. feral: {
  36379. height: math.unit(200, "feet"),
  36380. name: "Feral",
  36381. image: {
  36382. source: "./media/characters/daiki/feral.svg",
  36383. extra: 1256/313,
  36384. bottom: 39/1295
  36385. }
  36386. },
  36387. feralHead: {
  36388. height: math.unit(171, "feet"),
  36389. name: "Feral Head",
  36390. image: {
  36391. source: "./media/characters/daiki/feral-head.svg"
  36392. }
  36393. },
  36394. manaDragon: {
  36395. height: math.unit(170, "meters"),
  36396. name: "Mana-dragon",
  36397. image: {
  36398. source: "./media/characters/daiki/mana-dragon.svg",
  36399. extra: 763/420,
  36400. bottom: 97/860
  36401. }
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(5 + 10/12, "feet"),
  36408. default: true
  36409. },
  36410. ]
  36411. ))
  36412. characterMakers.push(() => makeCharacter(
  36413. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36414. {
  36415. fullyEquippedFront: {
  36416. height: math.unit(3 + 1/12, "feet"),
  36417. weight: math.unit(24, "lb"),
  36418. name: "Fully Equipped (Front)",
  36419. image: {
  36420. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36421. extra: 687/605,
  36422. bottom: 18/705
  36423. }
  36424. },
  36425. fullyEquippedBack: {
  36426. height: math.unit(3 + 1/12, "feet"),
  36427. weight: math.unit(24, "lb"),
  36428. name: "Fully Equipped (Back)",
  36429. image: {
  36430. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36431. extra: 689/590,
  36432. bottom: 18/707
  36433. }
  36434. },
  36435. dailyWear: {
  36436. height: math.unit(3 + 1/12, "feet"),
  36437. weight: math.unit(24, "lb"),
  36438. name: "Daily Wear",
  36439. image: {
  36440. source: "./media/characters/tea-spot/daily-wear.svg",
  36441. extra: 701/620,
  36442. bottom: 21/722
  36443. }
  36444. },
  36445. maidWork: {
  36446. height: math.unit(3 + 1/12, "feet"),
  36447. weight: math.unit(24, "lb"),
  36448. name: "Maid Work",
  36449. image: {
  36450. source: "./media/characters/tea-spot/maid-work.svg",
  36451. extra: 693/609,
  36452. bottom: 15/708
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(3 + 1/12, "feet"),
  36460. default: true
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36466. {
  36467. front: {
  36468. height: math.unit(175, "cm"),
  36469. weight: math.unit(75, "kg"),
  36470. name: "Front",
  36471. image: {
  36472. source: "./media/characters/chee/front.svg",
  36473. extra: 1796/1740,
  36474. bottom: 40/1836
  36475. }
  36476. },
  36477. },
  36478. [
  36479. {
  36480. name: "Micro-Micro",
  36481. height: math.unit(1, "nm")
  36482. },
  36483. {
  36484. name: "Micro-erst",
  36485. height: math.unit(1, "micrometer")
  36486. },
  36487. {
  36488. name: "Micro-er",
  36489. height: math.unit(1, "cm")
  36490. },
  36491. {
  36492. name: "Normal",
  36493. height: math.unit(175, "cm"),
  36494. default: true
  36495. },
  36496. {
  36497. name: "Macro",
  36498. height: math.unit(100, "m")
  36499. },
  36500. {
  36501. name: "Macro-er",
  36502. height: math.unit(1, "km")
  36503. },
  36504. {
  36505. name: "Macro-erst",
  36506. height: math.unit(10, "km")
  36507. },
  36508. {
  36509. name: "Macro-Macro",
  36510. height: math.unit(100, "km")
  36511. },
  36512. ]
  36513. ))
  36514. characterMakers.push(() => makeCharacter(
  36515. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36516. {
  36517. front: {
  36518. height: math.unit(11 + 9/12, "feet"),
  36519. weight: math.unit(935, "lb"),
  36520. name: "Front",
  36521. image: {
  36522. source: "./media/characters/kingsley/front.svg",
  36523. extra: 1803/1674,
  36524. bottom: 127/1930
  36525. }
  36526. },
  36527. frontNude: {
  36528. height: math.unit(11 + 9/12, "feet"),
  36529. weight: math.unit(935, "lb"),
  36530. name: "Front (Nude)",
  36531. image: {
  36532. source: "./media/characters/kingsley/front-nude.svg",
  36533. extra: 1803/1674,
  36534. bottom: 127/1930
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(11 + 9/12, "feet"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36548. {
  36549. side: {
  36550. height: math.unit(9, "feet"),
  36551. name: "Side",
  36552. image: {
  36553. source: "./media/characters/rymel/side.svg",
  36554. extra: 792/469,
  36555. bottom: 121/913
  36556. }
  36557. },
  36558. maw: {
  36559. height: math.unit(2.4, "meters"),
  36560. name: "Maw",
  36561. image: {
  36562. source: "./media/characters/rymel/maw.svg"
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "House Drake",
  36569. height: math.unit(2, "feet")
  36570. },
  36571. {
  36572. name: "Reduced",
  36573. height: math.unit(4.5, "feet")
  36574. },
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(9, "feet"),
  36578. default: true
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(1.74, "meters"),
  36587. weight: math.unit(55, "kg"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/rubus/front.svg",
  36591. extra: 1894/1742,
  36592. bottom: 44/1938
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(1.74, "meters"),
  36600. default: true
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36606. {
  36607. front: {
  36608. height: math.unit(5 + 2/12, "feet"),
  36609. weight: math.unit(112, "lb"),
  36610. name: "Front",
  36611. image: {
  36612. source: "./media/characters/cassie-kingston/front.svg",
  36613. extra: 1438/1390,
  36614. bottom: 47/1485
  36615. }
  36616. },
  36617. },
  36618. [
  36619. {
  36620. name: "Normal",
  36621. height: math.unit(5 + 2/12, "feet"),
  36622. default: true
  36623. },
  36624. {
  36625. name: "Macro",
  36626. height: math.unit(128, "feet")
  36627. },
  36628. {
  36629. name: "Megamacro",
  36630. height: math.unit(2.56, "miles")
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36636. {
  36637. front: {
  36638. height: math.unit(7, "feet"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/fox/front.svg",
  36642. extra: 1798/1703,
  36643. bottom: 55/1853
  36644. }
  36645. },
  36646. back: {
  36647. height: math.unit(7, "feet"),
  36648. name: "Back",
  36649. image: {
  36650. source: "./media/characters/fox/back.svg",
  36651. extra: 1748/1649,
  36652. bottom: 32/1780
  36653. }
  36654. },
  36655. head: {
  36656. height: math.unit(1.95, "feet"),
  36657. name: "Head",
  36658. image: {
  36659. source: "./media/characters/fox/head.svg"
  36660. }
  36661. },
  36662. dick: {
  36663. height: math.unit(1.33, "feet"),
  36664. name: "Dick",
  36665. image: {
  36666. source: "./media/characters/fox/dick.svg"
  36667. }
  36668. },
  36669. foot: {
  36670. height: math.unit(1, "feet"),
  36671. name: "Foot",
  36672. image: {
  36673. source: "./media/characters/fox/foot.svg"
  36674. }
  36675. },
  36676. paw: {
  36677. height: math.unit(0.92, "feet"),
  36678. name: "Paw",
  36679. image: {
  36680. source: "./media/characters/fox/paw.svg"
  36681. }
  36682. },
  36683. },
  36684. [
  36685. {
  36686. name: "Small",
  36687. height: math.unit(3, "inches")
  36688. },
  36689. {
  36690. name: "\"Realistic\"",
  36691. height: math.unit(7, "feet")
  36692. },
  36693. {
  36694. name: "Normal",
  36695. height: math.unit(150, "feet"),
  36696. default: true
  36697. },
  36698. {
  36699. name: "BIG",
  36700. height: math.unit(1200, "feet")
  36701. },
  36702. {
  36703. name: "👀",
  36704. height: math.unit(5, "miles")
  36705. },
  36706. {
  36707. name: "👀👀👀",
  36708. height: math.unit(64, "miles")
  36709. },
  36710. ]
  36711. ))
  36712. characterMakers.push(() => makeCharacter(
  36713. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36714. {
  36715. front: {
  36716. height: math.unit(625, "feet"),
  36717. name: "Front",
  36718. image: {
  36719. source: "./media/characters/asonja-rossa/front.svg",
  36720. extra: 1833/1686,
  36721. bottom: 24/1857
  36722. }
  36723. },
  36724. back: {
  36725. height: math.unit(625, "feet"),
  36726. name: "Back",
  36727. image: {
  36728. source: "./media/characters/asonja-rossa/back.svg",
  36729. extra: 1852/1753,
  36730. bottom: 26/1878
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Macro",
  36737. height: math.unit(625, "feet"),
  36738. default: true
  36739. },
  36740. ]
  36741. ))
  36742. characterMakers.push(() => makeCharacter(
  36743. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36744. {
  36745. side: {
  36746. height: math.unit(6, "feet"),
  36747. weight: math.unit(150, "lb"),
  36748. name: "Side",
  36749. image: {
  36750. source: "./media/characters/rezukii/side.svg",
  36751. extra: 979/542,
  36752. bottom: 87/1066
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Tiny",
  36759. height: math.unit(2, "feet")
  36760. },
  36761. {
  36762. name: "Smol",
  36763. height: math.unit(4, "feet")
  36764. },
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(8, "feet"),
  36768. default: true
  36769. },
  36770. {
  36771. name: "Big",
  36772. height: math.unit(12, "feet")
  36773. },
  36774. {
  36775. name: "Macro",
  36776. height: math.unit(30, "feet")
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36782. {
  36783. front: {
  36784. height: math.unit(14, "feet"),
  36785. weight: math.unit(9.5, "tonnes"),
  36786. name: "Front",
  36787. image: {
  36788. source: "./media/characters/dawnheart/front.svg",
  36789. extra: 2792/2675,
  36790. bottom: 64/2856
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(14, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36804. {
  36805. front: {
  36806. height: math.unit(1.7, "m"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/gladi/front.svg",
  36810. extra: 1460/1362,
  36811. bottom: 19/1479
  36812. }
  36813. },
  36814. back: {
  36815. height: math.unit(1.7, "m"),
  36816. name: "Back",
  36817. image: {
  36818. source: "./media/characters/gladi/back.svg",
  36819. extra: 1459/1357,
  36820. bottom: 12/1471
  36821. }
  36822. },
  36823. feral: {
  36824. height: math.unit(2.05, "m"),
  36825. name: "Feral",
  36826. image: {
  36827. source: "./media/characters/gladi/feral.svg",
  36828. extra: 821/557,
  36829. bottom: 91/912
  36830. }
  36831. },
  36832. },
  36833. [
  36834. {
  36835. name: "Shortest",
  36836. height: math.unit(70, "cm")
  36837. },
  36838. {
  36839. name: "Normal",
  36840. height: math.unit(1.7, "m")
  36841. },
  36842. {
  36843. name: "Macro",
  36844. height: math.unit(10, "m"),
  36845. default: true
  36846. },
  36847. {
  36848. name: "Tallest",
  36849. height: math.unit(200, "m")
  36850. },
  36851. ]
  36852. ))
  36853. characterMakers.push(() => makeCharacter(
  36854. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36855. {
  36856. front: {
  36857. height: math.unit(5 + 7/12, "feet"),
  36858. weight: math.unit(92, "kg"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/erdno/front.svg",
  36862. extra: 1954/1889,
  36863. bottom: 22/1976
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(5 + 7/12, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(5 + 10/12, "feet"),
  36880. weight: math.unit(150, "lb"),
  36881. name: "Front",
  36882. image: {
  36883. source: "./media/characters/jamie/front.svg",
  36884. extra: 1908/1768,
  36885. bottom: 19/1927
  36886. }
  36887. },
  36888. },
  36889. [
  36890. {
  36891. name: "Minimum",
  36892. height: math.unit(2, "cm")
  36893. },
  36894. {
  36895. name: "Micro",
  36896. height: math.unit(3, "inches")
  36897. },
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(5 + 10/12, "feet"),
  36901. default: true
  36902. },
  36903. {
  36904. name: "Macro",
  36905. height: math.unit(150, "feet")
  36906. },
  36907. {
  36908. name: "Megamacro",
  36909. height: math.unit(10000, "m")
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36915. {
  36916. front: {
  36917. height: math.unit(2, "meters"),
  36918. weight: math.unit(100, "kg"),
  36919. name: "Front",
  36920. image: {
  36921. source: "./media/characters/shiron/front.svg",
  36922. extra: 2103/1985,
  36923. bottom: 98/2201
  36924. }
  36925. },
  36926. back: {
  36927. height: math.unit(2, "meters"),
  36928. weight: math.unit(100, "kg"),
  36929. name: "Back",
  36930. image: {
  36931. source: "./media/characters/shiron/back.svg",
  36932. extra: 2110/2015,
  36933. bottom: 89/2199
  36934. }
  36935. },
  36936. hand: {
  36937. height: math.unit(0.96, "feet"),
  36938. name: "Hand",
  36939. image: {
  36940. source: "./media/characters/shiron/hand.svg"
  36941. }
  36942. },
  36943. foot: {
  36944. height: math.unit(1.464, "feet"),
  36945. name: "Foot",
  36946. image: {
  36947. source: "./media/characters/shiron/foot.svg"
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(2, "meters")
  36955. },
  36956. {
  36957. name: "Macro",
  36958. height: math.unit(500, "meters"),
  36959. default: true
  36960. },
  36961. {
  36962. name: "Megamacro",
  36963. height: math.unit(20, "km")
  36964. },
  36965. ]
  36966. ))
  36967. characterMakers.push(() => makeCharacter(
  36968. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36969. {
  36970. front: {
  36971. height: math.unit(6, "feet"),
  36972. name: "Front",
  36973. image: {
  36974. source: "./media/characters/sam/front.svg",
  36975. extra: 849/826,
  36976. bottom: 19/868
  36977. }
  36978. },
  36979. },
  36980. [
  36981. {
  36982. name: "Normal",
  36983. height: math.unit(6, "feet"),
  36984. default: true
  36985. },
  36986. ]
  36987. ))
  36988. characterMakers.push(() => makeCharacter(
  36989. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36990. {
  36991. front: {
  36992. height: math.unit(8 + 4/12, "feet"),
  36993. weight: math.unit(122, "kg"),
  36994. name: "Front",
  36995. image: {
  36996. source: "./media/characters/namori-kurogawa/front.svg",
  36997. extra: 1894/1576,
  36998. bottom: 34/1928
  36999. }
  37000. },
  37001. },
  37002. [
  37003. {
  37004. name: "Normal",
  37005. height: math.unit(8 + 4/12, "feet"),
  37006. default: true
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37012. {
  37013. front: {
  37014. height: math.unit(9, "feet"),
  37015. weight: math.unit(621, "lb"),
  37016. name: "Front",
  37017. image: {
  37018. source: "./media/characters/unmru/front.svg",
  37019. extra: 1853/1747,
  37020. bottom: 73/1926
  37021. }
  37022. },
  37023. side: {
  37024. height: math.unit(9, "feet"),
  37025. weight: math.unit(621, "lb"),
  37026. name: "Side",
  37027. image: {
  37028. source: "./media/characters/unmru/side.svg",
  37029. extra: 1781/1671,
  37030. bottom: 127/1908
  37031. }
  37032. },
  37033. back: {
  37034. height: math.unit(9, "feet"),
  37035. weight: math.unit(621, "lb"),
  37036. name: "Back",
  37037. image: {
  37038. source: "./media/characters/unmru/back.svg",
  37039. extra: 1894/1765,
  37040. bottom: 75/1969
  37041. }
  37042. },
  37043. dick: {
  37044. height: math.unit(3, "feet"),
  37045. weight: math.unit(35, "lb"),
  37046. name: "Dick",
  37047. image: {
  37048. source: "./media/characters/unmru/dick.svg"
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(9, "feet")
  37056. },
  37057. {
  37058. name: "Natural",
  37059. height: math.unit(27, "feet"),
  37060. default: true
  37061. },
  37062. {
  37063. name: "Giant",
  37064. height: math.unit(90, "feet")
  37065. },
  37066. {
  37067. name: "Kaiju",
  37068. height: math.unit(270, "feet")
  37069. },
  37070. {
  37071. name: "Macro",
  37072. height: math.unit(900, "feet")
  37073. },
  37074. {
  37075. name: "Macro+",
  37076. height: math.unit(2700, "feet")
  37077. },
  37078. {
  37079. name: "Megamacro",
  37080. height: math.unit(9000, "feet")
  37081. },
  37082. {
  37083. name: "City-Crushing",
  37084. height: math.unit(27000, "feet")
  37085. },
  37086. {
  37087. name: "Mountain-Mashing",
  37088. height: math.unit(90000, "feet")
  37089. },
  37090. {
  37091. name: "Earth-Eclipsing",
  37092. height: math.unit(2.7e8, "feet")
  37093. },
  37094. {
  37095. name: "Sol-Swallowing",
  37096. height: math.unit(9e10, "feet")
  37097. },
  37098. {
  37099. name: "Majoris-Munching",
  37100. height: math.unit(2.7e13, "feet")
  37101. },
  37102. ]
  37103. ))
  37104. characterMakers.push(() => makeCharacter(
  37105. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37106. {
  37107. front: {
  37108. height: math.unit(1, "inch"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/squeaks-mouse/front.svg",
  37112. extra: 352/308,
  37113. bottom: 25/377
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Micro",
  37120. height: math.unit(1, "inch"),
  37121. default: true
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37127. {
  37128. side: {
  37129. height: math.unit(35, "feet"),
  37130. name: "Side",
  37131. image: {
  37132. source: "./media/characters/sayko/side.svg",
  37133. extra: 1697/1021,
  37134. bottom: 82/1779
  37135. }
  37136. },
  37137. head: {
  37138. height: math.unit(16, "feet"),
  37139. name: "Head",
  37140. image: {
  37141. source: "./media/characters/sayko/head.svg"
  37142. }
  37143. },
  37144. forepaw: {
  37145. height: math.unit(7.85, "feet"),
  37146. name: "Forepaw",
  37147. image: {
  37148. source: "./media/characters/sayko/forepaw.svg"
  37149. }
  37150. },
  37151. hindpaw: {
  37152. height: math.unit(8.8, "feet"),
  37153. name: "Hindpaw",
  37154. image: {
  37155. source: "./media/characters/sayko/hindpaw.svg"
  37156. }
  37157. },
  37158. },
  37159. [
  37160. {
  37161. name: "Normal",
  37162. height: math.unit(35, "feet"),
  37163. default: true
  37164. },
  37165. {
  37166. name: "Colossus",
  37167. height: math.unit(100, "meters")
  37168. },
  37169. {
  37170. name: "\"Small\" Deity",
  37171. height: math.unit(1, "km")
  37172. },
  37173. {
  37174. name: "\"Large\" Deity",
  37175. height: math.unit(15, "km")
  37176. },
  37177. ]
  37178. ))
  37179. characterMakers.push(() => makeCharacter(
  37180. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37181. {
  37182. front: {
  37183. height: math.unit(6, "feet"),
  37184. weight: math.unit(250, "lb"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/mukiro/front.svg",
  37188. extra: 1368/1310,
  37189. bottom: 34/1402
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(6, "feet"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37203. {
  37204. front: {
  37205. height: math.unit(12 + 4/12, "feet"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37209. extra: 1346/1311,
  37210. bottom: 65/1411
  37211. }
  37212. },
  37213. },
  37214. [
  37215. {
  37216. name: "Base",
  37217. height: math.unit(12 + 4/12, "feet"),
  37218. default: true
  37219. },
  37220. {
  37221. name: "Macro",
  37222. height: math.unit(150, "feet")
  37223. },
  37224. {
  37225. name: "Mega",
  37226. height: math.unit(2, "miles")
  37227. },
  37228. {
  37229. name: "Demi God",
  37230. height: math.unit(4, "AU")
  37231. },
  37232. {
  37233. name: "God Size",
  37234. height: math.unit(1, "universe")
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37240. {
  37241. front: {
  37242. height: math.unit(3 + 3/12, "feet"),
  37243. weight: math.unit(88, "lb"),
  37244. name: "Front",
  37245. image: {
  37246. source: "./media/characters/trey/front.svg",
  37247. extra: 1815/1509,
  37248. bottom: 60/1875
  37249. }
  37250. },
  37251. },
  37252. [
  37253. {
  37254. name: "Normal",
  37255. height: math.unit(3 + 3/12, "feet"),
  37256. default: true
  37257. },
  37258. ]
  37259. ))
  37260. characterMakers.push(() => makeCharacter(
  37261. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37262. {
  37263. front: {
  37264. height: math.unit(4, "meters"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/adelonda/front.svg",
  37268. extra: 1942/1775,
  37269. bottom: 33/1975
  37270. }
  37271. },
  37272. back: {
  37273. height: math.unit(4, "meters"),
  37274. name: "Back",
  37275. image: {
  37276. source: "./media/characters/adelonda/back.svg",
  37277. extra: 1932/1780,
  37278. bottom: 42/1974
  37279. }
  37280. },
  37281. bust: {
  37282. height: math.unit(1.8, "meter"),
  37283. name: "Bust",
  37284. image: {
  37285. source: "./media/characters/adelonda/bust.svg"
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(4, "meters"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37299. {
  37300. front: {
  37301. height: math.unit(8 + 4/12, "feet"),
  37302. weight: math.unit(670, "lb"),
  37303. name: "Front",
  37304. image: {
  37305. source: "./media/characters/acadiel/front.svg",
  37306. extra: 1901/1595,
  37307. bottom: 142/2043
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Normal",
  37314. height: math.unit(8 + 4/12, "feet"),
  37315. default: true
  37316. },
  37317. {
  37318. name: "Macro",
  37319. height: math.unit(200, "feet")
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(6 + 2/12, "feet"),
  37328. weight: math.unit(185, "lb"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/kayne-ein/front.svg",
  37332. extra: 1780/1560,
  37333. bottom: 81/1861
  37334. }
  37335. },
  37336. },
  37337. [
  37338. {
  37339. name: "Normal",
  37340. height: math.unit(6 + 2/12, "feet"),
  37341. default: true
  37342. },
  37343. {
  37344. name: "Transformation Stage",
  37345. height: math.unit(15, "feet")
  37346. },
  37347. {
  37348. name: "Macro",
  37349. height: math.unit(150, "feet")
  37350. },
  37351. {
  37352. name: "Earth's Shadow",
  37353. height: math.unit(6200, "miles")
  37354. },
  37355. {
  37356. name: "Universal Demon",
  37357. height: math.unit(28e9, "parsecs")
  37358. },
  37359. {
  37360. name: "Multiverse God",
  37361. height: math.unit(3, "multiverses")
  37362. },
  37363. ]
  37364. ))
  37365. characterMakers.push(() => makeCharacter(
  37366. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37367. {
  37368. front: {
  37369. height: math.unit(5 + 5/12, "feet"),
  37370. name: "Front",
  37371. image: {
  37372. source: "./media/characters/fawn/front.svg",
  37373. extra: 1873/1731,
  37374. bottom: 95/1968
  37375. }
  37376. },
  37377. back: {
  37378. height: math.unit(5 + 5/12, "feet"),
  37379. name: "Back",
  37380. image: {
  37381. source: "./media/characters/fawn/back.svg",
  37382. extra: 1813/1700,
  37383. bottom: 14/1827
  37384. }
  37385. },
  37386. hoof: {
  37387. height: math.unit(1.45, "feet"),
  37388. name: "Hoof",
  37389. image: {
  37390. source: "./media/characters/fawn/hoof.svg"
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(5 + 5/12, "feet"),
  37398. default: true
  37399. },
  37400. ]
  37401. ))
  37402. characterMakers.push(() => makeCharacter(
  37403. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37404. {
  37405. front: {
  37406. height: math.unit(2 + 5/12, "feet"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/orion/front.svg",
  37410. extra: 1366/1304,
  37411. bottom: 43/1409
  37412. }
  37413. },
  37414. paw: {
  37415. height: math.unit(0.52, "feet"),
  37416. name: "Paw",
  37417. image: {
  37418. source: "./media/characters/orion/paw.svg"
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Normal",
  37425. height: math.unit(2 + 5/12, "feet"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37432. {
  37433. front: {
  37434. height: math.unit(5 + 10/12, "feet"),
  37435. name: "Front",
  37436. image: {
  37437. source: "./media/characters/vera/front.svg",
  37438. extra: 1680/1575,
  37439. bottom: 49/1729
  37440. }
  37441. },
  37442. back: {
  37443. height: math.unit(5 + 10/12, "feet"),
  37444. name: "Back",
  37445. image: {
  37446. source: "./media/characters/vera/back.svg",
  37447. extra: 1700/1588,
  37448. bottom: 18/1718
  37449. }
  37450. },
  37451. arcanine: {
  37452. height: math.unit(6 + 8/12, "feet"),
  37453. name: "Arcanine",
  37454. image: {
  37455. source: "./media/characters/vera/arcanine.svg",
  37456. extra: 1590/1511,
  37457. bottom: 71/1661
  37458. }
  37459. },
  37460. maw: {
  37461. height: math.unit(0.82, "feet"),
  37462. name: "Maw",
  37463. image: {
  37464. source: "./media/characters/vera/maw.svg"
  37465. }
  37466. },
  37467. mawArcanine: {
  37468. height: math.unit(0.97, "feet"),
  37469. name: "Maw (Arcanine)",
  37470. image: {
  37471. source: "./media/characters/vera/maw-arcanine.svg"
  37472. }
  37473. },
  37474. paw: {
  37475. height: math.unit(0.75, "feet"),
  37476. name: "Paw",
  37477. image: {
  37478. source: "./media/characters/vera/paw.svg"
  37479. }
  37480. },
  37481. pawprint: {
  37482. height: math.unit(0.52, "feet"),
  37483. name: "Pawprint",
  37484. image: {
  37485. source: "./media/characters/vera/pawprint.svg"
  37486. }
  37487. },
  37488. },
  37489. [
  37490. {
  37491. name: "Normal",
  37492. height: math.unit(5 + 10/12, "feet"),
  37493. default: true
  37494. },
  37495. {
  37496. name: "Macro",
  37497. height: math.unit(75, "feet")
  37498. },
  37499. ]
  37500. ))
  37501. characterMakers.push(() => makeCharacter(
  37502. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37503. {
  37504. front: {
  37505. height: math.unit(4, "feet"),
  37506. weight: math.unit(40, "lb"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/orvan-rabbit/front.svg",
  37510. extra: 1896/1642,
  37511. bottom: 29/1925
  37512. }
  37513. },
  37514. },
  37515. [
  37516. {
  37517. name: "Normal",
  37518. height: math.unit(4, "feet"),
  37519. default: true
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(6, "feet"),
  37528. weight: math.unit(168, "lb"),
  37529. name: "Front",
  37530. image: {
  37531. source: "./media/characters/lisa/front.svg",
  37532. extra: 2065/1867,
  37533. bottom: 46/2111
  37534. }
  37535. },
  37536. back: {
  37537. height: math.unit(6, "feet"),
  37538. weight: math.unit(168, "lb"),
  37539. name: "Back",
  37540. image: {
  37541. source: "./media/characters/lisa/back.svg",
  37542. extra: 1982/1838,
  37543. bottom: 29/2011
  37544. }
  37545. },
  37546. maw: {
  37547. height: math.unit(0.81, "feet"),
  37548. name: "Maw",
  37549. image: {
  37550. source: "./media/characters/lisa/maw.svg"
  37551. }
  37552. },
  37553. paw: {
  37554. height: math.unit(0.9, "feet"),
  37555. name: "Paw",
  37556. image: {
  37557. source: "./media/characters/lisa/paw.svg"
  37558. }
  37559. },
  37560. caribousune: {
  37561. height: math.unit(7 + 2/12, "feet"),
  37562. weight: math.unit(268, "lb"),
  37563. name: "Caribousune",
  37564. image: {
  37565. source: "./media/characters/lisa/caribousune.svg",
  37566. extra: 1843/1633,
  37567. bottom: 29/1872
  37568. }
  37569. },
  37570. frontCaribousune: {
  37571. height: math.unit(7 + 2/12, "feet"),
  37572. weight: math.unit(268, "lb"),
  37573. name: "Front (Caribousune)",
  37574. image: {
  37575. source: "./media/characters/lisa/front-caribousune.svg",
  37576. extra: 1818/1638,
  37577. bottom: 52/1870
  37578. }
  37579. },
  37580. sideCaribousune: {
  37581. height: math.unit(7 + 2/12, "feet"),
  37582. weight: math.unit(268, "lb"),
  37583. name: "Side (Caribousune)",
  37584. image: {
  37585. source: "./media/characters/lisa/side-caribousune.svg",
  37586. extra: 1851/1635,
  37587. bottom: 16/1867
  37588. }
  37589. },
  37590. backCaribousune: {
  37591. height: math.unit(7 + 2/12, "feet"),
  37592. weight: math.unit(268, "lb"),
  37593. name: "Back (Caribousune)",
  37594. image: {
  37595. source: "./media/characters/lisa/back-caribousune.svg",
  37596. extra: 1801/1604,
  37597. bottom: 44/1845
  37598. }
  37599. },
  37600. caribou: {
  37601. height: math.unit(7 + 2/12, "feet"),
  37602. weight: math.unit(268, "lb"),
  37603. name: "Caribou",
  37604. image: {
  37605. source: "./media/characters/lisa/caribou.svg",
  37606. extra: 1843/1633,
  37607. bottom: 29/1872
  37608. }
  37609. },
  37610. frontCaribou: {
  37611. height: math.unit(7 + 2/12, "feet"),
  37612. weight: math.unit(268, "lb"),
  37613. name: "Front (Caribou)",
  37614. image: {
  37615. source: "./media/characters/lisa/front-caribou.svg",
  37616. extra: 1818/1638,
  37617. bottom: 52/1870
  37618. }
  37619. },
  37620. sideCaribou: {
  37621. height: math.unit(7 + 2/12, "feet"),
  37622. weight: math.unit(268, "lb"),
  37623. name: "Side (Caribou)",
  37624. image: {
  37625. source: "./media/characters/lisa/side-caribou.svg",
  37626. extra: 1851/1635,
  37627. bottom: 16/1867
  37628. }
  37629. },
  37630. backCaribou: {
  37631. height: math.unit(7 + 2/12, "feet"),
  37632. weight: math.unit(268, "lb"),
  37633. name: "Back (Caribou)",
  37634. image: {
  37635. source: "./media/characters/lisa/back-caribou.svg",
  37636. extra: 1801/1604,
  37637. bottom: 44/1845
  37638. }
  37639. },
  37640. mawCaribou: {
  37641. height: math.unit(1.45, "feet"),
  37642. name: "Maw (Caribou)",
  37643. image: {
  37644. source: "./media/characters/lisa/maw-caribou.svg"
  37645. }
  37646. },
  37647. mawCaribousune: {
  37648. height: math.unit(1.45, "feet"),
  37649. name: "Maw (Caribousune)",
  37650. image: {
  37651. source: "./media/characters/lisa/maw-caribousune.svg"
  37652. }
  37653. },
  37654. pawCaribousune: {
  37655. height: math.unit(1.61, "feet"),
  37656. name: "Paw (Caribou)",
  37657. image: {
  37658. source: "./media/characters/lisa/paw-caribousune.svg"
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(6, "feet")
  37666. },
  37667. {
  37668. name: "God Size",
  37669. height: math.unit(72, "feet"),
  37670. default: true
  37671. },
  37672. {
  37673. name: "Towering",
  37674. height: math.unit(288, "feet")
  37675. },
  37676. {
  37677. name: "City Size",
  37678. height: math.unit(48384, "feet")
  37679. },
  37680. {
  37681. name: "Continental",
  37682. height: math.unit(4200, "miles")
  37683. },
  37684. {
  37685. name: "Planet Eater",
  37686. height: math.unit(42, "earths")
  37687. },
  37688. {
  37689. name: "Star Swallower",
  37690. height: math.unit(42, "solarradii")
  37691. },
  37692. {
  37693. name: "System Swallower",
  37694. height: math.unit(84000, "AU")
  37695. },
  37696. {
  37697. name: "Galaxy Gobbler",
  37698. height: math.unit(42, "galaxies")
  37699. },
  37700. {
  37701. name: "Universe Devourer",
  37702. height: math.unit(42, "universes")
  37703. },
  37704. {
  37705. name: "Multiverse Muncher",
  37706. height: math.unit(42, "multiverses")
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37712. {
  37713. front: {
  37714. height: math.unit(36, "feet"),
  37715. name: "Front",
  37716. image: {
  37717. source: "./media/characters/shadow-rat/front.svg",
  37718. extra: 1845/1758,
  37719. bottom: 83/1928
  37720. }
  37721. },
  37722. },
  37723. [
  37724. {
  37725. name: "Macro",
  37726. height: math.unit(36, "feet"),
  37727. default: true
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37733. {
  37734. side: {
  37735. height: math.unit(8, "feet"),
  37736. weight: math.unit(2630, "lb"),
  37737. name: "Side",
  37738. image: {
  37739. source: "./media/characters/torallia/side.svg",
  37740. extra: 2164/2021,
  37741. bottom: 371/2535
  37742. }
  37743. },
  37744. },
  37745. [
  37746. {
  37747. name: "Mortal Interaction",
  37748. height: math.unit(8, "feet")
  37749. },
  37750. {
  37751. name: "Natural",
  37752. height: math.unit(24, "feet"),
  37753. default: true
  37754. },
  37755. {
  37756. name: "Giant",
  37757. height: math.unit(80, "feet")
  37758. },
  37759. {
  37760. name: "Kaiju",
  37761. height: math.unit(240, "feet")
  37762. },
  37763. {
  37764. name: "Macro",
  37765. height: math.unit(800, "feet")
  37766. },
  37767. {
  37768. name: "Macro+",
  37769. height: math.unit(2400, "feet")
  37770. },
  37771. {
  37772. name: "Macro++",
  37773. height: math.unit(8000, "feet")
  37774. },
  37775. {
  37776. name: "City-Crushing",
  37777. height: math.unit(24000, "feet")
  37778. },
  37779. {
  37780. name: "Mountain-Mashing",
  37781. height: math.unit(80000, "feet")
  37782. },
  37783. {
  37784. name: "District Demolisher",
  37785. height: math.unit(240000, "feet")
  37786. },
  37787. {
  37788. name: "Tri-County Terror",
  37789. height: math.unit(800000, "feet")
  37790. },
  37791. {
  37792. name: "State Smasher",
  37793. height: math.unit(2.4e6, "feet")
  37794. },
  37795. {
  37796. name: "Nation Nemesis",
  37797. height: math.unit(8e6, "feet")
  37798. },
  37799. {
  37800. name: "Continent Cracker",
  37801. height: math.unit(2.4e7, "feet")
  37802. },
  37803. {
  37804. name: "Planet-Pillaging",
  37805. height: math.unit(8e7, "feet")
  37806. },
  37807. {
  37808. name: "Earth-Eclipsing",
  37809. height: math.unit(2.4e8, "feet")
  37810. },
  37811. {
  37812. name: "Jovian-Jostling",
  37813. height: math.unit(8e8, "feet")
  37814. },
  37815. {
  37816. name: "Gas Giant Gulper",
  37817. height: math.unit(2.4e9, "feet")
  37818. },
  37819. {
  37820. name: "Astral Annihilator",
  37821. height: math.unit(8e9, "feet")
  37822. },
  37823. {
  37824. name: "Celestial Conqueror",
  37825. height: math.unit(2.4e10, "feet")
  37826. },
  37827. {
  37828. name: "Sol-Swallowing",
  37829. height: math.unit(8e10, "feet")
  37830. },
  37831. {
  37832. name: "Hunter of the Heavens",
  37833. height: math.unit(2.4e13, "feet")
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(6 + 8/12, "feet"),
  37842. name: "Front",
  37843. image: {
  37844. source: "./media/characters/rebecca-pawlson/front.svg",
  37845. extra: 1737/1596,
  37846. bottom: 107/1844
  37847. }
  37848. },
  37849. back: {
  37850. height: math.unit(6 + 8/12, "feet"),
  37851. name: "Back",
  37852. image: {
  37853. source: "./media/characters/rebecca-pawlson/back.svg",
  37854. extra: 1702/1523,
  37855. bottom: 86/1788
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(6 + 8/12, "feet")
  37863. },
  37864. {
  37865. name: "Mini Macro",
  37866. height: math.unit(10, "feet"),
  37867. default: true
  37868. },
  37869. {
  37870. name: "Macro",
  37871. height: math.unit(100, "feet")
  37872. },
  37873. {
  37874. name: "Mega Macro",
  37875. height: math.unit(2500, "feet")
  37876. },
  37877. {
  37878. name: "Giga Macro",
  37879. height: math.unit(50, "miles")
  37880. },
  37881. ]
  37882. ))
  37883. characterMakers.push(() => makeCharacter(
  37884. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37885. {
  37886. front: {
  37887. height: math.unit(7 + 6/12, "feet"),
  37888. weight: math.unit(600, "lb"),
  37889. name: "Front",
  37890. image: {
  37891. source: "./media/characters/moxie-nova/front.svg",
  37892. extra: 1734/1652,
  37893. bottom: 41/1775
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(7 + 6/12, "feet"),
  37901. default: true
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(5, "feet"),
  37910. weight: math.unit(150, "lb"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/tiffany/front.svg",
  37914. extra: 1941/1845,
  37915. bottom: 58/1999
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(5, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(8, "feet"),
  37932. weight: math.unit(300, "lb"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/raxinath/front.svg",
  37936. extra: 1407/1309,
  37937. bottom: 39/1446
  37938. }
  37939. },
  37940. back: {
  37941. height: math.unit(8, "feet"),
  37942. weight: math.unit(300, "lb"),
  37943. name: "Back",
  37944. image: {
  37945. source: "./media/characters/raxinath/back.svg",
  37946. extra: 1405/1315,
  37947. bottom: 9/1414
  37948. }
  37949. },
  37950. },
  37951. [
  37952. {
  37953. name: "Speck",
  37954. height: math.unit(0.5, "nm")
  37955. },
  37956. {
  37957. name: "Micro",
  37958. height: math.unit(3, "inches")
  37959. },
  37960. {
  37961. name: "Kobold",
  37962. height: math.unit(3, "feet")
  37963. },
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(8, "feet"),
  37967. default: true
  37968. },
  37969. {
  37970. name: "Giant",
  37971. height: math.unit(50, "feet")
  37972. },
  37973. {
  37974. name: "Macro",
  37975. height: math.unit(1000, "feet")
  37976. },
  37977. {
  37978. name: "Megamacro",
  37979. height: math.unit(1, "mile")
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(10, "feet"),
  37988. weight: math.unit(1442, "lb"),
  37989. name: "Front",
  37990. image: {
  37991. source: "./media/characters/mal-dragon/front.svg",
  37992. extra: 1515/1444,
  37993. bottom: 113/1628
  37994. }
  37995. },
  37996. back: {
  37997. height: math.unit(10, "feet"),
  37998. weight: math.unit(1442, "lb"),
  37999. name: "Back",
  38000. image: {
  38001. source: "./media/characters/mal-dragon/back.svg",
  38002. extra: 1527/1434,
  38003. bottom: 25/1552
  38004. }
  38005. },
  38006. },
  38007. [
  38008. {
  38009. name: "Mortal Interaction",
  38010. height: math.unit(10, "feet"),
  38011. default: true
  38012. },
  38013. {
  38014. name: "Large",
  38015. height: math.unit(30, "feet")
  38016. },
  38017. {
  38018. name: "Kaiju",
  38019. height: math.unit(300, "feet")
  38020. },
  38021. {
  38022. name: "Megamacro",
  38023. height: math.unit(10000, "feet")
  38024. },
  38025. {
  38026. name: "Continent Cracker",
  38027. height: math.unit(30000000, "feet")
  38028. },
  38029. {
  38030. name: "Sol-Swallowing",
  38031. height: math.unit(1e11, "feet")
  38032. },
  38033. {
  38034. name: "Light Universal",
  38035. height: math.unit(5, "universes")
  38036. },
  38037. {
  38038. name: "Universe Atoms",
  38039. height: math.unit(1.829e9, "universes")
  38040. },
  38041. {
  38042. name: "Light Multiversal",
  38043. height: math.unit(5, "multiverses")
  38044. },
  38045. {
  38046. name: "Multiverse Atoms",
  38047. height: math.unit(1.829e9, "multiverses")
  38048. },
  38049. {
  38050. name: "Fabric of Time",
  38051. height: math.unit(1e262, "multiverses")
  38052. },
  38053. ]
  38054. ))
  38055. characterMakers.push(() => makeCharacter(
  38056. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38057. {
  38058. front: {
  38059. height: math.unit(9, "feet"),
  38060. weight: math.unit(1050, "lb"),
  38061. name: "Front",
  38062. image: {
  38063. source: "./media/characters/tabitha/front.svg",
  38064. extra: 2083/1994,
  38065. bottom: 68/2151
  38066. }
  38067. },
  38068. },
  38069. [
  38070. {
  38071. name: "Baseline",
  38072. height: math.unit(9, "feet"),
  38073. default: true
  38074. },
  38075. {
  38076. name: "Giant",
  38077. height: math.unit(90, "feet")
  38078. },
  38079. {
  38080. name: "Macro",
  38081. height: math.unit(900, "feet")
  38082. },
  38083. {
  38084. name: "Megamacro",
  38085. height: math.unit(9000, "feet")
  38086. },
  38087. {
  38088. name: "City-Crushing",
  38089. height: math.unit(27000, "feet")
  38090. },
  38091. {
  38092. name: "Mountain-Mashing",
  38093. height: math.unit(90000, "feet")
  38094. },
  38095. {
  38096. name: "Nation Nemesis",
  38097. height: math.unit(9e6, "feet")
  38098. },
  38099. {
  38100. name: "Continent Cracker",
  38101. height: math.unit(27e6, "feet")
  38102. },
  38103. {
  38104. name: "Earth-Eclipsing",
  38105. height: math.unit(2.7e8, "feet")
  38106. },
  38107. {
  38108. name: "Gas Giant Gulper",
  38109. height: math.unit(2.7e9, "feet")
  38110. },
  38111. {
  38112. name: "Sol-Swallowing",
  38113. height: math.unit(9e10, "feet")
  38114. },
  38115. {
  38116. name: "Galaxy Gulper",
  38117. height: math.unit(9, "galaxies")
  38118. },
  38119. {
  38120. name: "Cosmos Churner",
  38121. height: math.unit(9, "universes")
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38127. {
  38128. front: {
  38129. height: math.unit(160, "cm"),
  38130. weight: math.unit(55, "kg"),
  38131. name: "Front",
  38132. image: {
  38133. source: "./media/characters/tow/front.svg",
  38134. extra: 1751/1722,
  38135. bottom: 74/1825
  38136. }
  38137. },
  38138. },
  38139. [
  38140. {
  38141. name: "Norm",
  38142. height: math.unit(160, "cm")
  38143. },
  38144. {
  38145. name: "Casual",
  38146. height: math.unit(3200, "m"),
  38147. default: true
  38148. },
  38149. {
  38150. name: "Show-Off",
  38151. height: math.unit(160, "km")
  38152. },
  38153. ]
  38154. ))
  38155. characterMakers.push(() => makeCharacter(
  38156. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38157. {
  38158. front: {
  38159. height: math.unit(7 + 11/12, "feet"),
  38160. weight: math.unit(342.8, "lb"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/vivian-orca-dragon/front.svg",
  38164. extra: 1890/1865,
  38165. bottom: 28/1918
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Micro",
  38172. height: math.unit(5, "inches")
  38173. },
  38174. {
  38175. name: "Normal",
  38176. height: math.unit(7 + 11/12, "feet"),
  38177. default: true
  38178. },
  38179. {
  38180. name: "Macro",
  38181. height: math.unit(395 + 7/12, "feet")
  38182. },
  38183. ]
  38184. ))
  38185. characterMakers.push(() => makeCharacter(
  38186. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38187. {
  38188. side: {
  38189. height: math.unit(10, "feet"),
  38190. weight: math.unit(1442, "lb"),
  38191. name: "Side",
  38192. image: {
  38193. source: "./media/characters/lotherakon/side.svg",
  38194. extra: 1604/1497,
  38195. bottom: 89/1693
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Mortal Interaction",
  38202. height: math.unit(10, "feet")
  38203. },
  38204. {
  38205. name: "Large",
  38206. height: math.unit(30, "feet"),
  38207. default: true
  38208. },
  38209. {
  38210. name: "Giant",
  38211. height: math.unit(100, "feet")
  38212. },
  38213. {
  38214. name: "Kaiju",
  38215. height: math.unit(300, "feet")
  38216. },
  38217. {
  38218. name: "Macro",
  38219. height: math.unit(1000, "feet")
  38220. },
  38221. {
  38222. name: "Macro+",
  38223. height: math.unit(3000, "feet")
  38224. },
  38225. {
  38226. name: "Megamacro",
  38227. height: math.unit(10000, "feet")
  38228. },
  38229. {
  38230. name: "City-Crushing",
  38231. height: math.unit(30000, "feet")
  38232. },
  38233. {
  38234. name: "Continent Cracker",
  38235. height: math.unit(30e6, "feet")
  38236. },
  38237. {
  38238. name: "Earth Eclipsing",
  38239. height: math.unit(3e8, "feet")
  38240. },
  38241. {
  38242. name: "Gas Giant Gulper",
  38243. height: math.unit(3e9, "feet")
  38244. },
  38245. {
  38246. name: "Sol-Swallowing",
  38247. height: math.unit(1e11, "feet")
  38248. },
  38249. {
  38250. name: "System Swallower",
  38251. height: math.unit(3e14, "feet")
  38252. },
  38253. {
  38254. name: "Galaxy Gulper",
  38255. height: math.unit(10, "galaxies")
  38256. },
  38257. {
  38258. name: "Light Universal",
  38259. height: math.unit(5, "universes")
  38260. },
  38261. {
  38262. name: "Universe Palm",
  38263. height: math.unit(20, "universes")
  38264. },
  38265. {
  38266. name: "Light Multiversal",
  38267. height: math.unit(5, "multiverses")
  38268. },
  38269. {
  38270. name: "Multiverse Palm",
  38271. height: math.unit(20, "multiverses")
  38272. },
  38273. {
  38274. name: "Inferno Incarnate",
  38275. height: math.unit(1e7, "multiverses")
  38276. },
  38277. ]
  38278. ))
  38279. characterMakers.push(() => makeCharacter(
  38280. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38281. {
  38282. front: {
  38283. height: math.unit(8, "feet"),
  38284. weight: math.unit(1200, "lb"),
  38285. name: "Front",
  38286. image: {
  38287. source: "./media/characters/malithee/front.svg",
  38288. extra: 1675/1640,
  38289. bottom: 162/1837
  38290. }
  38291. },
  38292. },
  38293. [
  38294. {
  38295. name: "Mortal Interaction",
  38296. height: math.unit(8, "feet"),
  38297. default: true
  38298. },
  38299. {
  38300. name: "Large",
  38301. height: math.unit(24, "feet")
  38302. },
  38303. {
  38304. name: "Kaiju",
  38305. height: math.unit(240, "feet")
  38306. },
  38307. {
  38308. name: "Megamacro",
  38309. height: math.unit(8000, "feet")
  38310. },
  38311. {
  38312. name: "Continent Cracker",
  38313. height: math.unit(24e6, "feet")
  38314. },
  38315. {
  38316. name: "Earth-Eclipsing",
  38317. height: math.unit(2.4e8, "feet")
  38318. },
  38319. {
  38320. name: "Sol-Swallowing",
  38321. height: math.unit(8e10, "feet")
  38322. },
  38323. {
  38324. name: "Galaxy Gulper",
  38325. height: math.unit(8, "galaxies")
  38326. },
  38327. {
  38328. name: "Light Universal",
  38329. height: math.unit(4, "universes")
  38330. },
  38331. {
  38332. name: "Universe Atoms",
  38333. height: math.unit(1.829e9, "universes")
  38334. },
  38335. {
  38336. name: "Light Multiversal",
  38337. height: math.unit(4, "multiverses")
  38338. },
  38339. {
  38340. name: "Multiverse Atoms",
  38341. height: math.unit(1.829e9, "multiverses")
  38342. },
  38343. {
  38344. name: "Nigh-Omnipresence",
  38345. height: math.unit(8e261, "multiverses")
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(10, "feet"),
  38354. weight: math.unit(1500, "lb"),
  38355. name: "Front",
  38356. image: {
  38357. source: "./media/characters/miles-thestia/front.svg",
  38358. extra: 1812/1727,
  38359. bottom: 86/1898
  38360. }
  38361. },
  38362. back: {
  38363. height: math.unit(10, "feet"),
  38364. weight: math.unit(1500, "lb"),
  38365. name: "Back",
  38366. image: {
  38367. source: "./media/characters/miles-thestia/back.svg",
  38368. extra: 1799/1690,
  38369. bottom: 47/1846
  38370. }
  38371. },
  38372. frontNsfw: {
  38373. height: math.unit(10, "feet"),
  38374. weight: math.unit(1500, "lb"),
  38375. name: "Front (NSFW)",
  38376. image: {
  38377. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38378. extra: 1812/1727,
  38379. bottom: 86/1898
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Mini-Macro",
  38386. height: math.unit(10, "feet"),
  38387. default: true
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38393. {
  38394. front: {
  38395. height: math.unit(25, "feet"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/titan-s-wulf/front.svg",
  38399. extra: 1560/1484,
  38400. bottom: 76/1636
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Smallest",
  38407. height: math.unit(25, "feet"),
  38408. default: true
  38409. },
  38410. {
  38411. name: "Normal",
  38412. height: math.unit(200, "feet")
  38413. },
  38414. {
  38415. name: "Macro",
  38416. height: math.unit(200000, "feet")
  38417. },
  38418. {
  38419. name: "Multiversal Original",
  38420. height: math.unit(10000, "multiverses")
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38426. {
  38427. front: {
  38428. height: math.unit(8, "feet"),
  38429. weight: math.unit(553, "lb"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/tawendeh/front.svg",
  38433. extra: 2365/2268,
  38434. bottom: 83/2448
  38435. }
  38436. },
  38437. frontClothed: {
  38438. height: math.unit(8, "feet"),
  38439. weight: math.unit(553, "lb"),
  38440. name: "Front (Clothed)",
  38441. image: {
  38442. source: "./media/characters/tawendeh/front-clothed.svg",
  38443. extra: 2365/2268,
  38444. bottom: 83/2448
  38445. }
  38446. },
  38447. back: {
  38448. height: math.unit(8, "feet"),
  38449. weight: math.unit(553, "lb"),
  38450. name: "Back",
  38451. image: {
  38452. source: "./media/characters/tawendeh/back.svg",
  38453. extra: 2397/2294,
  38454. bottom: 42/2439
  38455. }
  38456. },
  38457. },
  38458. [
  38459. {
  38460. name: "Mortal Interaction",
  38461. height: math.unit(8, "feet"),
  38462. default: true
  38463. },
  38464. {
  38465. name: "Giant",
  38466. height: math.unit(80, "feet")
  38467. },
  38468. {
  38469. name: "Macro",
  38470. height: math.unit(800, "feet")
  38471. },
  38472. {
  38473. name: "Megamacro",
  38474. height: math.unit(8000, "feet")
  38475. },
  38476. {
  38477. name: "City-Crushing",
  38478. height: math.unit(24000, "feet")
  38479. },
  38480. {
  38481. name: "Mountain-Mashing",
  38482. height: math.unit(80000, "feet")
  38483. },
  38484. {
  38485. name: "Nation Nemesis",
  38486. height: math.unit(8e6, "feet")
  38487. },
  38488. {
  38489. name: "Continent Cracker",
  38490. height: math.unit(24e6, "feet")
  38491. },
  38492. {
  38493. name: "Earth-Eclipsing",
  38494. height: math.unit(2.4e8, "feet")
  38495. },
  38496. {
  38497. name: "Gas Giant Gulper",
  38498. height: math.unit(2.4e9, "feet")
  38499. },
  38500. {
  38501. name: "Sol-Swallowing",
  38502. height: math.unit(8e10, "feet")
  38503. },
  38504. {
  38505. name: "Galaxy Gulper",
  38506. height: math.unit(8, "galaxies")
  38507. },
  38508. {
  38509. name: "Cosmos Churner",
  38510. height: math.unit(8, "universes")
  38511. },
  38512. {
  38513. name: "Omnipotent Otter",
  38514. height: math.unit(80, "universes")
  38515. },
  38516. ]
  38517. ))
  38518. characterMakers.push(() => makeCharacter(
  38519. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38520. {
  38521. front: {
  38522. height: math.unit(2.6, "meters"),
  38523. weight: math.unit(900, "kg"),
  38524. name: "Front",
  38525. image: {
  38526. source: "./media/characters/neesha/front.svg",
  38527. extra: 1803/1653,
  38528. bottom: 128/1931
  38529. }
  38530. },
  38531. },
  38532. [
  38533. {
  38534. name: "Normal",
  38535. height: math.unit(2.6, "meters"),
  38536. default: true
  38537. },
  38538. {
  38539. name: "Macro",
  38540. height: math.unit(50, "meters")
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38546. {
  38547. front: {
  38548. height: math.unit(5, "feet"),
  38549. weight: math.unit(185, "lb"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/kyera/front.svg",
  38553. extra: 1875/1790,
  38554. bottom: 96/1971
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(5, "feet"),
  38562. default: true
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38568. {
  38569. front: {
  38570. height: math.unit(7 + 6/12, "feet"),
  38571. weight: math.unit(540, "lb"),
  38572. name: "Front",
  38573. image: {
  38574. source: "./media/characters/yuko/front.svg",
  38575. extra: 1282/1222,
  38576. bottom: 101/1383
  38577. }
  38578. },
  38579. frontClothed: {
  38580. height: math.unit(7 + 6/12, "feet"),
  38581. weight: math.unit(540, "lb"),
  38582. name: "Front (Clothed)",
  38583. image: {
  38584. source: "./media/characters/yuko/front-clothed.svg",
  38585. extra: 1282/1222,
  38586. bottom: 101/1383
  38587. }
  38588. },
  38589. },
  38590. [
  38591. {
  38592. name: "Normal",
  38593. height: math.unit(7 + 6/12, "feet"),
  38594. default: true
  38595. },
  38596. {
  38597. name: "Macro",
  38598. height: math.unit(26 + 9/12, "feet")
  38599. },
  38600. {
  38601. name: "Megamacro",
  38602. height: math.unit(300, "feet")
  38603. },
  38604. {
  38605. name: "Gigamacro",
  38606. height: math.unit(5000, "feet")
  38607. },
  38608. {
  38609. name: "Planetary",
  38610. height: math.unit(10000, "miles")
  38611. },
  38612. ]
  38613. ))
  38614. characterMakers.push(() => makeCharacter(
  38615. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38616. {
  38617. front: {
  38618. height: math.unit(8 + 2/12, "feet"),
  38619. weight: math.unit(600, "lb"),
  38620. name: "Front",
  38621. image: {
  38622. source: "./media/characters/deam-nitrel/front.svg",
  38623. extra: 1308/1234,
  38624. bottom: 125/1433
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Normal",
  38631. height: math.unit(8 + 2/12, "feet"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(6.1, "feet"),
  38641. weight: math.unit(180, "lb"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/skyress/front.svg",
  38645. extra: 1045/915,
  38646. bottom: 28/1073
  38647. }
  38648. },
  38649. maw: {
  38650. height: math.unit(1, "feet"),
  38651. name: "Maw",
  38652. image: {
  38653. source: "./media/characters/skyress/maw.svg"
  38654. }
  38655. },
  38656. },
  38657. [
  38658. {
  38659. name: "Normal",
  38660. height: math.unit(6.1, "feet"),
  38661. default: true
  38662. },
  38663. {
  38664. name: "Macro",
  38665. height: math.unit(200, "feet")
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(4 + 2/12, "feet"),
  38674. weight: math.unit(40, "kg"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/amethyst-jones/front.svg",
  38678. extra: 1220/1150,
  38679. bottom: 101/1321
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(4 + 2/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(1.7, "m"),
  38696. weight: math.unit(135, "lb"),
  38697. name: "Front",
  38698. image: {
  38699. source: "./media/characters/jade/front.svg",
  38700. extra: 1818/1767,
  38701. bottom: 32/1850
  38702. }
  38703. },
  38704. back: {
  38705. height: math.unit(1.7, "m"),
  38706. weight: math.unit(135, "lb"),
  38707. name: "Back",
  38708. image: {
  38709. source: "./media/characters/jade/back.svg",
  38710. extra: 1869/1809,
  38711. bottom: 35/1904
  38712. }
  38713. },
  38714. hand: {
  38715. height: math.unit(0.24, "m"),
  38716. name: "Hand",
  38717. image: {
  38718. source: "./media/characters/jade/hand.svg"
  38719. }
  38720. },
  38721. foot: {
  38722. height: math.unit(0.263, "m"),
  38723. name: "Foot",
  38724. image: {
  38725. source: "./media/characters/jade/foot.svg"
  38726. }
  38727. },
  38728. dick: {
  38729. height: math.unit(0.47, "m"),
  38730. name: "Dick",
  38731. image: {
  38732. source: "./media/characters/jade/dick.svg"
  38733. }
  38734. },
  38735. },
  38736. [
  38737. {
  38738. name: "Micro",
  38739. height: math.unit(22, "cm")
  38740. },
  38741. {
  38742. name: "Normal",
  38743. height: math.unit(1.7, "m"),
  38744. default: true
  38745. },
  38746. {
  38747. name: "Macro",
  38748. height: math.unit(152, "m")
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38754. {
  38755. front: {
  38756. height: math.unit(100, "miles"),
  38757. weight: math.unit(20000, "tons"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/cookie/front.svg",
  38761. extra: 1125/1070,
  38762. bottom: 30/1155
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Big",
  38769. height: math.unit(50, "feet")
  38770. },
  38771. {
  38772. name: "Macro",
  38773. height: math.unit(100, "miles"),
  38774. default: true
  38775. },
  38776. {
  38777. name: "Megamacro",
  38778. height: math.unit(90000, "miles")
  38779. },
  38780. ]
  38781. ))
  38782. characterMakers.push(() => makeCharacter(
  38783. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38784. {
  38785. front: {
  38786. height: math.unit(6, "feet"),
  38787. weight: math.unit(145, "lb"),
  38788. name: "Front",
  38789. image: {
  38790. source: "./media/characters/farzian/front.svg",
  38791. extra: 1902/1693,
  38792. bottom: 108/2010
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Macro",
  38799. height: math.unit(500, "feet"),
  38800. default: true
  38801. },
  38802. ]
  38803. ))
  38804. characterMakers.push(() => makeCharacter(
  38805. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38806. {
  38807. front: {
  38808. height: math.unit(3 + 6/12, "feet"),
  38809. weight: math.unit(50, "lb"),
  38810. name: "Front",
  38811. image: {
  38812. source: "./media/characters/kimberly-tilson/front.svg",
  38813. extra: 1400/1322,
  38814. bottom: 36/1436
  38815. }
  38816. },
  38817. back: {
  38818. height: math.unit(3 + 6/12, "feet"),
  38819. weight: math.unit(50, "lb"),
  38820. name: "Back",
  38821. image: {
  38822. source: "./media/characters/kimberly-tilson/back.svg",
  38823. extra: 1370/1307,
  38824. bottom: 20/1390
  38825. }
  38826. },
  38827. },
  38828. [
  38829. {
  38830. name: "Normal",
  38831. height: math.unit(3 + 6/12, "feet"),
  38832. default: true
  38833. },
  38834. ]
  38835. ))
  38836. characterMakers.push(() => makeCharacter(
  38837. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38838. {
  38839. front: {
  38840. height: math.unit(1148, "feet"),
  38841. weight: math.unit(34057, "lb"),
  38842. name: "Front",
  38843. image: {
  38844. source: "./media/characters/harthos/front.svg",
  38845. extra: 1391/1339,
  38846. bottom: 13/1404
  38847. }
  38848. },
  38849. },
  38850. [
  38851. {
  38852. name: "Macro",
  38853. height: math.unit(1148, "feet"),
  38854. default: true
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(15, "feet"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/hypatia/front.svg",
  38866. extra: 1653/1591,
  38867. bottom: 79/1732
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(15, "feet")
  38875. },
  38876. {
  38877. name: "Small",
  38878. height: math.unit(300, "feet")
  38879. },
  38880. {
  38881. name: "Macro",
  38882. height: math.unit(2500, "feet"),
  38883. default: true
  38884. },
  38885. {
  38886. name: "Mega Macro",
  38887. height: math.unit(1500, "miles")
  38888. },
  38889. {
  38890. name: "Giga Macro",
  38891. height: math.unit(1.5e6, "miles")
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(6, "feet"),
  38900. weight: math.unit(200, "lb"),
  38901. name: "Front",
  38902. image: {
  38903. source: "./media/characters/wulver/front.svg",
  38904. extra: 1724/1632,
  38905. bottom: 130/1854
  38906. }
  38907. },
  38908. frontNsfw: {
  38909. height: math.unit(6, "feet"),
  38910. weight: math.unit(200, "lb"),
  38911. name: "Front (NSFW)",
  38912. image: {
  38913. source: "./media/characters/wulver/front-nsfw.svg",
  38914. extra: 1724/1632,
  38915. bottom: 130/1854
  38916. }
  38917. },
  38918. },
  38919. [
  38920. {
  38921. name: "Human-Sized",
  38922. height: math.unit(6, "feet")
  38923. },
  38924. {
  38925. name: "Normal",
  38926. height: math.unit(4, "meters"),
  38927. default: true
  38928. },
  38929. {
  38930. name: "Large",
  38931. height: math.unit(6, "m")
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38937. {
  38938. front: {
  38939. height: math.unit(7, "feet"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/maru/front.svg",
  38943. extra: 1595/1570,
  38944. bottom: 0/1595
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(7, "feet"),
  38952. default: true
  38953. },
  38954. {
  38955. name: "Macro",
  38956. height: math.unit(700, "feet")
  38957. },
  38958. {
  38959. name: "Mega Macro",
  38960. height: math.unit(25, "miles")
  38961. },
  38962. ]
  38963. ))
  38964. characterMakers.push(() => makeCharacter(
  38965. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38966. {
  38967. front: {
  38968. height: math.unit(6, "feet"),
  38969. weight: math.unit(170, "lb"),
  38970. name: "Front",
  38971. image: {
  38972. source: "./media/characters/xenon/front.svg",
  38973. extra: 1376/1305,
  38974. bottom: 56/1432
  38975. }
  38976. },
  38977. back: {
  38978. height: math.unit(6, "feet"),
  38979. weight: math.unit(170, "lb"),
  38980. name: "Back",
  38981. image: {
  38982. source: "./media/characters/xenon/back.svg",
  38983. extra: 1328/1259,
  38984. bottom: 95/1423
  38985. }
  38986. },
  38987. maw: {
  38988. height: math.unit(0.52, "feet"),
  38989. name: "Maw",
  38990. image: {
  38991. source: "./media/characters/xenon/maw.svg"
  38992. }
  38993. },
  38994. hand: {
  38995. height: math.unit(0.82, "feet"),
  38996. name: "Hand",
  38997. image: {
  38998. source: "./media/characters/xenon/hand.svg"
  38999. }
  39000. },
  39001. foot: {
  39002. height: math.unit(1.13, "feet"),
  39003. name: "Foot",
  39004. image: {
  39005. source: "./media/characters/xenon/foot.svg"
  39006. }
  39007. },
  39008. },
  39009. [
  39010. {
  39011. name: "Micro",
  39012. height: math.unit(0.8, "inches")
  39013. },
  39014. {
  39015. name: "Normal",
  39016. height: math.unit(6, "feet")
  39017. },
  39018. {
  39019. name: "Macro",
  39020. height: math.unit(50, "feet"),
  39021. default: true
  39022. },
  39023. {
  39024. name: "Macro+",
  39025. height: math.unit(250, "feet")
  39026. },
  39027. {
  39028. name: "Megamacro",
  39029. height: math.unit(1500, "feet")
  39030. },
  39031. ]
  39032. ))
  39033. characterMakers.push(() => makeCharacter(
  39034. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39035. {
  39036. front: {
  39037. height: math.unit(7 + 5/12, "feet"),
  39038. name: "Front",
  39039. image: {
  39040. source: "./media/characters/zane/front.svg",
  39041. extra: 1260/1203,
  39042. bottom: 94/1354
  39043. }
  39044. },
  39045. back: {
  39046. height: math.unit(5.05, "feet"),
  39047. name: "Back",
  39048. image: {
  39049. source: "./media/characters/zane/back.svg",
  39050. extra: 893/829,
  39051. bottom: 30/923
  39052. }
  39053. },
  39054. werewolf: {
  39055. height: math.unit(11, "feet"),
  39056. name: "Werewolf",
  39057. image: {
  39058. source: "./media/characters/zane/werewolf.svg",
  39059. extra: 1383/1323,
  39060. bottom: 89/1472
  39061. }
  39062. },
  39063. foot: {
  39064. height: math.unit(1.46, "feet"),
  39065. name: "Foot",
  39066. image: {
  39067. source: "./media/characters/zane/foot.svg"
  39068. }
  39069. },
  39070. footFront: {
  39071. height: math.unit(0.784, "feet"),
  39072. name: "Foot (Front)",
  39073. image: {
  39074. source: "./media/characters/zane/foot-front.svg"
  39075. }
  39076. },
  39077. dick: {
  39078. height: math.unit(1.95, "feet"),
  39079. name: "Dick",
  39080. image: {
  39081. source: "./media/characters/zane/dick.svg"
  39082. }
  39083. },
  39084. dickWerewolf: {
  39085. height: math.unit(3.77, "feet"),
  39086. name: "Dick (Werewolf)",
  39087. image: {
  39088. source: "./media/characters/zane/dick.svg"
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Normal",
  39095. height: math.unit(7 + 5/12, "feet"),
  39096. default: true
  39097. },
  39098. ]
  39099. ))
  39100. characterMakers.push(() => makeCharacter(
  39101. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39102. {
  39103. front: {
  39104. height: math.unit(6 + 2/12, "feet"),
  39105. weight: math.unit(284, "lb"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/benni-desparque/front.svg",
  39109. extra: 1353/1126,
  39110. bottom: 69/1422
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Civilian",
  39117. height: math.unit(6 + 2/12, "feet")
  39118. },
  39119. {
  39120. name: "Normal",
  39121. height: math.unit(98, "feet"),
  39122. default: true
  39123. },
  39124. {
  39125. name: "Kaiju Fighter",
  39126. height: math.unit(268, "feet")
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(5, "feet"),
  39135. weight: math.unit(105, "lb"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/maxine/front.svg",
  39139. extra: 1386/1250,
  39140. bottom: 71/1457
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(5, "feet"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(11 + 7/12, "feet"),
  39157. weight: math.unit(9576, "lb"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/scaly/front.svg",
  39161. extra: 888/867,
  39162. bottom: 36/924
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Normal",
  39169. height: math.unit(11 + 7/12, "feet"),
  39170. default: true
  39171. },
  39172. ]
  39173. ))
  39174. characterMakers.push(() => makeCharacter(
  39175. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39176. {
  39177. front: {
  39178. height: math.unit(9, "inches"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/saelria/front.svg",
  39182. extra: 662/621,
  39183. bottom: 12/674
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Tiny",
  39190. height: math.unit(9, "inches"),
  39191. default: true
  39192. },
  39193. ]
  39194. ))
  39195. characterMakers.push(() => makeCharacter(
  39196. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39197. {
  39198. front: {
  39199. height: math.unit(80, "meters"),
  39200. weight: math.unit(7000, "tonnes"),
  39201. name: "Front",
  39202. image: {
  39203. source: "./media/characters/tef/front.svg",
  39204. extra: 2036/1991,
  39205. bottom: 54/2090
  39206. }
  39207. },
  39208. back: {
  39209. height: math.unit(80, "meters"),
  39210. weight: math.unit(7000, "tonnes"),
  39211. name: "Back",
  39212. image: {
  39213. source: "./media/characters/tef/back.svg",
  39214. extra: 2036/1991,
  39215. bottom: 54/2090
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Macro",
  39222. height: math.unit(80, "meters"),
  39223. default: true
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(13, "feet"),
  39232. weight: math.unit(6, "tons"),
  39233. name: "Front",
  39234. image: {
  39235. source: "./media/characters/rover/front.svg",
  39236. extra: 1233/1156,
  39237. bottom: 50/1283
  39238. }
  39239. },
  39240. back: {
  39241. height: math.unit(13, "feet"),
  39242. weight: math.unit(6, "tons"),
  39243. name: "Back",
  39244. image: {
  39245. source: "./media/characters/rover/back.svg",
  39246. extra: 1327/1258,
  39247. bottom: 39/1366
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Normal",
  39254. height: math.unit(13, "feet"),
  39255. default: true
  39256. },
  39257. {
  39258. name: "Macro",
  39259. height: math.unit(1300, "feet")
  39260. },
  39261. {
  39262. name: "Megamacro",
  39263. height: math.unit(1300, "miles")
  39264. },
  39265. {
  39266. name: "Gigamacro",
  39267. height: math.unit(1300000, "miles")
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(6, "feet"),
  39276. weight: math.unit(150, "lb"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/ariz/front.svg",
  39280. extra: 1401/1346,
  39281. bottom: 5/1406
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Normal",
  39288. height: math.unit(10, "feet"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(6, "feet"),
  39298. weight: math.unit(140, "lb"),
  39299. name: "Front",
  39300. image: {
  39301. source: "./media/characters/sigrun/front.svg",
  39302. extra: 1418/1359,
  39303. bottom: 27/1445
  39304. }
  39305. },
  39306. },
  39307. [
  39308. {
  39309. name: "Macro",
  39310. height: math.unit(35, "feet"),
  39311. default: true
  39312. },
  39313. ]
  39314. ))
  39315. characterMakers.push(() => makeCharacter(
  39316. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39317. {
  39318. front: {
  39319. height: math.unit(6, "feet"),
  39320. weight: math.unit(150, "lb"),
  39321. name: "Front",
  39322. image: {
  39323. source: "./media/characters/numin/front.svg",
  39324. extra: 1433/1388,
  39325. bottom: 12/1445
  39326. }
  39327. },
  39328. },
  39329. [
  39330. {
  39331. name: "Macro",
  39332. height: math.unit(21.5, "km"),
  39333. default: true
  39334. },
  39335. ]
  39336. ))
  39337. characterMakers.push(() => makeCharacter(
  39338. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39339. {
  39340. front: {
  39341. height: math.unit(6, "feet"),
  39342. weight: math.unit(463, "lb"),
  39343. name: "Front",
  39344. image: {
  39345. source: "./media/characters/melwa/front.svg",
  39346. extra: 1307/1248,
  39347. bottom: 93/1400
  39348. }
  39349. },
  39350. },
  39351. [
  39352. {
  39353. name: "Macro",
  39354. height: math.unit(50, "meters"),
  39355. default: true
  39356. },
  39357. ]
  39358. ))
  39359. characterMakers.push(() => makeCharacter(
  39360. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39361. {
  39362. front: {
  39363. height: math.unit(325, "feet"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/zorkaiju/front.svg",
  39367. extra: 1955/1814,
  39368. bottom: 40/1995
  39369. }
  39370. },
  39371. frontExtended: {
  39372. height: math.unit(325, "feet"),
  39373. name: "Front (Extended)",
  39374. image: {
  39375. source: "./media/characters/zorkaiju/front-extended.svg",
  39376. extra: 1955/1814,
  39377. bottom: 40/1995
  39378. }
  39379. },
  39380. side: {
  39381. height: math.unit(325, "feet"),
  39382. name: "Side",
  39383. image: {
  39384. source: "./media/characters/zorkaiju/side.svg",
  39385. extra: 1495/1396,
  39386. bottom: 17/1512
  39387. }
  39388. },
  39389. sideExtended: {
  39390. height: math.unit(325, "feet"),
  39391. name: "Side (Extended)",
  39392. image: {
  39393. source: "./media/characters/zorkaiju/side-extended.svg",
  39394. extra: 1495/1396,
  39395. bottom: 17/1512
  39396. }
  39397. },
  39398. back: {
  39399. height: math.unit(325, "feet"),
  39400. name: "Back",
  39401. image: {
  39402. source: "./media/characters/zorkaiju/back.svg",
  39403. extra: 1959/1821,
  39404. bottom: 31/1990
  39405. }
  39406. },
  39407. backExtended: {
  39408. height: math.unit(325, "feet"),
  39409. name: "Back (Extended)",
  39410. image: {
  39411. source: "./media/characters/zorkaiju/back-extended.svg",
  39412. extra: 1959/1821,
  39413. bottom: 31/1990
  39414. }
  39415. },
  39416. hand: {
  39417. height: math.unit(58.4, "feet"),
  39418. name: "Hand",
  39419. image: {
  39420. source: "./media/characters/zorkaiju/hand.svg"
  39421. }
  39422. },
  39423. handExtended: {
  39424. height: math.unit(61.4, "feet"),
  39425. name: "Hand (Extended)",
  39426. image: {
  39427. source: "./media/characters/zorkaiju/hand-extended.svg"
  39428. }
  39429. },
  39430. foot: {
  39431. height: math.unit(95, "feet"),
  39432. name: "Foot",
  39433. image: {
  39434. source: "./media/characters/zorkaiju/foot.svg"
  39435. }
  39436. },
  39437. leftArm: {
  39438. height: math.unit(59, "feet"),
  39439. name: "Left Arm",
  39440. image: {
  39441. source: "./media/characters/zorkaiju/left-arm.svg"
  39442. }
  39443. },
  39444. rightArm: {
  39445. height: math.unit(59, "feet"),
  39446. name: "Right Arm",
  39447. image: {
  39448. source: "./media/characters/zorkaiju/right-arm.svg"
  39449. }
  39450. },
  39451. tail: {
  39452. height: math.unit(104, "feet"),
  39453. name: "Tail",
  39454. image: {
  39455. source: "./media/characters/zorkaiju/tail.svg"
  39456. }
  39457. },
  39458. tailExtended: {
  39459. height: math.unit(104, "feet"),
  39460. name: "Tail (Extended)",
  39461. image: {
  39462. source: "./media/characters/zorkaiju/tail-extended.svg"
  39463. }
  39464. },
  39465. tailBottom: {
  39466. height: math.unit(104, "feet"),
  39467. name: "Tail Bottom",
  39468. image: {
  39469. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39470. }
  39471. },
  39472. crystal: {
  39473. height: math.unit(27.54, "feet"),
  39474. name: "Crystal",
  39475. image: {
  39476. source: "./media/characters/zorkaiju/crystal.svg"
  39477. }
  39478. },
  39479. },
  39480. [
  39481. {
  39482. name: "Kaiju",
  39483. height: math.unit(325, "feet"),
  39484. default: true
  39485. },
  39486. ]
  39487. ))
  39488. characterMakers.push(() => makeCharacter(
  39489. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39490. {
  39491. front: {
  39492. height: math.unit(6 + 1/12, "feet"),
  39493. weight: math.unit(115, "lb"),
  39494. name: "Front",
  39495. image: {
  39496. source: "./media/characters/bailey-belfry/front.svg",
  39497. extra: 1240/1121,
  39498. bottom: 101/1341
  39499. }
  39500. },
  39501. },
  39502. [
  39503. {
  39504. name: "Normal",
  39505. height: math.unit(6 + 1/12, "feet"),
  39506. default: true
  39507. },
  39508. ]
  39509. ))
  39510. characterMakers.push(() => makeCharacter(
  39511. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39512. {
  39513. side: {
  39514. height: math.unit(4, "meters"),
  39515. weight: math.unit(250, "kg"),
  39516. name: "Side",
  39517. image: {
  39518. source: "./media/characters/blacky/side.svg",
  39519. extra: 1027/919,
  39520. bottom: 43/1070
  39521. }
  39522. },
  39523. maw: {
  39524. height: math.unit(1, "meters"),
  39525. name: "Maw",
  39526. image: {
  39527. source: "./media/characters/blacky/maw.svg"
  39528. }
  39529. },
  39530. paw: {
  39531. height: math.unit(1, "meters"),
  39532. name: "Paw",
  39533. image: {
  39534. source: "./media/characters/blacky/paw.svg"
  39535. }
  39536. },
  39537. },
  39538. [
  39539. {
  39540. name: "Normal",
  39541. height: math.unit(4, "meters"),
  39542. default: true
  39543. },
  39544. ]
  39545. ))
  39546. characterMakers.push(() => makeCharacter(
  39547. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39548. {
  39549. front: {
  39550. height: math.unit(170, "cm"),
  39551. weight: math.unit(66, "kg"),
  39552. name: "Front",
  39553. image: {
  39554. source: "./media/characters/thux-ei/front.svg",
  39555. extra: 1109/1011,
  39556. bottom: 8/1117
  39557. }
  39558. },
  39559. },
  39560. [
  39561. {
  39562. name: "Normal",
  39563. height: math.unit(170, "cm"),
  39564. default: true
  39565. },
  39566. ]
  39567. ))
  39568. characterMakers.push(() => makeCharacter(
  39569. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39570. {
  39571. front: {
  39572. height: math.unit(5, "feet"),
  39573. weight: math.unit(120, "lb"),
  39574. name: "Front",
  39575. image: {
  39576. source: "./media/characters/roxanne-voltaire/front.svg",
  39577. extra: 1901/1779,
  39578. bottom: 53/1954
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Normal",
  39585. height: math.unit(5, "feet"),
  39586. default: true
  39587. },
  39588. {
  39589. name: "Giant",
  39590. height: math.unit(50, "feet")
  39591. },
  39592. {
  39593. name: "Titan",
  39594. height: math.unit(500, "feet")
  39595. },
  39596. {
  39597. name: "Macro",
  39598. height: math.unit(5000, "feet")
  39599. },
  39600. {
  39601. name: "Megamacro",
  39602. height: math.unit(50000, "feet")
  39603. },
  39604. {
  39605. name: "Gigamacro",
  39606. height: math.unit(500000, "feet")
  39607. },
  39608. {
  39609. name: "Teramacro",
  39610. height: math.unit(5e6, "feet")
  39611. },
  39612. ]
  39613. ))
  39614. characterMakers.push(() => makeCharacter(
  39615. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39616. {
  39617. front: {
  39618. height: math.unit(6 + 2/12, "feet"),
  39619. name: "Front",
  39620. image: {
  39621. source: "./media/characters/squeaks/front.svg",
  39622. extra: 1823/1768,
  39623. bottom: 138/1961
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Micro",
  39630. height: math.unit(0.5, "inches")
  39631. },
  39632. {
  39633. name: "Normal",
  39634. height: math.unit(6 + 2/12, "feet"),
  39635. default: true
  39636. },
  39637. {
  39638. name: "Macro",
  39639. height: math.unit(600, "feet")
  39640. },
  39641. ]
  39642. ))
  39643. characterMakers.push(() => makeCharacter(
  39644. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39645. {
  39646. front: {
  39647. height: math.unit(1.72, "meters"),
  39648. name: "Front",
  39649. image: {
  39650. source: "./media/characters/archinger/front.svg",
  39651. extra: 1861/1675,
  39652. bottom: 125/1986
  39653. }
  39654. },
  39655. back: {
  39656. height: math.unit(1.72, "meters"),
  39657. name: "Back",
  39658. image: {
  39659. source: "./media/characters/archinger/back.svg",
  39660. extra: 1844/1701,
  39661. bottom: 104/1948
  39662. }
  39663. },
  39664. cock: {
  39665. height: math.unit(0.59, "feet"),
  39666. name: "Cock",
  39667. image: {
  39668. source: "./media/characters/archinger/cock.svg"
  39669. }
  39670. },
  39671. },
  39672. [
  39673. {
  39674. name: "Normal",
  39675. height: math.unit(1.72, "meters"),
  39676. default: true
  39677. },
  39678. {
  39679. name: "Macro",
  39680. height: math.unit(84, "meters")
  39681. },
  39682. {
  39683. name: "Macro+",
  39684. height: math.unit(112, "meters")
  39685. },
  39686. {
  39687. name: "Macro++",
  39688. height: math.unit(960, "meters")
  39689. },
  39690. {
  39691. name: "Macro+++",
  39692. height: math.unit(4, "km")
  39693. },
  39694. {
  39695. name: "Macro++++",
  39696. height: math.unit(48, "km")
  39697. },
  39698. {
  39699. name: "Macro+++++",
  39700. height: math.unit(4500, "km")
  39701. },
  39702. ]
  39703. ))
  39704. characterMakers.push(() => makeCharacter(
  39705. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39706. {
  39707. front: {
  39708. height: math.unit(5 + 5/12, "feet"),
  39709. name: "Front",
  39710. image: {
  39711. source: "./media/characters/alsnapz/front.svg",
  39712. extra: 1157/1065,
  39713. bottom: 42/1199
  39714. }
  39715. },
  39716. },
  39717. [
  39718. {
  39719. name: "Normal",
  39720. height: math.unit(5 + 5/12, "feet"),
  39721. default: true
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39727. {
  39728. side: {
  39729. height: math.unit(3.2, "earths"),
  39730. name: "Side",
  39731. image: {
  39732. source: "./media/characters/mag/side.svg",
  39733. extra: 1331/1008,
  39734. bottom: 52/1383
  39735. }
  39736. },
  39737. wing: {
  39738. height: math.unit(1.94, "earths"),
  39739. name: "Wing",
  39740. image: {
  39741. source: "./media/characters/mag/wing.svg"
  39742. }
  39743. },
  39744. dick: {
  39745. height: math.unit(1.8, "earths"),
  39746. name: "Dick",
  39747. image: {
  39748. source: "./media/characters/mag/dick.svg"
  39749. }
  39750. },
  39751. ass: {
  39752. height: math.unit(1.33, "earths"),
  39753. name: "Ass",
  39754. image: {
  39755. source: "./media/characters/mag/ass.svg"
  39756. }
  39757. },
  39758. head: {
  39759. height: math.unit(1.1, "earths"),
  39760. name: "Head",
  39761. image: {
  39762. source: "./media/characters/mag/head.svg"
  39763. }
  39764. },
  39765. maw: {
  39766. height: math.unit(1.62, "earths"),
  39767. name: "Maw",
  39768. image: {
  39769. source: "./media/characters/mag/maw.svg"
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Small",
  39776. height: math.unit(162, "feet")
  39777. },
  39778. {
  39779. name: "Normal",
  39780. height: math.unit(3.2, "earths"),
  39781. default: true
  39782. },
  39783. ]
  39784. ))
  39785. characterMakers.push(() => makeCharacter(
  39786. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39787. {
  39788. front: {
  39789. height: math.unit(512, "feet"),
  39790. weight: math.unit(63509, "tonnes"),
  39791. name: "Front",
  39792. image: {
  39793. source: "./media/characters/vorrel-harroc/front.svg",
  39794. extra: 1075/1063,
  39795. bottom: 62/1137
  39796. }
  39797. },
  39798. },
  39799. [
  39800. {
  39801. name: "Normal",
  39802. height: math.unit(10, "feet")
  39803. },
  39804. {
  39805. name: "Macro",
  39806. height: math.unit(512, "feet"),
  39807. default: true
  39808. },
  39809. {
  39810. name: "Megamacro",
  39811. height: math.unit(256, "miles")
  39812. },
  39813. {
  39814. name: "Gigamacro",
  39815. height: math.unit(4096, "miles")
  39816. },
  39817. ]
  39818. ))
  39819. characterMakers.push(() => makeCharacter(
  39820. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39821. {
  39822. side: {
  39823. height: math.unit(50, "feet"),
  39824. name: "Side",
  39825. image: {
  39826. source: "./media/characters/froimar/side.svg",
  39827. extra: 855/638,
  39828. bottom: 99/954
  39829. }
  39830. },
  39831. },
  39832. [
  39833. {
  39834. name: "Macro",
  39835. height: math.unit(50, "feet"),
  39836. default: true
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39842. {
  39843. front: {
  39844. height: math.unit(210, "miles"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/timothy/front.svg",
  39848. extra: 1007/943,
  39849. bottom: 62/1069
  39850. }
  39851. },
  39852. frontSkirt: {
  39853. height: math.unit(210, "miles"),
  39854. name: "Front (Skirt)",
  39855. image: {
  39856. source: "./media/characters/timothy/front-skirt.svg",
  39857. extra: 1007/943,
  39858. bottom: 62/1069
  39859. }
  39860. },
  39861. frontCoat: {
  39862. height: math.unit(210, "miles"),
  39863. name: "Front (Coat)",
  39864. image: {
  39865. source: "./media/characters/timothy/front-coat.svg",
  39866. extra: 1007/943,
  39867. bottom: 62/1069
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Macro",
  39874. height: math.unit(210, "miles"),
  39875. default: true
  39876. },
  39877. {
  39878. name: "Megamacro",
  39879. height: math.unit(210000, "miles")
  39880. },
  39881. ]
  39882. ))
  39883. characterMakers.push(() => makeCharacter(
  39884. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39885. {
  39886. front: {
  39887. height: math.unit(188, "feet"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/pyotr/front.svg",
  39891. extra: 1912/1826,
  39892. bottom: 18/1930
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Macro",
  39899. height: math.unit(188, "feet"),
  39900. default: true
  39901. },
  39902. {
  39903. name: "Megamacro",
  39904. height: math.unit(8, "miles")
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39910. {
  39911. side: {
  39912. height: math.unit(10, "feet"),
  39913. weight: math.unit(4500, "lb"),
  39914. name: "Side",
  39915. image: {
  39916. source: "./media/characters/ackart/side.svg",
  39917. extra: 1776/1668,
  39918. bottom: 116/1892
  39919. }
  39920. },
  39921. },
  39922. [
  39923. {
  39924. name: "Normal",
  39925. height: math.unit(10, "feet"),
  39926. default: true
  39927. },
  39928. ]
  39929. ))
  39930. characterMakers.push(() => makeCharacter(
  39931. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39932. {
  39933. side: {
  39934. height: math.unit(21, "feet"),
  39935. name: "Side",
  39936. image: {
  39937. source: "./media/characters/nolow/side.svg",
  39938. extra: 1484/1434,
  39939. bottom: 85/1569
  39940. }
  39941. },
  39942. sideErect: {
  39943. height: math.unit(21, "feet"),
  39944. name: "Side-erect",
  39945. image: {
  39946. source: "./media/characters/nolow/side-erect.svg",
  39947. extra: 1484/1434,
  39948. bottom: 85/1569
  39949. }
  39950. },
  39951. },
  39952. [
  39953. {
  39954. name: "Regular",
  39955. height: math.unit(12, "feet")
  39956. },
  39957. {
  39958. name: "Big Chee",
  39959. height: math.unit(21, "feet"),
  39960. default: true
  39961. },
  39962. ]
  39963. ))
  39964. characterMakers.push(() => makeCharacter(
  39965. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39966. {
  39967. front: {
  39968. height: math.unit(7, "feet"),
  39969. weight: math.unit(250, "lb"),
  39970. name: "Front",
  39971. image: {
  39972. source: "./media/characters/nines/front.svg",
  39973. extra: 1741/1607,
  39974. bottom: 41/1782
  39975. }
  39976. },
  39977. side: {
  39978. height: math.unit(7, "feet"),
  39979. weight: math.unit(250, "lb"),
  39980. name: "Side",
  39981. image: {
  39982. source: "./media/characters/nines/side.svg",
  39983. extra: 1854/1735,
  39984. bottom: 93/1947
  39985. }
  39986. },
  39987. back: {
  39988. height: math.unit(7, "feet"),
  39989. weight: math.unit(250, "lb"),
  39990. name: "Back",
  39991. image: {
  39992. source: "./media/characters/nines/back.svg",
  39993. extra: 1748/1615,
  39994. bottom: 20/1768
  39995. }
  39996. },
  39997. },
  39998. [
  39999. {
  40000. name: "Megamacro",
  40001. height: math.unit(99, "km"),
  40002. default: true
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40008. {
  40009. front: {
  40010. height: math.unit(5 + 10/12, "feet"),
  40011. weight: math.unit(210, "lb"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/zenith/front.svg",
  40015. extra: 1531/1452,
  40016. bottom: 198/1729
  40017. }
  40018. },
  40019. back: {
  40020. height: math.unit(5 + 10/12, "feet"),
  40021. weight: math.unit(210, "lb"),
  40022. name: "Back",
  40023. image: {
  40024. source: "./media/characters/zenith/back.svg",
  40025. extra: 1571/1487,
  40026. bottom: 75/1646
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Normal",
  40033. height: math.unit(5 + 10/12, "feet"),
  40034. default: true
  40035. }
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40040. {
  40041. front: {
  40042. height: math.unit(4, "feet"),
  40043. weight: math.unit(60, "lb"),
  40044. name: "Front",
  40045. image: {
  40046. source: "./media/characters/jasper/front.svg",
  40047. extra: 1450/1379,
  40048. bottom: 19/1469
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Normal",
  40055. height: math.unit(4, "feet"),
  40056. default: true
  40057. },
  40058. ]
  40059. ))
  40060. characterMakers.push(() => makeCharacter(
  40061. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40062. {
  40063. front: {
  40064. height: math.unit(6 + 5/12, "feet"),
  40065. weight: math.unit(290, "lb"),
  40066. name: "Front",
  40067. image: {
  40068. source: "./media/characters/tiberius-thyben/front.svg",
  40069. extra: 757/739,
  40070. bottom: 39/796
  40071. }
  40072. },
  40073. },
  40074. [
  40075. {
  40076. name: "Micro",
  40077. height: math.unit(1.5, "inches")
  40078. },
  40079. {
  40080. name: "Normal",
  40081. height: math.unit(6 + 5/12, "feet"),
  40082. default: true
  40083. },
  40084. {
  40085. name: "Macro",
  40086. height: math.unit(300, "feet")
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(5 + 6/12, "feet"),
  40095. weight: math.unit(60, "kg"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/sabre/front.svg",
  40099. extra: 738/671,
  40100. bottom: 27/765
  40101. }
  40102. },
  40103. },
  40104. [
  40105. {
  40106. name: "Teeny",
  40107. height: math.unit(2, "inches")
  40108. },
  40109. {
  40110. name: "Smol",
  40111. height: math.unit(8, "inches")
  40112. },
  40113. {
  40114. name: "Normal",
  40115. height: math.unit(5 + 6/12, "feet"),
  40116. default: true
  40117. },
  40118. {
  40119. name: "Mini-Macro",
  40120. height: math.unit(15, "feet")
  40121. },
  40122. {
  40123. name: "Macro",
  40124. height: math.unit(50, "feet")
  40125. },
  40126. ]
  40127. ))
  40128. characterMakers.push(() => makeCharacter(
  40129. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40130. {
  40131. front: {
  40132. height: math.unit(6 + 4/12, "feet"),
  40133. weight: math.unit(170, "lb"),
  40134. name: "Front",
  40135. image: {
  40136. source: "./media/characters/charlie/front.svg",
  40137. extra: 1348/1228,
  40138. bottom: 15/1363
  40139. }
  40140. },
  40141. },
  40142. [
  40143. {
  40144. name: "Macro",
  40145. height: math.unit(1700, "meters"),
  40146. default: true
  40147. },
  40148. {
  40149. name: "MegaMacro",
  40150. height: math.unit(20400, "meters")
  40151. },
  40152. ]
  40153. ))
  40154. characterMakers.push(() => makeCharacter(
  40155. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40156. {
  40157. front: {
  40158. height: math.unit(6 + 3/12, "feet"),
  40159. weight: math.unit(185, "lb"),
  40160. name: "Front",
  40161. image: {
  40162. source: "./media/characters/susan-grant/front.svg",
  40163. extra: 1351/1327,
  40164. bottom: 26/1377
  40165. }
  40166. },
  40167. },
  40168. [
  40169. {
  40170. name: "Normal",
  40171. height: math.unit(6 + 3/12, "feet"),
  40172. default: true
  40173. },
  40174. {
  40175. name: "Macro",
  40176. height: math.unit(225, "feet")
  40177. },
  40178. {
  40179. name: "Macro+",
  40180. height: math.unit(900, "feet")
  40181. },
  40182. {
  40183. name: "MegaMacro",
  40184. height: math.unit(14400, "feet")
  40185. },
  40186. ]
  40187. ))
  40188. characterMakers.push(() => makeCharacter(
  40189. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40190. {
  40191. front: {
  40192. height: math.unit(5 + 4/12, "feet"),
  40193. weight: math.unit(110, "lb"),
  40194. name: "Front",
  40195. image: {
  40196. source: "./media/characters/axel-isanov/front.svg",
  40197. extra: 1096/1065,
  40198. bottom: 13/1109
  40199. }
  40200. },
  40201. },
  40202. [
  40203. {
  40204. name: "Normal",
  40205. height: math.unit(5 + 4/12, "feet"),
  40206. default: true
  40207. },
  40208. ]
  40209. ))
  40210. characterMakers.push(() => makeCharacter(
  40211. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40212. {
  40213. front: {
  40214. height: math.unit(9, "feet"),
  40215. weight: math.unit(467, "lb"),
  40216. name: "Front",
  40217. image: {
  40218. source: "./media/characters/necahual/front.svg",
  40219. extra: 920/873,
  40220. bottom: 26/946
  40221. }
  40222. },
  40223. back: {
  40224. height: math.unit(9, "feet"),
  40225. weight: math.unit(467, "lb"),
  40226. name: "Back",
  40227. image: {
  40228. source: "./media/characters/necahual/back.svg",
  40229. extra: 930/884,
  40230. bottom: 16/946
  40231. }
  40232. },
  40233. frontUnderwear: {
  40234. height: math.unit(9, "feet"),
  40235. weight: math.unit(467, "lb"),
  40236. name: "Front (Underwear)",
  40237. image: {
  40238. source: "./media/characters/necahual/front-underwear.svg",
  40239. extra: 920/873,
  40240. bottom: 26/946
  40241. }
  40242. },
  40243. frontDressed: {
  40244. height: math.unit(9, "feet"),
  40245. weight: math.unit(467, "lb"),
  40246. name: "Front (Dressed)",
  40247. image: {
  40248. source: "./media/characters/necahual/front-dressed.svg",
  40249. extra: 920/873,
  40250. bottom: 26/946
  40251. }
  40252. },
  40253. },
  40254. [
  40255. {
  40256. name: "Comprsesed",
  40257. height: math.unit(9, "feet")
  40258. },
  40259. {
  40260. name: "Natural",
  40261. height: math.unit(15, "feet"),
  40262. default: true
  40263. },
  40264. {
  40265. name: "Boosted",
  40266. height: math.unit(50, "feet")
  40267. },
  40268. {
  40269. name: "Boosted+",
  40270. height: math.unit(150, "feet")
  40271. },
  40272. {
  40273. name: "Max",
  40274. height: math.unit(500, "feet")
  40275. },
  40276. ]
  40277. ))
  40278. characterMakers.push(() => makeCharacter(
  40279. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40280. {
  40281. front: {
  40282. height: math.unit(22 + 1/12, "feet"),
  40283. weight: math.unit(3200, "lb"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/theo-acacia/front.svg",
  40287. extra: 1796/1741,
  40288. bottom: 83/1879
  40289. }
  40290. },
  40291. frontUnderwear: {
  40292. height: math.unit(22 + 1/12, "feet"),
  40293. weight: math.unit(3200, "lb"),
  40294. name: "Front (Underwear)",
  40295. image: {
  40296. source: "./media/characters/theo-acacia/front-underwear.svg",
  40297. extra: 1796/1741,
  40298. bottom: 83/1879
  40299. }
  40300. },
  40301. frontNude: {
  40302. height: math.unit(22 + 1/12, "feet"),
  40303. weight: math.unit(3200, "lb"),
  40304. name: "Front (Nude)",
  40305. image: {
  40306. source: "./media/characters/theo-acacia/front-nude.svg",
  40307. extra: 1796/1741,
  40308. bottom: 83/1879
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Normal",
  40315. height: math.unit(22 + 1/12, "feet"),
  40316. default: true
  40317. },
  40318. ]
  40319. ))
  40320. characterMakers.push(() => makeCharacter(
  40321. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40322. {
  40323. front: {
  40324. height: math.unit(20, "feet"),
  40325. name: "Front",
  40326. image: {
  40327. source: "./media/characters/astra/front.svg",
  40328. extra: 1850/1714,
  40329. bottom: 106/1956
  40330. }
  40331. },
  40332. frontUndressed: {
  40333. height: math.unit(20, "feet"),
  40334. name: "Front (Undressed)",
  40335. image: {
  40336. source: "./media/characters/astra/front-undressed.svg",
  40337. extra: 1926/1749,
  40338. bottom: 0/1926
  40339. }
  40340. },
  40341. hand: {
  40342. height: math.unit(1.53, "feet"),
  40343. name: "Hand",
  40344. image: {
  40345. source: "./media/characters/astra/hand.svg"
  40346. }
  40347. },
  40348. paw: {
  40349. height: math.unit(1.53, "feet"),
  40350. name: "Paw",
  40351. image: {
  40352. source: "./media/characters/astra/paw.svg"
  40353. }
  40354. },
  40355. },
  40356. [
  40357. {
  40358. name: "Smallest",
  40359. height: math.unit(20, "feet")
  40360. },
  40361. {
  40362. name: "Normal",
  40363. height: math.unit(1e9, "miles"),
  40364. default: true
  40365. },
  40366. {
  40367. name: "Larger",
  40368. height: math.unit(5, "multiverses")
  40369. },
  40370. {
  40371. name: "Largest",
  40372. height: math.unit(1e9, "multiverses")
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(8, "feet"),
  40381. name: "Front",
  40382. image: {
  40383. source: "./media/characters/breanna/front.svg",
  40384. extra: 1912/1632,
  40385. bottom: 33/1945
  40386. }
  40387. },
  40388. },
  40389. [
  40390. {
  40391. name: "Smallest",
  40392. height: math.unit(8, "feet")
  40393. },
  40394. {
  40395. name: "Normal",
  40396. height: math.unit(1, "mile"),
  40397. default: true
  40398. },
  40399. {
  40400. name: "Maximum",
  40401. height: math.unit(1500000000000, "lightyears")
  40402. },
  40403. ]
  40404. ))
  40405. characterMakers.push(() => makeCharacter(
  40406. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40407. {
  40408. front: {
  40409. height: math.unit(5 + 11/12, "feet"),
  40410. weight: math.unit(155, "lb"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/cai/front.svg",
  40414. extra: 1823/1702,
  40415. bottom: 32/1855
  40416. }
  40417. },
  40418. back: {
  40419. height: math.unit(5 + 11/12, "feet"),
  40420. weight: math.unit(155, "lb"),
  40421. name: "Back",
  40422. image: {
  40423. source: "./media/characters/cai/back.svg",
  40424. extra: 1809/1708,
  40425. bottom: 31/1840
  40426. }
  40427. },
  40428. },
  40429. [
  40430. {
  40431. name: "Normal",
  40432. height: math.unit(5 + 11/12, "feet"),
  40433. default: true
  40434. },
  40435. {
  40436. name: "Big",
  40437. height: math.unit(15, "feet")
  40438. },
  40439. {
  40440. name: "Macro",
  40441. height: math.unit(200, "feet")
  40442. },
  40443. ]
  40444. ))
  40445. characterMakers.push(() => makeCharacter(
  40446. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40447. {
  40448. front: {
  40449. height: math.unit(5 + 6/12, "feet"),
  40450. weight: math.unit(160, "lb"),
  40451. name: "Front",
  40452. image: {
  40453. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40454. extra: 1227/1174,
  40455. bottom: 37/1264
  40456. }
  40457. },
  40458. },
  40459. [
  40460. {
  40461. name: "Macro",
  40462. height: math.unit(444, "meters"),
  40463. default: true
  40464. },
  40465. ]
  40466. ))
  40467. characterMakers.push(() => makeCharacter(
  40468. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40469. {
  40470. front: {
  40471. height: math.unit(18 + 7/12, "feet"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/rex/front.svg",
  40475. extra: 1941/1807,
  40476. bottom: 66/2007
  40477. }
  40478. },
  40479. back: {
  40480. height: math.unit(18 + 7/12, "feet"),
  40481. name: "Back",
  40482. image: {
  40483. source: "./media/characters/rex/back.svg",
  40484. extra: 1937/1822,
  40485. bottom: 42/1979
  40486. }
  40487. },
  40488. boot: {
  40489. height: math.unit(3.45, "feet"),
  40490. name: "Boot",
  40491. image: {
  40492. source: "./media/characters/rex/boot.svg"
  40493. }
  40494. },
  40495. paw: {
  40496. height: math.unit(4.17, "feet"),
  40497. name: "Paw",
  40498. image: {
  40499. source: "./media/characters/rex/paw.svg"
  40500. }
  40501. },
  40502. head: {
  40503. height: math.unit(6.728, "feet"),
  40504. name: "Head",
  40505. image: {
  40506. source: "./media/characters/rex/head.svg"
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Nano",
  40513. height: math.unit(18 + 7/12, "feet")
  40514. },
  40515. {
  40516. name: "Micro",
  40517. height: math.unit(1.5, "megameters")
  40518. },
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(440, "megameters"),
  40522. default: true
  40523. },
  40524. {
  40525. name: "Macro",
  40526. height: math.unit(2.5, "gigameters")
  40527. },
  40528. {
  40529. name: "Gigamacro",
  40530. height: math.unit(2, "galaxies")
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40536. {
  40537. side: {
  40538. height: math.unit(32, "feet"),
  40539. weight: math.unit(250000, "lb"),
  40540. name: "Side",
  40541. image: {
  40542. source: "./media/characters/silverwing/side.svg",
  40543. extra: 1100/1019,
  40544. bottom: 204/1304
  40545. }
  40546. },
  40547. },
  40548. [
  40549. {
  40550. name: "Normal",
  40551. height: math.unit(32, "feet"),
  40552. default: true
  40553. },
  40554. ]
  40555. ))
  40556. characterMakers.push(() => makeCharacter(
  40557. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40558. {
  40559. front: {
  40560. height: math.unit(6 + 6/12, "feet"),
  40561. weight: math.unit(350, "lb"),
  40562. name: "Front",
  40563. image: {
  40564. source: "./media/characters/tristan-hawthorne/front.svg",
  40565. extra: 1159/1124,
  40566. bottom: 37/1196
  40567. }
  40568. },
  40569. },
  40570. [
  40571. {
  40572. name: "Normal",
  40573. height: math.unit(6 + 6/12, "feet"),
  40574. default: true
  40575. },
  40576. ]
  40577. ))
  40578. characterMakers.push(() => makeCharacter(
  40579. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40580. {
  40581. front: {
  40582. height: math.unit(5 + 11/12, "feet"),
  40583. weight: math.unit(190, "lb"),
  40584. name: "Front",
  40585. image: {
  40586. source: "./media/characters/mizu/front.svg",
  40587. extra: 1988/1788,
  40588. bottom: 14/2002
  40589. }
  40590. },
  40591. },
  40592. [
  40593. {
  40594. name: "Normal",
  40595. height: math.unit(5 + 11/12, "feet"),
  40596. default: true
  40597. },
  40598. ]
  40599. ))
  40600. characterMakers.push(() => makeCharacter(
  40601. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40602. {
  40603. front: {
  40604. height: math.unit(6, "feet"),
  40605. name: "Front",
  40606. image: {
  40607. source: "./media/characters/moonlight-rose-terra/front.svg",
  40608. extra: 1434/1252,
  40609. bottom: 48/1482
  40610. }
  40611. },
  40612. },
  40613. [
  40614. {
  40615. name: "TRAPPIST-1D",
  40616. height: math.unit(4992*2, "km")
  40617. },
  40618. {
  40619. name: "Earth",
  40620. height: math.unit(6367*2, "km"),
  40621. default: true
  40622. },
  40623. {
  40624. name: "Kepler-22b",
  40625. height: math.unit(15282*2, "km")
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(6, "feet"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40637. extra: 1851/1712,
  40638. bottom: 0/1851
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Enceladus",
  40645. height: math.unit(513*2, "km")
  40646. },
  40647. {
  40648. name: "Europe",
  40649. height: math.unit(1560*2, "km")
  40650. },
  40651. {
  40652. name: "Neptune",
  40653. height: math.unit(24622*2, "km"),
  40654. default: true
  40655. },
  40656. {
  40657. name: "CoRoT-9b",
  40658. height: math.unit(75067*2, "km")
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(6, "feet"),
  40667. name: "Front",
  40668. image: {
  40669. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40670. extra: 1367/1286,
  40671. bottom: 55/1422
  40672. }
  40673. },
  40674. },
  40675. [
  40676. {
  40677. name: "Saturn",
  40678. height: math.unit(58232*2, "km")
  40679. },
  40680. {
  40681. name: "Jupiter",
  40682. height: math.unit(69911*2, "km"),
  40683. default: true
  40684. },
  40685. {
  40686. name: "HD 100546 b",
  40687. height: math.unit(482938, "km")
  40688. },
  40689. ]
  40690. ))
  40691. characterMakers.push(() => makeCharacter(
  40692. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40693. {
  40694. front: {
  40695. height: math.unit(1.7, "feet"),
  40696. weight: math.unit(50, "lb"),
  40697. name: "Front",
  40698. image: {
  40699. source: "./media/characters/dechroma/front.svg",
  40700. extra: 1095/859,
  40701. bottom: 64/1159
  40702. }
  40703. },
  40704. },
  40705. [
  40706. {
  40707. name: "Normal",
  40708. height: math.unit(1.7, "feet"),
  40709. default: true
  40710. },
  40711. ]
  40712. ))
  40713. characterMakers.push(() => makeCharacter(
  40714. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40715. {
  40716. side: {
  40717. height: math.unit(30, "feet"),
  40718. name: "Side",
  40719. image: {
  40720. source: "./media/characters/veluren-thanazel/side.svg",
  40721. extra: 1611/633,
  40722. bottom: 118/1729
  40723. }
  40724. },
  40725. front: {
  40726. height: math.unit(30, "feet"),
  40727. name: "Front",
  40728. image: {
  40729. source: "./media/characters/veluren-thanazel/front.svg",
  40730. extra: 1486/636,
  40731. bottom: 238/1724
  40732. }
  40733. },
  40734. head: {
  40735. height: math.unit(21.4, "feet"),
  40736. name: "Head",
  40737. image: {
  40738. source: "./media/characters/veluren-thanazel/head.svg"
  40739. }
  40740. },
  40741. genitals: {
  40742. height: math.unit(19.4, "feet"),
  40743. name: "Genitals",
  40744. image: {
  40745. source: "./media/characters/veluren-thanazel/genitals.svg"
  40746. }
  40747. },
  40748. },
  40749. [
  40750. {
  40751. name: "Social",
  40752. height: math.unit(6, "feet")
  40753. },
  40754. {
  40755. name: "Play",
  40756. height: math.unit(12, "feet")
  40757. },
  40758. {
  40759. name: "True",
  40760. height: math.unit(30, "feet"),
  40761. default: true
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(7 + 6/12, "feet"),
  40770. weight: math.unit(500, "kg"),
  40771. name: "Front",
  40772. image: {
  40773. source: "./media/characters/arcturas/front.svg",
  40774. extra: 1700/1500,
  40775. bottom: 145/1845
  40776. }
  40777. },
  40778. },
  40779. [
  40780. {
  40781. name: "Normal",
  40782. height: math.unit(7 + 6/12, "feet"),
  40783. default: true
  40784. },
  40785. ]
  40786. ))
  40787. characterMakers.push(() => makeCharacter(
  40788. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40789. {
  40790. side: {
  40791. height: math.unit(6, "feet"),
  40792. weight: math.unit(2, "tons"),
  40793. name: "Side",
  40794. image: {
  40795. source: "./media/characters/vitaen/side.svg",
  40796. extra: 1157/617,
  40797. bottom: 122/1279
  40798. }
  40799. },
  40800. },
  40801. [
  40802. {
  40803. name: "Normal",
  40804. height: math.unit(6, "feet"),
  40805. default: true
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40811. {
  40812. front: {
  40813. height: math.unit(19, "feet"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/fia-dreamweaver/front.svg",
  40817. extra: 1630/1504,
  40818. bottom: 25/1655
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(19, "feet"),
  40826. default: true
  40827. },
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40832. {
  40833. front: {
  40834. height: math.unit(5 + 4/12, "feet"),
  40835. name: "Front",
  40836. image: {
  40837. source: "./media/characters/artan/front.svg",
  40838. extra: 1618/1535,
  40839. bottom: 46/1664
  40840. }
  40841. },
  40842. back: {
  40843. height: math.unit(5 + 4/12, "feet"),
  40844. name: "Back",
  40845. image: {
  40846. source: "./media/characters/artan/back.svg",
  40847. extra: 1618/1543,
  40848. bottom: 31/1649
  40849. }
  40850. },
  40851. },
  40852. [
  40853. {
  40854. name: "Normal",
  40855. height: math.unit(5 + 4/12, "feet"),
  40856. default: true
  40857. },
  40858. ]
  40859. ))
  40860. characterMakers.push(() => makeCharacter(
  40861. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40862. {
  40863. side: {
  40864. height: math.unit(182, "cm"),
  40865. weight: math.unit(1000, "lb"),
  40866. name: "Side",
  40867. image: {
  40868. source: "./media/characters/silver-dragon/side.svg",
  40869. extra: 710/287,
  40870. bottom: 88/798
  40871. }
  40872. },
  40873. },
  40874. [
  40875. {
  40876. name: "Normal",
  40877. height: math.unit(182, "cm"),
  40878. default: true
  40879. },
  40880. ]
  40881. ))
  40882. characterMakers.push(() => makeCharacter(
  40883. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40884. {
  40885. side: {
  40886. height: math.unit(6 + 6/12, "feet"),
  40887. weight: math.unit(1.5, "tons"),
  40888. name: "Side",
  40889. image: {
  40890. source: "./media/characters/zephyr/side.svg",
  40891. extra: 1433/586,
  40892. bottom: 109/1542
  40893. }
  40894. },
  40895. },
  40896. [
  40897. {
  40898. name: "Normal",
  40899. height: math.unit(6 + 6/12, "feet"),
  40900. default: true
  40901. },
  40902. ]
  40903. ))
  40904. //characters
  40905. function makeCharacters() {
  40906. const results = [];
  40907. characterMakers.forEach(character => {
  40908. results.push(character());
  40909. });
  40910. return results;
  40911. }