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

41828 строки
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: ["kobold"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(2 + 6 / 12, "feet"),
  12073. weight: math.unit(20, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/rufran/front.svg",
  12077. extra: 2041 / 1839,
  12078. bottom: 0.055
  12079. }
  12080. },
  12081. back: {
  12082. height: math.unit(2 + 6 / 12, "feet"),
  12083. weight: math.unit(20, "lb"),
  12084. name: "Back",
  12085. image: {
  12086. source: "./media/characters/rufran/back.svg",
  12087. extra: 2054 / 1839,
  12088. bottom: 0.01
  12089. }
  12090. },
  12091. hand: {
  12092. height: math.unit(0.2166, "meters"),
  12093. name: "Hand",
  12094. image: {
  12095. source: "./media/characters/rufran/hand.svg"
  12096. }
  12097. },
  12098. foot: {
  12099. height: math.unit(0.185, "meters"),
  12100. name: "Foot",
  12101. image: {
  12102. source: "./media/characters/rufran/foot.svg"
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Micro",
  12109. height: math.unit(1, "inch")
  12110. },
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(2 + 6 / 12, "feet"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Big",
  12118. height: math.unit(60, "feet")
  12119. },
  12120. {
  12121. name: "Macro",
  12122. height: math.unit(325, "feet")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(0.3, "meters"),
  12131. weight: math.unit(3.5, "kg"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/chip/front.svg",
  12135. extra: 748 / 674
  12136. }
  12137. },
  12138. },
  12139. [
  12140. {
  12141. name: "Micro",
  12142. height: math.unit(1, "inch"),
  12143. default: true
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12149. {
  12150. side: {
  12151. height: math.unit(2.3, "meters"),
  12152. weight: math.unit(3500, "lb"),
  12153. name: "Side",
  12154. image: {
  12155. source: "./media/characters/torvid/side.svg",
  12156. extra: 1972 / 722,
  12157. bottom: 0.035
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Normal",
  12164. height: math.unit(2.3, "meters"),
  12165. default: true
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(2, "meters"),
  12174. weight: math.unit(150.5, "kg"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/susan/front.svg",
  12178. extra: 693 / 635,
  12179. bottom: 0.05
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Megamacro",
  12186. height: math.unit(505, "miles"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/raindrops/front.svg",
  12200. extra: 2655 / 2461,
  12201. bottom: 49 / 2705
  12202. }
  12203. },
  12204. back: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(150, "lb"),
  12207. name: "Back",
  12208. image: {
  12209. source: "./media/characters/raindrops/back.svg",
  12210. extra: 2574 / 2400,
  12211. bottom: 65 / 2634
  12212. }
  12213. },
  12214. },
  12215. [
  12216. {
  12217. name: "Micro",
  12218. height: math.unit(6, "inches")
  12219. },
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(6 + 2 / 12, "feet")
  12223. },
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(131, "feet"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Megamacro",
  12231. height: math.unit(15, "miles")
  12232. },
  12233. {
  12234. name: "Gigamacro",
  12235. height: math.unit(4000, "miles")
  12236. },
  12237. {
  12238. name: "Teramacro",
  12239. height: math.unit(315000, "miles")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(2.794, "meters"),
  12248. weight: math.unit(325, "kg"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/tezwa/front.svg",
  12252. extra: 2083 / 1906,
  12253. bottom: 0.031
  12254. }
  12255. },
  12256. foot: {
  12257. height: math.unit(0.687, "meters"),
  12258. name: "Foot",
  12259. image: {
  12260. source: "./media/characters/tezwa/foot.svg"
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(9 + 2 / 12, "feet"),
  12268. default: true
  12269. },
  12270. ]
  12271. ))
  12272. characterMakers.push(() => makeCharacter(
  12273. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12274. {
  12275. front: {
  12276. height: math.unit(58, "feet"),
  12277. weight: math.unit(89000, "lb"),
  12278. name: "Front",
  12279. image: {
  12280. source: "./media/characters/typhus/front.svg",
  12281. extra: 816 / 800,
  12282. bottom: 0.065
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Macro",
  12289. height: math.unit(58, "feet"),
  12290. default: true
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(12, "feet"),
  12299. weight: math.unit(6, "tonnes"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/lyra-von-wulf/front.svg",
  12303. extra: 1,
  12304. bottom: 0.10
  12305. }
  12306. },
  12307. frontMecha: {
  12308. height: math.unit(12, "feet"),
  12309. weight: math.unit(12, "tonnes"),
  12310. name: "Front (Mecha)",
  12311. image: {
  12312. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12313. extra: 1,
  12314. bottom: 0.042
  12315. }
  12316. },
  12317. maw: {
  12318. height: math.unit(2.2, "feet"),
  12319. name: "Maw",
  12320. image: {
  12321. source: "./media/characters/lyra-von-wulf/maw.svg"
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Normal",
  12328. height: math.unit(12, "feet"),
  12329. default: true
  12330. },
  12331. {
  12332. name: "Classic",
  12333. height: math.unit(50, "feet")
  12334. },
  12335. {
  12336. name: "Macro",
  12337. height: math.unit(500, "feet")
  12338. },
  12339. {
  12340. name: "Megamacro",
  12341. height: math.unit(1, "mile")
  12342. },
  12343. {
  12344. name: "Gigamacro",
  12345. height: math.unit(400, "miles")
  12346. },
  12347. {
  12348. name: "Teramacro",
  12349. height: math.unit(22000, "miles")
  12350. },
  12351. {
  12352. name: "Solarmacro",
  12353. height: math.unit(8600000, "miles")
  12354. },
  12355. {
  12356. name: "Galactic",
  12357. height: math.unit(1057000, "lightyears")
  12358. },
  12359. ]
  12360. ))
  12361. characterMakers.push(() => makeCharacter(
  12362. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12363. {
  12364. front: {
  12365. height: math.unit(6 + 10 / 12, "feet"),
  12366. weight: math.unit(150, "lb"),
  12367. name: "Front",
  12368. image: {
  12369. source: "./media/characters/dixon/front.svg",
  12370. extra: 3361 / 3209,
  12371. bottom: 0.01
  12372. }
  12373. },
  12374. },
  12375. [
  12376. {
  12377. name: "Normal",
  12378. height: math.unit(6 + 10 / 12, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Big",
  12383. height: math.unit(12, "meters")
  12384. },
  12385. {
  12386. name: "Macro",
  12387. height: math.unit(500, "meters")
  12388. },
  12389. {
  12390. name: "Megamacro",
  12391. height: math.unit(2, "km")
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12397. {
  12398. front: {
  12399. height: math.unit(185, "cm"),
  12400. weight: math.unit(68, "kg"),
  12401. name: "Front",
  12402. image: {
  12403. source: "./media/characters/kauko/front.svg",
  12404. extra: 1455 / 1421,
  12405. bottom: 0.03
  12406. }
  12407. },
  12408. back: {
  12409. height: math.unit(185, "cm"),
  12410. weight: math.unit(68, "kg"),
  12411. name: "Back",
  12412. image: {
  12413. source: "./media/characters/kauko/back.svg",
  12414. extra: 1455 / 1421,
  12415. bottom: 0.004
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Normal",
  12422. height: math.unit(185, "cm"),
  12423. default: true
  12424. },
  12425. ]
  12426. ))
  12427. characterMakers.push(() => makeCharacter(
  12428. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12429. {
  12430. front: {
  12431. height: math.unit(6, "feet"),
  12432. weight: math.unit(150, "kg"),
  12433. name: "Front",
  12434. image: {
  12435. source: "./media/characters/varg/front.svg",
  12436. extra: 1108 / 1018,
  12437. bottom: 0.0375
  12438. }
  12439. },
  12440. },
  12441. [
  12442. {
  12443. name: "Normal",
  12444. height: math.unit(5, "meters")
  12445. },
  12446. {
  12447. name: "Macro",
  12448. height: math.unit(200, "meters")
  12449. },
  12450. {
  12451. name: "Megamacro",
  12452. height: math.unit(20, "kilometers")
  12453. },
  12454. {
  12455. name: "True Size",
  12456. height: math.unit(211, "km"),
  12457. default: true
  12458. },
  12459. {
  12460. name: "Gigamacro",
  12461. height: math.unit(1000, "km")
  12462. },
  12463. {
  12464. name: "Gigamacro+",
  12465. height: math.unit(8000, "km")
  12466. },
  12467. {
  12468. name: "Teramacro",
  12469. height: math.unit(1000000, "km")
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(7 + 7 / 12, "feet"),
  12478. weight: math.unit(267, "lb"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/dayza/front.svg",
  12482. extra: 1262 / 1200,
  12483. bottom: 0.035
  12484. }
  12485. },
  12486. side: {
  12487. height: math.unit(7 + 7 / 12, "feet"),
  12488. weight: math.unit(267, "lb"),
  12489. name: "Side",
  12490. image: {
  12491. source: "./media/characters/dayza/side.svg",
  12492. extra: 1295 / 1245,
  12493. bottom: 0.05
  12494. }
  12495. },
  12496. back: {
  12497. height: math.unit(7 + 7 / 12, "feet"),
  12498. weight: math.unit(267, "lb"),
  12499. name: "Back",
  12500. image: {
  12501. source: "./media/characters/dayza/back.svg",
  12502. extra: 1241 / 1170
  12503. }
  12504. },
  12505. },
  12506. [
  12507. {
  12508. name: "Normal",
  12509. height: math.unit(7 + 7 / 12, "feet"),
  12510. default: true
  12511. },
  12512. {
  12513. name: "Macro",
  12514. height: math.unit(155, "feet")
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12520. {
  12521. front: {
  12522. height: math.unit(6 + 5 / 12, "feet"),
  12523. weight: math.unit(160, "lb"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/xanthos/front.svg",
  12527. extra: 1,
  12528. bottom: 0.04
  12529. }
  12530. },
  12531. back: {
  12532. height: math.unit(6 + 5 / 12, "feet"),
  12533. weight: math.unit(160, "lb"),
  12534. name: "Back",
  12535. image: {
  12536. source: "./media/characters/xanthos/back.svg",
  12537. extra: 1,
  12538. bottom: 0.03
  12539. }
  12540. },
  12541. hand: {
  12542. height: math.unit(0.928, "feet"),
  12543. name: "Hand",
  12544. image: {
  12545. source: "./media/characters/xanthos/hand.svg"
  12546. }
  12547. },
  12548. foot: {
  12549. height: math.unit(1.286, "feet"),
  12550. name: "Foot",
  12551. image: {
  12552. source: "./media/characters/xanthos/foot.svg"
  12553. }
  12554. },
  12555. },
  12556. [
  12557. {
  12558. name: "Normal",
  12559. height: math.unit(6 + 5 / 12, "feet"),
  12560. default: true
  12561. },
  12562. {
  12563. name: "Normal+",
  12564. height: math.unit(6, "meters")
  12565. },
  12566. {
  12567. name: "Macro",
  12568. height: math.unit(40, "feet")
  12569. },
  12570. {
  12571. name: "Macro+",
  12572. height: math.unit(200, "meters")
  12573. },
  12574. {
  12575. name: "Megamacro",
  12576. height: math.unit(20, "km")
  12577. },
  12578. {
  12579. name: "Megamacro+",
  12580. height: math.unit(100, "km")
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(6 + 3 / 12, "feet"),
  12589. weight: math.unit(215, "lb"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/grynn/front.svg",
  12593. extra: 4627 / 4209,
  12594. bottom: 0.047
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Micro",
  12601. height: math.unit(6, "inches")
  12602. },
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(6 + 3 / 12, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Big",
  12610. height: math.unit(104, "feet")
  12611. },
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(944, "feet")
  12615. },
  12616. {
  12617. name: "Macro+",
  12618. height: math.unit(9480, "feet")
  12619. },
  12620. {
  12621. name: "Megamacro",
  12622. height: math.unit(78752, "feet")
  12623. },
  12624. {
  12625. name: "Megamacro+",
  12626. height: math.unit(630128, "feet")
  12627. },
  12628. {
  12629. name: "Megamacro++",
  12630. height: math.unit(3150695, "feet")
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(7 + 5 / 12, "feet"),
  12639. weight: math.unit(450, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/mocha-aura/front.svg",
  12643. extra: 1907 / 1817,
  12644. bottom: 0.04
  12645. }
  12646. },
  12647. back: {
  12648. height: math.unit(7 + 5 / 12, "feet"),
  12649. weight: math.unit(450, "lb"),
  12650. name: "Back",
  12651. image: {
  12652. source: "./media/characters/mocha-aura/back.svg",
  12653. extra: 1900 / 1825,
  12654. bottom: 0.045
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Nano",
  12661. height: math.unit(1, "nm")
  12662. },
  12663. {
  12664. name: "Megamicro",
  12665. height: math.unit(1, "mm")
  12666. },
  12667. {
  12668. name: "Micro",
  12669. height: math.unit(3, "inches")
  12670. },
  12671. {
  12672. name: "Normal",
  12673. height: math.unit(7 + 5 / 12, "feet"),
  12674. default: true
  12675. },
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(30, "feet")
  12679. },
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(3500, "feet")
  12683. },
  12684. {
  12685. name: "Teramacro",
  12686. height: math.unit(500000, "miles")
  12687. },
  12688. {
  12689. name: "Petamacro",
  12690. height: math.unit(50000000000000000, "parsecs")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(150, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/ilisha-devya/front.svg",
  12703. extra: 1,
  12704. bottom: 0.175
  12705. }
  12706. },
  12707. back: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(150, "lb"),
  12710. name: "Back",
  12711. image: {
  12712. source: "./media/characters/ilisha-devya/back.svg",
  12713. extra: 1,
  12714. bottom: 0.015
  12715. }
  12716. },
  12717. },
  12718. [
  12719. {
  12720. name: "Macro",
  12721. height: math.unit(500, "feet"),
  12722. default: true
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(10, "miles")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(100000, "miles")
  12731. },
  12732. {
  12733. name: "Examacro",
  12734. height: math.unit(1e9, "lightyears")
  12735. },
  12736. {
  12737. name: "Omniversal",
  12738. height: math.unit(1e33, "lightyears")
  12739. },
  12740. {
  12741. name: "Beyond Infinite",
  12742. height: math.unit(1e100, "lightyears")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12748. {
  12749. Side: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(150, "lb"),
  12752. name: "Side",
  12753. image: {
  12754. source: "./media/characters/mira/side.svg",
  12755. extra: 900 / 799,
  12756. bottom: 0.02
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Human Size",
  12763. height: math.unit(6, "feet")
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(100, "feet"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Megamacro",
  12772. height: math.unit(10, "miles")
  12773. },
  12774. {
  12775. name: "Gigamacro",
  12776. height: math.unit(25000, "miles")
  12777. },
  12778. {
  12779. name: "Teramacro",
  12780. height: math.unit(300, "AU")
  12781. },
  12782. {
  12783. name: "Full Size",
  12784. height: math.unit(4.5e10, "lightyears")
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/holly/front.svg",
  12797. extra: 639 / 606
  12798. }
  12799. },
  12800. back: {
  12801. height: math.unit(6, "feet"),
  12802. weight: math.unit(150, "lb"),
  12803. name: "Back",
  12804. image: {
  12805. source: "./media/characters/holly/back.svg",
  12806. extra: 623 / 598
  12807. }
  12808. },
  12809. frontWorking: {
  12810. height: math.unit(6, "feet"),
  12811. weight: math.unit(150, "lb"),
  12812. name: "Front (Working)",
  12813. image: {
  12814. source: "./media/characters/holly/front-working.svg",
  12815. extra: 607 / 577,
  12816. bottom: 0.048
  12817. }
  12818. },
  12819. },
  12820. [
  12821. {
  12822. name: "Normal",
  12823. height: math.unit(12 + 3 / 12, "feet"),
  12824. default: true
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(150, "lb"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/porter/front.svg",
  12837. extra: 1,
  12838. bottom: 0.01
  12839. }
  12840. },
  12841. frontRobes: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(150, "lb"),
  12844. name: "Front (Robes)",
  12845. image: {
  12846. source: "./media/characters/porter/front-robes.svg",
  12847. extra: 1.01,
  12848. bottom: 0.01
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Normal",
  12855. height: math.unit(11 + 9 / 12, "feet"),
  12856. default: true
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12862. {
  12863. legendary: {
  12864. height: math.unit(6, "feet"),
  12865. weight: math.unit(150, "lb"),
  12866. name: "Legendary",
  12867. image: {
  12868. source: "./media/characters/lucy/legendary.svg",
  12869. extra: 1355 / 1100,
  12870. bottom: 0.045
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Legendary",
  12877. height: math.unit(86882 * 2, "miles"),
  12878. default: true
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/drusilla/front.svg",
  12891. extra: 678 / 635,
  12892. bottom: 0.03
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(150, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/drusilla/back.svg",
  12901. extra: 678 / 635,
  12902. bottom: 0.005
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Macro",
  12909. height: math.unit(100, "feet")
  12910. },
  12911. {
  12912. name: "Canon Height",
  12913. height: math.unit(2000, "feet"),
  12914. default: true
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(6, "feet"),
  12923. weight: math.unit(180, "lb"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/renard-thatch/front.svg",
  12927. extra: 2411 / 2275,
  12928. bottom: 0.01
  12929. }
  12930. },
  12931. frontPosing: {
  12932. height: math.unit(6, "feet"),
  12933. weight: math.unit(180, "lb"),
  12934. name: "Front (Posing)",
  12935. image: {
  12936. source: "./media/characters/renard-thatch/front-posing.svg",
  12937. extra: 2381 / 2261,
  12938. bottom: 0.01
  12939. }
  12940. },
  12941. back: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(180, "lb"),
  12944. name: "Back",
  12945. image: {
  12946. source: "./media/characters/renard-thatch/back.svg",
  12947. extra: 2428 / 2288
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Micro",
  12954. height: math.unit(3, "inches")
  12955. },
  12956. {
  12957. name: "Default",
  12958. height: math.unit(6, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(75, "feet")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(1450, "feet"),
  12972. weight: math.unit(1.21e6, "tons"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/sekvra/front.svg",
  12976. extra: 1,
  12977. bottom: 0.03
  12978. }
  12979. },
  12980. frontClothed: {
  12981. height: math.unit(1450, "feet"),
  12982. weight: math.unit(1.21e6, "tons"),
  12983. name: "Front (Clothed)",
  12984. image: {
  12985. source: "./media/characters/sekvra/front-clothed.svg",
  12986. extra: 1,
  12987. bottom: 0.03
  12988. }
  12989. },
  12990. side: {
  12991. height: math.unit(1450, "feet"),
  12992. weight: math.unit(1.21e6, "tons"),
  12993. name: "Side",
  12994. image: {
  12995. source: "./media/characters/sekvra/side.svg",
  12996. extra: 1,
  12997. bottom: 0.025
  12998. }
  12999. },
  13000. back: {
  13001. height: math.unit(1450, "feet"),
  13002. weight: math.unit(1.21e6, "tons"),
  13003. name: "Back",
  13004. image: {
  13005. source: "./media/characters/sekvra/back.svg",
  13006. extra: 1,
  13007. bottom: 0.005
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Macro",
  13014. height: math.unit(1450, "feet"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Megamacro",
  13019. height: math.unit(15000, "feet")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/carmine/front.svg",
  13032. extra: 1,
  13033. bottom: 0.035
  13034. }
  13035. },
  13036. frontArmor: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Front (Armor)",
  13040. image: {
  13041. source: "./media/characters/carmine/front-armor.svg",
  13042. extra: 1,
  13043. bottom: 0.035
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Large",
  13050. height: math.unit(1, "mile")
  13051. },
  13052. {
  13053. name: "Huge",
  13054. height: math.unit(40, "miles"),
  13055. default: true
  13056. },
  13057. {
  13058. name: "Colossal",
  13059. height: math.unit(2500, "miles")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/elyssia/front.svg",
  13072. extra: 2201 / 2035,
  13073. bottom: 0.05
  13074. }
  13075. },
  13076. frontClothed: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(150, "lb"),
  13079. name: "Front (Clothed)",
  13080. image: {
  13081. source: "./media/characters/elyssia/front-clothed.svg",
  13082. extra: 2201 / 2035,
  13083. bottom: 0.05
  13084. }
  13085. },
  13086. back: {
  13087. height: math.unit(6, "feet"),
  13088. weight: math.unit(150, "lb"),
  13089. name: "Back",
  13090. image: {
  13091. source: "./media/characters/elyssia/back.svg",
  13092. extra: 2201 / 2035,
  13093. bottom: 0.013
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Smaller",
  13100. height: math.unit(150, "feet")
  13101. },
  13102. {
  13103. name: "Standard",
  13104. height: math.unit(1400, "feet"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Distracted",
  13109. height: math.unit(15000, "feet")
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(7 + 4 / 12, "feet"),
  13118. weight: math.unit(500, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/geno-maxwell/front.svg",
  13122. extra: 2207 / 2040,
  13123. bottom: 0.015
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Micro",
  13130. height: math.unit(3, "inches")
  13131. },
  13132. {
  13133. name: "Normal",
  13134. height: math.unit(7 + 4 / 12, "feet"),
  13135. default: true
  13136. },
  13137. {
  13138. name: "Macro",
  13139. height: math.unit(220, "feet")
  13140. },
  13141. {
  13142. name: "Megamacro",
  13143. height: math.unit(11, "miles")
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(7 + 4 / 12, "feet"),
  13152. weight: math.unit(500, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/regena-maxwell/front.svg",
  13156. extra: 3115 / 2770,
  13157. bottom: 0.02
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Normal",
  13164. height: math.unit(7 + 4 / 12, "feet"),
  13165. default: true
  13166. },
  13167. {
  13168. name: "Macro",
  13169. height: math.unit(220, "feet")
  13170. },
  13171. {
  13172. name: "Megamacro",
  13173. height: math.unit(11, "miles")
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13179. {
  13180. front: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Front",
  13184. image: {
  13185. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13186. extra: 860 / 690,
  13187. bottom: 0.03
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(1.7, "meters"),
  13195. default: true
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/quilly/front.svg",
  13208. extra: 890 / 776
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Gigamacro",
  13215. height: math.unit(404090, "miles"),
  13216. default: true
  13217. },
  13218. ]
  13219. ))
  13220. characterMakers.push(() => makeCharacter(
  13221. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13222. {
  13223. front: {
  13224. height: math.unit(7 + 8 / 12, "feet"),
  13225. weight: math.unit(350, "lb"),
  13226. name: "Front",
  13227. image: {
  13228. source: "./media/characters/tempest/front.svg",
  13229. extra: 1175 / 1086,
  13230. bottom: 0.02
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Normal",
  13237. height: math.unit(7 + 8 / 12, "feet"),
  13238. default: true
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13244. {
  13245. side: {
  13246. height: math.unit(4 + 5 / 12, "feet"),
  13247. weight: math.unit(80, "lb"),
  13248. name: "Side",
  13249. image: {
  13250. source: "./media/characters/rodger/side.svg",
  13251. extra: 1235 / 1118
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Micro",
  13258. height: math.unit(1, "inch")
  13259. },
  13260. {
  13261. name: "Normal",
  13262. height: math.unit(4 + 5 / 12, "feet"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Macro",
  13267. height: math.unit(120, "feet")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/danyel/front.svg",
  13280. extra: 1185 / 1123,
  13281. bottom: 0.05
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Shrunken",
  13288. height: math.unit(0.5, "mm")
  13289. },
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(1, "mm"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Upsized",
  13297. height: math.unit(5 + 5 / 12, "feet")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(5 + 6 / 12, "feet"),
  13306. weight: math.unit(200, "lb"),
  13307. name: "Front",
  13308. image: {
  13309. source: "./media/characters/vivian-bijoux/front.svg",
  13310. extra: 1,
  13311. bottom: 0.072
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(5 + 6 / 12, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Bad Dream",
  13323. height: math.unit(500, "feet")
  13324. },
  13325. {
  13326. name: "Nightmare",
  13327. height: math.unit(500, "miles")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(6 + 1 / 12, "feet"),
  13336. weight: math.unit(260, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/zeta/front.svg",
  13340. extra: 1968 / 1889,
  13341. bottom: 0.06
  13342. }
  13343. },
  13344. back: {
  13345. height: math.unit(6 + 1 / 12, "feet"),
  13346. weight: math.unit(260, "lb"),
  13347. name: "Back",
  13348. image: {
  13349. source: "./media/characters/zeta/back.svg",
  13350. extra: 1944 / 1858,
  13351. bottom: 0.03
  13352. }
  13353. },
  13354. hand: {
  13355. height: math.unit(1.112, "feet"),
  13356. name: "Hand",
  13357. image: {
  13358. source: "./media/characters/zeta/hand.svg"
  13359. }
  13360. },
  13361. foot: {
  13362. height: math.unit(1.48, "feet"),
  13363. name: "Foot",
  13364. image: {
  13365. source: "./media/characters/zeta/foot.svg"
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Micro",
  13372. height: math.unit(6, "inches")
  13373. },
  13374. {
  13375. name: "Normal",
  13376. height: math.unit(6 + 1 / 12, "feet"),
  13377. default: true
  13378. },
  13379. {
  13380. name: "Macro",
  13381. height: math.unit(20, "feet")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(6, "feet"),
  13390. weight: math.unit(150, "lb"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/jamie-larsen/front.svg",
  13394. extra: 962 / 933,
  13395. bottom: 0.02
  13396. }
  13397. },
  13398. back: {
  13399. height: math.unit(6, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Back",
  13402. image: {
  13403. source: "./media/characters/jamie-larsen/back.svg",
  13404. extra: 997 / 946
  13405. }
  13406. },
  13407. },
  13408. [
  13409. {
  13410. name: "Macro",
  13411. height: math.unit(28 + 7 / 12, "feet"),
  13412. default: true
  13413. },
  13414. {
  13415. name: "Macro+",
  13416. height: math.unit(180, "feet")
  13417. },
  13418. {
  13419. name: "Megamacro",
  13420. height: math.unit(10, "miles")
  13421. },
  13422. {
  13423. name: "Gigamacro",
  13424. height: math.unit(200000, "miles")
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(6, "feet"),
  13433. weight: math.unit(120, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/vance/front.svg",
  13437. extra: 1980 / 1890,
  13438. bottom: 0.09
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(120, "lb"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/vance/back.svg",
  13447. extra: 2081 / 1994,
  13448. bottom: 0.014
  13449. }
  13450. },
  13451. hand: {
  13452. height: math.unit(0.88, "feet"),
  13453. name: "Hand",
  13454. image: {
  13455. source: "./media/characters/vance/hand.svg"
  13456. }
  13457. },
  13458. foot: {
  13459. height: math.unit(0.64, "feet"),
  13460. name: "Foot",
  13461. image: {
  13462. source: "./media/characters/vance/foot.svg"
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Small",
  13469. height: math.unit(90, "feet"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Macro",
  13474. height: math.unit(100, "meters")
  13475. },
  13476. {
  13477. name: "Megamacro",
  13478. height: math.unit(15, "miles")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(180, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/xochitl/front.svg",
  13491. extra: 2297 / 2261,
  13492. bottom: 0.065
  13493. }
  13494. },
  13495. back: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(180, "lb"),
  13498. name: "Back",
  13499. image: {
  13500. source: "./media/characters/xochitl/back.svg",
  13501. extra: 2386 / 2354,
  13502. bottom: 0.01
  13503. }
  13504. },
  13505. foot: {
  13506. height: math.unit(6 / 5 * 1.15, "feet"),
  13507. weight: math.unit(150, "lb"),
  13508. name: "Foot",
  13509. image: {
  13510. source: "./media/characters/xochitl/foot.svg"
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(80, "feet")
  13518. },
  13519. {
  13520. name: "Macro+",
  13521. height: math.unit(400, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Gigamacro",
  13526. height: math.unit(80000, "miles")
  13527. },
  13528. {
  13529. name: "Gigamacro+",
  13530. height: math.unit(400000, "miles")
  13531. },
  13532. {
  13533. name: "Teramacro",
  13534. height: math.unit(300, "AU")
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(150, "lb"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/vincent/front.svg",
  13547. extra: 1130 / 1080,
  13548. bottom: 0.055
  13549. }
  13550. },
  13551. beak: {
  13552. height: math.unit(6 * 0.1, "feet"),
  13553. name: "Beak",
  13554. image: {
  13555. source: "./media/characters/vincent/beak.svg"
  13556. }
  13557. },
  13558. hand: {
  13559. height: math.unit(6 * 0.85, "feet"),
  13560. weight: math.unit(150, "lb"),
  13561. name: "Hand",
  13562. image: {
  13563. source: "./media/characters/vincent/hand.svg"
  13564. }
  13565. },
  13566. foot: {
  13567. height: math.unit(6 * 0.19, "feet"),
  13568. weight: math.unit(150, "lb"),
  13569. name: "Foot",
  13570. image: {
  13571. source: "./media/characters/vincent/foot.svg"
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Base",
  13578. height: math.unit(6 + 5 / 12, "feet"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Macro",
  13583. height: math.unit(300, "feet")
  13584. },
  13585. {
  13586. name: "Megamacro",
  13587. height: math.unit(2, "miles")
  13588. },
  13589. {
  13590. name: "Gigamacro",
  13591. height: math.unit(1000, "miles")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13597. {
  13598. front: {
  13599. height: math.unit(2, "meters"),
  13600. weight: math.unit(500, "kg"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/coatl/front.svg",
  13604. extra: 3948 / 3500,
  13605. bottom: 0.082
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(4, "meters")
  13613. },
  13614. {
  13615. name: "Macro",
  13616. height: math.unit(100, "meters"),
  13617. default: true
  13618. },
  13619. {
  13620. name: "Macro+",
  13621. height: math.unit(300, "meters")
  13622. },
  13623. {
  13624. name: "Megamacro",
  13625. height: math.unit(3, "gigameters")
  13626. },
  13627. {
  13628. name: "Megamacro+",
  13629. height: math.unit(300, "terameters")
  13630. },
  13631. {
  13632. name: "Megamacro++",
  13633. height: math.unit(3, "lightyears")
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(6, "feet"),
  13642. weight: math.unit(50, "kg"),
  13643. name: "front",
  13644. image: {
  13645. source: "./media/characters/shiroryu/front.svg",
  13646. extra: 1990 / 1935
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Mortal Mingling",
  13653. height: math.unit(3, "meters")
  13654. },
  13655. {
  13656. name: "Kaiju-ish",
  13657. height: math.unit(250, "meters")
  13658. },
  13659. {
  13660. name: "Somewhat Godly",
  13661. height: math.unit(400, "km"),
  13662. default: true
  13663. },
  13664. {
  13665. name: "Planetary",
  13666. height: math.unit(300, "megameters")
  13667. },
  13668. {
  13669. name: "Galaxy-dwarfing",
  13670. height: math.unit(450, "kiloparsecs")
  13671. },
  13672. {
  13673. name: "Universe Eater",
  13674. height: math.unit(150, "gigaparsecs")
  13675. },
  13676. {
  13677. name: "Almost Immeasurable",
  13678. height: math.unit(1.3e266, "yottaparsecs")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/umeko/front.svg",
  13691. extra: 1,
  13692. bottom: 0.019
  13693. }
  13694. },
  13695. frontArmored: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front (Armored)",
  13699. image: {
  13700. source: "./media/characters/umeko/front-armored.svg",
  13701. extra: 1,
  13702. bottom: 0.021
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Macro",
  13709. height: math.unit(220, "feet"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Guardian Dragon",
  13714. height: math.unit(50, "miles")
  13715. },
  13716. {
  13717. name: "Cosmic",
  13718. height: math.unit(800000, "miles")
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(150, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/cassidy/front.svg",
  13731. extra: 1,
  13732. bottom: 0.043
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Canon Height",
  13739. height: math.unit(120, "feet"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Macro+",
  13744. height: math.unit(400, "feet")
  13745. },
  13746. {
  13747. name: "Macro++",
  13748. height: math.unit(4000, "feet")
  13749. },
  13750. {
  13751. name: "Megamacro",
  13752. height: math.unit(3, "miles")
  13753. },
  13754. ]
  13755. ))
  13756. characterMakers.push(() => makeCharacter(
  13757. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13758. {
  13759. front: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(150, "lb"),
  13762. name: "Front",
  13763. image: {
  13764. source: "./media/characters/isaac/front.svg",
  13765. extra: 896 / 815,
  13766. bottom: 0.11
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Human Size",
  13773. height: math.unit(8, "feet"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(400, "feet")
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(50, "miles")
  13783. },
  13784. {
  13785. name: "Canon Height",
  13786. height: math.unit(200, "AU")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13792. {
  13793. front: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(72, "kg"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/sleekit/front.svg",
  13799. extra: 4693 / 4487,
  13800. bottom: 0.012
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Minimum Height",
  13807. height: math.unit(10, "meters")
  13808. },
  13809. {
  13810. name: "Smaller",
  13811. height: math.unit(25, "meters")
  13812. },
  13813. {
  13814. name: "Larger",
  13815. height: math.unit(38, "meters"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Maximum height",
  13820. height: math.unit(100, "meters")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(150, "lb"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/nillia/front.svg",
  13833. extra: 2195 / 2037,
  13834. bottom: 0.005
  13835. }
  13836. },
  13837. back: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(150, "lb"),
  13840. name: "Back",
  13841. image: {
  13842. source: "./media/characters/nillia/back.svg",
  13843. extra: 2195 / 2037,
  13844. bottom: 0.005
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Canon Height",
  13851. height: math.unit(489, "feet"),
  13852. default: true
  13853. }
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/mesmyriza/front.svg",
  13865. extra: 2067 / 1784,
  13866. bottom: 0.035
  13867. }
  13868. },
  13869. foot: {
  13870. height: math.unit(6 / (250 / 35), "feet"),
  13871. name: "Foot",
  13872. image: {
  13873. source: "./media/characters/mesmyriza/foot.svg"
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Macro",
  13880. height: math.unit(457, "meters"),
  13881. default: true
  13882. },
  13883. {
  13884. name: "Megamacro",
  13885. height: math.unit(8, "megameters")
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(250, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/saudade/front.svg",
  13898. extra: 1172 / 1139,
  13899. bottom: 0.035
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Micro",
  13906. height: math.unit(3, "inches")
  13907. },
  13908. {
  13909. name: "Normal",
  13910. height: math.unit(6, "feet"),
  13911. default: true
  13912. },
  13913. {
  13914. name: "Macro",
  13915. height: math.unit(50, "feet")
  13916. },
  13917. {
  13918. name: "Megamacro",
  13919. height: math.unit(2800, "feet")
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13925. {
  13926. front: {
  13927. height: math.unit(5 + 4 / 12, "feet"),
  13928. weight: math.unit(100, "lb"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/keireer/front.svg",
  13932. extra: 716 / 666,
  13933. bottom: 0.05
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(5 + 4 / 12, "feet"),
  13941. default: true
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(6, "feet"),
  13950. weight: math.unit(90, "kg"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/mirja/front.svg",
  13954. extra: 1789 / 1683,
  13955. bottom: 0.05
  13956. }
  13957. },
  13958. frontDressed: {
  13959. height: math.unit(6, "feet"),
  13960. weight: math.unit(90, "lb"),
  13961. name: "Front (Dressed)",
  13962. image: {
  13963. source: "./media/characters/mirja/front-dressed.svg",
  13964. extra: 1789 / 1683,
  13965. bottom: 0.05
  13966. }
  13967. },
  13968. back: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(90, "lb"),
  13971. name: "Back",
  13972. image: {
  13973. source: "./media/characters/mirja/back.svg",
  13974. extra: 953 / 917,
  13975. bottom: 0.017
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "\"Incognito\"",
  13982. height: math.unit(3, "meters")
  13983. },
  13984. {
  13985. name: "Strolling Size",
  13986. height: math.unit(15, "km")
  13987. },
  13988. {
  13989. name: "Larger Strolling Size",
  13990. height: math.unit(400, "km")
  13991. },
  13992. {
  13993. name: "Preferred Size",
  13994. height: math.unit(5000, "km")
  13995. },
  13996. {
  13997. name: "True Size",
  13998. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13999. default: true
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(15, "feet"),
  14008. weight: math.unit(880, "kg"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/nightraver/front.svg",
  14012. extra: 2444 / 2160,
  14013. bottom: 0.027
  14014. }
  14015. },
  14016. back: {
  14017. height: math.unit(15, "feet"),
  14018. weight: math.unit(880, "kg"),
  14019. name: "Back",
  14020. image: {
  14021. source: "./media/characters/nightraver/back.svg",
  14022. extra: 2309 / 2180,
  14023. bottom: 0.005
  14024. }
  14025. },
  14026. sole: {
  14027. height: math.unit(2.878, "feet"),
  14028. name: "Sole",
  14029. image: {
  14030. source: "./media/characters/nightraver/sole.svg"
  14031. }
  14032. },
  14033. foot: {
  14034. height: math.unit(2.285, "feet"),
  14035. name: "Foot",
  14036. image: {
  14037. source: "./media/characters/nightraver/foot.svg"
  14038. }
  14039. },
  14040. maw: {
  14041. height: math.unit(2.67, "feet"),
  14042. name: "Maw",
  14043. image: {
  14044. source: "./media/characters/nightraver/maw.svg"
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(1, "cm")
  14052. },
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(15, "feet"),
  14056. default: true
  14057. },
  14058. {
  14059. name: "Macro",
  14060. height: math.unit(300, "feet")
  14061. },
  14062. {
  14063. name: "Megamacro",
  14064. height: math.unit(300, "miles")
  14065. },
  14066. {
  14067. name: "Gigamacro",
  14068. height: math.unit(10000, "miles")
  14069. },
  14070. ]
  14071. ))
  14072. characterMakers.push(() => makeCharacter(
  14073. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14074. {
  14075. side: {
  14076. height: math.unit(2, "inches"),
  14077. weight: math.unit(5, "grams"),
  14078. name: "Side",
  14079. image: {
  14080. source: "./media/characters/arc/side.svg"
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Micro",
  14087. height: math.unit(2, "inches"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(1.1938, "meters"),
  14097. weight: math.unit(54, "kg"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/nebula-shahar/front.svg",
  14101. extra: 1642 / 1436,
  14102. bottom: 0.06
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Megamicro",
  14109. height: math.unit(0.3, "mm")
  14110. },
  14111. {
  14112. name: "Micro",
  14113. height: math.unit(3, "cm")
  14114. },
  14115. {
  14116. name: "Normal",
  14117. height: math.unit(138, "cm"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(30, "m")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(5.24, "feet"),
  14131. weight: math.unit(150, "lb"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/shayla/front.svg",
  14135. extra: 1512 / 1414,
  14136. bottom: 0.01
  14137. }
  14138. },
  14139. back: {
  14140. height: math.unit(5.24, "feet"),
  14141. weight: math.unit(150, "lb"),
  14142. name: "Back",
  14143. image: {
  14144. source: "./media/characters/shayla/back.svg",
  14145. extra: 1512 / 1414
  14146. }
  14147. },
  14148. hand: {
  14149. height: math.unit(0.7781496062992126, "feet"),
  14150. name: "Hand",
  14151. image: {
  14152. source: "./media/characters/shayla/hand.svg"
  14153. }
  14154. },
  14155. foot: {
  14156. height: math.unit(1.4206036745406823, "feet"),
  14157. name: "Foot",
  14158. image: {
  14159. source: "./media/characters/shayla/foot.svg"
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Micro",
  14166. height: math.unit(0.32, "feet")
  14167. },
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(5.24, "feet"),
  14171. default: true
  14172. },
  14173. {
  14174. name: "Macro",
  14175. height: math.unit(492.12, "feet")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(186.41, "miles")
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(2.2, "m"),
  14188. weight: math.unit(120, "kg"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/pia-jr/front.svg",
  14192. extra: 1000 / 970,
  14193. bottom: 0.035
  14194. }
  14195. },
  14196. hand: {
  14197. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14198. name: "Hand",
  14199. image: {
  14200. source: "./media/characters/pia-jr/hand.svg"
  14201. }
  14202. },
  14203. paw: {
  14204. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14205. name: "Paw",
  14206. image: {
  14207. source: "./media/characters/pia-jr/paw.svg"
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Micro",
  14214. height: math.unit(1.2, "cm")
  14215. },
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(2.2, "m"),
  14219. default: true
  14220. },
  14221. {
  14222. name: "Macro",
  14223. height: math.unit(180, "m")
  14224. },
  14225. {
  14226. name: "Megamacro",
  14227. height: math.unit(420, "km")
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(2, "m"),
  14236. weight: math.unit(115, "kg"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/pia-sr/front.svg",
  14240. extra: 760 / 730,
  14241. bottom: 0.015
  14242. }
  14243. },
  14244. back: {
  14245. height: math.unit(2, "m"),
  14246. weight: math.unit(115, "kg"),
  14247. name: "Back",
  14248. image: {
  14249. source: "./media/characters/pia-sr/back.svg",
  14250. extra: 760 / 730,
  14251. bottom: 0.01
  14252. }
  14253. },
  14254. hand: {
  14255. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14256. name: "Hand",
  14257. image: {
  14258. source: "./media/characters/pia-sr/hand.svg"
  14259. }
  14260. },
  14261. foot: {
  14262. height: math.unit(1.83, "feet"),
  14263. name: "Foot",
  14264. image: {
  14265. source: "./media/characters/pia-sr/foot.svg"
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Micro",
  14272. height: math.unit(88, "mm")
  14273. },
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(2, "m"),
  14277. default: true
  14278. },
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(200, "m")
  14282. },
  14283. {
  14284. name: "Megamacro",
  14285. height: math.unit(420, "km")
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(8 + 2 / 12, "feet"),
  14294. weight: math.unit(300, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/kibibyte/front.svg",
  14298. extra: 2221 / 2098,
  14299. bottom: 0.04
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(8 + 2 / 12, "feet"),
  14307. default: true
  14308. },
  14309. {
  14310. name: "Socialable Macro",
  14311. height: math.unit(50, "feet")
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(300, "feet")
  14316. },
  14317. {
  14318. name: "Megamacro",
  14319. height: math.unit(500, "miles")
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(6, "feet"),
  14328. weight: math.unit(150, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/felix/front.svg",
  14332. extra: 762 / 722,
  14333. bottom: 0.02
  14334. }
  14335. },
  14336. frontClothed: {
  14337. height: math.unit(6, "feet"),
  14338. weight: math.unit(150, "lb"),
  14339. name: "Front (Clothed)",
  14340. image: {
  14341. source: "./media/characters/felix/front-clothed.svg",
  14342. extra: 762 / 722,
  14343. bottom: 0.02
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(6 + 8 / 12, "feet"),
  14351. default: true
  14352. },
  14353. {
  14354. name: "Macro",
  14355. height: math.unit(2600, "feet")
  14356. },
  14357. {
  14358. name: "Megamacro",
  14359. height: math.unit(450, "miles")
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14365. {
  14366. front: {
  14367. height: math.unit(6 + 1 / 12, "feet"),
  14368. weight: math.unit(250, "lb"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/tobo/front.svg",
  14372. extra: 608 / 586,
  14373. bottom: 0.023
  14374. }
  14375. },
  14376. back: {
  14377. height: math.unit(6 + 1 / 12, "feet"),
  14378. weight: math.unit(250, "lb"),
  14379. name: "Back",
  14380. image: {
  14381. source: "./media/characters/tobo/back.svg",
  14382. extra: 608 / 586
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Nano",
  14389. height: math.unit(2, "nm")
  14390. },
  14391. {
  14392. name: "Megamicro",
  14393. height: math.unit(0.1, "mm")
  14394. },
  14395. {
  14396. name: "Micro",
  14397. height: math.unit(1, "inch"),
  14398. default: true
  14399. },
  14400. {
  14401. name: "Human-sized",
  14402. height: math.unit(6 + 1 / 12, "feet")
  14403. },
  14404. {
  14405. name: "Macro",
  14406. height: math.unit(250, "feet")
  14407. },
  14408. {
  14409. name: "Megamacro",
  14410. height: math.unit(75, "miles")
  14411. },
  14412. {
  14413. name: "Texas-sized",
  14414. height: math.unit(750, "miles")
  14415. },
  14416. {
  14417. name: "Teramacro",
  14418. height: math.unit(50000, "miles")
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14424. {
  14425. front: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(269, "lb"),
  14428. name: "Front",
  14429. image: {
  14430. source: "./media/characters/danny-kapowsky/front.svg",
  14431. extra: 766 / 736,
  14432. bottom: 0.044
  14433. }
  14434. },
  14435. back: {
  14436. height: math.unit(6, "feet"),
  14437. weight: math.unit(269, "lb"),
  14438. name: "Back",
  14439. image: {
  14440. source: "./media/characters/danny-kapowsky/back.svg",
  14441. extra: 797 / 760,
  14442. bottom: 0.025
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Macro",
  14449. height: math.unit(150, "feet"),
  14450. default: true
  14451. },
  14452. {
  14453. name: "Macro+",
  14454. height: math.unit(200, "feet")
  14455. },
  14456. {
  14457. name: "Macro++",
  14458. height: math.unit(300, "feet")
  14459. },
  14460. {
  14461. name: "Macro+++",
  14462. height: math.unit(400, "feet")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14468. {
  14469. side: {
  14470. height: math.unit(6, "feet"),
  14471. weight: math.unit(170, "lb"),
  14472. name: "Side",
  14473. image: {
  14474. source: "./media/characters/finn/side.svg",
  14475. extra: 1953 / 1807,
  14476. bottom: 0.057
  14477. }
  14478. },
  14479. },
  14480. [
  14481. {
  14482. name: "Megamacro",
  14483. height: math.unit(14445, "feet"),
  14484. default: true
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14490. {
  14491. front: {
  14492. height: math.unit(5 + 6 / 12, "feet"),
  14493. weight: math.unit(125, "lb"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/roy/front.svg",
  14497. extra: 1,
  14498. bottom: 0.11
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Micro",
  14505. height: math.unit(3, "inches"),
  14506. default: true
  14507. },
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(5 + 6 / 12, "feet")
  14511. },
  14512. {
  14513. name: "Lesser Macro",
  14514. height: math.unit(60, "feet")
  14515. },
  14516. {
  14517. name: "Greater Macro",
  14518. height: math.unit(120, "feet")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(100, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/aevsivs/front.svg",
  14531. extra: 1,
  14532. bottom: 0.03
  14533. }
  14534. },
  14535. back: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(100, "lb"),
  14538. name: "Back",
  14539. image: {
  14540. source: "./media/characters/aevsivs/back.svg"
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Micro",
  14547. height: math.unit(2, "inches"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(5, "feet")
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(5 + 7 / 12, "feet"),
  14561. weight: math.unit(159, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/hildegard/front.svg",
  14565. extra: 289 / 269,
  14566. bottom: 7.63 / 297.8
  14567. }
  14568. },
  14569. back: {
  14570. height: math.unit(5 + 7 / 12, "feet"),
  14571. weight: math.unit(159, "lb"),
  14572. name: "Back",
  14573. image: {
  14574. source: "./media/characters/hildegard/back.svg",
  14575. extra: 280 / 260,
  14576. bottom: 2.3 / 282
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Normal",
  14583. height: math.unit(5 + 7 / 12, "feet"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14590. {
  14591. bernard: {
  14592. height: math.unit(2 + 7 / 12, "feet"),
  14593. weight: math.unit(66, "lb"),
  14594. name: "Bernard",
  14595. rename: true,
  14596. image: {
  14597. source: "./media/characters/bernard-wilder/bernard.svg",
  14598. extra: 192 / 128,
  14599. bottom: 0.05
  14600. }
  14601. },
  14602. wilder: {
  14603. height: math.unit(5 + 8 / 12, "feet"),
  14604. weight: math.unit(143, "lb"),
  14605. name: "Wilder",
  14606. rename: true,
  14607. image: {
  14608. source: "./media/characters/bernard-wilder/wilder.svg",
  14609. extra: 361 / 312,
  14610. bottom: 0.02
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(2 + 7 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14624. {
  14625. anthro: {
  14626. height: math.unit(6 + 1 / 12, "feet"),
  14627. weight: math.unit(155, "lb"),
  14628. name: "Anthro",
  14629. image: {
  14630. source: "./media/characters/hearth/anthro.svg",
  14631. extra: 260 / 250,
  14632. bottom: 0.02
  14633. }
  14634. },
  14635. feral: {
  14636. height: math.unit(3.78, "feet"),
  14637. weight: math.unit(35, "kg"),
  14638. name: "Feral",
  14639. image: {
  14640. source: "./media/characters/hearth/feral.svg",
  14641. extra: 153 / 135,
  14642. bottom: 0.03
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(6 + 1 / 12, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(182, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/ingrid/front.svg",
  14663. extra: 294 / 268,
  14664. bottom: 0.027
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(6, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14678. {
  14679. eevee: {
  14680. height: math.unit(2 + 10 / 12, "feet"),
  14681. weight: math.unit(86, "lb"),
  14682. name: "Malgam",
  14683. image: {
  14684. source: "./media/characters/malgam/eevee.svg",
  14685. extra: 218 / 180,
  14686. bottom: 0.2
  14687. }
  14688. },
  14689. sylveon: {
  14690. height: math.unit(4, "feet"),
  14691. weight: math.unit(101, "lb"),
  14692. name: "Future Malgam",
  14693. rename: true,
  14694. image: {
  14695. source: "./media/characters/malgam/sylveon.svg",
  14696. extra: 371 / 325,
  14697. bottom: 0.015
  14698. }
  14699. },
  14700. gigantamax: {
  14701. height: math.unit(50, "feet"),
  14702. name: "Gigantamax Malgam",
  14703. rename: true,
  14704. image: {
  14705. source: "./media/characters/malgam/gigantamax.svg"
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Normal",
  14712. height: math.unit(2 + 10 / 12, "feet"),
  14713. default: true
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(5 + 11 / 12, "feet"),
  14722. weight: math.unit(188, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/fleur/front.svg",
  14726. extra: 309 / 283,
  14727. bottom: 0.007
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(5 + 11 / 12, "feet"),
  14735. default: true
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(5 + 4 / 12, "feet"),
  14744. weight: math.unit(122, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/jude/front.svg",
  14748. extra: 288 / 273,
  14749. bottom: 0.03
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Normal",
  14756. height: math.unit(5 + 4 / 12, "feet"),
  14757. default: true
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(5 + 11 / 12, "feet"),
  14766. weight: math.unit(190, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/seara/front.svg",
  14770. extra: 1,
  14771. bottom: 0.05
  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: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(16 + 5 / 12, "feet"),
  14788. weight: math.unit(524, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/caspian/front.svg",
  14792. extra: 1,
  14793. bottom: 0.04
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(16 + 5 / 12, "feet"),
  14801. default: true
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14807. {
  14808. front: {
  14809. height: math.unit(5 + 7 / 12, "feet"),
  14810. weight: math.unit(170, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/mika/front.svg",
  14814. extra: 1,
  14815. bottom: 0.016
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(5 + 7 / 12, "feet"),
  14823. default: true
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(6 + 2 / 12, "feet"),
  14832. weight: math.unit(268, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/sol/front.svg",
  14836. extra: 247 / 231,
  14837. bottom: 0.05
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(6 + 2 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14851. {
  14852. buizel: {
  14853. height: math.unit(2 + 5 / 12, "feet"),
  14854. weight: math.unit(87, "lb"),
  14855. name: "Buizel",
  14856. image: {
  14857. source: "./media/characters/umiko/buizel.svg",
  14858. extra: 172 / 157,
  14859. bottom: 0.01
  14860. }
  14861. },
  14862. floatzel: {
  14863. height: math.unit(5 + 9 / 12, "feet"),
  14864. weight: math.unit(250, "lb"),
  14865. name: "Floatzel",
  14866. image: {
  14867. source: "./media/characters/umiko/floatzel.svg",
  14868. extra: 262 / 248
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(2 + 5 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6 + 2 / 12, "feet"),
  14885. weight: math.unit(146, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/iliac/front.svg",
  14889. extra: 389 / 365,
  14890. bottom: 0.035
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(6 + 2 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(170, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/topaz/front.svg",
  14911. extra: 317 / 303,
  14912. bottom: 0.055
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(6, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(5 + 11 / 12, "feet"),
  14929. weight: math.unit(144, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/gabriel/front.svg",
  14933. extra: 285 / 262,
  14934. bottom: 0.004
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(5 + 11 / 12, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14948. {
  14949. side: {
  14950. height: math.unit(6 + 5 / 12, "feet"),
  14951. weight: math.unit(300, "lb"),
  14952. name: "Side",
  14953. image: {
  14954. source: "./media/characters/tempest-suicune/side.svg",
  14955. extra: 195 / 154,
  14956. bottom: 0.04
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(6 + 5 / 12, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(7 + 2 / 12, "feet"),
  14973. weight: math.unit(322, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/vulcan/front.svg",
  14977. extra: 154 / 147,
  14978. bottom: 0.04
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(7 + 2 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(5 + 10 / 12, "feet"),
  14995. weight: math.unit(264, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/gault/front.svg",
  14999. extra: 161 / 140,
  15000. bottom: 0.028
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(5 + 10 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(6, "feet"),
  15017. weight: math.unit(150, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/shard/front.svg",
  15021. extra: 273 / 238,
  15022. bottom: 0.02
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(3 + 6 / 12, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(5 + 11 / 12, "feet"),
  15039. weight: math.unit(146, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/ashe/front.svg",
  15043. extra: 400 / 373,
  15044. bottom: 0.01
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(5 + 11 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(5 + 5 / 12, "feet"),
  15061. weight: math.unit(135, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/beatrix/front.svg",
  15065. extra: 392 / 379,
  15066. bottom: 0.01
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(6, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(6, "feet"),
  15083. weight: math.unit(150, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/ignatius/front.svg",
  15087. extra: 245 / 222,
  15088. bottom: 0.01
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(5 + 5 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(6 + 2 / 12, "feet"),
  15105. weight: math.unit(138, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/mei-li/front.svg",
  15109. extra: 237 / 229,
  15110. bottom: 0.03
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(6 + 2 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(2 + 4 / 12, "feet"),
  15127. weight: math.unit(62, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/puru/front.svg",
  15131. extra: 206 / 149,
  15132. bottom: 0.06
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(2 + 4 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15146. {
  15147. anthro: {
  15148. height: math.unit(5 + 8/12, "feet"),
  15149. weight: math.unit(200, "lb"),
  15150. energyNeed: math.unit(2000, "kcal"),
  15151. name: "Anthro",
  15152. image: {
  15153. source: "./media/characters/kee/anthro.svg",
  15154. extra: 3251/3184,
  15155. bottom: 250/3501
  15156. }
  15157. },
  15158. taur: {
  15159. height: math.unit(11, "feet"),
  15160. weight: math.unit(500, "lb"),
  15161. energyNeed: math.unit(5000, "kcal"),
  15162. name: "Taur",
  15163. image: {
  15164. source: "./media/characters/kee/taur.svg",
  15165. extra: 1362/1320,
  15166. bottom: 83/1445
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(5 + 8/12, "feet"),
  15174. default: true
  15175. },
  15176. {
  15177. name: "Macro",
  15178. height: math.unit(35, "feet")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15184. {
  15185. anthro: {
  15186. height: math.unit(7, "feet"),
  15187. weight: math.unit(190, "lb"),
  15188. name: "Anthro",
  15189. image: {
  15190. source: "./media/characters/cobalt-dracha/anthro.svg",
  15191. extra: 231 / 225,
  15192. bottom: 0.04
  15193. }
  15194. },
  15195. feral: {
  15196. height: math.unit(9 + 7 / 12, "feet"),
  15197. weight: math.unit(294, "lb"),
  15198. name: "Feral",
  15199. image: {
  15200. source: "./media/characters/cobalt-dracha/feral.svg",
  15201. extra: 692 / 633,
  15202. bottom: 0.05
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(7, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15216. {
  15217. fallen: {
  15218. height: math.unit(11 + 8 / 12, "feet"),
  15219. weight: math.unit(485, "lb"),
  15220. name: "Java (Fallen)",
  15221. rename: true,
  15222. image: {
  15223. source: "./media/characters/java/fallen.svg",
  15224. extra: 226 / 208,
  15225. bottom: 0.005
  15226. }
  15227. },
  15228. godkin: {
  15229. height: math.unit(10 + 6 / 12, "feet"),
  15230. weight: math.unit(328, "lb"),
  15231. name: "Java (Godkin)",
  15232. rename: true,
  15233. image: {
  15234. source: "./media/characters/java/godkin.svg",
  15235. extra: 270 / 262,
  15236. bottom: 0.02
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(11 + 8 / 12, "feet"),
  15244. default: true
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(7 + 8 / 12, "feet"),
  15253. weight: math.unit(320, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/skoll/front.svg",
  15257. extra: 232 / 220,
  15258. bottom: 0.02
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(7 + 8 / 12, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(5 + 9 / 12, "feet"),
  15275. weight: math.unit(170, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/purna/front.svg",
  15279. extra: 239 / 229,
  15280. bottom: 0.01
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(5 + 9 / 12, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(5 + 9 / 12, "feet"),
  15297. weight: math.unit(142, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/kuva/front.svg",
  15301. extra: 281 / 271,
  15302. bottom: 0.006
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(5 + 9 / 12, "feet"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15316. {
  15317. anthro: {
  15318. height: math.unit(9 + 2 / 12, "feet"),
  15319. weight: math.unit(270, "lb"),
  15320. name: "Anthro",
  15321. image: {
  15322. source: "./media/characters/embra/anthro.svg",
  15323. extra: 200 / 187,
  15324. bottom: 0.02
  15325. }
  15326. },
  15327. feral: {
  15328. height: math.unit(18 + 8 / 12, "feet"),
  15329. weight: math.unit(576, "lb"),
  15330. name: "Feral",
  15331. image: {
  15332. source: "./media/characters/embra/feral.svg",
  15333. extra: 152 / 137,
  15334. bottom: 0.037
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(9 + 2 / 12, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15348. {
  15349. anthro: {
  15350. height: math.unit(10 + 9 / 12, "feet"),
  15351. weight: math.unit(224, "lb"),
  15352. name: "Anthro",
  15353. image: {
  15354. source: "./media/characters/grottos/anthro.svg",
  15355. extra: 350 / 332,
  15356. bottom: 0.045
  15357. }
  15358. },
  15359. feral: {
  15360. height: math.unit(20 + 7 / 12, "feet"),
  15361. weight: math.unit(629, "lb"),
  15362. name: "Feral",
  15363. image: {
  15364. source: "./media/characters/grottos/feral.svg",
  15365. extra: 207 / 190,
  15366. bottom: 0.05
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(10 + 9 / 12, "feet"),
  15374. default: true
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15380. {
  15381. anthro: {
  15382. height: math.unit(9 + 6 / 12, "feet"),
  15383. weight: math.unit(298, "lb"),
  15384. name: "Anthro",
  15385. image: {
  15386. source: "./media/characters/frifna/anthro.svg",
  15387. extra: 282 / 269,
  15388. bottom: 0.015
  15389. }
  15390. },
  15391. feral: {
  15392. height: math.unit(16 + 2 / 12, "feet"),
  15393. weight: math.unit(624, "lb"),
  15394. name: "Feral",
  15395. image: {
  15396. source: "./media/characters/frifna/feral.svg"
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(9 + 6 / 12, "feet"),
  15404. default: true
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(6 + 2 / 12, "feet"),
  15413. weight: math.unit(168, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/elise/front.svg",
  15417. extra: 276 / 271
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(6 + 2 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(5 + 10 / 12, "feet"),
  15434. weight: math.unit(210, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/glade/front.svg",
  15438. extra: 258 / 247,
  15439. bottom: 0.008
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(5 + 10 / 12, "feet"),
  15447. default: true
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(5 + 10 / 12, "feet"),
  15456. weight: math.unit(129, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/rina/front.svg",
  15460. extra: 266 / 255,
  15461. bottom: 0.005
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(5 + 10 / 12, "feet"),
  15469. default: true
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15475. {
  15476. front: {
  15477. height: math.unit(6 + 1 / 12, "feet"),
  15478. weight: math.unit(192, "lb"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/veronica/front.svg",
  15482. extra: 319 / 309,
  15483. bottom: 0.005
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Normal",
  15490. height: math.unit(6 + 1 / 12, "feet"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(9 + 3 / 12, "feet"),
  15500. weight: math.unit(1100, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/braxton/front.svg",
  15504. extra: 1057 / 984,
  15505. bottom: 0.05
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(9 + 3 / 12, "feet")
  15513. },
  15514. {
  15515. name: "Giant",
  15516. height: math.unit(300, "feet"),
  15517. default: true
  15518. },
  15519. {
  15520. name: "Macro",
  15521. height: math.unit(700, "feet")
  15522. },
  15523. {
  15524. name: "Megamacro",
  15525. height: math.unit(6000, "feet")
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(6 + 7 / 12, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/blue-feyonics/front.svg",
  15538. extra: 1403 / 1306,
  15539. bottom: 0.047
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(6 + 7 / 12, "feet"),
  15547. default: true
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(1.8, "meters"),
  15556. weight: math.unit(60, "kg"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/maxwell/front.svg",
  15560. extra: 2060 / 1873
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Micro",
  15567. height: math.unit(1, "mm")
  15568. },
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(1.8, "meter"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Macro",
  15576. height: math.unit(30, "meters")
  15577. },
  15578. {
  15579. name: "Megamacro",
  15580. height: math.unit(10, "km")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/jack/front.svg",
  15593. extra: 1754 / 1640,
  15594. bottom: 0.01
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(80000, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Max size",
  15606. height: math.unit(10, "lightyears")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15612. {
  15613. urban: {
  15614. height: math.unit(5, "feet"),
  15615. weight: math.unit(240, "lb"),
  15616. name: "Urban",
  15617. image: {
  15618. source: "./media/characters/cafat/urban.svg",
  15619. extra: 1223/1126,
  15620. bottom: 205/1428
  15621. }
  15622. },
  15623. summer: {
  15624. height: math.unit(5, "feet"),
  15625. weight: math.unit(240, "lb"),
  15626. name: "Summer",
  15627. image: {
  15628. source: "./media/characters/cafat/summer.svg",
  15629. extra: 1223/1126,
  15630. bottom: 205/1428
  15631. }
  15632. },
  15633. winter: {
  15634. height: math.unit(5, "feet"),
  15635. weight: math.unit(240, "lb"),
  15636. name: "Winter",
  15637. image: {
  15638. source: "./media/characters/cafat/winter.svg",
  15639. extra: 1223/1126,
  15640. bottom: 205/1428
  15641. }
  15642. },
  15643. lingerie: {
  15644. height: math.unit(5, "feet"),
  15645. weight: math.unit(240, "lb"),
  15646. name: "Lingerie",
  15647. image: {
  15648. source: "./media/characters/cafat/lingerie.svg",
  15649. extra: 1223/1126,
  15650. bottom: 205/1428
  15651. }
  15652. },
  15653. upright: {
  15654. height: math.unit(6.3, "feet"),
  15655. weight: math.unit(240, "lb"),
  15656. name: "Upright",
  15657. image: {
  15658. source: "./media/characters/cafat/upright.svg",
  15659. bottom: 0.01
  15660. }
  15661. },
  15662. uprightFull: {
  15663. height: math.unit(6.3, "feet"),
  15664. weight: math.unit(240, "lb"),
  15665. name: "Upright (Full)",
  15666. image: {
  15667. source: "./media/characters/cafat/upright-full.svg",
  15668. bottom: 0.01
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Small",
  15675. height: math.unit(5, "feet"),
  15676. default: true
  15677. },
  15678. {
  15679. name: "Large",
  15680. height: math.unit(13, "feet")
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6, "feet"),
  15689. weight: math.unit(150, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/verin-raharra/front.svg",
  15693. extra: 5019 / 4835,
  15694. bottom: 0.023
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(7 + 5 / 12, "feet"),
  15702. default: true
  15703. },
  15704. {
  15705. name: "Upsized",
  15706. height: math.unit(20, "feet")
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(7, "feet"),
  15715. weight: math.unit(230, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/nakata/front.svg",
  15719. extra: 1.005,
  15720. bottom: 0.01
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(7, "feet"),
  15728. default: true
  15729. },
  15730. {
  15731. name: "Big",
  15732. height: math.unit(14, "feet")
  15733. },
  15734. {
  15735. name: "Macro",
  15736. height: math.unit(400, "feet")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(4.91, "feet"),
  15745. weight: math.unit(100, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/lily/front.svg",
  15749. extra: 1585 / 1415,
  15750. bottom: 0.02
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(4.91, "feet"),
  15758. default: true
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15764. {
  15765. laying: {
  15766. height: math.unit(4 + 4 / 12, "feet"),
  15767. weight: math.unit(600, "lb"),
  15768. name: "Laying",
  15769. image: {
  15770. source: "./media/characters/sheila/laying.svg",
  15771. extra: 1333 / 1265,
  15772. bottom: 0.16
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(4 + 4 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(190, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/sax/front.svg",
  15793. extra: 1187 / 973,
  15794. bottom: 0.042
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Micro",
  15801. height: math.unit(4, "inches"),
  15802. default: true
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(6, "feet"),
  15811. weight: math.unit(150, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/pandora/front.svg",
  15815. extra: 2720 / 2556,
  15816. bottom: 0.015
  15817. }
  15818. },
  15819. back: {
  15820. height: math.unit(6, "feet"),
  15821. weight: math.unit(150, "lb"),
  15822. name: "Back",
  15823. image: {
  15824. source: "./media/characters/pandora/back.svg",
  15825. extra: 2720 / 2556,
  15826. bottom: 0.01
  15827. }
  15828. },
  15829. beans: {
  15830. height: math.unit(6 / 8, "feet"),
  15831. name: "Beans",
  15832. image: {
  15833. source: "./media/characters/pandora/beans.svg"
  15834. }
  15835. },
  15836. collar: {
  15837. height: math.unit(0.31, "feet"),
  15838. name: "Collar",
  15839. image: {
  15840. source: "./media/characters/pandora/collar.svg"
  15841. }
  15842. },
  15843. skirt: {
  15844. height: math.unit(6, "feet"),
  15845. weight: math.unit(150, "lb"),
  15846. name: "Skirt",
  15847. image: {
  15848. source: "./media/characters/pandora/skirt.svg",
  15849. extra: 1622 / 1525,
  15850. bottom: 0.015
  15851. }
  15852. },
  15853. hoodie: {
  15854. height: math.unit(6, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Hoodie",
  15857. image: {
  15858. source: "./media/characters/pandora/hoodie.svg",
  15859. extra: 1622 / 1525,
  15860. bottom: 0.015
  15861. }
  15862. },
  15863. casual: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(150, "lb"),
  15866. name: "Casual",
  15867. image: {
  15868. source: "./media/characters/pandora/casual.svg",
  15869. extra: 1622 / 1525,
  15870. bottom: 0.015
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(6, "feet")
  15878. },
  15879. {
  15880. name: "Big Steppy",
  15881. height: math.unit(1, "km"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Galactic Steppy",
  15886. height: math.unit(2, "gigameters")
  15887. },
  15888. ]
  15889. ))
  15890. characterMakers.push(() => makeCharacter(
  15891. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15892. {
  15893. side: {
  15894. height: math.unit(10, "feet"),
  15895. weight: math.unit(800, "kg"),
  15896. name: "Side",
  15897. image: {
  15898. source: "./media/characters/venio-darcony/side.svg",
  15899. extra: 1373 / 1003,
  15900. bottom: 0.037
  15901. }
  15902. },
  15903. front: {
  15904. height: math.unit(19, "feet"),
  15905. weight: math.unit(800, "kg"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/venio-darcony/front.svg"
  15909. }
  15910. },
  15911. back: {
  15912. height: math.unit(19, "feet"),
  15913. weight: math.unit(800, "kg"),
  15914. name: "Back",
  15915. image: {
  15916. source: "./media/characters/venio-darcony/back.svg"
  15917. }
  15918. },
  15919. sideNsfw: {
  15920. height: math.unit(10, "feet"),
  15921. weight: math.unit(800, "kg"),
  15922. name: "Side (NSFW)",
  15923. image: {
  15924. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15925. extra: 1373 / 1003,
  15926. bottom: 0.037
  15927. }
  15928. },
  15929. frontNsfw: {
  15930. height: math.unit(19, "feet"),
  15931. weight: math.unit(800, "kg"),
  15932. name: "Front (NSFW)",
  15933. image: {
  15934. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15935. }
  15936. },
  15937. backNsfw: {
  15938. height: math.unit(19, "feet"),
  15939. weight: math.unit(800, "kg"),
  15940. name: "Back (NSFW)",
  15941. image: {
  15942. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15943. }
  15944. },
  15945. sideArmored: {
  15946. height: math.unit(10, "feet"),
  15947. weight: math.unit(800, "kg"),
  15948. name: "Side (Armored)",
  15949. image: {
  15950. source: "./media/characters/venio-darcony/side-armored.svg",
  15951. extra: 1373 / 1003,
  15952. bottom: 0.037
  15953. }
  15954. },
  15955. frontArmored: {
  15956. height: math.unit(19, "feet"),
  15957. weight: math.unit(900, "kg"),
  15958. name: "Front (Armored)",
  15959. image: {
  15960. source: "./media/characters/venio-darcony/front-armored.svg"
  15961. }
  15962. },
  15963. backArmored: {
  15964. height: math.unit(19, "feet"),
  15965. weight: math.unit(900, "kg"),
  15966. name: "Back (Armored)",
  15967. image: {
  15968. source: "./media/characters/venio-darcony/back-armored.svg"
  15969. }
  15970. },
  15971. sword: {
  15972. height: math.unit(10, "feet"),
  15973. weight: math.unit(50, "lb"),
  15974. name: "Sword",
  15975. image: {
  15976. source: "./media/characters/venio-darcony/sword.svg"
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(10, "feet")
  15984. },
  15985. {
  15986. name: "Macro",
  15987. height: math.unit(130, "feet"),
  15988. default: true
  15989. },
  15990. {
  15991. name: "Macro+",
  15992. height: math.unit(240, "feet")
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(6, "feet"),
  16001. weight: math.unit(150, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/veski/front.svg",
  16005. extra: 1299 / 1225,
  16006. bottom: 0.04
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(150, "lb"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/veski/back.svg",
  16015. extra: 1299 / 1225,
  16016. bottom: 0.008
  16017. }
  16018. },
  16019. maw: {
  16020. height: math.unit(1.5 * 1.21, "feet"),
  16021. name: "Maw",
  16022. image: {
  16023. source: "./media/characters/veski/maw.svg"
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Macro",
  16030. height: math.unit(2, "km"),
  16031. default: true
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16037. {
  16038. front: {
  16039. height: math.unit(5 + 7 / 12, "feet"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/isabelle/front.svg",
  16043. extra: 2130 / 1976,
  16044. bottom: 0.05
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Supermicro",
  16051. height: math.unit(10, "micrometers")
  16052. },
  16053. {
  16054. name: "Micro",
  16055. height: math.unit(1, "inch")
  16056. },
  16057. {
  16058. name: "Tiny",
  16059. height: math.unit(5, "inches")
  16060. },
  16061. {
  16062. name: "Standard",
  16063. height: math.unit(5 + 7 / 12, "inches")
  16064. },
  16065. {
  16066. name: "Macro",
  16067. height: math.unit(80, "meters"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Megamacro",
  16072. height: math.unit(250, "meters")
  16073. },
  16074. {
  16075. name: "Gigamacro",
  16076. height: math.unit(5, "km")
  16077. },
  16078. {
  16079. name: "Cosmic",
  16080. height: math.unit(2.5e6, "miles")
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(6, "feet"),
  16089. weight: math.unit(150, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/hanzo/front.svg",
  16093. extra: 374 / 344,
  16094. bottom: 0.02
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(8, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(7, "feet"),
  16111. weight: math.unit(130, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/anna/front.svg",
  16115. extra: 169 / 145,
  16116. bottom: 0.06
  16117. }
  16118. },
  16119. full: {
  16120. height: math.unit(4.96, "feet"),
  16121. weight: math.unit(220, "lb"),
  16122. name: "Full",
  16123. image: {
  16124. source: "./media/characters/anna/full.svg",
  16125. extra: 138 / 114,
  16126. bottom: 0.15
  16127. }
  16128. },
  16129. tongue: {
  16130. height: math.unit(2.53, "feet"),
  16131. name: "Tongue",
  16132. image: {
  16133. source: "./media/characters/anna/tongue.svg"
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(7, "feet"),
  16141. default: true
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16147. {
  16148. front: {
  16149. height: math.unit(7, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Front",
  16152. image: {
  16153. source: "./media/characters/ian-corvid/front.svg",
  16154. extra: 150 / 142,
  16155. bottom: 0.02
  16156. }
  16157. },
  16158. back: {
  16159. height: math.unit(7, "feet"),
  16160. weight: math.unit(150, "lb"),
  16161. name: "Back",
  16162. image: {
  16163. source: "./media/characters/ian-corvid/back.svg",
  16164. extra: 150 / 143,
  16165. bottom: 0.01
  16166. }
  16167. },
  16168. stomping: {
  16169. height: math.unit(7, "feet"),
  16170. weight: math.unit(150, "lb"),
  16171. name: "Stomping",
  16172. image: {
  16173. source: "./media/characters/ian-corvid/stomping.svg",
  16174. extra: 76 / 72
  16175. }
  16176. },
  16177. sitting: {
  16178. height: math.unit(7 / 1.8, "feet"),
  16179. weight: math.unit(150, "lb"),
  16180. name: "Sitting",
  16181. image: {
  16182. source: "./media/characters/ian-corvid/sitting.svg",
  16183. extra: 1400 / 1269,
  16184. bottom: 0.15
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Tiny Microw",
  16191. height: math.unit(1, "inch")
  16192. },
  16193. {
  16194. name: "Microw",
  16195. height: math.unit(6, "inches")
  16196. },
  16197. {
  16198. name: "Crow",
  16199. height: math.unit(7 + 1 / 12, "feet"),
  16200. default: true
  16201. },
  16202. {
  16203. name: "Macrow",
  16204. height: math.unit(176, "feet")
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(5 + 7 / 12, "feet"),
  16213. weight: math.unit(147, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/natalie-kellon/front.svg",
  16217. extra: 1214 / 1141,
  16218. bottom: 0.02
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Micro",
  16225. height: math.unit(1 / 16, "inch")
  16226. },
  16227. {
  16228. name: "Tiny",
  16229. height: math.unit(4, "inches")
  16230. },
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(5 + 7 / 12, "feet"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "Amazon",
  16238. height: math.unit(12, "feet")
  16239. },
  16240. {
  16241. name: "Giantess",
  16242. height: math.unit(160, "meters")
  16243. },
  16244. {
  16245. name: "Titaness",
  16246. height: math.unit(800, "meters")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6, "feet"),
  16255. weight: math.unit(150, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/alluria/front.svg",
  16259. extra: 806 / 738,
  16260. bottom: 0.01
  16261. }
  16262. },
  16263. side: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(150, "lb"),
  16266. name: "Side",
  16267. image: {
  16268. source: "./media/characters/alluria/side.svg",
  16269. extra: 800 / 750,
  16270. }
  16271. },
  16272. back: {
  16273. height: math.unit(6, "feet"),
  16274. weight: math.unit(150, "lb"),
  16275. name: "Back",
  16276. image: {
  16277. source: "./media/characters/alluria/back.svg",
  16278. extra: 806 / 738,
  16279. }
  16280. },
  16281. frontMaid: {
  16282. height: math.unit(6, "feet"),
  16283. weight: math.unit(150, "lb"),
  16284. name: "Front (Maid)",
  16285. image: {
  16286. source: "./media/characters/alluria/front-maid.svg",
  16287. extra: 806 / 738,
  16288. bottom: 0.01
  16289. }
  16290. },
  16291. sideMaid: {
  16292. height: math.unit(6, "feet"),
  16293. weight: math.unit(150, "lb"),
  16294. name: "Side (Maid)",
  16295. image: {
  16296. source: "./media/characters/alluria/side-maid.svg",
  16297. extra: 800 / 750,
  16298. bottom: 0.005
  16299. }
  16300. },
  16301. backMaid: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Back (Maid)",
  16305. image: {
  16306. source: "./media/characters/alluria/back-maid.svg",
  16307. extra: 806 / 738,
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Micro",
  16314. height: math.unit(6, "inches"),
  16315. default: true
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16321. {
  16322. front: {
  16323. height: math.unit(6, "feet"),
  16324. weight: math.unit(150, "lb"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/kyle/front.svg",
  16328. extra: 1069 / 962,
  16329. bottom: 77.228 / 1727.45
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Macro",
  16336. height: math.unit(150, "feet"),
  16337. default: true
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16343. {
  16344. front: {
  16345. height: math.unit(6, "feet"),
  16346. weight: math.unit(300, "lb"),
  16347. name: "Front",
  16348. image: {
  16349. source: "./media/characters/duncan/front.svg",
  16350. extra: 1650 / 1482,
  16351. bottom: 0.05
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Macro",
  16358. height: math.unit(100, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(5 + 4 / 12, "feet"),
  16368. weight: math.unit(220, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/memory/front.svg",
  16372. extra: 3641 / 3545,
  16373. bottom: 0.03
  16374. }
  16375. },
  16376. back: {
  16377. height: math.unit(5 + 4 / 12, "feet"),
  16378. weight: math.unit(220, "lb"),
  16379. name: "Back",
  16380. image: {
  16381. source: "./media/characters/memory/back.svg",
  16382. extra: 3641 / 3545,
  16383. bottom: 0.025
  16384. }
  16385. },
  16386. frontSkirt: {
  16387. height: math.unit(5 + 4 / 12, "feet"),
  16388. weight: math.unit(220, "lb"),
  16389. name: "Front (Skirt)",
  16390. image: {
  16391. source: "./media/characters/memory/front-skirt.svg",
  16392. extra: 3641 / 3545,
  16393. bottom: 0.03
  16394. }
  16395. },
  16396. frontDress: {
  16397. height: math.unit(5 + 4 / 12, "feet"),
  16398. weight: math.unit(220, "lb"),
  16399. name: "Front (Dress)",
  16400. image: {
  16401. source: "./media/characters/memory/front-dress.svg",
  16402. extra: 3641 / 3545,
  16403. bottom: 0.03
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Micro",
  16410. height: math.unit(6, "inches"),
  16411. default: true
  16412. },
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(5 + 4 / 12, "feet")
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(4 + 11 / 12, "feet"),
  16424. weight: math.unit(100, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/luno/front.svg",
  16428. extra: 1535 / 1487,
  16429. bottom: 0.03
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Micro",
  16436. height: math.unit(3, "inches")
  16437. },
  16438. {
  16439. name: "Normal",
  16440. height: math.unit(4 + 11 / 12, "feet"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "Macro",
  16445. height: math.unit(300, "feet")
  16446. },
  16447. {
  16448. name: "Megamacro",
  16449. height: math.unit(700, "miles")
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(6 + 2 / 12, "feet"),
  16458. weight: math.unit(170, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/jamesy/front.svg",
  16462. extra: 440 / 382,
  16463. bottom: 0.005
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Micro",
  16470. height: math.unit(3, "inches")
  16471. },
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(6 + 2 / 12, "feet"),
  16475. default: true
  16476. },
  16477. {
  16478. name: "Macro",
  16479. height: math.unit(300, "feet")
  16480. },
  16481. {
  16482. name: "Megamacro",
  16483. height: math.unit(700, "miles")
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6, "feet"),
  16492. weight: math.unit(160, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/mark/front.svg",
  16496. extra: 3300 / 3100,
  16497. bottom: 136.42 / 3440.47
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Macro",
  16504. height: math.unit(120, "meters")
  16505. },
  16506. {
  16507. name: "Bigger Macro",
  16508. height: math.unit(350, "meters")
  16509. },
  16510. {
  16511. name: "Megamacro",
  16512. height: math.unit(8, "km"),
  16513. default: true
  16514. },
  16515. {
  16516. name: "Continental",
  16517. height: math.unit(4550, "km")
  16518. },
  16519. {
  16520. name: "Planetary",
  16521. height: math.unit(65000, "km")
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(6, "feet"),
  16530. weight: math.unit(400, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/mac/front.svg",
  16534. extra: 1048 / 987.7,
  16535. bottom: 60 / 1107.6,
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Macro",
  16542. height: math.unit(500, "feet"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(5 + 2 / 12, "feet"),
  16552. weight: math.unit(190, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/bari/front.svg",
  16556. extra: 3156 / 2880,
  16557. bottom: 0.03
  16558. }
  16559. },
  16560. back: {
  16561. height: math.unit(5 + 2 / 12, "feet"),
  16562. weight: math.unit(190, "lb"),
  16563. name: "Back",
  16564. image: {
  16565. source: "./media/characters/bari/back.svg",
  16566. extra: 3260 / 2834,
  16567. bottom: 0.025
  16568. }
  16569. },
  16570. frontPlush: {
  16571. height: math.unit(5 + 2 / 12, "feet"),
  16572. weight: math.unit(190, "lb"),
  16573. name: "Front (Plush)",
  16574. image: {
  16575. source: "./media/characters/bari/front-plush.svg",
  16576. extra: 1112 / 1061,
  16577. bottom: 0.002
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Micro",
  16584. height: math.unit(3, "inches")
  16585. },
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(5 + 2 / 12, "feet"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Macro",
  16593. height: math.unit(20, "feet")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(6 + 1 / 12, "feet"),
  16602. weight: math.unit(275, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/hunter-misha-raven/front.svg"
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Mortal",
  16612. height: math.unit(6 + 1 / 12, "feet")
  16613. },
  16614. {
  16615. name: "Divine",
  16616. height: math.unit(1.12134e34, "parsecs"),
  16617. default: true
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(6 + 3 / 12, "feet"),
  16626. weight: math.unit(220, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/max-calore/front.svg",
  16630. extra: 1700 / 1648,
  16631. bottom: 0.01
  16632. }
  16633. },
  16634. back: {
  16635. height: math.unit(6 + 3 / 12, "feet"),
  16636. weight: math.unit(220, "lb"),
  16637. name: "Back",
  16638. image: {
  16639. source: "./media/characters/max-calore/back.svg",
  16640. extra: 1700 / 1648,
  16641. bottom: 0.01
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(6 + 3 / 12, "feet"),
  16649. default: true
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16655. {
  16656. side: {
  16657. height: math.unit(2 + 8 / 12, "feet"),
  16658. weight: math.unit(99, "lb"),
  16659. name: "Side",
  16660. image: {
  16661. source: "./media/characters/aspen/side.svg",
  16662. extra: 152 / 138,
  16663. bottom: 0.032
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(2 + 8 / 12, "feet"),
  16671. default: true
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16677. {
  16678. side: {
  16679. height: math.unit(3 + 2 / 12, "feet"),
  16680. weight: math.unit(224, "lb"),
  16681. name: "Side",
  16682. image: {
  16683. source: "./media/characters/sheila-feral-wolf/side.svg",
  16684. extra: 179 / 166,
  16685. bottom: 0.03
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(3 + 2 / 12, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16699. {
  16700. side: {
  16701. height: math.unit(1 + 9 / 12, "feet"),
  16702. weight: math.unit(38, "lb"),
  16703. name: "Side",
  16704. image: {
  16705. source: "./media/characters/michelle/side.svg",
  16706. extra: 147 / 136.7,
  16707. bottom: 0.03
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(1 + 9 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(1 + 1 / 12, "feet"),
  16724. weight: math.unit(18, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/nino/front.svg"
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(1 + 1 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(1, "feet"),
  16744. weight: math.unit(16, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/viola/front.svg"
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(1, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(6 + 5 / 12, "feet"),
  16764. weight: math.unit(580, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/atlas/front.svg",
  16768. extra: 298.5 / 290,
  16769. bottom: 0.015
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(6 + 5 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16783. {
  16784. side: {
  16785. height: math.unit(1 + 10 / 12, "feet"),
  16786. weight: math.unit(25, "lb"),
  16787. name: "Side",
  16788. image: {
  16789. source: "./media/characters/davy/side.svg",
  16790. extra: 200 / 170,
  16791. bottom: 0.01
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(1 + 10 / 12, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16805. {
  16806. side: {
  16807. height: math.unit(4 + 8 / 12, "feet"),
  16808. weight: math.unit(166, "lb"),
  16809. name: "Side",
  16810. image: {
  16811. source: "./media/characters/fiona/side.svg",
  16812. extra: 232 / 220,
  16813. bottom: 0.03
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(4 + 8 / 12, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16827. {
  16828. front: {
  16829. height: math.unit(2, "feet"),
  16830. weight: math.unit(62, "lb"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/lyla/front.svg",
  16834. bottom: 0.1
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(2, "feet"),
  16842. default: true
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16848. {
  16849. side: {
  16850. height: math.unit(1.8, "feet"),
  16851. weight: math.unit(44, "lb"),
  16852. name: "Side",
  16853. image: {
  16854. source: "./media/characters/perseus/side.svg",
  16855. bottom: 0.21
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(1.8, "feet"),
  16863. default: true
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16869. {
  16870. side: {
  16871. height: math.unit(4 + 2 / 12, "feet"),
  16872. weight: math.unit(20, "lb"),
  16873. name: "Side",
  16874. image: {
  16875. source: "./media/characters/remus/side.svg"
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(4 + 2 / 12, "feet"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(4 + 11 / 12, "feet"),
  16892. weight: math.unit(114, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/raf/front.svg",
  16896. bottom: 20.5 / 1863
  16897. }
  16898. },
  16899. side: {
  16900. height: math.unit(4 + 11 / 12, "feet"),
  16901. weight: math.unit(114, "lb"),
  16902. name: "Side",
  16903. image: {
  16904. source: "./media/characters/raf/side.svg",
  16905. bottom: 22 / 1822
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Micro",
  16912. height: math.unit(2, "inches")
  16913. },
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(4 + 11 / 12, "feet"),
  16917. default: true
  16918. },
  16919. {
  16920. name: "Macro",
  16921. height: math.unit(70, "feet")
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(1.5, "meters"),
  16930. weight: math.unit(68, "kg"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/liam-einarr/front.svg",
  16934. extra: 2822 / 2666
  16935. }
  16936. },
  16937. back: {
  16938. height: math.unit(1.5, "meters"),
  16939. weight: math.unit(68, "kg"),
  16940. name: "Back",
  16941. image: {
  16942. source: "./media/characters/liam-einarr/back.svg",
  16943. extra: 2822 / 2666,
  16944. bottom: 0.015
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(1.5, "meters"),
  16952. default: true
  16953. },
  16954. {
  16955. name: "Macro",
  16956. height: math.unit(150, "meters")
  16957. },
  16958. {
  16959. name: "Megamacro",
  16960. height: math.unit(35, "km")
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(6, "feet"),
  16969. weight: math.unit(75, "kg"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/linda/front.svg",
  16973. extra: 930 / 874,
  16974. bottom: 0.004
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(6, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(6 + 8 / 12, "feet"),
  16991. weight: math.unit(220, "lb"),
  16992. name: "Front",
  16993. image: {
  16994. source: "./media/characters/caylex/front.svg",
  16995. extra: 821 / 772,
  16996. bottom: 0.07
  16997. }
  16998. },
  16999. back: {
  17000. height: math.unit(6 + 8 / 12, "feet"),
  17001. weight: math.unit(220, "lb"),
  17002. name: "Back",
  17003. image: {
  17004. source: "./media/characters/caylex/back.svg",
  17005. extra: 821 / 772,
  17006. bottom: 0.022
  17007. }
  17008. },
  17009. hand: {
  17010. height: math.unit(1.25, "feet"),
  17011. name: "Hand",
  17012. image: {
  17013. source: "./media/characters/caylex/hand.svg"
  17014. }
  17015. },
  17016. foot: {
  17017. height: math.unit(1.6, "feet"),
  17018. name: "Foot",
  17019. image: {
  17020. source: "./media/characters/caylex/foot.svg"
  17021. }
  17022. },
  17023. armored: {
  17024. height: math.unit(6 + 8 / 12, "feet"),
  17025. weight: math.unit(250, "lb"),
  17026. name: "Armored",
  17027. image: {
  17028. source: "./media/characters/caylex/armored.svg",
  17029. extra: 1420 / 1310,
  17030. bottom: 0.045
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(6 + 8 / 12, "feet"),
  17038. default: true
  17039. },
  17040. {
  17041. name: "Normal+",
  17042. height: math.unit(12, "feet")
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17048. {
  17049. front: {
  17050. height: math.unit(7 + 6 / 12, "feet"),
  17051. weight: math.unit(288, "lb"),
  17052. name: "Front",
  17053. image: {
  17054. source: "./media/characters/alana/front.svg",
  17055. extra: 679 / 653,
  17056. bottom: 22.5 / 701
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(7 + 6 / 12, "feet")
  17064. },
  17065. {
  17066. name: "Large",
  17067. height: math.unit(50, "feet")
  17068. },
  17069. {
  17070. name: "Macro",
  17071. height: math.unit(100, "feet"),
  17072. default: true
  17073. },
  17074. {
  17075. name: "Macro+",
  17076. height: math.unit(200, "feet")
  17077. },
  17078. ]
  17079. ))
  17080. characterMakers.push(() => makeCharacter(
  17081. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17082. {
  17083. front: {
  17084. height: math.unit(6 + 1 / 12, "feet"),
  17085. weight: math.unit(210, "lb"),
  17086. name: "Front",
  17087. image: {
  17088. source: "./media/characters/hasani/front.svg",
  17089. extra: 244 / 232,
  17090. bottom: 0.01
  17091. }
  17092. },
  17093. back: {
  17094. height: math.unit(6 + 1 / 12, "feet"),
  17095. weight: math.unit(210, "lb"),
  17096. name: "Back",
  17097. image: {
  17098. source: "./media/characters/hasani/back.svg",
  17099. extra: 244 / 232,
  17100. bottom: 0.01
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(6 + 1 / 12, "feet")
  17108. },
  17109. {
  17110. name: "Macro",
  17111. height: math.unit(175, "feet"),
  17112. default: true
  17113. },
  17114. ]
  17115. ))
  17116. characterMakers.push(() => makeCharacter(
  17117. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17118. {
  17119. front: {
  17120. height: math.unit(1.82, "meters"),
  17121. weight: math.unit(140, "lb"),
  17122. name: "Front",
  17123. image: {
  17124. source: "./media/characters/nita/front.svg",
  17125. extra: 2473 / 2363,
  17126. bottom: 0.01
  17127. }
  17128. },
  17129. },
  17130. [
  17131. {
  17132. name: "Normal",
  17133. height: math.unit(1.82, "m")
  17134. },
  17135. {
  17136. name: "Macro",
  17137. height: math.unit(300, "m")
  17138. },
  17139. {
  17140. name: "Mistake Canon",
  17141. height: math.unit(0.5, "miles"),
  17142. default: true
  17143. },
  17144. {
  17145. name: "Big Mistake",
  17146. height: math.unit(13, "miles")
  17147. },
  17148. {
  17149. name: "Playing God",
  17150. height: math.unit(2450, "miles")
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17156. {
  17157. front: {
  17158. height: math.unit(4, "feet"),
  17159. weight: math.unit(120, "lb"),
  17160. name: "Front",
  17161. image: {
  17162. source: "./media/characters/shiriko/front.svg",
  17163. extra: 195 / 188
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(4, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(6, "feet"),
  17180. name: "front",
  17181. image: {
  17182. source: "./media/characters/deja/front.svg",
  17183. extra: 926 / 840,
  17184. bottom: 0.07
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Planck Length",
  17191. height: math.unit(1.6e-35, "meters")
  17192. },
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(30.48, "meters"),
  17196. default: true
  17197. },
  17198. {
  17199. name: "Universal",
  17200. height: math.unit(8.8e26, "meters")
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17206. {
  17207. side: {
  17208. height: math.unit(8, "feet"),
  17209. weight: math.unit(6300, "lb"),
  17210. name: "Side",
  17211. image: {
  17212. source: "./media/characters/anima/side.svg",
  17213. bottom: 0.035
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(8, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(8, "feet"),
  17230. weight: math.unit(350, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/bianca/front.svg",
  17234. extra: 234 / 225,
  17235. bottom: 0.03
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(8, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(6, "feet"),
  17252. weight: math.unit(150, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/adinia/front.svg",
  17256. extra: 1845 / 1672,
  17257. bottom: 0.02
  17258. }
  17259. },
  17260. back: {
  17261. height: math.unit(6, "feet"),
  17262. weight: math.unit(150, "lb"),
  17263. name: "Back",
  17264. image: {
  17265. source: "./media/characters/adinia/back.svg",
  17266. extra: 1845 / 1672,
  17267. bottom: 0.002
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(11 + 5 / 12, "feet"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(3, "meters"),
  17284. weight: math.unit(200, "kg"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/lykasa/front.svg",
  17288. extra: 1076 / 976,
  17289. bottom: 0.06
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(3, "meters")
  17297. },
  17298. {
  17299. name: "Kaiju",
  17300. height: math.unit(120, "meters"),
  17301. default: true
  17302. },
  17303. {
  17304. name: "Mega Kaiju",
  17305. height: math.unit(240, "km")
  17306. },
  17307. {
  17308. name: "Giga Kaiju",
  17309. height: math.unit(400, "megameters")
  17310. },
  17311. {
  17312. name: "Tera Kaiju",
  17313. height: math.unit(800, "gigameters")
  17314. },
  17315. {
  17316. name: "Kaiju Dragon Goddess",
  17317. height: math.unit(26, "zettaparsecs")
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17323. {
  17324. side: {
  17325. height: math.unit(283 / 124 * 6, "feet"),
  17326. weight: math.unit(35000, "lb"),
  17327. name: "Side",
  17328. image: {
  17329. source: "./media/characters/malfaren/side.svg",
  17330. extra: 2500 / 1010,
  17331. bottom: 0.01
  17332. }
  17333. },
  17334. front: {
  17335. height: math.unit(22.36, "feet"),
  17336. weight: math.unit(35000, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/malfaren/front.svg",
  17340. extra: 1631 / 1476,
  17341. bottom: 0.01
  17342. }
  17343. },
  17344. maw: {
  17345. height: math.unit(6.9, "feet"),
  17346. name: "Maw",
  17347. image: {
  17348. source: "./media/characters/malfaren/maw.svg"
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Big",
  17355. height: math.unit(283 / 162 * 6, "feet"),
  17356. },
  17357. {
  17358. name: "Bigger",
  17359. height: math.unit(283 / 124 * 6, "feet")
  17360. },
  17361. {
  17362. name: "Massive",
  17363. height: math.unit(283 / 92 * 6, "feet"),
  17364. default: true
  17365. },
  17366. {
  17367. name: "👀💦",
  17368. height: math.unit(283 / 73 * 6, "feet"),
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(1.7, "m"),
  17377. weight: math.unit(70, "kg"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/kernel/front.svg",
  17381. extra: 222 / 210,
  17382. bottom: 0.007
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Nano",
  17389. height: math.unit(17, "micrometers")
  17390. },
  17391. {
  17392. name: "Micro",
  17393. height: math.unit(1.7, "mm")
  17394. },
  17395. {
  17396. name: "Small",
  17397. height: math.unit(1.7, "cm")
  17398. },
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(1.7, "m"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(1.75, "meters"),
  17411. weight: math.unit(65, "kg"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/jayne-folest/front.svg",
  17415. extra: 2115 / 2007,
  17416. bottom: 0.02
  17417. }
  17418. },
  17419. back: {
  17420. height: math.unit(1.75, "meters"),
  17421. weight: math.unit(65, "kg"),
  17422. name: "Back",
  17423. image: {
  17424. source: "./media/characters/jayne-folest/back.svg",
  17425. extra: 2115 / 2007,
  17426. bottom: 0.005
  17427. }
  17428. },
  17429. frontClothed: {
  17430. height: math.unit(1.75, "meters"),
  17431. weight: math.unit(65, "kg"),
  17432. name: "Front (Clothed)",
  17433. image: {
  17434. source: "./media/characters/jayne-folest/front-clothed.svg",
  17435. extra: 2115 / 2007,
  17436. bottom: 0.035
  17437. }
  17438. },
  17439. hand: {
  17440. height: math.unit(1 / 1.260, "feet"),
  17441. name: "Hand",
  17442. image: {
  17443. source: "./media/characters/jayne-folest/hand.svg"
  17444. }
  17445. },
  17446. foot: {
  17447. height: math.unit(1 / 0.918, "feet"),
  17448. name: "Foot",
  17449. image: {
  17450. source: "./media/characters/jayne-folest/foot.svg"
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Micro",
  17457. height: math.unit(4, "cm")
  17458. },
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(1.75, "meters")
  17462. },
  17463. {
  17464. name: "Macro",
  17465. height: math.unit(47.5, "meters"),
  17466. default: true
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(180, "cm"),
  17475. weight: math.unit(70, "kg"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/algier/front.svg",
  17479. extra: 596 / 572,
  17480. bottom: 0.04
  17481. }
  17482. },
  17483. back: {
  17484. height: math.unit(180, "cm"),
  17485. weight: math.unit(70, "kg"),
  17486. name: "Back",
  17487. image: {
  17488. source: "./media/characters/algier/back.svg",
  17489. extra: 596 / 572,
  17490. bottom: 0.025
  17491. }
  17492. },
  17493. frontdressed: {
  17494. height: math.unit(180, "cm"),
  17495. weight: math.unit(150, "kg"),
  17496. name: "Front-dressed",
  17497. image: {
  17498. source: "./media/characters/algier/front-dressed.svg",
  17499. extra: 596 / 572,
  17500. bottom: 0.038
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Micro",
  17507. height: math.unit(5, "cm")
  17508. },
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(180, "cm"),
  17512. default: true
  17513. },
  17514. {
  17515. name: "Macro",
  17516. height: math.unit(64, "m")
  17517. },
  17518. ]
  17519. ))
  17520. characterMakers.push(() => makeCharacter(
  17521. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17522. {
  17523. upright: {
  17524. height: math.unit(7, "feet"),
  17525. weight: math.unit(300, "lb"),
  17526. name: "Upright",
  17527. image: {
  17528. source: "./media/characters/pretzel/upright.svg",
  17529. extra: 534 / 522,
  17530. bottom: 0.065
  17531. }
  17532. },
  17533. sprawling: {
  17534. height: math.unit(3.75, "feet"),
  17535. weight: math.unit(300, "lb"),
  17536. name: "Sprawling",
  17537. image: {
  17538. source: "./media/characters/pretzel/sprawling.svg",
  17539. extra: 314 / 281,
  17540. bottom: 0.1
  17541. }
  17542. },
  17543. tongue: {
  17544. height: math.unit(2, "feet"),
  17545. name: "Tongue",
  17546. image: {
  17547. source: "./media/characters/pretzel/tongue.svg"
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(7, "feet"),
  17555. default: true
  17556. },
  17557. {
  17558. name: "Oversized",
  17559. height: math.unit(15, "feet")
  17560. },
  17561. {
  17562. name: "Huge",
  17563. height: math.unit(30, "feet")
  17564. },
  17565. {
  17566. name: "Macro",
  17567. height: math.unit(250, "feet")
  17568. },
  17569. ]
  17570. ))
  17571. characterMakers.push(() => makeCharacter(
  17572. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17573. {
  17574. sideFront: {
  17575. height: math.unit(5 + 2 / 12, "feet"),
  17576. weight: math.unit(120, "lb"),
  17577. name: "Front Side",
  17578. image: {
  17579. source: "./media/characters/roxi/side-front.svg",
  17580. extra: 2924 / 2717,
  17581. bottom: 0.08
  17582. }
  17583. },
  17584. sideBack: {
  17585. height: math.unit(5 + 2 / 12, "feet"),
  17586. weight: math.unit(120, "lb"),
  17587. name: "Back Side",
  17588. image: {
  17589. source: "./media/characters/roxi/side-back.svg",
  17590. extra: 2904 / 2693,
  17591. bottom: 0.06
  17592. }
  17593. },
  17594. front: {
  17595. height: math.unit(5 + 2 / 12, "feet"),
  17596. weight: math.unit(120, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/roxi/front.svg",
  17600. extra: 2028 / 1907,
  17601. bottom: 0.01
  17602. }
  17603. },
  17604. frontAlt: {
  17605. height: math.unit(5 + 2 / 12, "feet"),
  17606. weight: math.unit(120, "lb"),
  17607. name: "Front (Alt)",
  17608. image: {
  17609. source: "./media/characters/roxi/front-alt.svg",
  17610. extra: 1828 / 1798,
  17611. bottom: 0.01
  17612. }
  17613. },
  17614. sitting: {
  17615. height: math.unit(2.8, "feet"),
  17616. weight: math.unit(120, "lb"),
  17617. name: "Sitting",
  17618. image: {
  17619. source: "./media/characters/roxi/sitting.svg",
  17620. extra: 2660 / 2462,
  17621. bottom: 0.1
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(5 + 2 / 12, "feet"),
  17629. default: true
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17635. {
  17636. side: {
  17637. height: math.unit(55, "feet"),
  17638. weight: math.unit(153, "tons"),
  17639. name: "Side",
  17640. image: {
  17641. source: "./media/characters/shadow/side.svg",
  17642. extra: 701 / 628,
  17643. bottom: 0.02
  17644. }
  17645. },
  17646. flying: {
  17647. height: math.unit(145, "feet"),
  17648. weight: math.unit(153, "tons"),
  17649. name: "Flying",
  17650. image: {
  17651. source: "./media/characters/shadow/flying.svg"
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(55, "feet"),
  17659. default: true
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17665. {
  17666. front: {
  17667. height: math.unit(6, "feet"),
  17668. weight: math.unit(200, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/marcie/front.svg",
  17672. extra: 960 / 876,
  17673. bottom: 58 / 1017.87
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Macro",
  17680. height: math.unit(1, "mile"),
  17681. default: true
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17687. {
  17688. front: {
  17689. height: math.unit(7, "feet"),
  17690. weight: math.unit(200, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/kachina/front.svg",
  17694. extra: 1290.68 / 1119,
  17695. bottom: 36.5 / 1327.18
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(7, "feet"),
  17703. default: true
  17704. },
  17705. ]
  17706. ))
  17707. characterMakers.push(() => makeCharacter(
  17708. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17709. {
  17710. looking: {
  17711. height: math.unit(2, "meters"),
  17712. weight: math.unit(300, "kg"),
  17713. name: "Looking",
  17714. image: {
  17715. source: "./media/characters/kash/looking.svg",
  17716. extra: 474 / 344,
  17717. bottom: 0.03
  17718. }
  17719. },
  17720. side: {
  17721. height: math.unit(2, "meters"),
  17722. weight: math.unit(300, "kg"),
  17723. name: "Side",
  17724. image: {
  17725. source: "./media/characters/kash/side.svg",
  17726. extra: 302 / 251,
  17727. bottom: 0.03
  17728. }
  17729. },
  17730. front: {
  17731. height: math.unit(2, "meters"),
  17732. weight: math.unit(300, "kg"),
  17733. name: "Front",
  17734. image: {
  17735. source: "./media/characters/kash/front.svg",
  17736. extra: 495 / 360,
  17737. bottom: 0.015
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(2, "meters"),
  17745. default: true
  17746. },
  17747. {
  17748. name: "Big",
  17749. height: math.unit(3, "meters")
  17750. },
  17751. {
  17752. name: "Large",
  17753. height: math.unit(5, "meters")
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17759. {
  17760. feeding: {
  17761. height: math.unit(6.7, "feet"),
  17762. weight: math.unit(350, "lb"),
  17763. name: "Feeding",
  17764. image: {
  17765. source: "./media/characters/lalim/feeding.svg",
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(6.7, "feet"),
  17773. default: true
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(9.5, "feet"),
  17782. weight: math.unit(600, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/de'vout/front.svg",
  17786. extra: 1443 / 1328,
  17787. bottom: 0.025
  17788. }
  17789. },
  17790. back: {
  17791. height: math.unit(9.5, "feet"),
  17792. weight: math.unit(600, "lb"),
  17793. name: "Back",
  17794. image: {
  17795. source: "./media/characters/de'vout/back.svg",
  17796. extra: 1443 / 1328
  17797. }
  17798. },
  17799. frontDressed: {
  17800. height: math.unit(9.5, "feet"),
  17801. weight: math.unit(600, "lb"),
  17802. name: "Front (Dressed",
  17803. image: {
  17804. source: "./media/characters/de'vout/front-dressed.svg",
  17805. extra: 1443 / 1328,
  17806. bottom: 0.025
  17807. }
  17808. },
  17809. backDressed: {
  17810. height: math.unit(9.5, "feet"),
  17811. weight: math.unit(600, "lb"),
  17812. name: "Back (Dressed",
  17813. image: {
  17814. source: "./media/characters/de'vout/back-dressed.svg",
  17815. extra: 1443 / 1328
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(9.5, "feet"),
  17823. default: true
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(8, "feet"),
  17832. weight: math.unit(225, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/talana/front.svg",
  17836. extra: 1410 / 1300,
  17837. bottom: 0.015
  17838. }
  17839. },
  17840. frontDressed: {
  17841. height: math.unit(8, "feet"),
  17842. weight: math.unit(225, "lb"),
  17843. name: "Front (Dressed",
  17844. image: {
  17845. source: "./media/characters/talana/front-dressed.svg",
  17846. extra: 1410 / 1300,
  17847. bottom: 0.015
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(8, "feet"),
  17855. default: true
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17861. {
  17862. side: {
  17863. height: math.unit(7.2, "feet"),
  17864. weight: math.unit(150, "lb"),
  17865. name: "Side",
  17866. image: {
  17867. source: "./media/characters/xeauvok/side.svg",
  17868. extra: 1975 / 1523,
  17869. bottom: 0.07
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(7.2, "feet"),
  17877. default: true
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17883. {
  17884. side: {
  17885. height: math.unit(10, "feet"),
  17886. weight: math.unit(900, "kg"),
  17887. name: "Side",
  17888. image: {
  17889. source: "./media/characters/zara/side.svg",
  17890. extra: 504 / 498
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(10, "feet"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17904. {
  17905. side: {
  17906. height: math.unit(6, "feet"),
  17907. weight: math.unit(150, "lb"),
  17908. name: "Side",
  17909. image: {
  17910. source: "./media/characters/richard-dragon/side.svg",
  17911. extra: 845 / 340,
  17912. bottom: 0.017
  17913. }
  17914. },
  17915. maw: {
  17916. height: math.unit(2.97, "feet"),
  17917. name: "Maw",
  17918. image: {
  17919. source: "./media/characters/richard-dragon/maw.svg"
  17920. }
  17921. },
  17922. },
  17923. [
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(4, "feet"),
  17931. weight: math.unit(100, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/richard-smeargle/front.svg",
  17935. extra: 2952 / 2820,
  17936. bottom: 0.028
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(4, "feet"),
  17944. default: true
  17945. },
  17946. {
  17947. name: "Dynamax",
  17948. height: math.unit(20, "meters")
  17949. },
  17950. ]
  17951. ))
  17952. characterMakers.push(() => makeCharacter(
  17953. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17954. {
  17955. front: {
  17956. height: math.unit(6, "feet"),
  17957. weight: math.unit(110, "lb"),
  17958. name: "Front",
  17959. image: {
  17960. source: "./media/characters/klay/front.svg",
  17961. extra: 962 / 883,
  17962. bottom: 0.04
  17963. }
  17964. },
  17965. back: {
  17966. height: math.unit(6, "feet"),
  17967. weight: math.unit(110, "lb"),
  17968. name: "Back",
  17969. image: {
  17970. source: "./media/characters/klay/back.svg",
  17971. extra: 962 / 883
  17972. }
  17973. },
  17974. beans: {
  17975. height: math.unit(1.15, "feet"),
  17976. name: "Beans",
  17977. image: {
  17978. source: "./media/characters/klay/beans.svg"
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Micro",
  17985. height: math.unit(6, "inches")
  17986. },
  17987. {
  17988. name: "Mini",
  17989. height: math.unit(3, "feet")
  17990. },
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(6, "feet"),
  17994. default: true
  17995. },
  17996. {
  17997. name: "Big",
  17998. height: math.unit(25, "feet")
  17999. },
  18000. {
  18001. name: "Macro",
  18002. height: math.unit(100, "feet")
  18003. },
  18004. {
  18005. name: "Megamacro",
  18006. height: math.unit(400, "feet")
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(6, "feet"),
  18015. weight: math.unit(160, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/marcus/front.svg",
  18019. extra: 734 / 676,
  18020. bottom: 0.03
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Little",
  18027. height: math.unit(6, "feet")
  18028. },
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(110, "feet"),
  18032. default: true
  18033. },
  18034. {
  18035. name: "Macro",
  18036. height: math.unit(250, "feet")
  18037. },
  18038. {
  18039. name: "Megamacro",
  18040. height: math.unit(1000, "feet")
  18041. },
  18042. ]
  18043. ))
  18044. characterMakers.push(() => makeCharacter(
  18045. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18046. {
  18047. front: {
  18048. height: math.unit(7, "feet"),
  18049. weight: math.unit(275, "lb"),
  18050. name: "Front",
  18051. image: {
  18052. source: "./media/characters/claude-delroute/front.svg",
  18053. extra: 230 / 214,
  18054. bottom: 0.007
  18055. }
  18056. },
  18057. side: {
  18058. height: math.unit(7, "feet"),
  18059. weight: math.unit(275, "lb"),
  18060. name: "Side",
  18061. image: {
  18062. source: "./media/characters/claude-delroute/side.svg",
  18063. extra: 222 / 214,
  18064. bottom: 0.01
  18065. }
  18066. },
  18067. back: {
  18068. height: math.unit(7, "feet"),
  18069. weight: math.unit(275, "lb"),
  18070. name: "Back",
  18071. image: {
  18072. source: "./media/characters/claude-delroute/back.svg",
  18073. extra: 230 / 214,
  18074. bottom: 0.015
  18075. }
  18076. },
  18077. maw: {
  18078. height: math.unit(0.6407, "meters"),
  18079. name: "Maw",
  18080. image: {
  18081. source: "./media/characters/claude-delroute/maw.svg"
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(7, "feet"),
  18089. default: true
  18090. },
  18091. {
  18092. name: "Lorge",
  18093. height: math.unit(20, "feet")
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(8 + 4 / 12, "feet"),
  18102. weight: math.unit(600, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/dragonien/front.svg",
  18106. extra: 100 / 94,
  18107. bottom: 3.3 / 103.3445
  18108. }
  18109. },
  18110. back: {
  18111. height: math.unit(8 + 4 / 12, "feet"),
  18112. weight: math.unit(600, "lb"),
  18113. name: "Back",
  18114. image: {
  18115. source: "./media/characters/dragonien/back.svg",
  18116. extra: 776 / 746,
  18117. bottom: 6.4 / 782.0616
  18118. }
  18119. },
  18120. foot: {
  18121. height: math.unit(1.54, "feet"),
  18122. name: "Foot",
  18123. image: {
  18124. source: "./media/characters/dragonien/foot.svg",
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(8 + 4 / 12, "feet"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(200, "feet")
  18137. },
  18138. {
  18139. name: "Megamacro",
  18140. height: math.unit(1, "mile")
  18141. },
  18142. {
  18143. name: "Gigamacro",
  18144. height: math.unit(1000, "miles")
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(5 + 2 / 12, "feet"),
  18153. weight: math.unit(110, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/desta/front.svg",
  18157. extra: 767 / 726,
  18158. bottom: 11.7 / 779
  18159. }
  18160. },
  18161. back: {
  18162. height: math.unit(5 + 2 / 12, "feet"),
  18163. weight: math.unit(110, "lb"),
  18164. name: "Back",
  18165. image: {
  18166. source: "./media/characters/desta/back.svg",
  18167. extra: 777 / 728,
  18168. bottom: 6 / 784
  18169. }
  18170. },
  18171. frontAlt: {
  18172. height: math.unit(5 + 2 / 12, "feet"),
  18173. weight: math.unit(110, "lb"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/desta/front-alt.svg",
  18177. extra: 1482 / 1417
  18178. }
  18179. },
  18180. side: {
  18181. height: math.unit(5 + 2 / 12, "feet"),
  18182. weight: math.unit(110, "lb"),
  18183. name: "Side",
  18184. image: {
  18185. source: "./media/characters/desta/side.svg",
  18186. extra: 2579 / 2491,
  18187. bottom: 0.053
  18188. }
  18189. },
  18190. },
  18191. [
  18192. {
  18193. name: "Micro",
  18194. height: math.unit(6, "inches")
  18195. },
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(5 + 2 / 12, "feet"),
  18199. default: true
  18200. },
  18201. {
  18202. name: "Macro",
  18203. height: math.unit(62, "feet")
  18204. },
  18205. {
  18206. name: "Megamacro",
  18207. height: math.unit(1800, "feet")
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18213. {
  18214. front: {
  18215. height: math.unit(10, "feet"),
  18216. weight: math.unit(700, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/storm-alystar/front.svg",
  18220. extra: 2112 / 1898,
  18221. bottom: 0.034
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Micro",
  18228. height: math.unit(3.5, "inches")
  18229. },
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(10, "feet"),
  18233. default: true
  18234. },
  18235. {
  18236. name: "Macro",
  18237. height: math.unit(400, "feet")
  18238. },
  18239. {
  18240. name: "Deific",
  18241. height: math.unit(60, "miles")
  18242. },
  18243. ]
  18244. ))
  18245. characterMakers.push(() => makeCharacter(
  18246. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18247. {
  18248. front: {
  18249. height: math.unit(2.35, "meters"),
  18250. weight: math.unit(119, "kg"),
  18251. name: "Front",
  18252. image: {
  18253. source: "./media/characters/ilia/front.svg",
  18254. extra: 1285 / 1255,
  18255. bottom: 0.06
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(2.35, "meters")
  18263. },
  18264. {
  18265. name: "Macro",
  18266. height: math.unit(140, "meters"),
  18267. default: true
  18268. },
  18269. {
  18270. name: "Megamacro",
  18271. height: math.unit(100, "miles")
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18277. {
  18278. front: {
  18279. height: math.unit(6 + 5 / 12, "feet"),
  18280. weight: math.unit(190, "lb"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/kingdead/front.svg",
  18284. extra: 1228 / 1177
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Micro",
  18291. height: math.unit(7, "inches")
  18292. },
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(6 + 5 / 12, "feet")
  18296. },
  18297. {
  18298. name: "Macro",
  18299. height: math.unit(150, "feet"),
  18300. default: true
  18301. },
  18302. {
  18303. name: "Megamacro",
  18304. height: math.unit(200, "miles")
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(8, "feet"),
  18313. weight: math.unit(600, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/kyrehx/front.svg",
  18317. extra: 1195 / 1095,
  18318. bottom: 0.034
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Micro",
  18325. height: math.unit(2, "inches")
  18326. },
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(8, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(255, "feet")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18343. weight: math.unit(184, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/xang/front.svg",
  18347. extra: 845 / 755
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18355. default: true
  18356. },
  18357. {
  18358. name: "Macro",
  18359. height: math.unit(0.935 * 146, "feet")
  18360. },
  18361. {
  18362. name: "Megamacro",
  18363. height: math.unit(0.935 * 3, "miles")
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18369. {
  18370. frontDressed: {
  18371. height: math.unit(5 + 7 / 12, "feet"),
  18372. weight: math.unit(140, "lb"),
  18373. name: "Front (Dressed)",
  18374. image: {
  18375. source: "./media/characters/doc-weardno/front-dressed.svg",
  18376. extra: 263 / 234
  18377. }
  18378. },
  18379. backDressed: {
  18380. height: math.unit(5 + 7 / 12, "feet"),
  18381. weight: math.unit(140, "lb"),
  18382. name: "Back (Dressed)",
  18383. image: {
  18384. source: "./media/characters/doc-weardno/back-dressed.svg",
  18385. extra: 266 / 238
  18386. }
  18387. },
  18388. front: {
  18389. height: math.unit(5 + 7 / 12, "feet"),
  18390. weight: math.unit(140, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/doc-weardno/front.svg",
  18394. extra: 254 / 233
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Micro",
  18401. height: math.unit(3, "inches")
  18402. },
  18403. {
  18404. name: "Normal",
  18405. height: math.unit(5 + 7 / 12, "feet"),
  18406. default: true
  18407. },
  18408. {
  18409. name: "Macro",
  18410. height: math.unit(25, "feet")
  18411. },
  18412. {
  18413. name: "Megamacro",
  18414. height: math.unit(2, "miles")
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(6 + 2 / 12, "feet"),
  18423. weight: math.unit(153, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/seth-whilst/front.svg",
  18427. bottom: 0.07
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Micro",
  18434. height: math.unit(5, "inches")
  18435. },
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(6 + 2 / 12, "feet"),
  18439. default: true
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(3, "inches"),
  18448. weight: math.unit(8, "grams"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/pocket-jabari/front.svg",
  18452. extra: 1024 / 974,
  18453. bottom: 0.039
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Minimicro",
  18460. height: math.unit(8, "mm")
  18461. },
  18462. {
  18463. name: "Micro",
  18464. height: math.unit(3, "inches"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(3, "feet")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18475. {
  18476. front: {
  18477. height: math.unit(15, "feet"),
  18478. weight: math.unit(3280, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/sapphy/front.svg",
  18482. extra: 671 / 577,
  18483. bottom: 0.085
  18484. }
  18485. },
  18486. back: {
  18487. height: math.unit(15, "feet"),
  18488. weight: math.unit(3280, "lb"),
  18489. name: "Back",
  18490. image: {
  18491. source: "./media/characters/sapphy/back.svg",
  18492. extra: 631 / 607,
  18493. bottom: 0.045
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(15, "feet")
  18501. },
  18502. {
  18503. name: "Casual Macro",
  18504. height: math.unit(120, "feet")
  18505. },
  18506. {
  18507. name: "Macro",
  18508. height: math.unit(2150, "feet"),
  18509. default: true
  18510. },
  18511. {
  18512. name: "Megamacro",
  18513. height: math.unit(8, "miles")
  18514. },
  18515. {
  18516. name: "Galaxy Mom",
  18517. height: math.unit(6, "megalightyears")
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18523. {
  18524. front: {
  18525. height: math.unit(6, "feet"),
  18526. weight: math.unit(170, "lb"),
  18527. name: "Front",
  18528. image: {
  18529. source: "./media/characters/kiro/front.svg",
  18530. extra: 1064 / 1012,
  18531. bottom: 0.052
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Micro",
  18538. height: math.unit(6, "inches")
  18539. },
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(6, "feet"),
  18543. default: true
  18544. },
  18545. {
  18546. name: "Macro",
  18547. height: math.unit(72, "feet")
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(5 + 9 / 12, "feet"),
  18556. weight: math.unit(175, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/irishfox/front.svg",
  18560. extra: 1912 / 1680,
  18561. bottom: 0.02
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Nano",
  18568. height: math.unit(1, "mm")
  18569. },
  18570. {
  18571. name: "Micro",
  18572. height: math.unit(2, "inches")
  18573. },
  18574. {
  18575. name: "Normal",
  18576. height: math.unit(5 + 9 / 12, "feet"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Macro",
  18581. height: math.unit(45, "feet")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(6 + 1 / 12, "feet"),
  18590. weight: math.unit(75, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/aronai-sieyes/front.svg",
  18594. extra: 1556 / 1480,
  18595. bottom: 0.015
  18596. }
  18597. },
  18598. side: {
  18599. height: math.unit(6 + 1 / 12, "feet"),
  18600. weight: math.unit(75, "lb"),
  18601. name: "Side",
  18602. image: {
  18603. source: "./media/characters/aronai-sieyes/side.svg",
  18604. extra: 1433 / 1390,
  18605. bottom: 0.0393
  18606. }
  18607. },
  18608. back: {
  18609. height: math.unit(6 + 1 / 12, "feet"),
  18610. weight: math.unit(75, "lb"),
  18611. name: "Back",
  18612. image: {
  18613. source: "./media/characters/aronai-sieyes/back.svg",
  18614. extra: 1544 / 1494,
  18615. bottom: 0.02
  18616. }
  18617. },
  18618. frontClothed: {
  18619. height: math.unit(6 + 1 / 12, "feet"),
  18620. weight: math.unit(75, "lb"),
  18621. name: "Front (Clothed)",
  18622. image: {
  18623. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18624. extra: 1582 / 1527
  18625. }
  18626. },
  18627. feral: {
  18628. height: math.unit(18, "feet"),
  18629. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18630. name: "Feral",
  18631. image: {
  18632. source: "./media/characters/aronai-sieyes/feral.svg",
  18633. extra: 1530 / 1240,
  18634. bottom: 0.035
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Micro",
  18641. height: math.unit(2, "inches")
  18642. },
  18643. {
  18644. name: "Normal",
  18645. height: math.unit(6 + 1 / 12, "feet"),
  18646. default: true
  18647. }
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(12, "feet"),
  18655. weight: math.unit(410, "kg"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/xuna/front.svg",
  18659. extra: 2184 / 1980
  18660. }
  18661. },
  18662. side: {
  18663. height: math.unit(12, "feet"),
  18664. weight: math.unit(410, "kg"),
  18665. name: "Side",
  18666. image: {
  18667. source: "./media/characters/xuna/side.svg",
  18668. extra: 2184 / 1980
  18669. }
  18670. },
  18671. back: {
  18672. height: math.unit(12, "feet"),
  18673. weight: math.unit(410, "kg"),
  18674. name: "Back",
  18675. image: {
  18676. source: "./media/characters/xuna/back.svg",
  18677. extra: 2184 / 1980
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Nano glow",
  18684. height: math.unit(10, "nm")
  18685. },
  18686. {
  18687. name: "Micro floof",
  18688. height: math.unit(0.3, "m")
  18689. },
  18690. {
  18691. name: "Huggable softy boi",
  18692. height: math.unit(3.6576, "m"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Admirable floof",
  18697. height: math.unit(80, "meters")
  18698. },
  18699. {
  18700. name: "Gentle macro",
  18701. height: math.unit(300, "meters")
  18702. },
  18703. {
  18704. name: "Very careful floof",
  18705. height: math.unit(3200, "meters")
  18706. },
  18707. {
  18708. name: "The mega floof",
  18709. height: math.unit(36000, "meters")
  18710. },
  18711. {
  18712. name: "Giga-fur-Wicker",
  18713. height: math.unit(4800000, "meters")
  18714. },
  18715. {
  18716. name: "Licky world",
  18717. height: math.unit(20000000, "meters")
  18718. },
  18719. {
  18720. name: "Floofy cyan sun",
  18721. height: math.unit(1500000000, "meters")
  18722. },
  18723. {
  18724. name: "Milky Wicker",
  18725. height: math.unit(1000000000000000000000, "meters")
  18726. },
  18727. {
  18728. name: "The observing Wicker",
  18729. height: math.unit(999999999999999999999999999, "meters")
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(5 + 9 / 12, "feet"),
  18738. weight: math.unit(150, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/arokha-sieyes/front.svg",
  18742. extra: 1425 / 1284,
  18743. bottom: 0.05
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(5 + 9 / 12, "feet")
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(30, "meters"),
  18755. default: true
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(6, "feet"),
  18764. weight: math.unit(180, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/arokh-sieyes/front.svg",
  18768. extra: 1830 / 1769,
  18769. bottom: 0.01
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(6, "feet")
  18777. },
  18778. {
  18779. name: "Macro",
  18780. height: math.unit(30, "meters"),
  18781. default: true
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18787. {
  18788. side: {
  18789. height: math.unit(13 + 1 / 12, "feet"),
  18790. weight: math.unit(8.5, "tonnes"),
  18791. name: "Side",
  18792. image: {
  18793. source: "./media/characters/goldeneye/side.svg",
  18794. extra: 1182 / 778,
  18795. bottom: 0.067
  18796. }
  18797. },
  18798. paw: {
  18799. height: math.unit(3.4, "feet"),
  18800. name: "Paw",
  18801. image: {
  18802. source: "./media/characters/goldeneye/paw.svg"
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(13 + 1 / 12, "feet"),
  18810. default: true
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18816. {
  18817. front: {
  18818. height: math.unit(6 + 1 / 12, "feet"),
  18819. weight: math.unit(210, "lb"),
  18820. name: "Front",
  18821. image: {
  18822. source: "./media/characters/leonardo-lycheborne/front.svg",
  18823. extra: 390 / 365,
  18824. bottom: 0.032
  18825. }
  18826. },
  18827. side: {
  18828. height: math.unit(6 + 1 / 12, "feet"),
  18829. weight: math.unit(210, "lb"),
  18830. name: "Side",
  18831. image: {
  18832. source: "./media/characters/leonardo-lycheborne/side.svg",
  18833. extra: 390 / 365,
  18834. bottom: 0.005
  18835. }
  18836. },
  18837. back: {
  18838. height: math.unit(6 + 1 / 12, "feet"),
  18839. weight: math.unit(210, "lb"),
  18840. name: "Back",
  18841. image: {
  18842. source: "./media/characters/leonardo-lycheborne/back.svg",
  18843. extra: 392 / 366,
  18844. bottom: 0.01
  18845. }
  18846. },
  18847. hand: {
  18848. height: math.unit(1.08, "feet"),
  18849. name: "Hand",
  18850. image: {
  18851. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18852. }
  18853. },
  18854. foot: {
  18855. height: math.unit(1.32, "feet"),
  18856. name: "Foot",
  18857. image: {
  18858. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18859. }
  18860. },
  18861. were: {
  18862. height: math.unit(20, "feet"),
  18863. weight: math.unit(7800, "lb"),
  18864. name: "Were",
  18865. image: {
  18866. source: "./media/characters/leonardo-lycheborne/were.svg",
  18867. extra: 308 / 294,
  18868. bottom: 0.048
  18869. }
  18870. },
  18871. feral: {
  18872. height: math.unit(7.5, "feet"),
  18873. weight: math.unit(600, "lb"),
  18874. name: "Feral",
  18875. image: {
  18876. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18877. extra: 210 / 186,
  18878. bottom: 0.108
  18879. }
  18880. },
  18881. taur: {
  18882. height: math.unit(11, "feet"),
  18883. weight: math.unit(3300, "lb"),
  18884. name: "Taur",
  18885. image: {
  18886. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18887. extra: 320 / 303,
  18888. bottom: 0.025
  18889. }
  18890. },
  18891. barghest: {
  18892. height: math.unit(11, "feet"),
  18893. weight: math.unit(1300, "lb"),
  18894. name: "Barghest",
  18895. image: {
  18896. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18897. extra: 323 / 302,
  18898. bottom: 0.027
  18899. }
  18900. },
  18901. dick: {
  18902. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18903. name: "Dick",
  18904. image: {
  18905. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18906. }
  18907. },
  18908. dickWere: {
  18909. height: math.unit((20) / 3.8, "feet"),
  18910. name: "Dick (Were)",
  18911. image: {
  18912. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(6 + 1 / 12, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(10, "feet"),
  18929. weight: math.unit(350, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/jet/front.svg",
  18933. extra: 2050 / 1980,
  18934. bottom: 0.013
  18935. }
  18936. },
  18937. back: {
  18938. height: math.unit(10, "feet"),
  18939. weight: math.unit(350, "lb"),
  18940. name: "Back",
  18941. image: {
  18942. source: "./media/characters/jet/back.svg",
  18943. extra: 2050 / 1980,
  18944. bottom: 0.013
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Micro",
  18951. height: math.unit(6, "inches")
  18952. },
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(10, "feet"),
  18956. default: true
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(100, "feet")
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(15, "feet"),
  18969. weight: math.unit(2800, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/tanarath/front.svg",
  18973. extra: 2392 / 2220,
  18974. bottom: 0.03
  18975. }
  18976. },
  18977. back: {
  18978. height: math.unit(15, "feet"),
  18979. weight: math.unit(2800, "lb"),
  18980. name: "Back",
  18981. image: {
  18982. source: "./media/characters/tanarath/back.svg",
  18983. extra: 2392 / 2220,
  18984. bottom: 0.03
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(15, "feet"),
  18992. default: true
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(7 + 1 / 12, "feet"),
  19001. weight: math.unit(175, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/patty-cattybatty/front.svg",
  19005. extra: 908 / 874,
  19006. bottom: 0.025
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Micro",
  19013. height: math.unit(1, "inch")
  19014. },
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(7 + 1 / 12, "feet")
  19018. },
  19019. {
  19020. name: "Mini Macro",
  19021. height: math.unit(155, "feet")
  19022. },
  19023. {
  19024. name: "Macro",
  19025. height: math.unit(1077, "feet")
  19026. },
  19027. {
  19028. name: "Mega Macro",
  19029. height: math.unit(47650, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Giga Macro",
  19034. height: math.unit(440, "miles")
  19035. },
  19036. {
  19037. name: "Tera Macro",
  19038. height: math.unit(8700, "miles")
  19039. },
  19040. {
  19041. name: "Planetary Macro",
  19042. height: math.unit(32700, "miles")
  19043. },
  19044. {
  19045. name: "Solar Macro",
  19046. height: math.unit(550000, "miles")
  19047. },
  19048. {
  19049. name: "Celestial Macro",
  19050. height: math.unit(2.5, "AU")
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(4 + 5 / 12, "feet"),
  19059. weight: math.unit(90, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/cappu/front.svg",
  19063. extra: 1247 / 1152,
  19064. bottom: 0.012
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(4 + 5 / 12, "feet"),
  19072. default: true
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19078. {
  19079. frontDressed: {
  19080. height: math.unit(70, "cm"),
  19081. weight: math.unit(6, "kg"),
  19082. name: "Front (Dressed)",
  19083. image: {
  19084. source: "./media/characters/sebi/front-dressed.svg",
  19085. extra: 713.5 / 686.5,
  19086. bottom: 0.003
  19087. }
  19088. },
  19089. front: {
  19090. height: math.unit(70, "cm"),
  19091. weight: math.unit(5, "kg"),
  19092. name: "Front",
  19093. image: {
  19094. source: "./media/characters/sebi/front.svg",
  19095. extra: 713.5 / 686.5,
  19096. bottom: 0.003
  19097. }
  19098. }
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(70, "cm"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(8, "meters")
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(6, "feet"),
  19117. weight: math.unit(150, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/typhek/front.svg",
  19121. extra: 1948 / 1929,
  19122. bottom: 0.025
  19123. }
  19124. },
  19125. side: {
  19126. height: math.unit(6, "feet"),
  19127. weight: math.unit(150, "lb"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/typhek/side.svg",
  19131. extra: 2034 / 2010,
  19132. bottom: 0.003
  19133. }
  19134. },
  19135. back: {
  19136. height: math.unit(6, "feet"),
  19137. weight: math.unit(150, "lb"),
  19138. name: "Back",
  19139. image: {
  19140. source: "./media/characters/typhek/back.svg",
  19141. extra: 2005 / 1978,
  19142. bottom: 0.004
  19143. }
  19144. },
  19145. palm: {
  19146. height: math.unit(1.2, "feet"),
  19147. name: "Palm",
  19148. image: {
  19149. source: "./media/characters/typhek/palm.svg"
  19150. }
  19151. },
  19152. fist: {
  19153. height: math.unit(1.1, "feet"),
  19154. name: "Fist",
  19155. image: {
  19156. source: "./media/characters/typhek/fist.svg"
  19157. }
  19158. },
  19159. foot: {
  19160. height: math.unit(1.57, "feet"),
  19161. name: "Foot",
  19162. image: {
  19163. source: "./media/characters/typhek/foot.svg"
  19164. }
  19165. },
  19166. sole: {
  19167. height: math.unit(2.05, "feet"),
  19168. name: "Sole",
  19169. image: {
  19170. source: "./media/characters/typhek/sole.svg"
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Macro",
  19177. height: math.unit(40, "stories"),
  19178. default: true
  19179. },
  19180. {
  19181. name: "Megamacro",
  19182. height: math.unit(1, "mile")
  19183. },
  19184. {
  19185. name: "Gigamacro",
  19186. height: math.unit(4000, "solarradii")
  19187. },
  19188. {
  19189. name: "Universal",
  19190. height: math.unit(1.1, "universes")
  19191. }
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19196. {
  19197. side: {
  19198. height: math.unit(5 + 7 / 12, "feet"),
  19199. weight: math.unit(150, "lb"),
  19200. name: "Side",
  19201. image: {
  19202. source: "./media/characters/kassy/side.svg",
  19203. extra: 1280 / 1225,
  19204. bottom: 0.002
  19205. }
  19206. },
  19207. front: {
  19208. height: math.unit(5 + 7 / 12, "feet"),
  19209. weight: math.unit(150, "lb"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/kassy/front.svg",
  19213. extra: 1280 / 1225,
  19214. bottom: 0.025
  19215. }
  19216. },
  19217. back: {
  19218. height: math.unit(5 + 7 / 12, "feet"),
  19219. weight: math.unit(150, "lb"),
  19220. name: "Back",
  19221. image: {
  19222. source: "./media/characters/kassy/back.svg",
  19223. extra: 1280 / 1225,
  19224. bottom: 0.002
  19225. }
  19226. },
  19227. foot: {
  19228. height: math.unit(1.266, "feet"),
  19229. name: "Foot",
  19230. image: {
  19231. source: "./media/characters/kassy/foot.svg"
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(5 + 7 / 12, "feet")
  19239. },
  19240. {
  19241. name: "Macro",
  19242. height: math.unit(137, "feet"),
  19243. default: true
  19244. },
  19245. {
  19246. name: "Megamacro",
  19247. height: math.unit(1, "mile")
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(6 + 1 / 12, "feet"),
  19256. weight: math.unit(200, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/neil/front.svg",
  19260. extra: 1326 / 1250,
  19261. bottom: 0.023
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(6 + 1 / 12, "feet"),
  19269. default: true
  19270. },
  19271. {
  19272. name: "Macro",
  19273. height: math.unit(200, "feet")
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19279. {
  19280. front: {
  19281. height: math.unit(5 + 9 / 12, "feet"),
  19282. weight: math.unit(190, "lb"),
  19283. name: "Front",
  19284. image: {
  19285. source: "./media/characters/atticus/front.svg",
  19286. extra: 2934 / 2785,
  19287. bottom: 0.025
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(5 + 9 / 12, "feet"),
  19295. default: true
  19296. },
  19297. {
  19298. name: "Macro",
  19299. height: math.unit(180, "feet")
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19305. {
  19306. side: {
  19307. height: math.unit(9, "feet"),
  19308. weight: math.unit(650, "lb"),
  19309. name: "Side",
  19310. image: {
  19311. source: "./media/characters/milo/side.svg",
  19312. extra: 2644 / 2310,
  19313. bottom: 0.032
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(9, "feet"),
  19321. default: true
  19322. },
  19323. {
  19324. name: "Macro",
  19325. height: math.unit(300, "feet")
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19331. {
  19332. side: {
  19333. height: math.unit(8, "meters"),
  19334. weight: math.unit(90000, "kg"),
  19335. name: "Side",
  19336. image: {
  19337. source: "./media/characters/ijzer/side.svg",
  19338. extra: 2756 / 1600,
  19339. bottom: 0.01
  19340. }
  19341. },
  19342. },
  19343. [
  19344. {
  19345. name: "Small",
  19346. height: math.unit(3, "meters")
  19347. },
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(8, "meters"),
  19351. default: true
  19352. },
  19353. {
  19354. name: "Normal+",
  19355. height: math.unit(10, "meters")
  19356. },
  19357. {
  19358. name: "Bigger",
  19359. height: math.unit(24, "meters")
  19360. },
  19361. {
  19362. name: "Huge",
  19363. height: math.unit(80, "meters")
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19369. {
  19370. front: {
  19371. height: math.unit(6 + 2 / 12, "feet"),
  19372. weight: math.unit(153, "lb"),
  19373. name: "Front",
  19374. image: {
  19375. source: "./media/characters/luca-cervicum/front.svg",
  19376. extra: 370 / 327,
  19377. bottom: 0.015
  19378. }
  19379. },
  19380. back: {
  19381. height: math.unit(6 + 2 / 12, "feet"),
  19382. weight: math.unit(153, "lb"),
  19383. name: "Back",
  19384. image: {
  19385. source: "./media/characters/luca-cervicum/back.svg",
  19386. extra: 367 / 333,
  19387. bottom: 0.005
  19388. }
  19389. },
  19390. frontGear: {
  19391. height: math.unit(6 + 2 / 12, "feet"),
  19392. weight: math.unit(173, "lb"),
  19393. name: "Front (Gear)",
  19394. image: {
  19395. source: "./media/characters/luca-cervicum/front-gear.svg",
  19396. extra: 377 / 333,
  19397. bottom: 0.006
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(6 + 2 / 12, "feet"),
  19405. default: true
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(6 + 1 / 12, "feet"),
  19414. weight: math.unit(304, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/oliver/front.svg",
  19418. extra: 157 / 143,
  19419. bottom: 0.08
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(6 + 1 / 12, "feet"),
  19427. default: true
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(5 + 7 / 12, "feet"),
  19436. weight: math.unit(140, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/shane/front.svg",
  19440. extra: 304 / 289,
  19441. bottom: 0.005
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(5 + 7 / 12, "feet"),
  19449. default: true
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(5 + 9 / 12, "feet"),
  19458. weight: math.unit(178, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/shin/front.svg",
  19462. extra: 159 / 151,
  19463. bottom: 0.015
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(5 + 9 / 12, "feet"),
  19471. default: true
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(5 + 10 / 12, "feet"),
  19480. weight: math.unit(168, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/xerxes/front.svg",
  19484. extra: 282 / 260,
  19485. bottom: 0.045
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(5 + 10 / 12, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(6 + 7 / 12, "feet"),
  19502. weight: math.unit(208, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/chaska/front.svg",
  19506. extra: 332 / 319,
  19507. bottom: 0.015
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(6 + 7 / 12, "feet"),
  19515. default: true
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(5 + 8 / 12, "feet"),
  19524. weight: math.unit(208, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/enuk/front.svg",
  19528. extra: 437 / 406,
  19529. bottom: 0.02
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(5 + 8 / 12, "feet"),
  19537. default: true
  19538. },
  19539. ]
  19540. ))
  19541. characterMakers.push(() => makeCharacter(
  19542. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19543. {
  19544. front: {
  19545. height: math.unit(5 + 10 / 12, "feet"),
  19546. weight: math.unit(252, "lb"),
  19547. name: "Front",
  19548. image: {
  19549. source: "./media/characters/bruun/front.svg",
  19550. extra: 197 / 187,
  19551. bottom: 0.012
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(5 + 10 / 12, "feet"),
  19559. default: true
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19565. {
  19566. front: {
  19567. height: math.unit(6 + 10 / 12, "feet"),
  19568. weight: math.unit(255, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/alexeev/front.svg",
  19572. extra: 213 / 200,
  19573. bottom: 0.05
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(6 + 10 / 12, "feet"),
  19581. default: true
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(2 + 8 / 12, "feet"),
  19590. weight: math.unit(22, "lb"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/evelyn/front.svg",
  19594. extra: 208 / 180
  19595. }
  19596. },
  19597. },
  19598. [
  19599. {
  19600. name: "Normal",
  19601. height: math.unit(2 + 8 / 12, "feet"),
  19602. default: true
  19603. },
  19604. ]
  19605. ))
  19606. characterMakers.push(() => makeCharacter(
  19607. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19608. {
  19609. front: {
  19610. height: math.unit(5 + 9 / 12, "feet"),
  19611. weight: math.unit(139, "lb"),
  19612. name: "Front",
  19613. image: {
  19614. source: "./media/characters/inca/front.svg",
  19615. extra: 294 / 291,
  19616. bottom: 0.03
  19617. }
  19618. },
  19619. },
  19620. [
  19621. {
  19622. name: "Normal",
  19623. height: math.unit(5 + 9 / 12, "feet"),
  19624. default: true
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(5 + 1 / 12, "feet"),
  19633. weight: math.unit(84, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/magdalene/front.svg",
  19637. extra: 293 / 273
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Normal",
  19644. height: math.unit(5 + 1 / 12, "feet"),
  19645. default: true
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19651. {
  19652. front: {
  19653. height: math.unit(6 + 3 / 12, "feet"),
  19654. weight: math.unit(185, "lb"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/mera/front.svg",
  19658. extra: 291 / 277,
  19659. bottom: 0.03
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(6 + 3 / 12, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(6 + 7 / 12, "feet"),
  19676. weight: math.unit(160, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/ceres/front.svg",
  19680. extra: 1023 / 950,
  19681. bottom: 0.027
  19682. }
  19683. },
  19684. back: {
  19685. height: math.unit(6 + 7 / 12, "feet"),
  19686. weight: math.unit(160, "lb"),
  19687. name: "Back",
  19688. image: {
  19689. source: "./media/characters/ceres/back.svg",
  19690. extra: 1023 / 950
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(6 + 7 / 12, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(5 + 10 / 12, "feet"),
  19707. weight: math.unit(150, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/kris/front.svg",
  19711. extra: 885 / 803,
  19712. bottom: 0.03
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(5 + 10 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(7, "feet"),
  19729. weight: math.unit(120, "kg"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/taluthus/front.svg",
  19733. extra: 903 / 833,
  19734. bottom: 0.015
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(7, "feet"),
  19742. default: true
  19743. },
  19744. {
  19745. name: "Macro",
  19746. height: math.unit(300, "feet")
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19752. {
  19753. front: {
  19754. height: math.unit(5 + 9 / 12, "feet"),
  19755. weight: math.unit(145, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/dawn/front.svg",
  19759. extra: 2094 / 2016,
  19760. bottom: 0.025
  19761. }
  19762. },
  19763. back: {
  19764. height: math.unit(5 + 9 / 12, "feet"),
  19765. weight: math.unit(160, "lb"),
  19766. name: "Back",
  19767. image: {
  19768. source: "./media/characters/dawn/back.svg",
  19769. extra: 2112 / 2080,
  19770. bottom: 0.005
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(6 + 7 / 12, "feet"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19784. {
  19785. anthro: {
  19786. height: math.unit(8 + 3 / 12, "feet"),
  19787. weight: math.unit(450, "lb"),
  19788. name: "Anthro",
  19789. image: {
  19790. source: "./media/characters/arador/anthro.svg",
  19791. extra: 1835 / 1718,
  19792. bottom: 0.025
  19793. }
  19794. },
  19795. feral: {
  19796. height: math.unit(4, "feet"),
  19797. weight: math.unit(200, "lb"),
  19798. name: "Feral",
  19799. image: {
  19800. source: "./media/characters/arador/feral.svg",
  19801. extra: 1683 / 1514,
  19802. bottom: 0.07
  19803. }
  19804. },
  19805. },
  19806. [
  19807. {
  19808. name: "Normal",
  19809. height: math.unit(8 + 3 / 12, "feet")
  19810. },
  19811. {
  19812. name: "Macro",
  19813. height: math.unit(82.5, "feet"),
  19814. default: true
  19815. },
  19816. ]
  19817. ))
  19818. characterMakers.push(() => makeCharacter(
  19819. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19820. {
  19821. front: {
  19822. height: math.unit(5 + 10 / 12, "feet"),
  19823. weight: math.unit(125, "lb"),
  19824. name: "Front",
  19825. image: {
  19826. source: "./media/characters/dharsi/front.svg",
  19827. extra: 716 / 630,
  19828. bottom: 0.035
  19829. }
  19830. },
  19831. },
  19832. [
  19833. {
  19834. name: "Nano",
  19835. height: math.unit(100, "nm")
  19836. },
  19837. {
  19838. name: "Micro",
  19839. height: math.unit(2, "inches")
  19840. },
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(5 + 10 / 12, "feet"),
  19844. default: true
  19845. },
  19846. {
  19847. name: "Macro",
  19848. height: math.unit(1000, "feet")
  19849. },
  19850. {
  19851. name: "Megamacro",
  19852. height: math.unit(10, "miles")
  19853. },
  19854. {
  19855. name: "Gigamacro",
  19856. height: math.unit(3000, "miles")
  19857. },
  19858. {
  19859. name: "Teramacro",
  19860. height: math.unit(500000, "miles")
  19861. },
  19862. {
  19863. name: "Teramacro+",
  19864. height: math.unit(30, "galaxies")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(6, "feet"),
  19873. weight: math.unit(150, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/deathy/front.svg",
  19877. extra: 1552 / 1463,
  19878. bottom: 0.025
  19879. }
  19880. },
  19881. side: {
  19882. height: math.unit(6, "feet"),
  19883. weight: math.unit(150, "lb"),
  19884. name: "Side",
  19885. image: {
  19886. source: "./media/characters/deathy/side.svg",
  19887. extra: 1604 / 1455,
  19888. bottom: 0.025
  19889. }
  19890. },
  19891. back: {
  19892. height: math.unit(6, "feet"),
  19893. weight: math.unit(150, "lb"),
  19894. name: "Back",
  19895. image: {
  19896. source: "./media/characters/deathy/back.svg",
  19897. extra: 1580 / 1463,
  19898. bottom: 0.005
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Micro",
  19905. height: math.unit(5, "millimeters")
  19906. },
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(6 + 5 / 12, "feet"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19916. {
  19917. front: {
  19918. height: math.unit(16, "feet"),
  19919. weight: math.unit(4000, "lb"),
  19920. name: "Front",
  19921. image: {
  19922. source: "./media/characters/juniper/front.svg",
  19923. bottom: 0.04
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(16, "feet"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(6, "feet"),
  19940. weight: math.unit(150, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/hipster/front.svg",
  19944. extra: 1312 / 1209,
  19945. bottom: 0.025
  19946. }
  19947. },
  19948. back: {
  19949. height: math.unit(6, "feet"),
  19950. weight: math.unit(150, "lb"),
  19951. name: "Back",
  19952. image: {
  19953. source: "./media/characters/hipster/back.svg",
  19954. extra: 1281 / 1196,
  19955. bottom: 0.01
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Micro",
  19962. height: math.unit(1, "mm")
  19963. },
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(4, "inches"),
  19967. default: true
  19968. },
  19969. {
  19970. name: "Macro",
  19971. height: math.unit(500, "feet")
  19972. },
  19973. {
  19974. name: "Megamacro",
  19975. height: math.unit(1000, "miles")
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(6, "feet"),
  19984. weight: math.unit(150, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/tendirmuldr/front.svg",
  19988. extra: 1878 / 1772,
  19989. bottom: 0.015
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Megamacro",
  19996. height: math.unit(1500, "miles"),
  19997. default: true
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20003. {
  20004. front: {
  20005. height: math.unit(14, "feet"),
  20006. weight: math.unit(12000, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/mort/front.svg",
  20010. extra: 365 / 318,
  20011. bottom: 0.01
  20012. }
  20013. },
  20014. side: {
  20015. height: math.unit(14, "feet"),
  20016. weight: math.unit(12000, "lb"),
  20017. name: "Side",
  20018. image: {
  20019. source: "./media/characters/mort/side.svg",
  20020. extra: 365 / 318,
  20021. bottom: 0.052
  20022. },
  20023. default: true
  20024. },
  20025. back: {
  20026. height: math.unit(14, "feet"),
  20027. weight: math.unit(12000, "lb"),
  20028. name: "Back",
  20029. image: {
  20030. source: "./media/characters/mort/back.svg",
  20031. extra: 371 / 332,
  20032. bottom: 0.18
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Normal",
  20039. height: math.unit(14, "feet"),
  20040. default: true
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20046. {
  20047. front: {
  20048. height: math.unit(8, "feet"),
  20049. weight: math.unit(1, "ton"),
  20050. name: "Front",
  20051. image: {
  20052. source: "./media/characters/lycoa/front.svg",
  20053. extra: 1875 / 1789,
  20054. bottom: 0.022
  20055. }
  20056. },
  20057. back: {
  20058. height: math.unit(8, "feet"),
  20059. weight: math.unit(1, "ton"),
  20060. name: "Back",
  20061. image: {
  20062. source: "./media/characters/lycoa/back.svg",
  20063. extra: 1835 / 1781,
  20064. bottom: 0.03
  20065. }
  20066. },
  20067. head: {
  20068. height: math.unit(2.1, "feet"),
  20069. name: "Head",
  20070. image: {
  20071. source: "./media/characters/lycoa/head.svg"
  20072. }
  20073. },
  20074. tailmaw: {
  20075. height: math.unit(1.9, "feet"),
  20076. name: "Tailmaw",
  20077. image: {
  20078. source: "./media/characters/lycoa/tailmaw.svg"
  20079. }
  20080. },
  20081. tentacles: {
  20082. height: math.unit(2.1, "feet"),
  20083. name: "Tentacles",
  20084. image: {
  20085. source: "./media/characters/lycoa/tentacles.svg"
  20086. }
  20087. },
  20088. dick: {
  20089. height: math.unit(1.73, "feet"),
  20090. name: "Dick",
  20091. image: {
  20092. source: "./media/characters/lycoa/dick.svg"
  20093. }
  20094. },
  20095. },
  20096. [
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(8, "feet"),
  20100. default: true
  20101. },
  20102. {
  20103. name: "Macro",
  20104. height: math.unit(30, "feet")
  20105. },
  20106. ]
  20107. ))
  20108. characterMakers.push(() => makeCharacter(
  20109. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20110. {
  20111. front: {
  20112. height: math.unit(4 + 2 / 12, "feet"),
  20113. weight: math.unit(70, "lb"),
  20114. name: "Front",
  20115. image: {
  20116. source: "./media/characters/naldara/front.svg",
  20117. extra: 841 / 720,
  20118. bottom: 0.04
  20119. }
  20120. },
  20121. naga: {
  20122. height: math.unit(23, "feet"),
  20123. weight: math.unit(15000, "kg"),
  20124. name: "Naga",
  20125. image: {
  20126. source: "./media/characters/naldara/naga.svg",
  20127. extra: 3290 / 2959,
  20128. bottom: 124 / 3432
  20129. }
  20130. },
  20131. },
  20132. [
  20133. {
  20134. name: "Normal",
  20135. height: math.unit(4 + 2 / 12, "feet"),
  20136. default: true
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20142. {
  20143. front: {
  20144. height: math.unit(13 + 7 / 12, "feet"),
  20145. weight: math.unit(1500, "lb"),
  20146. name: "Front",
  20147. image: {
  20148. source: "./media/characters/briar/front.svg",
  20149. extra: 626 / 596,
  20150. bottom: 0.08
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(13 + 7 / 12, "feet"),
  20158. default: true
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20164. {
  20165. side: {
  20166. height: math.unit(10, "feet"),
  20167. weight: math.unit(500, "lb"),
  20168. name: "Side",
  20169. image: {
  20170. source: "./media/characters/vanguard/side.svg",
  20171. extra: 502 / 425,
  20172. bottom: 0.087
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(10, "feet"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(7.5, "feet"),
  20189. weight: math.unit(2, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/artemis/front.svg",
  20193. extra: 1192 / 1075,
  20194. bottom: 0.07
  20195. }
  20196. },
  20197. frontNsfw: {
  20198. height: math.unit(7.5, "feet"),
  20199. weight: math.unit(2, "lb"),
  20200. name: "Front (NSFW)",
  20201. image: {
  20202. source: "./media/characters/artemis/front-nsfw.svg",
  20203. extra: 1192 / 1075,
  20204. bottom: 0.07
  20205. }
  20206. },
  20207. frontNsfwer: {
  20208. height: math.unit(7.5, "feet"),
  20209. weight: math.unit(2, "lb"),
  20210. name: "Front (NSFW-er)",
  20211. image: {
  20212. source: "./media/characters/artemis/front-nsfwer.svg",
  20213. extra: 1192 / 1075,
  20214. bottom: 0.07
  20215. }
  20216. },
  20217. side: {
  20218. height: math.unit(7.5, "feet"),
  20219. weight: math.unit(2, "lb"),
  20220. name: "Side",
  20221. image: {
  20222. source: "./media/characters/artemis/side.svg",
  20223. extra: 1192 / 1075,
  20224. bottom: 0.07
  20225. }
  20226. },
  20227. sideNsfw: {
  20228. height: math.unit(7.5, "feet"),
  20229. weight: math.unit(2, "lb"),
  20230. name: "Side (NSFW)",
  20231. image: {
  20232. source: "./media/characters/artemis/side-nsfw.svg",
  20233. extra: 1192 / 1075,
  20234. bottom: 0.07
  20235. }
  20236. },
  20237. sideNsfwer: {
  20238. height: math.unit(7.5, "feet"),
  20239. weight: math.unit(2, "lb"),
  20240. name: "Side (NSFW-er)",
  20241. image: {
  20242. source: "./media/characters/artemis/side-nsfwer.svg",
  20243. extra: 1192 / 1075,
  20244. bottom: 0.07
  20245. }
  20246. },
  20247. maw: {
  20248. height: math.unit(1.1, "feet"),
  20249. name: "Maw",
  20250. image: {
  20251. source: "./media/characters/artemis/maw.svg"
  20252. }
  20253. },
  20254. stomach: {
  20255. height: math.unit(0.95, "feet"),
  20256. name: "Stomach",
  20257. image: {
  20258. source: "./media/characters/artemis/stomach.svg"
  20259. }
  20260. },
  20261. dickCanine: {
  20262. height: math.unit(1, "feet"),
  20263. name: "Dick (Canine)",
  20264. image: {
  20265. source: "./media/characters/artemis/dick-canine.svg"
  20266. }
  20267. },
  20268. dickEquine: {
  20269. height: math.unit(0.85, "feet"),
  20270. name: "Dick (Equine)",
  20271. image: {
  20272. source: "./media/characters/artemis/dick-equine.svg"
  20273. }
  20274. },
  20275. dickExotic: {
  20276. height: math.unit(0.85, "feet"),
  20277. name: "Dick (Exotic)",
  20278. image: {
  20279. source: "./media/characters/artemis/dick-exotic.svg"
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(7.5, "feet"),
  20287. default: true
  20288. },
  20289. {
  20290. name: "Enlarged",
  20291. height: math.unit(12, "feet")
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(5 + 3 / 12, "feet"),
  20300. weight: math.unit(160, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/kira/front.svg",
  20304. extra: 906 / 786,
  20305. bottom: 0.01
  20306. }
  20307. },
  20308. back: {
  20309. height: math.unit(5 + 3 / 12, "feet"),
  20310. weight: math.unit(160, "lb"),
  20311. name: "Back",
  20312. image: {
  20313. source: "./media/characters/kira/back.svg",
  20314. extra: 882 / 757,
  20315. bottom: 0.005
  20316. }
  20317. },
  20318. frontDressed: {
  20319. height: math.unit(5 + 3 / 12, "feet"),
  20320. weight: math.unit(160, "lb"),
  20321. name: "Front (Dressed)",
  20322. image: {
  20323. source: "./media/characters/kira/front-dressed.svg",
  20324. extra: 906 / 786,
  20325. bottom: 0.01
  20326. }
  20327. },
  20328. beans: {
  20329. height: math.unit(0.92, "feet"),
  20330. name: "Beans",
  20331. image: {
  20332. source: "./media/characters/kira/beans.svg"
  20333. }
  20334. },
  20335. },
  20336. [
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(5 + 3 / 12, "feet"),
  20340. default: true
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20346. {
  20347. front: {
  20348. height: math.unit(5 + 4 / 12, "feet"),
  20349. weight: math.unit(145, "lb"),
  20350. name: "Front",
  20351. image: {
  20352. source: "./media/characters/scramble/front.svg",
  20353. extra: 763 / 727,
  20354. bottom: 0.05
  20355. }
  20356. },
  20357. back: {
  20358. height: math.unit(5 + 4 / 12, "feet"),
  20359. weight: math.unit(145, "lb"),
  20360. name: "Back",
  20361. image: {
  20362. source: "./media/characters/scramble/back.svg",
  20363. extra: 826 / 737,
  20364. bottom: 0.002
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(5 + 4 / 12, "feet"),
  20372. default: true
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20378. {
  20379. side: {
  20380. height: math.unit(6 + 2 / 12, "feet"),
  20381. weight: math.unit(190, "lb"),
  20382. name: "Side",
  20383. image: {
  20384. source: "./media/characters/biscuit/side.svg",
  20385. extra: 858 / 791,
  20386. bottom: 0.044
  20387. }
  20388. },
  20389. },
  20390. [
  20391. {
  20392. name: "Normal",
  20393. height: math.unit(6 + 2 / 12, "feet"),
  20394. default: true
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20400. {
  20401. front: {
  20402. height: math.unit(5 + 2 / 12, "feet"),
  20403. weight: math.unit(120, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/poffin/front.svg",
  20407. extra: 786 / 680,
  20408. bottom: 0.005
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(5 + 2 / 12, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(6 + 3 / 12, "feet"),
  20425. weight: math.unit(519, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/dhari/front.svg",
  20429. extra: 1048 / 946,
  20430. bottom: 0.015
  20431. }
  20432. },
  20433. back: {
  20434. height: math.unit(6 + 3 / 12, "feet"),
  20435. weight: math.unit(519, "lb"),
  20436. name: "Back",
  20437. image: {
  20438. source: "./media/characters/dhari/back.svg",
  20439. extra: 1048 / 931,
  20440. bottom: 0.005
  20441. }
  20442. },
  20443. frontDressed: {
  20444. height: math.unit(6 + 3 / 12, "feet"),
  20445. weight: math.unit(519, "lb"),
  20446. name: "Front (Dressed)",
  20447. image: {
  20448. source: "./media/characters/dhari/front-dressed.svg",
  20449. extra: 1713 / 1546,
  20450. bottom: 0.02
  20451. }
  20452. },
  20453. backDressed: {
  20454. height: math.unit(6 + 3 / 12, "feet"),
  20455. weight: math.unit(519, "lb"),
  20456. name: "Back (Dressed)",
  20457. image: {
  20458. source: "./media/characters/dhari/back-dressed.svg",
  20459. extra: 1699 / 1537,
  20460. bottom: 0.01
  20461. }
  20462. },
  20463. maw: {
  20464. height: math.unit(0.95, "feet"),
  20465. name: "Maw",
  20466. image: {
  20467. source: "./media/characters/dhari/maw.svg"
  20468. }
  20469. },
  20470. wereFront: {
  20471. height: math.unit(12 + 8 / 12, "feet"),
  20472. weight: math.unit(4000, "lb"),
  20473. name: "Front (Were)",
  20474. image: {
  20475. source: "./media/characters/dhari/were-front.svg",
  20476. extra: 1065 / 969,
  20477. bottom: 0.015
  20478. }
  20479. },
  20480. wereBack: {
  20481. height: math.unit(12 + 8 / 12, "feet"),
  20482. weight: math.unit(4000, "lb"),
  20483. name: "Back (Were)",
  20484. image: {
  20485. source: "./media/characters/dhari/were-back.svg",
  20486. extra: 1065 / 969,
  20487. bottom: 0.012
  20488. }
  20489. },
  20490. wereMaw: {
  20491. height: math.unit(0.625, "meters"),
  20492. name: "Maw (Were)",
  20493. image: {
  20494. source: "./media/characters/dhari/were-maw.svg"
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(6 + 3 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20508. {
  20509. anthro: {
  20510. height: math.unit(5 + 7 / 12, "feet"),
  20511. weight: math.unit(175, "lb"),
  20512. name: "Anthro",
  20513. image: {
  20514. source: "./media/characters/rena-dyne/anthro.svg",
  20515. extra: 1849 / 1785,
  20516. bottom: 0.005
  20517. }
  20518. },
  20519. taur: {
  20520. height: math.unit(15 + 6 / 12, "feet"),
  20521. weight: math.unit(8000, "lb"),
  20522. name: "Taur",
  20523. image: {
  20524. source: "./media/characters/rena-dyne/taur.svg",
  20525. extra: 2315 / 2234,
  20526. bottom: 0.033
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(5 + 7 / 12, "feet"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20540. {
  20541. front: {
  20542. height: math.unit(8, "feet"),
  20543. weight: math.unit(600, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/weremeep/front.svg",
  20547. extra: 967 / 862,
  20548. bottom: 0.01
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(8, "feet"),
  20556. default: true
  20557. },
  20558. {
  20559. name: "Lorg",
  20560. height: math.unit(12, "feet")
  20561. },
  20562. {
  20563. name: "Oh Lawd She Comin'",
  20564. height: math.unit(20, "feet")
  20565. },
  20566. ]
  20567. ))
  20568. characterMakers.push(() => makeCharacter(
  20569. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20570. {
  20571. front: {
  20572. height: math.unit(4, "feet"),
  20573. weight: math.unit(90, "lb"),
  20574. name: "Front",
  20575. image: {
  20576. source: "./media/characters/reza/front.svg",
  20577. extra: 1183 / 1111,
  20578. bottom: 0.017
  20579. }
  20580. },
  20581. back: {
  20582. height: math.unit(4, "feet"),
  20583. weight: math.unit(90, "lb"),
  20584. name: "Back",
  20585. image: {
  20586. source: "./media/characters/reza/back.svg",
  20587. extra: 1183 / 1111,
  20588. bottom: 0.01
  20589. }
  20590. },
  20591. drake: {
  20592. height: math.unit(30, "feet"),
  20593. weight: math.unit(246960, "lb"),
  20594. name: "Drake",
  20595. image: {
  20596. source: "./media/characters/reza/drake.svg",
  20597. extra: 2350 / 2024,
  20598. bottom: 60.7 / 2403
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(4, "feet"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20612. {
  20613. side: {
  20614. height: math.unit(15, "feet"),
  20615. weight: math.unit(14, "tons"),
  20616. name: "Side",
  20617. image: {
  20618. source: "./media/characters/athea/side.svg",
  20619. extra: 960 / 540,
  20620. bottom: 0.003
  20621. }
  20622. },
  20623. sitting: {
  20624. height: math.unit(6 * 2.85, "feet"),
  20625. weight: math.unit(14, "tons"),
  20626. name: "Sitting",
  20627. image: {
  20628. source: "./media/characters/athea/sitting.svg",
  20629. extra: 621 / 581,
  20630. bottom: 0.075
  20631. }
  20632. },
  20633. maw: {
  20634. height: math.unit(7.59498031496063, "feet"),
  20635. name: "Maw",
  20636. image: {
  20637. source: "./media/characters/athea/maw.svg"
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Lap Cat",
  20644. height: math.unit(2.5, "feet")
  20645. },
  20646. {
  20647. name: "Minimacro",
  20648. height: math.unit(15, "feet"),
  20649. default: true
  20650. },
  20651. {
  20652. name: "Macro",
  20653. height: math.unit(120, "feet")
  20654. },
  20655. {
  20656. name: "Macro+",
  20657. height: math.unit(640, "feet")
  20658. },
  20659. {
  20660. name: "Colossus",
  20661. height: math.unit(2.2, "miles")
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(8 + 8 / 12, "feet"),
  20670. weight: math.unit(130, "kg"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/seroko/front.svg",
  20674. extra: 1385 / 1280,
  20675. bottom: 0.025
  20676. }
  20677. },
  20678. back: {
  20679. height: math.unit(8 + 8 / 12, "feet"),
  20680. weight: math.unit(130, "kg"),
  20681. name: "Back",
  20682. image: {
  20683. source: "./media/characters/seroko/back.svg",
  20684. extra: 1369 / 1238,
  20685. bottom: 0.018
  20686. }
  20687. },
  20688. frontDressed: {
  20689. height: math.unit(8 + 8 / 12, "feet"),
  20690. weight: math.unit(130, "kg"),
  20691. name: "Front (Dressed)",
  20692. image: {
  20693. source: "./media/characters/seroko/front-dressed.svg",
  20694. extra: 1366 / 1275,
  20695. bottom: 0.03
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(8 + 8 / 12, "feet"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(5.5, "feet"),
  20712. weight: math.unit(160, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/quatzi/front.svg",
  20716. extra: 2346 / 2242,
  20717. bottom: 0.015
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(5.5, "feet"),
  20725. default: true
  20726. },
  20727. {
  20728. name: "Big",
  20729. height: math.unit(7.7, "feet")
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(5 + 11 / 12, "feet"),
  20738. weight: math.unit(180, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/sen/front.svg",
  20742. extra: 1321 / 1254,
  20743. bottom: 0.015
  20744. }
  20745. },
  20746. side: {
  20747. height: math.unit(5 + 11 / 12, "feet"),
  20748. weight: math.unit(180, "lb"),
  20749. name: "Side",
  20750. image: {
  20751. source: "./media/characters/sen/side.svg",
  20752. extra: 1321 / 1254,
  20753. bottom: 0.007
  20754. }
  20755. },
  20756. back: {
  20757. height: math.unit(5 + 11 / 12, "feet"),
  20758. weight: math.unit(180, "lb"),
  20759. name: "Back",
  20760. image: {
  20761. source: "./media/characters/sen/back.svg",
  20762. extra: 1321 / 1254
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(5 + 11 / 12, "feet"),
  20770. default: true
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20776. {
  20777. front: {
  20778. height: math.unit(166.6, "cm"),
  20779. weight: math.unit(66.6, "kg"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/fruity/front.svg",
  20783. extra: 1510 / 1386,
  20784. bottom: 0.04
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(166.6, "cm"),
  20789. weight: math.unit(66.6, "lb"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/fruity/back.svg",
  20793. extra: 1563 / 1435,
  20794. bottom: 0.005
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(166.6, "cm"),
  20802. default: true
  20803. },
  20804. {
  20805. name: "Demonic",
  20806. height: math.unit(166.6, "feet")
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20812. {
  20813. side: {
  20814. height: math.unit(10, "feet"),
  20815. weight: math.unit(500, "lb"),
  20816. name: "Side",
  20817. image: {
  20818. source: "./media/characters/zost/side.svg",
  20819. extra: 966 / 880,
  20820. bottom: 0.075
  20821. }
  20822. },
  20823. mawFront: {
  20824. height: math.unit(1.08, "meters"),
  20825. name: "Maw (Front)",
  20826. image: {
  20827. source: "./media/characters/zost/maw-front.svg"
  20828. }
  20829. },
  20830. mawSide: {
  20831. height: math.unit(2.66, "feet"),
  20832. name: "Maw (Side)",
  20833. image: {
  20834. source: "./media/characters/zost/maw-side.svg"
  20835. }
  20836. },
  20837. },
  20838. [
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(10, "feet"),
  20842. default: true
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20848. {
  20849. front: {
  20850. height: math.unit(5 + 4 / 12, "feet"),
  20851. weight: math.unit(120, "lb"),
  20852. name: "Front",
  20853. image: {
  20854. source: "./media/characters/luci/front.svg",
  20855. extra: 1985 / 1884,
  20856. bottom: 0.04
  20857. }
  20858. },
  20859. back: {
  20860. height: math.unit(5 + 4 / 12, "feet"),
  20861. weight: math.unit(120, "lb"),
  20862. name: "Back",
  20863. image: {
  20864. source: "./media/characters/luci/back.svg",
  20865. extra: 1892 / 1791,
  20866. bottom: 0.002
  20867. }
  20868. },
  20869. },
  20870. [
  20871. {
  20872. name: "Normal",
  20873. height: math.unit(5 + 4 / 12, "feet"),
  20874. default: true
  20875. },
  20876. ]
  20877. ))
  20878. characterMakers.push(() => makeCharacter(
  20879. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20880. {
  20881. front: {
  20882. height: math.unit(1500, "feet"),
  20883. weight: math.unit(3.8e6, "tons"),
  20884. name: "Front",
  20885. image: {
  20886. source: "./media/characters/2th/front.svg",
  20887. extra: 3489 / 3350,
  20888. bottom: 0.1
  20889. }
  20890. },
  20891. foot: {
  20892. height: math.unit(461, "feet"),
  20893. name: "Foot",
  20894. image: {
  20895. source: "./media/characters/2th/foot.svg"
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "\"Micro\"",
  20902. height: math.unit(15 + 7 / 12, "feet")
  20903. },
  20904. {
  20905. name: "Normal",
  20906. height: math.unit(1500, "feet"),
  20907. default: true
  20908. },
  20909. {
  20910. name: "Macro",
  20911. height: math.unit(5000, "feet")
  20912. },
  20913. {
  20914. name: "Megamacro",
  20915. height: math.unit(15, "miles")
  20916. },
  20917. {
  20918. name: "Gigamacro",
  20919. height: math.unit(4000, "miles")
  20920. },
  20921. {
  20922. name: "Galactic",
  20923. height: math.unit(50, "AU")
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20929. {
  20930. front: {
  20931. height: math.unit(5 + 6 / 12, "feet"),
  20932. weight: math.unit(220, "lb"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/amethyst/front.svg",
  20936. extra: 2078 / 2040,
  20937. bottom: 0.045
  20938. }
  20939. },
  20940. back: {
  20941. height: math.unit(5 + 6 / 12, "feet"),
  20942. weight: math.unit(220, "lb"),
  20943. name: "Back",
  20944. image: {
  20945. source: "./media/characters/amethyst/back.svg",
  20946. extra: 2021 / 1989,
  20947. bottom: 0.02
  20948. }
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Normal",
  20954. height: math.unit(5 + 6 / 12, "feet"),
  20955. default: true
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20961. {
  20962. front: {
  20963. height: math.unit(4 + 11 / 12, "feet"),
  20964. weight: math.unit(120, "lb"),
  20965. name: "Front",
  20966. image: {
  20967. source: "./media/characters/yumi-akiyama/front.svg",
  20968. extra: 1327 / 1235,
  20969. bottom: 0.02
  20970. }
  20971. },
  20972. back: {
  20973. height: math.unit(4 + 11 / 12, "feet"),
  20974. weight: math.unit(120, "lb"),
  20975. name: "Back",
  20976. image: {
  20977. source: "./media/characters/yumi-akiyama/back.svg",
  20978. extra: 1287 / 1245,
  20979. bottom: 0.002
  20980. }
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Galactic",
  20986. height: math.unit(50, "galaxies"),
  20987. default: true
  20988. },
  20989. {
  20990. name: "Universal",
  20991. height: math.unit(100, "universes")
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(8, "feet"),
  21000. weight: math.unit(500, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/rifter-yrmori/front.svg",
  21004. extra: 1180 / 1125,
  21005. bottom: 0.02
  21006. }
  21007. },
  21008. back: {
  21009. height: math.unit(8, "feet"),
  21010. weight: math.unit(500, "lb"),
  21011. name: "Back",
  21012. image: {
  21013. source: "./media/characters/rifter-yrmori/back.svg",
  21014. extra: 1190 / 1145,
  21015. bottom: 0.001
  21016. }
  21017. },
  21018. wings: {
  21019. height: math.unit(7.75, "feet"),
  21020. weight: math.unit(500, "lb"),
  21021. name: "Wings",
  21022. image: {
  21023. source: "./media/characters/rifter-yrmori/wings.svg",
  21024. extra: 1357 / 1285
  21025. }
  21026. },
  21027. maw: {
  21028. height: math.unit(0.8, "feet"),
  21029. name: "Maw",
  21030. image: {
  21031. source: "./media/characters/rifter-yrmori/maw.svg"
  21032. }
  21033. },
  21034. mawfront: {
  21035. height: math.unit(1.45, "feet"),
  21036. name: "Maw (Front)",
  21037. image: {
  21038. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(8, "feet"),
  21046. default: true
  21047. },
  21048. {
  21049. name: "Macro",
  21050. height: math.unit(42, "meters")
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21056. {
  21057. were: {
  21058. height: math.unit(25 + 6 / 12, "feet"),
  21059. weight: math.unit(10000, "lb"),
  21060. name: "Were",
  21061. image: {
  21062. source: "./media/characters/tahajin/were.svg",
  21063. extra: 801 / 770,
  21064. bottom: 0.042
  21065. }
  21066. },
  21067. aquatic: {
  21068. height: math.unit(6 + 4 / 12, "feet"),
  21069. weight: math.unit(160, "lb"),
  21070. name: "Aquatic",
  21071. image: {
  21072. source: "./media/characters/tahajin/aquatic.svg",
  21073. extra: 572 / 542,
  21074. bottom: 0.04
  21075. }
  21076. },
  21077. chow: {
  21078. height: math.unit(8 + 11 / 12, "feet"),
  21079. weight: math.unit(450, "lb"),
  21080. name: "Chow",
  21081. image: {
  21082. source: "./media/characters/tahajin/chow.svg",
  21083. extra: 660 / 640,
  21084. bottom: 0.015
  21085. }
  21086. },
  21087. demiNaga: {
  21088. height: math.unit(6 + 8 / 12, "feet"),
  21089. weight: math.unit(300, "lb"),
  21090. name: "Demi Naga",
  21091. image: {
  21092. source: "./media/characters/tahajin/demi-naga.svg",
  21093. extra: 643 / 615,
  21094. bottom: 0.1
  21095. }
  21096. },
  21097. data: {
  21098. height: math.unit(5, "inches"),
  21099. weight: math.unit(0.1, "lb"),
  21100. name: "Data",
  21101. image: {
  21102. source: "./media/characters/tahajin/data.svg"
  21103. }
  21104. },
  21105. fluu: {
  21106. height: math.unit(5 + 7 / 12, "feet"),
  21107. weight: math.unit(140, "lb"),
  21108. name: "Fluu",
  21109. image: {
  21110. source: "./media/characters/tahajin/fluu.svg",
  21111. extra: 628 / 592,
  21112. bottom: 0.02
  21113. }
  21114. },
  21115. starWarrior: {
  21116. height: math.unit(4 + 5 / 12, "feet"),
  21117. weight: math.unit(50, "lb"),
  21118. name: "Star Warrior",
  21119. image: {
  21120. source: "./media/characters/tahajin/star-warrior.svg"
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(25 + 6 / 12, "feet"),
  21128. default: true
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(8, "feet"),
  21137. weight: math.unit(350, "lb"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/gabira/front.svg",
  21141. extra: 608 / 580,
  21142. bottom: 0.03
  21143. }
  21144. },
  21145. back: {
  21146. height: math.unit(8, "feet"),
  21147. weight: math.unit(350, "lb"),
  21148. name: "Back",
  21149. image: {
  21150. source: "./media/characters/gabira/back.svg",
  21151. extra: 608 / 580,
  21152. bottom: 0.03
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(8, "feet"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(5 + 3 / 12, "feet"),
  21169. weight: math.unit(137, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/sasha-katraine/front.svg",
  21173. bottom: 0.045
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Micro",
  21180. height: math.unit(5, "inches")
  21181. },
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(5 + 3 / 12, "feet"),
  21185. default: true
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21191. {
  21192. side: {
  21193. height: math.unit(4, "inches"),
  21194. weight: math.unit(200, "grams"),
  21195. name: "Side",
  21196. image: {
  21197. source: "./media/characters/der/side.svg",
  21198. extra: 719 / 400,
  21199. bottom: 30.6 / 749.9187
  21200. }
  21201. },
  21202. },
  21203. [
  21204. {
  21205. name: "Micro",
  21206. height: math.unit(4, "inches"),
  21207. default: true
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21213. {
  21214. side: {
  21215. height: math.unit(30, "meters"),
  21216. weight: math.unit(700, "tonnes"),
  21217. name: "Side",
  21218. image: {
  21219. source: "./media/characters/fixerdragon/side.svg",
  21220. extra: (1293.0514 - 116.03) / 1106.86,
  21221. bottom: 116.03 / 1293.0514
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Planck",
  21228. height: math.unit(1.6e-35, "meters")
  21229. },
  21230. {
  21231. name: "Micro",
  21232. height: math.unit(0.4, "meters")
  21233. },
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(30, "meters"),
  21237. default: true
  21238. },
  21239. {
  21240. name: "Megamacro",
  21241. height: math.unit(1.2, "megameters")
  21242. },
  21243. {
  21244. name: "Teramacro",
  21245. height: math.unit(130, "terameters")
  21246. },
  21247. {
  21248. name: "Yottamacro",
  21249. height: math.unit(6200, "yottameters")
  21250. },
  21251. ]
  21252. ));
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(8, "feet"),
  21258. weight: math.unit(250, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/kite/front.svg",
  21262. extra: 2796 / 2659,
  21263. bottom: 0.002
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(8, "feet"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Macro",
  21275. height: math.unit(360, "feet")
  21276. },
  21277. {
  21278. name: "Megamacro",
  21279. height: math.unit(1500, "feet")
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21285. {
  21286. front: {
  21287. height: math.unit(5 + 10 / 12, "feet"),
  21288. weight: math.unit(150, "lb"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/poojawa-vynar/front.svg",
  21292. extra: (1506.1547 - 55) / 1356.6,
  21293. bottom: 55 / 1506.1547
  21294. }
  21295. },
  21296. frontTailless: {
  21297. height: math.unit(5 + 10 / 12, "feet"),
  21298. weight: math.unit(150, "lb"),
  21299. name: "Front (Tailless)",
  21300. image: {
  21301. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21302. extra: (1506.1547 - 55) / 1356.6,
  21303. bottom: 55 / 1506.1547
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(5 + 10 / 12, "feet"),
  21311. default: true
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21317. {
  21318. front: {
  21319. height: math.unit(293, "meters"),
  21320. weight: math.unit(70400, "tons"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/violette/front.svg",
  21324. extra: 1227 / 1180,
  21325. bottom: 0.005
  21326. }
  21327. },
  21328. back: {
  21329. height: math.unit(293, "meters"),
  21330. weight: math.unit(70400, "tons"),
  21331. name: "Back",
  21332. image: {
  21333. source: "./media/characters/violette/back.svg",
  21334. extra: 1227 / 1180,
  21335. bottom: 0.005
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Macro",
  21342. height: math.unit(293, "meters"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(1050, "feet"),
  21352. weight: math.unit(200000, "tons"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/alessandra/front.svg",
  21356. extra: 960 / 912,
  21357. bottom: 0.06
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Macro",
  21364. height: math.unit(1050, "feet")
  21365. },
  21366. {
  21367. name: "Macro+",
  21368. height: math.unit(900, "meters"),
  21369. default: true
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21375. {
  21376. front: {
  21377. height: math.unit(5, "feet"),
  21378. weight: math.unit(187, "lb"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/person/front.svg",
  21382. extra: 3087 / 2945,
  21383. bottom: 91 / 3181
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Micro",
  21390. height: math.unit(3, "inches")
  21391. },
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(5, "feet"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Macro",
  21399. height: math.unit(90, "feet")
  21400. },
  21401. {
  21402. name: "Max Size",
  21403. height: math.unit(280, "feet")
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(4.5, "meters"),
  21412. weight: math.unit(3200, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/ty/front.svg",
  21416. extra: 1038 / 960,
  21417. bottom: 31.156 / 1068
  21418. }
  21419. },
  21420. back: {
  21421. height: math.unit(4.5, "meters"),
  21422. weight: math.unit(3200, "lb"),
  21423. name: "Back",
  21424. image: {
  21425. source: "./media/characters/ty/back.svg",
  21426. extra: 1044 / 966,
  21427. bottom: 7.48 / 1049
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(4.5, "meters"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(5 + 4 / 12, "feet"),
  21444. weight: math.unit(115, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/rocky/front.svg",
  21448. extra: 1012 / 975,
  21449. bottom: 54 / 1066
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(5 + 4 / 12, "feet"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21463. {
  21464. upright: {
  21465. height: math.unit(6, "meters"),
  21466. weight: math.unit(4000, "kg"),
  21467. name: "Upright",
  21468. image: {
  21469. source: "./media/characters/ruin/upright.svg",
  21470. extra: 668 / 661,
  21471. bottom: 42 / 799.8396
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(6, "meters"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(5, "feet"),
  21488. weight: math.unit(106, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/robin/front.svg",
  21492. extra: 862 / 799,
  21493. bottom: 42.4 / 914.8856
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(5, "feet"),
  21501. default: true
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21507. {
  21508. side: {
  21509. height: math.unit(3, "feet"),
  21510. weight: math.unit(225, "lb"),
  21511. name: "Side",
  21512. image: {
  21513. source: "./media/characters/saian/side.svg",
  21514. extra: 566 / 356,
  21515. bottom: 79.7 / 643
  21516. }
  21517. },
  21518. maw: {
  21519. height: math.unit(2.85, "feet"),
  21520. name: "Maw",
  21521. image: {
  21522. source: "./media/characters/saian/maw.svg"
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(3, "feet"),
  21530. default: true
  21531. },
  21532. ]
  21533. ))
  21534. characterMakers.push(() => makeCharacter(
  21535. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21536. {
  21537. side: {
  21538. height: math.unit(8, "feet"),
  21539. weight: math.unit(300, "lb"),
  21540. name: "Side",
  21541. image: {
  21542. source: "./media/characters/equus-silvermane/side.svg",
  21543. extra: 2176 / 2050,
  21544. bottom: 65.7 / 2245
  21545. }
  21546. },
  21547. front: {
  21548. height: math.unit(8, "feet"),
  21549. weight: math.unit(300, "lb"),
  21550. name: "Front",
  21551. image: {
  21552. source: "./media/characters/equus-silvermane/front.svg",
  21553. extra: 4633 / 4400,
  21554. bottom: 71.3 / 4706.915
  21555. }
  21556. },
  21557. sideStepping: {
  21558. height: math.unit(8, "feet"),
  21559. weight: math.unit(300, "lb"),
  21560. name: "Side (Stepping)",
  21561. image: {
  21562. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21563. extra: 1968 / 1860,
  21564. bottom: 16.4 / 1989
  21565. }
  21566. },
  21567. },
  21568. [
  21569. {
  21570. name: "Normal",
  21571. height: math.unit(8, "feet")
  21572. },
  21573. {
  21574. name: "Minimacro",
  21575. height: math.unit(75, "feet"),
  21576. default: true
  21577. },
  21578. {
  21579. name: "Macro",
  21580. height: math.unit(150, "feet")
  21581. },
  21582. {
  21583. name: "Macro+",
  21584. height: math.unit(1000, "feet")
  21585. },
  21586. {
  21587. name: "Megamacro",
  21588. height: math.unit(1, "mile")
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21594. {
  21595. side: {
  21596. height: math.unit(20, "feet"),
  21597. weight: math.unit(30000, "kg"),
  21598. name: "Side",
  21599. image: {
  21600. source: "./media/characters/windar/side.svg",
  21601. extra: 1491 / 1248,
  21602. bottom: 82.56 / 1568
  21603. }
  21604. },
  21605. },
  21606. [
  21607. {
  21608. name: "Normal",
  21609. height: math.unit(20, "feet"),
  21610. default: true
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21616. {
  21617. side: {
  21618. height: math.unit(15.66, "feet"),
  21619. weight: math.unit(150, "lb"),
  21620. name: "Side",
  21621. image: {
  21622. source: "./media/characters/melody/side.svg",
  21623. extra: 1097 / 944,
  21624. bottom: 11.8 / 1109
  21625. }
  21626. },
  21627. sideOutfit: {
  21628. height: math.unit(15.66, "feet"),
  21629. weight: math.unit(150, "lb"),
  21630. name: "Side (Outfit)",
  21631. image: {
  21632. source: "./media/characters/melody/side-outfit.svg",
  21633. extra: 1097 / 944,
  21634. bottom: 11.8 / 1109
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(15.66, "feet"),
  21642. default: true
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21648. {
  21649. front: {
  21650. height: math.unit(8, "feet"),
  21651. weight: math.unit(325, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/windera/front.svg",
  21655. extra: 3180 / 2845,
  21656. bottom: 178 / 3365
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(8, "feet"),
  21664. default: true
  21665. },
  21666. ]
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21670. {
  21671. front: {
  21672. height: math.unit(28.75, "feet"),
  21673. weight: math.unit(2000, "kg"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/sonear/front.svg",
  21677. extra: 1041.1 / 964.9,
  21678. bottom: 53.7 / 1096.6
  21679. }
  21680. },
  21681. },
  21682. [
  21683. {
  21684. name: "Normal",
  21685. height: math.unit(28.75, "feet"),
  21686. default: true
  21687. },
  21688. ]
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21692. {
  21693. side: {
  21694. height: math.unit(25.5, "feet"),
  21695. weight: math.unit(23000, "kg"),
  21696. name: "Side",
  21697. image: {
  21698. source: "./media/characters/kanara/side.svg"
  21699. }
  21700. },
  21701. },
  21702. [
  21703. {
  21704. name: "Normal",
  21705. height: math.unit(25.5, "feet"),
  21706. default: true
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21712. {
  21713. side: {
  21714. height: math.unit(10, "feet"),
  21715. weight: math.unit(1000, "kg"),
  21716. name: "Side",
  21717. image: {
  21718. source: "./media/characters/ereus/side.svg",
  21719. extra: 1157 / 959,
  21720. bottom: 153 / 1312.5
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(10, "feet"),
  21728. default: true
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21734. {
  21735. side: {
  21736. height: math.unit(4.5, "feet"),
  21737. weight: math.unit(500, "lb"),
  21738. name: "Side",
  21739. image: {
  21740. source: "./media/characters/e-ter/side.svg",
  21741. extra: 1550 / 1248,
  21742. bottom: 146 / 1694
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(4.5, "feet"),
  21750. default: true
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21756. {
  21757. side: {
  21758. height: math.unit(9.7, "feet"),
  21759. weight: math.unit(4000, "kg"),
  21760. name: "Side",
  21761. image: {
  21762. source: "./media/characters/yamie/side.svg"
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Normal",
  21769. height: math.unit(9.7, "feet"),
  21770. default: true
  21771. },
  21772. ]
  21773. ))
  21774. characterMakers.push(() => makeCharacter(
  21775. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21776. {
  21777. front: {
  21778. height: math.unit(50, "feet"),
  21779. weight: math.unit(50000, "kg"),
  21780. name: "Front",
  21781. image: {
  21782. source: "./media/characters/anders/front.svg",
  21783. extra: 570 / 539,
  21784. bottom: 14.7 / 586.7
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Large",
  21791. height: math.unit(50, "feet")
  21792. },
  21793. {
  21794. name: "Macro",
  21795. height: math.unit(2000, "feet"),
  21796. default: true
  21797. },
  21798. {
  21799. name: "Megamacro",
  21800. height: math.unit(12, "miles")
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21806. {
  21807. front: {
  21808. height: math.unit(7 + 2 / 12, "feet"),
  21809. weight: math.unit(300, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/reban/front.svg",
  21813. extra: 516 / 487,
  21814. bottom: 42.82 / 558.356
  21815. }
  21816. },
  21817. dick: {
  21818. height: math.unit(7 / 5, "feet"),
  21819. name: "Dick",
  21820. image: {
  21821. source: "./media/characters/reban/dick.svg"
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Natural Height",
  21828. height: math.unit(7 + 2 / 12, "feet")
  21829. },
  21830. {
  21831. name: "Macro",
  21832. height: math.unit(500, "feet"),
  21833. default: true
  21834. },
  21835. {
  21836. name: "Canon Height",
  21837. height: math.unit(50, "AU")
  21838. },
  21839. ]
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21843. {
  21844. front: {
  21845. height: math.unit(6, "feet"),
  21846. weight: math.unit(150, "lb"),
  21847. name: "Front",
  21848. image: {
  21849. source: "./media/characters/terrance-keayes/front.svg",
  21850. extra: 1.005,
  21851. bottom: 151 / 1615
  21852. }
  21853. },
  21854. side: {
  21855. height: math.unit(6, "feet"),
  21856. weight: math.unit(150, "lb"),
  21857. name: "Side",
  21858. image: {
  21859. source: "./media/characters/terrance-keayes/side.svg",
  21860. extra: 1.005,
  21861. bottom: 129.4 / 1544
  21862. }
  21863. },
  21864. back: {
  21865. height: math.unit(6, "feet"),
  21866. weight: math.unit(150, "lb"),
  21867. name: "Back",
  21868. image: {
  21869. source: "./media/characters/terrance-keayes/back.svg",
  21870. extra: 1.005,
  21871. bottom: 58.4 / 1557.3
  21872. }
  21873. },
  21874. dick: {
  21875. height: math.unit(6 * 0.208, "feet"),
  21876. name: "Dick",
  21877. image: {
  21878. source: "./media/characters/terrance-keayes/dick.svg"
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Canon Height",
  21885. height: math.unit(35, "miles"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(6, "feet"),
  21895. weight: math.unit(150, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/ofelia/front.svg",
  21899. extra: 546 / 541,
  21900. bottom: 39 / 583
  21901. }
  21902. },
  21903. back: {
  21904. height: math.unit(6, "feet"),
  21905. weight: math.unit(150, "lb"),
  21906. name: "Back",
  21907. image: {
  21908. source: "./media/characters/ofelia/back.svg",
  21909. extra: 564 / 559.5,
  21910. bottom: 8.69 / 573.02
  21911. }
  21912. },
  21913. maw: {
  21914. height: math.unit(1, "feet"),
  21915. name: "Maw",
  21916. image: {
  21917. source: "./media/characters/ofelia/maw.svg"
  21918. }
  21919. },
  21920. foot: {
  21921. height: math.unit(1.949, "feet"),
  21922. name: "Foot",
  21923. image: {
  21924. source: "./media/characters/ofelia/foot.svg"
  21925. }
  21926. },
  21927. },
  21928. [
  21929. {
  21930. name: "Canon Height",
  21931. height: math.unit(2000, "miles"),
  21932. default: true
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(6, "feet"),
  21941. weight: math.unit(150, "lb"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/samuel/front.svg",
  21945. extra: 265 / 258,
  21946. bottom: 2 / 266.1566
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Macro",
  21953. height: math.unit(100, "feet"),
  21954. default: true
  21955. },
  21956. {
  21957. name: "Full Size",
  21958. height: math.unit(1000, "miles")
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(6, "feet"),
  21967. weight: math.unit(300, "lb"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/beishir-kiel/front.svg",
  21971. extra: 569 / 547,
  21972. bottom: 41.9 / 609
  21973. }
  21974. },
  21975. maw: {
  21976. height: math.unit(6 * 0.202, "feet"),
  21977. name: "Maw",
  21978. image: {
  21979. source: "./media/characters/beishir-kiel/maw.svg"
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Macro",
  21986. height: math.unit(300, "feet"),
  21987. default: true
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21993. {
  21994. front: {
  21995. height: math.unit(5 + 7/12, "feet"),
  21996. weight: math.unit(120, "lb"),
  21997. name: "Front",
  21998. image: {
  21999. source: "./media/characters/logan-grey/front.svg",
  22000. extra: 1836/1738,
  22001. bottom: 108/1944
  22002. }
  22003. },
  22004. back: {
  22005. height: math.unit(5 + 7/12, "feet"),
  22006. weight: math.unit(120, "lb"),
  22007. name: "Back",
  22008. image: {
  22009. source: "./media/characters/logan-grey/back.svg",
  22010. extra: 1880/1794,
  22011. bottom: 24/1904
  22012. }
  22013. },
  22014. frontSfw: {
  22015. height: math.unit(5 + 7/12, "feet"),
  22016. weight: math.unit(120, "lb"),
  22017. name: "Front (SFW)",
  22018. image: {
  22019. source: "./media/characters/logan-grey/front-sfw.svg",
  22020. extra: 1836/1738,
  22021. bottom: 108/1944
  22022. }
  22023. },
  22024. backSfw: {
  22025. height: math.unit(5 + 7/12, "feet"),
  22026. weight: math.unit(120, "lb"),
  22027. name: "Back (SFW)",
  22028. image: {
  22029. source: "./media/characters/logan-grey/back-sfw.svg",
  22030. extra: 1880/1794,
  22031. bottom: 24/1904
  22032. }
  22033. },
  22034. hands: {
  22035. height: math.unit(0.84, "feet"),
  22036. name: "Hands",
  22037. image: {
  22038. source: "./media/characters/logan-grey/hands.svg"
  22039. }
  22040. },
  22041. paws: {
  22042. height: math.unit(0.72, "feet"),
  22043. name: "Paws",
  22044. image: {
  22045. source: "./media/characters/logan-grey/paws.svg"
  22046. }
  22047. },
  22048. cock: {
  22049. height: math.unit(1.45, "feet"),
  22050. name: "Cock",
  22051. image: {
  22052. source: "./media/characters/logan-grey/cock.svg"
  22053. }
  22054. },
  22055. cockAlt: {
  22056. height: math.unit(1.437, "feet"),
  22057. name: "Cock (alt)",
  22058. image: {
  22059. source: "./media/characters/logan-grey/cock-alt.svg"
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Normal",
  22066. height: math.unit(5 + 8 / 12, "feet")
  22067. },
  22068. {
  22069. name: "The 500 Foot Femboy",
  22070. height: math.unit(500, "feet"),
  22071. default: true
  22072. },
  22073. {
  22074. name: "Megmacro",
  22075. height: math.unit(20, "miles")
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(8 + 2 / 12, "feet"),
  22084. weight: math.unit(275, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/draganta/front.svg",
  22088. extra: 1177 / 1135,
  22089. bottom: 33.46 / 1212.1
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(8 + 6 / 12, "feet"),
  22097. default: true
  22098. },
  22099. {
  22100. name: "Macro",
  22101. height: math.unit(150, "feet")
  22102. },
  22103. {
  22104. name: "Megamacro",
  22105. height: math.unit(1000, "miles")
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22111. {
  22112. front: {
  22113. height: math.unit(1.72, "m"),
  22114. weight: math.unit(80, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/voski/front.svg",
  22118. extra: 2076.22 / 2022.4,
  22119. bottom: 102.7 / 2177.3866
  22120. }
  22121. },
  22122. frontNsfw: {
  22123. height: math.unit(1.72, "m"),
  22124. weight: math.unit(80, "lb"),
  22125. name: "Front (NSFW)",
  22126. image: {
  22127. source: "./media/characters/voski/front-nsfw.svg",
  22128. extra: 2076.22 / 2022.4,
  22129. bottom: 102.7 / 2177.3866
  22130. }
  22131. },
  22132. back: {
  22133. height: math.unit(1.72, "m"),
  22134. weight: math.unit(80, "lb"),
  22135. name: "Back",
  22136. image: {
  22137. source: "./media/characters/voski/back.svg",
  22138. extra: 2104 / 2051,
  22139. bottom: 10.45 / 2113.63
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(1.72, "m")
  22147. },
  22148. {
  22149. name: "Macro",
  22150. height: math.unit(55, "m"),
  22151. default: true
  22152. },
  22153. {
  22154. name: "Macro+",
  22155. height: math.unit(300, "m")
  22156. },
  22157. {
  22158. name: "Macro++",
  22159. height: math.unit(700, "m")
  22160. },
  22161. {
  22162. name: "Macro+++",
  22163. height: math.unit(4500, "m")
  22164. },
  22165. {
  22166. name: "Macro++++",
  22167. height: math.unit(45, "km")
  22168. },
  22169. {
  22170. name: "Macro+++++",
  22171. height: math.unit(1220, "km")
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(2.3, "m"),
  22180. weight: math.unit(304, "kg"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/icowom-lee/front.svg",
  22184. extra: 985 / 955,
  22185. bottom: 25.4 / 1012
  22186. }
  22187. },
  22188. fronttentacles: {
  22189. height: math.unit(2.3, "m"),
  22190. weight: math.unit(304, "kg"),
  22191. name: "Front-tentacles",
  22192. image: {
  22193. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22194. extra: 985 / 955,
  22195. bottom: 25.4 / 1012
  22196. }
  22197. },
  22198. back: {
  22199. height: math.unit(2.3, "m"),
  22200. weight: math.unit(304, "kg"),
  22201. name: "Back",
  22202. image: {
  22203. source: "./media/characters/icowom-lee/back.svg",
  22204. extra: 975 / 954,
  22205. bottom: 9.5 / 985
  22206. }
  22207. },
  22208. backtentacles: {
  22209. height: math.unit(2.3, "m"),
  22210. weight: math.unit(304, "kg"),
  22211. name: "Back-tentacles",
  22212. image: {
  22213. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22214. extra: 975 / 954,
  22215. bottom: 9.5 / 985
  22216. }
  22217. },
  22218. frontDressed: {
  22219. height: math.unit(2.3, "m"),
  22220. weight: math.unit(304, "kg"),
  22221. name: "Front (Dressed)",
  22222. image: {
  22223. source: "./media/characters/icowom-lee/front-dressed.svg",
  22224. extra: 3076 / 2933,
  22225. bottom: 51.4 / 3125.1889
  22226. }
  22227. },
  22228. rump: {
  22229. height: math.unit(0.776, "meters"),
  22230. name: "Rump",
  22231. image: {
  22232. source: "./media/characters/icowom-lee/rump.svg"
  22233. }
  22234. },
  22235. genitals: {
  22236. height: math.unit(0.78, "meters"),
  22237. name: "Genitals",
  22238. image: {
  22239. source: "./media/characters/icowom-lee/genitals.svg"
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(2.3, "meters"),
  22247. default: true
  22248. },
  22249. {
  22250. name: "Macro",
  22251. height: math.unit(94, "meters"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(22, "meters"),
  22261. weight: math.unit(21000, "kg"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/shock-diamond/front.svg",
  22265. extra: 2204 / 2053,
  22266. bottom: 65 / 2239.47
  22267. }
  22268. },
  22269. frontNude: {
  22270. height: math.unit(22, "meters"),
  22271. weight: math.unit(21000, "kg"),
  22272. name: "Front (Nude)",
  22273. image: {
  22274. source: "./media/characters/shock-diamond/front-nude.svg",
  22275. extra: 2514 / 2285,
  22276. bottom: 13 / 2527.56
  22277. }
  22278. },
  22279. },
  22280. [
  22281. {
  22282. name: "Normal",
  22283. height: math.unit(3, "meters")
  22284. },
  22285. {
  22286. name: "Macro",
  22287. height: math.unit(22, "meters"),
  22288. default: true
  22289. },
  22290. ]
  22291. ))
  22292. characterMakers.push(() => makeCharacter(
  22293. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22294. {
  22295. front: {
  22296. height: math.unit(5 + 4 / 12, "feet"),
  22297. weight: math.unit(120, "lb"),
  22298. name: "Front",
  22299. image: {
  22300. source: "./media/characters/rory/front.svg",
  22301. extra: 1318/1241,
  22302. bottom: 42/1360
  22303. }
  22304. },
  22305. back: {
  22306. height: math.unit(5 + 4 / 12, "feet"),
  22307. weight: math.unit(120, "lb"),
  22308. name: "Back",
  22309. image: {
  22310. source: "./media/characters/rory/back.svg",
  22311. extra: 1318/1241,
  22312. bottom: 42/1360
  22313. }
  22314. },
  22315. butt: {
  22316. height: math.unit(1.74, "feet"),
  22317. name: "Butt",
  22318. image: {
  22319. source: "./media/characters/rory/butt.svg"
  22320. }
  22321. },
  22322. dick: {
  22323. height: math.unit(1.02, "feet"),
  22324. name: "Dick",
  22325. image: {
  22326. source: "./media/characters/rory/dick.svg"
  22327. }
  22328. },
  22329. paws: {
  22330. height: math.unit(1, "feet"),
  22331. name: "Paws",
  22332. image: {
  22333. source: "./media/characters/rory/paws.svg"
  22334. }
  22335. },
  22336. frontAlt: {
  22337. height: math.unit(5 + 4 / 12, "feet"),
  22338. weight: math.unit(120, "lb"),
  22339. name: "Front (Alt)",
  22340. image: {
  22341. source: "./media/characters/rory/front-alt.svg",
  22342. extra: 589 / 556,
  22343. bottom: 45.7 / 635.76
  22344. }
  22345. },
  22346. frontAltNude: {
  22347. height: math.unit(5 + 4 / 12, "feet"),
  22348. weight: math.unit(120, "lb"),
  22349. name: "Front (Alt, Nude)",
  22350. image: {
  22351. source: "./media/characters/rory/front-alt-nude.svg",
  22352. extra: 589 / 556,
  22353. bottom: 45.7 / 635.76
  22354. }
  22355. },
  22356. side: {
  22357. height: math.unit(5 + 4 / 12, "feet"),
  22358. weight: math.unit(120, "lb"),
  22359. name: "Side",
  22360. image: {
  22361. source: "./media/characters/rory/side.svg",
  22362. extra: 597 / 564,
  22363. bottom: 55 / 653
  22364. }
  22365. },
  22366. backAlt: {
  22367. height: math.unit(5 + 4 / 12, "feet"),
  22368. weight: math.unit(120, "lb"),
  22369. name: "Back (Alt)",
  22370. image: {
  22371. source: "./media/characters/rory/back-alt.svg",
  22372. extra: 620 / 585,
  22373. bottom: 8.86 / 630.43
  22374. }
  22375. },
  22376. dickAlt: {
  22377. height: math.unit(0.86, "feet"),
  22378. name: "Dick (Alt)",
  22379. image: {
  22380. source: "./media/characters/rory/dick-alt.svg"
  22381. }
  22382. },
  22383. },
  22384. [
  22385. {
  22386. name: "Normal",
  22387. height: math.unit(5 + 4 / 12, "feet"),
  22388. default: true
  22389. },
  22390. {
  22391. name: "Macro",
  22392. height: math.unit(100, "feet")
  22393. },
  22394. {
  22395. name: "Macro+",
  22396. height: math.unit(140, "feet")
  22397. },
  22398. {
  22399. name: "Macro++",
  22400. height: math.unit(300, "feet")
  22401. },
  22402. ]
  22403. ))
  22404. characterMakers.push(() => makeCharacter(
  22405. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22406. {
  22407. front: {
  22408. height: math.unit(5 + 9 / 12, "feet"),
  22409. weight: math.unit(190, "lb"),
  22410. name: "Front",
  22411. image: {
  22412. source: "./media/characters/sprisk/front.svg",
  22413. extra: 1225 / 1180,
  22414. bottom: 42.7 / 1266.4
  22415. }
  22416. },
  22417. frontNsfw: {
  22418. height: math.unit(5 + 9 / 12, "feet"),
  22419. weight: math.unit(190, "lb"),
  22420. name: "Front (NSFW)",
  22421. image: {
  22422. source: "./media/characters/sprisk/front-nsfw.svg",
  22423. extra: 1225 / 1180,
  22424. bottom: 42.7 / 1266.4
  22425. }
  22426. },
  22427. back: {
  22428. height: math.unit(5 + 9 / 12, "feet"),
  22429. weight: math.unit(190, "lb"),
  22430. name: "Back",
  22431. image: {
  22432. source: "./media/characters/sprisk/back.svg",
  22433. extra: 1247 / 1200,
  22434. bottom: 5.6 / 1253.04
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Tiny",
  22441. height: math.unit(2, "inches")
  22442. },
  22443. {
  22444. name: "Normal",
  22445. height: math.unit(5 + 9 / 12, "feet"),
  22446. default: true
  22447. },
  22448. {
  22449. name: "Mini Macro",
  22450. height: math.unit(18, "feet")
  22451. },
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(100, "feet")
  22455. },
  22456. {
  22457. name: "MACRO",
  22458. height: math.unit(50, "miles")
  22459. },
  22460. {
  22461. name: "M A C R O",
  22462. height: math.unit(300, "miles")
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22468. {
  22469. side: {
  22470. height: math.unit(15.6, "meters"),
  22471. weight: math.unit(700000, "kg"),
  22472. name: "Side",
  22473. image: {
  22474. source: "./media/characters/bunsen/side.svg",
  22475. extra: 1644 / 358
  22476. }
  22477. },
  22478. foot: {
  22479. height: math.unit(1.611 * 1644 / 358, "meter"),
  22480. name: "Foot",
  22481. image: {
  22482. source: "./media/characters/bunsen/foot.svg"
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Small",
  22489. height: math.unit(10, "feet")
  22490. },
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(15.6, "meters"),
  22494. default: true
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22500. {
  22501. front: {
  22502. height: math.unit(4 + 11 / 12, "feet"),
  22503. weight: math.unit(140, "lb"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/sesh/front.svg",
  22507. extra: 3420 / 3231,
  22508. bottom: 72 / 3949.5
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(4 + 11 / 12, "feet")
  22516. },
  22517. {
  22518. name: "Grown",
  22519. height: math.unit(15, "feet"),
  22520. default: true
  22521. },
  22522. {
  22523. name: "Macro",
  22524. height: math.unit(1500, "feet")
  22525. },
  22526. {
  22527. name: "Megamacro",
  22528. height: math.unit(30, "miles")
  22529. },
  22530. {
  22531. name: "Continental",
  22532. height: math.unit(3000, "miles")
  22533. },
  22534. {
  22535. name: "Gravity Mass",
  22536. height: math.unit(300000, "miles")
  22537. },
  22538. {
  22539. name: "Planet Buster",
  22540. height: math.unit(30000000, "miles")
  22541. },
  22542. {
  22543. name: "Big",
  22544. height: math.unit(3000000000, "miles")
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(9, "feet"),
  22553. weight: math.unit(350, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/pepper/front.svg",
  22557. extra: 1448 / 1312,
  22558. bottom: 9.4 / 1457.88
  22559. }
  22560. },
  22561. back: {
  22562. height: math.unit(9, "feet"),
  22563. weight: math.unit(350, "lb"),
  22564. name: "Back",
  22565. image: {
  22566. source: "./media/characters/pepper/back.svg",
  22567. extra: 1423 / 1300,
  22568. bottom: 4.6 / 1429
  22569. }
  22570. },
  22571. maw: {
  22572. height: math.unit(0.932, "feet"),
  22573. name: "Maw",
  22574. image: {
  22575. source: "./media/characters/pepper/maw.svg"
  22576. }
  22577. },
  22578. },
  22579. [
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(9, "feet"),
  22583. default: true
  22584. },
  22585. ]
  22586. ))
  22587. characterMakers.push(() => makeCharacter(
  22588. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22589. {
  22590. front: {
  22591. height: math.unit(6, "feet"),
  22592. weight: math.unit(150, "lb"),
  22593. name: "Front",
  22594. image: {
  22595. source: "./media/characters/maelstrom/front.svg",
  22596. extra: 2100 / 1883,
  22597. bottom: 94 / 2196.7
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Less Kaiju",
  22604. height: math.unit(200, "feet")
  22605. },
  22606. {
  22607. name: "Kaiju",
  22608. height: math.unit(400, "feet"),
  22609. default: true
  22610. },
  22611. {
  22612. name: "Kaiju-er",
  22613. height: math.unit(600, "feet")
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22619. {
  22620. front: {
  22621. height: math.unit(6 + 5 / 12, "feet"),
  22622. weight: math.unit(180, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/lexir/front.svg",
  22626. extra: 180 / 172,
  22627. bottom: 12 / 192
  22628. }
  22629. },
  22630. back: {
  22631. height: math.unit(6 + 5 / 12, "feet"),
  22632. weight: math.unit(180, "lb"),
  22633. name: "Back",
  22634. image: {
  22635. source: "./media/characters/lexir/back.svg",
  22636. extra: 183.84 / 175.5,
  22637. bottom: 3.1 / 187
  22638. }
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Very Smal",
  22644. height: math.unit(1, "nm")
  22645. },
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(6 + 5 / 12, "feet"),
  22649. default: true
  22650. },
  22651. {
  22652. name: "Macro",
  22653. height: math.unit(1, "mile")
  22654. },
  22655. {
  22656. name: "Megamacro",
  22657. height: math.unit(50, "miles")
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22663. {
  22664. front: {
  22665. height: math.unit(1.5, "meters"),
  22666. weight: math.unit(100, "lb"),
  22667. name: "Front",
  22668. image: {
  22669. source: "./media/characters/maksio/front.svg",
  22670. extra: 1549 / 1531,
  22671. bottom: 123.7 / 1674.5429
  22672. }
  22673. },
  22674. back: {
  22675. height: math.unit(1.5, "meters"),
  22676. weight: math.unit(100, "lb"),
  22677. name: "Back",
  22678. image: {
  22679. source: "./media/characters/maksio/back.svg",
  22680. extra: 1541 / 1509,
  22681. bottom: 97 / 1639
  22682. }
  22683. },
  22684. hand: {
  22685. height: math.unit(0.621, "feet"),
  22686. name: "Hand",
  22687. image: {
  22688. source: "./media/characters/maksio/hand.svg"
  22689. }
  22690. },
  22691. foot: {
  22692. height: math.unit(1.611, "feet"),
  22693. name: "Foot",
  22694. image: {
  22695. source: "./media/characters/maksio/foot.svg"
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "Shrunken",
  22702. height: math.unit(10, "cm")
  22703. },
  22704. {
  22705. name: "Normal",
  22706. height: math.unit(150, "cm"),
  22707. default: true
  22708. },
  22709. ]
  22710. ))
  22711. characterMakers.push(() => makeCharacter(
  22712. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22713. {
  22714. front: {
  22715. height: math.unit(100, "feet"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/erza-bear/front.svg",
  22719. extra: 2449 / 2390,
  22720. bottom: 46 / 2494
  22721. }
  22722. },
  22723. back: {
  22724. height: math.unit(100, "feet"),
  22725. name: "Back",
  22726. image: {
  22727. source: "./media/characters/erza-bear/back.svg",
  22728. extra: 2489 / 2430,
  22729. bottom: 85.4 / 2480
  22730. }
  22731. },
  22732. tail: {
  22733. height: math.unit(42, "feet"),
  22734. name: "Tail",
  22735. image: {
  22736. source: "./media/characters/erza-bear/tail.svg"
  22737. }
  22738. },
  22739. tongue: {
  22740. height: math.unit(8, "feet"),
  22741. name: "Tongue",
  22742. image: {
  22743. source: "./media/characters/erza-bear/tongue.svg"
  22744. }
  22745. },
  22746. dick: {
  22747. height: math.unit(10.5, "feet"),
  22748. name: "Dick",
  22749. image: {
  22750. source: "./media/characters/erza-bear/dick.svg"
  22751. }
  22752. },
  22753. dickVertical: {
  22754. height: math.unit(16.9, "feet"),
  22755. name: "Dick (Vertical)",
  22756. image: {
  22757. source: "./media/characters/erza-bear/dick-vertical.svg"
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Macro",
  22764. height: math.unit(100, "feet"),
  22765. default: true
  22766. },
  22767. ]
  22768. ))
  22769. characterMakers.push(() => makeCharacter(
  22770. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22771. {
  22772. front: {
  22773. height: math.unit(172, "cm"),
  22774. weight: math.unit(73, "kg"),
  22775. name: "Front",
  22776. image: {
  22777. source: "./media/characters/violet-flor/front.svg",
  22778. extra: 1530 / 1442,
  22779. bottom: 61.9 / 1588.8
  22780. }
  22781. },
  22782. back: {
  22783. height: math.unit(180, "cm"),
  22784. weight: math.unit(73, "kg"),
  22785. name: "Back",
  22786. image: {
  22787. source: "./media/characters/violet-flor/back.svg",
  22788. extra: 1692 / 1630,
  22789. bottom: 20 / 1712
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Normal",
  22796. height: math.unit(172, "cm"),
  22797. default: true
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22803. {
  22804. front: {
  22805. height: math.unit(6, "feet"),
  22806. weight: math.unit(220, "lb"),
  22807. name: "Front",
  22808. image: {
  22809. source: "./media/characters/lynn-rhea/front.svg",
  22810. extra: 310 / 273
  22811. }
  22812. },
  22813. back: {
  22814. height: math.unit(6, "feet"),
  22815. weight: math.unit(220, "lb"),
  22816. name: "Back",
  22817. image: {
  22818. source: "./media/characters/lynn-rhea/back.svg",
  22819. extra: 310 / 273
  22820. }
  22821. },
  22822. dicks: {
  22823. height: math.unit(0.9, "feet"),
  22824. name: "Dicks",
  22825. image: {
  22826. source: "./media/characters/lynn-rhea/dicks.svg"
  22827. }
  22828. },
  22829. slit: {
  22830. height: math.unit(0.4, "feet"),
  22831. name: "Slit",
  22832. image: {
  22833. source: "./media/characters/lynn-rhea/slit.svg"
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Micro",
  22840. height: math.unit(1, "inch")
  22841. },
  22842. {
  22843. name: "Macro",
  22844. height: math.unit(60, "feet"),
  22845. default: true
  22846. },
  22847. {
  22848. name: "Megamacro",
  22849. height: math.unit(2, "miles")
  22850. },
  22851. {
  22852. name: "Gigamacro",
  22853. height: math.unit(3, "earths")
  22854. },
  22855. {
  22856. name: "Galactic",
  22857. height: math.unit(0.8, "galaxies")
  22858. },
  22859. ]
  22860. ))
  22861. characterMakers.push(() => makeCharacter(
  22862. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22863. {
  22864. front: {
  22865. height: math.unit(1600, "feet"),
  22866. weight: math.unit(85758785169, "kg"),
  22867. name: "Front",
  22868. image: {
  22869. source: "./media/characters/valathos/front.svg",
  22870. extra: 1451 / 1339
  22871. }
  22872. },
  22873. },
  22874. [
  22875. {
  22876. name: "Macro",
  22877. height: math.unit(1600, "feet"),
  22878. default: true
  22879. },
  22880. ]
  22881. ))
  22882. characterMakers.push(() => makeCharacter(
  22883. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22884. {
  22885. front: {
  22886. height: math.unit(7 + 5 / 12, "feet"),
  22887. weight: math.unit(300, "lb"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/azula/front.svg",
  22891. extra: 3208 / 2880,
  22892. bottom: 80.2 / 3277
  22893. }
  22894. },
  22895. back: {
  22896. height: math.unit(7 + 5 / 12, "feet"),
  22897. weight: math.unit(300, "lb"),
  22898. name: "Back",
  22899. image: {
  22900. source: "./media/characters/azula/back.svg",
  22901. extra: 3169 / 2822,
  22902. bottom: 150.6 / 3321
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(7 + 5 / 12, "feet"),
  22910. default: true
  22911. },
  22912. {
  22913. name: "Big",
  22914. height: math.unit(20, "feet")
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(5 + 1 / 12, "feet"),
  22923. weight: math.unit(110, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/rupert/front.svg",
  22927. extra: 1549 / 1495,
  22928. bottom: 54.2 / 1604.4
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(5 + 1 / 12, "feet"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22942. {
  22943. front: {
  22944. height: math.unit(8 + 4 / 12, "feet"),
  22945. weight: math.unit(350, "lb"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/sheera-castellar/front.svg",
  22949. extra: 1957 / 1894,
  22950. bottom: 26.97 / 1975.017
  22951. }
  22952. },
  22953. side: {
  22954. height: math.unit(8 + 4 / 12, "feet"),
  22955. weight: math.unit(350, "lb"),
  22956. name: "Side",
  22957. image: {
  22958. source: "./media/characters/sheera-castellar/side.svg",
  22959. extra: 1957 / 1894
  22960. }
  22961. },
  22962. back: {
  22963. height: math.unit(8 + 4 / 12, "feet"),
  22964. weight: math.unit(350, "lb"),
  22965. name: "Back",
  22966. image: {
  22967. source: "./media/characters/sheera-castellar/back.svg",
  22968. extra: 1957 / 1894
  22969. }
  22970. },
  22971. angled: {
  22972. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22973. weight: math.unit(350, "lb"),
  22974. name: "Angled",
  22975. image: {
  22976. source: "./media/characters/sheera-castellar/angled.svg",
  22977. extra: 1807 / 1707,
  22978. bottom: 68 / 1875
  22979. }
  22980. },
  22981. genitals: {
  22982. height: math.unit(2.2, "feet"),
  22983. name: "Genitals",
  22984. image: {
  22985. source: "./media/characters/sheera-castellar/genitals.svg"
  22986. }
  22987. },
  22988. taur: {
  22989. height: math.unit(10 + 6/12, "feet"),
  22990. name: "Taur",
  22991. image: {
  22992. source: "./media/characters/sheera-castellar/taur.svg",
  22993. extra: 2017/1909,
  22994. bottom: 185/2202
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(8 + 4 / 12, "feet")
  23002. },
  23003. {
  23004. name: "Macro",
  23005. height: math.unit(150, "feet"),
  23006. default: true
  23007. },
  23008. {
  23009. name: "Macro+",
  23010. height: math.unit(800, "feet")
  23011. },
  23012. ]
  23013. ))
  23014. characterMakers.push(() => makeCharacter(
  23015. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23016. {
  23017. front: {
  23018. height: math.unit(6, "feet"),
  23019. weight: math.unit(150, "lb"),
  23020. name: "Front",
  23021. image: {
  23022. source: "./media/characters/jaipur/front.svg",
  23023. extra: 3860 / 3731,
  23024. bottom: 287 / 4140
  23025. }
  23026. },
  23027. back: {
  23028. height: math.unit(6, "feet"),
  23029. weight: math.unit(150, "lb"),
  23030. name: "Back",
  23031. image: {
  23032. source: "./media/characters/jaipur/back.svg",
  23033. extra: 4060 / 3930,
  23034. bottom: 151 / 4200
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Normal",
  23041. height: math.unit(1.85, "meters"),
  23042. default: true
  23043. },
  23044. {
  23045. name: "Macro",
  23046. height: math.unit(150, "meters")
  23047. },
  23048. {
  23049. name: "Macro+",
  23050. height: math.unit(0.5, "miles")
  23051. },
  23052. {
  23053. name: "Macro++",
  23054. height: math.unit(2.5, "miles")
  23055. },
  23056. {
  23057. name: "Macro+++",
  23058. height: math.unit(12, "miles")
  23059. },
  23060. {
  23061. name: "Macro++++",
  23062. height: math.unit(120, "miles")
  23063. },
  23064. {
  23065. name: "Macro+++++",
  23066. height: math.unit(1200, "miles")
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23072. {
  23073. front: {
  23074. height: math.unit(6, "feet"),
  23075. weight: math.unit(150, "lb"),
  23076. name: "Front",
  23077. image: {
  23078. source: "./media/characters/sheila-wolf/front.svg",
  23079. extra: 1931 / 1808,
  23080. bottom: 29.5 / 1960
  23081. }
  23082. },
  23083. dick: {
  23084. height: math.unit(1.464, "feet"),
  23085. name: "Dick",
  23086. image: {
  23087. source: "./media/characters/sheila-wolf/dick.svg"
  23088. }
  23089. },
  23090. muzzle: {
  23091. height: math.unit(0.513, "feet"),
  23092. name: "Muzzle",
  23093. image: {
  23094. source: "./media/characters/sheila-wolf/muzzle.svg"
  23095. }
  23096. },
  23097. },
  23098. [
  23099. {
  23100. name: "Macro",
  23101. height: math.unit(70, "feet"),
  23102. default: true
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23108. {
  23109. front: {
  23110. height: math.unit(32, "meters"),
  23111. weight: math.unit(300000, "kg"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/almor/front.svg",
  23115. extra: 1408 / 1322,
  23116. bottom: 94.6 / 1506.5
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Macro",
  23123. height: math.unit(32, "meters"),
  23124. default: true
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(7, "feet"),
  23133. weight: math.unit(200, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/silver/front.svg",
  23137. extra: 472.1 / 450.5,
  23138. bottom: 26.5 / 499.424
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(7, "feet"),
  23146. default: true
  23147. },
  23148. {
  23149. name: "Macro",
  23150. height: math.unit(800, "feet")
  23151. },
  23152. {
  23153. name: "Megamacro",
  23154. height: math.unit(250, "miles")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23160. {
  23161. front: {
  23162. height: math.unit(6, "feet"),
  23163. weight: math.unit(150, "lb"),
  23164. name: "Front",
  23165. image: {
  23166. source: "./media/characters/pliskin/front.svg",
  23167. extra: 1469 / 1359,
  23168. bottom: 70 / 1540
  23169. }
  23170. },
  23171. },
  23172. [
  23173. {
  23174. name: "Micro",
  23175. height: math.unit(3, "inches")
  23176. },
  23177. {
  23178. name: "Normal",
  23179. height: math.unit(5 + 11 / 12, "feet"),
  23180. default: true
  23181. },
  23182. {
  23183. name: "Macro",
  23184. height: math.unit(120, "feet")
  23185. },
  23186. ]
  23187. ))
  23188. characterMakers.push(() => makeCharacter(
  23189. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23190. {
  23191. front: {
  23192. height: math.unit(6, "feet"),
  23193. weight: math.unit(150, "lb"),
  23194. name: "Front",
  23195. image: {
  23196. source: "./media/characters/sammy/front.svg",
  23197. extra: 1193 / 1089,
  23198. bottom: 30.5 / 1226
  23199. }
  23200. },
  23201. },
  23202. [
  23203. {
  23204. name: "Macro",
  23205. height: math.unit(1700, "feet"),
  23206. default: true
  23207. },
  23208. {
  23209. name: "Examacro",
  23210. height: math.unit(2.5e9, "lightyears")
  23211. },
  23212. ]
  23213. ))
  23214. characterMakers.push(() => makeCharacter(
  23215. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23216. {
  23217. front: {
  23218. height: math.unit(21, "meters"),
  23219. weight: math.unit(12, "tonnes"),
  23220. name: "Front",
  23221. image: {
  23222. source: "./media/characters/kuru/front.svg",
  23223. extra: 4301 / 3785,
  23224. bottom: 371.3 / 4691
  23225. }
  23226. },
  23227. },
  23228. [
  23229. {
  23230. name: "Macro",
  23231. height: math.unit(21, "meters"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23238. {
  23239. front: {
  23240. height: math.unit(23, "meters"),
  23241. weight: math.unit(12.2, "tonnes"),
  23242. name: "Front",
  23243. image: {
  23244. source: "./media/characters/rakka/front.svg",
  23245. extra: 4670 / 4169,
  23246. bottom: 301 / 4968.7
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Macro",
  23253. height: math.unit(23, "meters"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23260. {
  23261. front: {
  23262. height: math.unit(6, "feet"),
  23263. weight: math.unit(150, "lb"),
  23264. name: "Front",
  23265. image: {
  23266. source: "./media/characters/rhys-feline/front.svg",
  23267. extra: 2488 / 2308,
  23268. bottom: 35.67 / 2519.19
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Really Small",
  23275. height: math.unit(1, "nm")
  23276. },
  23277. {
  23278. name: "Micro",
  23279. height: math.unit(4, "inches")
  23280. },
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(4 + 10 / 12, "feet"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(100, "feet")
  23289. },
  23290. {
  23291. name: "Megamacto",
  23292. height: math.unit(50, "miles")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23298. {
  23299. side: {
  23300. height: math.unit(30, "feet"),
  23301. weight: math.unit(35000, "kg"),
  23302. name: "Side",
  23303. image: {
  23304. source: "./media/characters/alydar/side.svg",
  23305. extra: 234 / 222,
  23306. bottom: 6.5 / 241
  23307. }
  23308. },
  23309. front: {
  23310. height: math.unit(30, "feet"),
  23311. weight: math.unit(35000, "kg"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/alydar/front.svg",
  23315. extra: 223.37 / 210.2,
  23316. bottom: 22.3 / 246.76
  23317. }
  23318. },
  23319. top: {
  23320. height: math.unit(64.54, "feet"),
  23321. weight: math.unit(35000, "kg"),
  23322. name: "Top",
  23323. image: {
  23324. source: "./media/characters/alydar/top.svg"
  23325. }
  23326. },
  23327. anthro: {
  23328. height: math.unit(30, "feet"),
  23329. weight: math.unit(9000, "kg"),
  23330. name: "Anthro",
  23331. image: {
  23332. source: "./media/characters/alydar/anthro.svg",
  23333. extra: 432 / 421,
  23334. bottom: 7.18 / 440
  23335. }
  23336. },
  23337. maw: {
  23338. height: math.unit(11.693, "feet"),
  23339. name: "Maw",
  23340. image: {
  23341. source: "./media/characters/alydar/maw.svg"
  23342. }
  23343. },
  23344. head: {
  23345. height: math.unit(11.693, "feet"),
  23346. name: "Head",
  23347. image: {
  23348. source: "./media/characters/alydar/head.svg"
  23349. }
  23350. },
  23351. headAlt: {
  23352. height: math.unit(12.861, "feet"),
  23353. name: "Head (Alt)",
  23354. image: {
  23355. source: "./media/characters/alydar/head-alt.svg"
  23356. }
  23357. },
  23358. wing: {
  23359. height: math.unit(20.712, "feet"),
  23360. name: "Wing",
  23361. image: {
  23362. source: "./media/characters/alydar/wing.svg"
  23363. }
  23364. },
  23365. wingFeather: {
  23366. height: math.unit(9.662, "feet"),
  23367. name: "Wing Feather",
  23368. image: {
  23369. source: "./media/characters/alydar/wing-feather.svg"
  23370. }
  23371. },
  23372. countourFeather: {
  23373. height: math.unit(4.154, "feet"),
  23374. name: "Contour Feather",
  23375. image: {
  23376. source: "./media/characters/alydar/contour-feather.svg"
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Diplomatic",
  23383. height: math.unit(13, "feet"),
  23384. default: true
  23385. },
  23386. {
  23387. name: "Small",
  23388. height: math.unit(30, "feet")
  23389. },
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(95, "feet"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Large",
  23397. height: math.unit(285, "feet")
  23398. },
  23399. {
  23400. name: "Incomprehensible",
  23401. height: math.unit(450, "megameters")
  23402. },
  23403. ]
  23404. ))
  23405. characterMakers.push(() => makeCharacter(
  23406. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23407. {
  23408. side: {
  23409. height: math.unit(11, "feet"),
  23410. weight: math.unit(1750, "kg"),
  23411. name: "Side",
  23412. image: {
  23413. source: "./media/characters/selicia/side.svg",
  23414. extra: 440 / 396,
  23415. bottom: 24.8 / 465.979
  23416. }
  23417. },
  23418. maw: {
  23419. height: math.unit(4.665, "feet"),
  23420. name: "Maw",
  23421. image: {
  23422. source: "./media/characters/selicia/maw.svg"
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Normal",
  23429. height: math.unit(11, "feet"),
  23430. default: true
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23436. {
  23437. side: {
  23438. height: math.unit(2 + 6 / 12, "feet"),
  23439. weight: math.unit(30, "lb"),
  23440. name: "Side",
  23441. image: {
  23442. source: "./media/characters/layla/side.svg",
  23443. extra: 244 / 188,
  23444. bottom: 18.2 / 262.1
  23445. }
  23446. },
  23447. back: {
  23448. height: math.unit(2 + 6 / 12, "feet"),
  23449. weight: math.unit(30, "lb"),
  23450. name: "Back",
  23451. image: {
  23452. source: "./media/characters/layla/back.svg",
  23453. extra: 308 / 241.5,
  23454. bottom: 8.9 / 316.8
  23455. }
  23456. },
  23457. cumming: {
  23458. height: math.unit(2 + 6 / 12, "feet"),
  23459. weight: math.unit(30, "lb"),
  23460. name: "Cumming",
  23461. image: {
  23462. source: "./media/characters/layla/cumming.svg",
  23463. extra: 342 / 279,
  23464. bottom: 595 / 938
  23465. }
  23466. },
  23467. dickFlaccid: {
  23468. height: math.unit(2.595, "feet"),
  23469. name: "Flaccid Genitals",
  23470. image: {
  23471. source: "./media/characters/layla/dick-flaccid.svg"
  23472. }
  23473. },
  23474. dickErect: {
  23475. height: math.unit(2.359, "feet"),
  23476. name: "Erect Genitals",
  23477. image: {
  23478. source: "./media/characters/layla/dick-erect.svg"
  23479. }
  23480. },
  23481. dragon: {
  23482. height: math.unit(40, "feet"),
  23483. name: "Dragon",
  23484. image: {
  23485. source: "./media/characters/layla/dragon.svg",
  23486. extra: 610/535,
  23487. bottom: 367/977
  23488. }
  23489. },
  23490. taur: {
  23491. height: math.unit(30, "feet"),
  23492. name: "Taur",
  23493. image: {
  23494. source: "./media/characters/layla/taur.svg",
  23495. extra: 1268/1199,
  23496. bottom: 112/1380
  23497. }
  23498. },
  23499. },
  23500. [
  23501. {
  23502. name: "Micro",
  23503. height: math.unit(1, "inch")
  23504. },
  23505. {
  23506. name: "Small",
  23507. height: math.unit(1, "foot")
  23508. },
  23509. {
  23510. name: "Normal",
  23511. height: math.unit(2 + 6 / 12, "feet"),
  23512. default: true
  23513. },
  23514. {
  23515. name: "Macro",
  23516. height: math.unit(200, "feet")
  23517. },
  23518. {
  23519. name: "Megamacro",
  23520. height: math.unit(1000, "miles")
  23521. },
  23522. {
  23523. name: "Planetary",
  23524. height: math.unit(8000, "miles")
  23525. },
  23526. {
  23527. name: "True Layla",
  23528. height: math.unit(200000 * 7, "multiverses")
  23529. },
  23530. ]
  23531. ))
  23532. characterMakers.push(() => makeCharacter(
  23533. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23534. {
  23535. back: {
  23536. height: math.unit(10.5, "feet"),
  23537. weight: math.unit(800, "lb"),
  23538. name: "Back",
  23539. image: {
  23540. source: "./media/characters/knox/back.svg",
  23541. extra: 1486 / 1089,
  23542. bottom: 107 / 1601.4
  23543. }
  23544. },
  23545. side: {
  23546. height: math.unit(10.5, "feet"),
  23547. weight: math.unit(800, "lb"),
  23548. name: "Side",
  23549. image: {
  23550. source: "./media/characters/knox/side.svg",
  23551. extra: 244 / 218,
  23552. bottom: 14 / 260
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Compact",
  23559. height: math.unit(10.5, "feet"),
  23560. default: true
  23561. },
  23562. {
  23563. name: "Dynamax",
  23564. height: math.unit(210, "feet")
  23565. },
  23566. {
  23567. name: "Full Macro",
  23568. height: math.unit(850, "feet")
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(6, "feet"),
  23577. weight: math.unit(152, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/shin-pikachu/front.svg",
  23581. extra: 1854/1602,
  23582. bottom: 166/2020
  23583. }
  23584. },
  23585. hand: {
  23586. height: math.unit(1.055, "feet"),
  23587. name: "Hand",
  23588. image: {
  23589. source: "./media/characters/shin-pikachu/hand.svg"
  23590. }
  23591. },
  23592. foot: {
  23593. height: math.unit(1.1, "feet"),
  23594. name: "Foot",
  23595. image: {
  23596. source: "./media/characters/shin-pikachu/foot.svg"
  23597. }
  23598. },
  23599. collar: {
  23600. height: math.unit(0.386, "feet"),
  23601. name: "Collar",
  23602. image: {
  23603. source: "./media/characters/shin-pikachu/collar.svg"
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Smallest",
  23610. height: math.unit(0.5, "inches")
  23611. },
  23612. {
  23613. name: "Micro",
  23614. height: math.unit(6, "inches")
  23615. },
  23616. {
  23617. name: "Normal",
  23618. height: math.unit(6, "feet"),
  23619. default: true
  23620. },
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(150, "feet")
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(28, "feet"),
  23632. weight: math.unit(10500, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/kayda/front.svg",
  23636. extra: 1536 / 1428,
  23637. bottom: 68.7 / 1603
  23638. }
  23639. },
  23640. back: {
  23641. height: math.unit(28, "feet"),
  23642. weight: math.unit(10500, "lb"),
  23643. name: "Back",
  23644. image: {
  23645. source: "./media/characters/kayda/back.svg",
  23646. extra: 1557 / 1464,
  23647. bottom: 39.5 / 1597.49
  23648. }
  23649. },
  23650. dick: {
  23651. height: math.unit(3.858, "feet"),
  23652. name: "Dick",
  23653. image: {
  23654. source: "./media/characters/kayda/dick.svg"
  23655. }
  23656. },
  23657. },
  23658. [
  23659. {
  23660. name: "Macro",
  23661. height: math.unit(28, "feet"),
  23662. default: true
  23663. },
  23664. ]
  23665. ))
  23666. characterMakers.push(() => makeCharacter(
  23667. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23668. {
  23669. front: {
  23670. height: math.unit(10 + 11 / 12, "feet"),
  23671. weight: math.unit(1400, "lb"),
  23672. name: "Front",
  23673. image: {
  23674. source: "./media/characters/brian/front.svg",
  23675. extra: 737 / 692,
  23676. bottom: 55.4 / 785
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Normal",
  23683. height: math.unit(10 + 11 / 12, "feet"),
  23684. default: true
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23690. {
  23691. front: {
  23692. height: math.unit(5 + 8 / 12, "feet"),
  23693. weight: math.unit(140, "lb"),
  23694. name: "Front",
  23695. image: {
  23696. source: "./media/characters/khemri/front.svg",
  23697. extra: 4780 / 4059,
  23698. bottom: 80.1 / 4859.25
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Micro",
  23705. height: math.unit(6, "inches")
  23706. },
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(5 + 8 / 12, "feet"),
  23710. default: true
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23716. {
  23717. front: {
  23718. height: math.unit(13, "feet"),
  23719. weight: math.unit(1700, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/felix-braveheart/front.svg",
  23723. extra: 1222 / 1157,
  23724. bottom: 53.2 / 1280
  23725. }
  23726. },
  23727. back: {
  23728. height: math.unit(13, "feet"),
  23729. weight: math.unit(1700, "lb"),
  23730. name: "Back",
  23731. image: {
  23732. source: "./media/characters/felix-braveheart/back.svg",
  23733. extra: 1277 / 1203,
  23734. bottom: 50.2 / 1327
  23735. }
  23736. },
  23737. feral: {
  23738. height: math.unit(6, "feet"),
  23739. weight: math.unit(400, "lb"),
  23740. name: "Feral",
  23741. image: {
  23742. source: "./media/characters/felix-braveheart/feral.svg",
  23743. extra: 682 / 625,
  23744. bottom: 6.9 / 688
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Normal",
  23751. height: math.unit(13, "feet"),
  23752. default: true
  23753. },
  23754. ]
  23755. ))
  23756. characterMakers.push(() => makeCharacter(
  23757. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23758. {
  23759. side: {
  23760. height: math.unit(5 + 11 / 12, "feet"),
  23761. weight: math.unit(1400, "lb"),
  23762. name: "Side",
  23763. image: {
  23764. source: "./media/characters/shadow-blade/side.svg",
  23765. extra: 1726 / 1267,
  23766. bottom: 58.4 / 1785
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Normal",
  23773. height: math.unit(5 + 11 / 12, "feet"),
  23774. default: true
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23780. {
  23781. front: {
  23782. height: math.unit(1 + 6 / 12, "feet"),
  23783. weight: math.unit(25, "lb"),
  23784. name: "Front",
  23785. image: {
  23786. source: "./media/characters/karla-halldor/front.svg",
  23787. extra: 1459 / 1383,
  23788. bottom: 12 / 1472
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(1 + 6 / 12, "feet"),
  23796. default: true
  23797. },
  23798. ]
  23799. ))
  23800. characterMakers.push(() => makeCharacter(
  23801. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23802. {
  23803. front: {
  23804. height: math.unit(6 + 2 / 12, "feet"),
  23805. weight: math.unit(160, "lb"),
  23806. name: "Front",
  23807. image: {
  23808. source: "./media/characters/ariam/front.svg",
  23809. extra: 714 / 617,
  23810. bottom: 23.4 / 737,
  23811. }
  23812. },
  23813. squatting: {
  23814. height: math.unit(4.1, "feet"),
  23815. weight: math.unit(160, "lb"),
  23816. name: "Squatting",
  23817. image: {
  23818. source: "./media/characters/ariam/squatting.svg",
  23819. extra: 2617 / 2112,
  23820. bottom: 61.2 / 2681,
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(6 + 2 / 12, "feet"),
  23828. default: true
  23829. },
  23830. {
  23831. name: "Normal+",
  23832. height: math.unit(4, "meters")
  23833. },
  23834. {
  23835. name: "Macro",
  23836. height: math.unit(50, "meters")
  23837. },
  23838. {
  23839. name: "Macro+",
  23840. height: math.unit(100, "meters")
  23841. },
  23842. {
  23843. name: "Megamacro",
  23844. height: math.unit(20, "km")
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23850. {
  23851. front: {
  23852. height: math.unit(1.67, "meters"),
  23853. weight: math.unit(140, "lb"),
  23854. name: "Front",
  23855. image: {
  23856. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23857. extra: 438 / 410,
  23858. bottom: 0.75 / 439
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Shrunken",
  23865. height: math.unit(7.6, "cm")
  23866. },
  23867. {
  23868. name: "Human Scale",
  23869. height: math.unit(1.67, "meters")
  23870. },
  23871. {
  23872. name: "Wolxi Scale",
  23873. height: math.unit(36.7, "meters"),
  23874. default: true
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23880. {
  23881. front: {
  23882. height: math.unit(1.73, "meters"),
  23883. weight: math.unit(240, "lb"),
  23884. name: "Front",
  23885. image: {
  23886. source: "./media/characters/izue-two-mothers/front.svg",
  23887. extra: 469 / 437,
  23888. bottom: 1.24 / 470.6
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Shrunken",
  23895. height: math.unit(7.86, "cm")
  23896. },
  23897. {
  23898. name: "Human Scale",
  23899. height: math.unit(1.73, "meters")
  23900. },
  23901. {
  23902. name: "Wolxi Scale",
  23903. height: math.unit(38, "meters"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(1.55, "meters"),
  23913. weight: math.unit(120, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/teeku-love-shack/front.svg",
  23917. extra: 387 / 362,
  23918. bottom: 1.51 / 388
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Shrunken",
  23925. height: math.unit(7, "cm")
  23926. },
  23927. {
  23928. name: "Human Scale",
  23929. height: math.unit(1.55, "meters")
  23930. },
  23931. {
  23932. name: "Wolxi Scale",
  23933. height: math.unit(34.1, "meters"),
  23934. default: true
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(1.83, "meters"),
  23943. weight: math.unit(135, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/dejma-the-red/front.svg",
  23947. extra: 480 / 458,
  23948. bottom: 1.8 / 482
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Shrunken",
  23955. height: math.unit(8.3, "cm")
  23956. },
  23957. {
  23958. name: "Human Scale",
  23959. height: math.unit(1.83, "meters")
  23960. },
  23961. {
  23962. name: "Wolxi Scale",
  23963. height: math.unit(40, "meters"),
  23964. default: true
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23970. {
  23971. front: {
  23972. height: math.unit(1.78, "meters"),
  23973. weight: math.unit(65, "kg"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/aki/front.svg",
  23977. extra: 452 / 415
  23978. }
  23979. },
  23980. frontNsfw: {
  23981. height: math.unit(1.78, "meters"),
  23982. weight: math.unit(65, "kg"),
  23983. name: "Front (NSFW)",
  23984. image: {
  23985. source: "./media/characters/aki/front-nsfw.svg",
  23986. extra: 452 / 415
  23987. }
  23988. },
  23989. back: {
  23990. height: math.unit(1.78, "meters"),
  23991. weight: math.unit(65, "kg"),
  23992. name: "Back",
  23993. image: {
  23994. source: "./media/characters/aki/back.svg",
  23995. extra: 452 / 415
  23996. }
  23997. },
  23998. rump: {
  23999. height: math.unit(2.05, "feet"),
  24000. name: "Rump",
  24001. image: {
  24002. source: "./media/characters/aki/rump.svg"
  24003. }
  24004. },
  24005. dick: {
  24006. height: math.unit(0.95, "feet"),
  24007. name: "Dick",
  24008. image: {
  24009. source: "./media/characters/aki/dick.svg"
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Micro",
  24016. height: math.unit(15, "cm")
  24017. },
  24018. {
  24019. name: "Normal",
  24020. height: math.unit(178, "cm"),
  24021. default: true
  24022. },
  24023. {
  24024. name: "Macro",
  24025. height: math.unit(214, "m")
  24026. },
  24027. {
  24028. name: "Macro+",
  24029. height: math.unit(534, "m")
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24035. {
  24036. front: {
  24037. height: math.unit(5 + 5 / 12, "feet"),
  24038. weight: math.unit(120, "lb"),
  24039. name: "Front",
  24040. image: {
  24041. source: "./media/characters/ari/front.svg",
  24042. extra: 714.5 / 682,
  24043. bottom: 8 / 722.5
  24044. }
  24045. },
  24046. },
  24047. [
  24048. {
  24049. name: "Normal",
  24050. height: math.unit(5 + 5 / 12, "feet")
  24051. },
  24052. {
  24053. name: "Macro",
  24054. height: math.unit(100, "feet"),
  24055. default: true
  24056. },
  24057. {
  24058. name: "Megamacro",
  24059. height: math.unit(100, "miles")
  24060. },
  24061. {
  24062. name: "Gigamacro",
  24063. height: math.unit(80000, "miles")
  24064. },
  24065. ]
  24066. ))
  24067. characterMakers.push(() => makeCharacter(
  24068. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24069. {
  24070. side: {
  24071. height: math.unit(9, "feet"),
  24072. weight: math.unit(400, "kg"),
  24073. name: "Side",
  24074. image: {
  24075. source: "./media/characters/bolt/side.svg",
  24076. extra: 1126 / 896,
  24077. bottom: 60 / 1187.3,
  24078. }
  24079. },
  24080. },
  24081. [
  24082. {
  24083. name: "Micro",
  24084. height: math.unit(5, "inches")
  24085. },
  24086. {
  24087. name: "Normal",
  24088. height: math.unit(9, "feet"),
  24089. default: true
  24090. },
  24091. {
  24092. name: "Macro",
  24093. height: math.unit(700, "feet")
  24094. },
  24095. {
  24096. name: "Max Size",
  24097. height: math.unit(1.52e22, "yottameters")
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24103. {
  24104. front: {
  24105. height: math.unit(4.53, "meters"),
  24106. weight: math.unit(3, "tons"),
  24107. name: "Front",
  24108. image: {
  24109. source: "./media/characters/draekon-sylviar/front.svg",
  24110. extra: 1228 / 1068,
  24111. bottom: 41 / 1270
  24112. }
  24113. },
  24114. tail: {
  24115. height: math.unit(1.772, "meter"),
  24116. name: "Tail",
  24117. image: {
  24118. source: "./media/characters/draekon-sylviar/tail.svg"
  24119. }
  24120. },
  24121. head: {
  24122. height: math.unit(1.331, "meter"),
  24123. name: "Head",
  24124. image: {
  24125. source: "./media/characters/draekon-sylviar/head.svg"
  24126. }
  24127. },
  24128. hand: {
  24129. height: math.unit(0.564, "meter"),
  24130. name: "Hand",
  24131. image: {
  24132. source: "./media/characters/draekon-sylviar/hand.svg"
  24133. }
  24134. },
  24135. foot: {
  24136. height: math.unit(0.621, "meter"),
  24137. name: "Foot",
  24138. image: {
  24139. source: "./media/characters/draekon-sylviar/foot.svg",
  24140. bottom: 32 / 324
  24141. }
  24142. },
  24143. dick: {
  24144. height: math.unit(61, "cm"),
  24145. name: "Dick",
  24146. image: {
  24147. source: "./media/characters/draekon-sylviar/dick.svg"
  24148. }
  24149. },
  24150. dickseparated: {
  24151. height: math.unit(61, "cm"),
  24152. name: "Dick-separated",
  24153. image: {
  24154. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Small",
  24161. height: math.unit(4.53 / 2, "meters"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Normal",
  24166. height: math.unit(4.53, "meters"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Large",
  24171. height: math.unit(4.53 * 2, "meters"),
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(6 + 2 / 12, "feet"),
  24180. weight: math.unit(180, "lb"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/brawler/front.svg",
  24184. extra: 3301 / 3027,
  24185. bottom: 138 / 3439
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Normal",
  24192. height: math.unit(6 + 2 / 12, "feet"),
  24193. default: true
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(11, "feet"),
  24202. weight: math.unit(1000, "lb"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/alex/front.svg",
  24206. bottom: 44.5 / 620
  24207. }
  24208. },
  24209. },
  24210. [
  24211. {
  24212. name: "Micro",
  24213. height: math.unit(5, "inches")
  24214. },
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(11, "feet"),
  24218. default: true
  24219. },
  24220. {
  24221. name: "Macro",
  24222. height: math.unit(9.5e9, "feet")
  24223. },
  24224. {
  24225. name: "Max Size",
  24226. height: math.unit(1.4e283, "yottameters")
  24227. },
  24228. ]
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24232. {
  24233. female: {
  24234. height: math.unit(29.9, "m"),
  24235. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24236. name: "Female",
  24237. image: {
  24238. source: "./media/characters/zenari/female.svg",
  24239. extra: 3281.6 / 3217,
  24240. bottom: 72.2 / 3353
  24241. }
  24242. },
  24243. male: {
  24244. height: math.unit(27.7, "m"),
  24245. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24246. name: "Male",
  24247. image: {
  24248. source: "./media/characters/zenari/male.svg",
  24249. extra: 3008 / 2991,
  24250. bottom: 54.6 / 3069
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Macro",
  24257. height: math.unit(29.7, "meters"),
  24258. default: true
  24259. },
  24260. ]
  24261. ))
  24262. characterMakers.push(() => makeCharacter(
  24263. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24264. {
  24265. female: {
  24266. height: math.unit(23.8, "m"),
  24267. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24268. name: "Female",
  24269. image: {
  24270. source: "./media/characters/mactarian/female.svg",
  24271. extra: 2662 / 2569,
  24272. bottom: 73 / 2736
  24273. }
  24274. },
  24275. male: {
  24276. height: math.unit(23.8, "m"),
  24277. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24278. name: "Male",
  24279. image: {
  24280. source: "./media/characters/mactarian/male.svg",
  24281. extra: 2673 / 2600,
  24282. bottom: 76 / 2750
  24283. }
  24284. },
  24285. },
  24286. [
  24287. {
  24288. name: "Macro",
  24289. height: math.unit(23.8, "meters"),
  24290. default: true
  24291. },
  24292. ]
  24293. ))
  24294. characterMakers.push(() => makeCharacter(
  24295. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24296. {
  24297. female: {
  24298. height: math.unit(19.3, "m"),
  24299. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24300. name: "Female",
  24301. image: {
  24302. source: "./media/characters/umok/female.svg",
  24303. extra: 2186 / 2078,
  24304. bottom: 87 / 2277
  24305. }
  24306. },
  24307. male: {
  24308. height: math.unit(19.5, "m"),
  24309. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24310. name: "Male",
  24311. image: {
  24312. source: "./media/characters/umok/male.svg",
  24313. extra: 2233 / 2140,
  24314. bottom: 24.4 / 2258
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Macro",
  24321. height: math.unit(19.3, "meters"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24328. {
  24329. female: {
  24330. height: math.unit(26.15, "m"),
  24331. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24332. name: "Female",
  24333. image: {
  24334. source: "./media/characters/joraxian/female.svg",
  24335. extra: 2912 / 2824,
  24336. bottom: 36 / 2956
  24337. }
  24338. },
  24339. male: {
  24340. height: math.unit(25.4, "m"),
  24341. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24342. name: "Male",
  24343. image: {
  24344. source: "./media/characters/joraxian/male.svg",
  24345. extra: 2877 / 2721,
  24346. bottom: 82 / 2967
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Macro",
  24353. height: math.unit(26.15, "meters"),
  24354. default: true
  24355. },
  24356. ]
  24357. ))
  24358. characterMakers.push(() => makeCharacter(
  24359. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24360. {
  24361. female: {
  24362. height: math.unit(21.6, "m"),
  24363. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24364. name: "Female",
  24365. image: {
  24366. source: "./media/characters/sthara/female.svg",
  24367. extra: 2516 / 2347,
  24368. bottom: 21.5 / 2537
  24369. }
  24370. },
  24371. male: {
  24372. height: math.unit(24, "m"),
  24373. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24374. name: "Male",
  24375. image: {
  24376. source: "./media/characters/sthara/male.svg",
  24377. extra: 2732 / 2607,
  24378. bottom: 23 / 2732
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Macro",
  24385. height: math.unit(21.6, "meters"),
  24386. default: true
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(6 + 4 / 12, "feet"),
  24395. weight: math.unit(175, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/luka-bryzant/front.svg",
  24399. extra: 311 / 289,
  24400. bottom: 4 / 315
  24401. }
  24402. },
  24403. back: {
  24404. height: math.unit(6 + 4 / 12, "feet"),
  24405. weight: math.unit(175, "lb"),
  24406. name: "Back",
  24407. image: {
  24408. source: "./media/characters/luka-bryzant/back.svg",
  24409. extra: 311 / 289,
  24410. bottom: 3.8 / 313.7
  24411. }
  24412. },
  24413. },
  24414. [
  24415. {
  24416. name: "Micro",
  24417. height: math.unit(10, "inches")
  24418. },
  24419. {
  24420. name: "Normal",
  24421. height: math.unit(6 + 4 / 12, "feet"),
  24422. default: true
  24423. },
  24424. {
  24425. name: "Large",
  24426. height: math.unit(12, "feet")
  24427. },
  24428. ]
  24429. ))
  24430. characterMakers.push(() => makeCharacter(
  24431. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24432. {
  24433. front: {
  24434. height: math.unit(5 + 7 / 12, "feet"),
  24435. weight: math.unit(185, "lb"),
  24436. name: "Front",
  24437. image: {
  24438. source: "./media/characters/aman-aquila/front.svg",
  24439. extra: 1013 / 976,
  24440. bottom: 45.6 / 1057
  24441. }
  24442. },
  24443. side: {
  24444. height: math.unit(5 + 7 / 12, "feet"),
  24445. weight: math.unit(185, "lb"),
  24446. name: "Side",
  24447. image: {
  24448. source: "./media/characters/aman-aquila/side.svg",
  24449. extra: 1054 / 1011,
  24450. bottom: 15 / 1070
  24451. }
  24452. },
  24453. back: {
  24454. height: math.unit(5 + 7 / 12, "feet"),
  24455. weight: math.unit(185, "lb"),
  24456. name: "Back",
  24457. image: {
  24458. source: "./media/characters/aman-aquila/back.svg",
  24459. extra: 1026 / 970,
  24460. bottom: 12 / 1039
  24461. }
  24462. },
  24463. head: {
  24464. height: math.unit(1.211, "feet"),
  24465. name: "Head",
  24466. image: {
  24467. source: "./media/characters/aman-aquila/head.svg",
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Minimicro",
  24474. height: math.unit(0.057, "inches")
  24475. },
  24476. {
  24477. name: "Micro",
  24478. height: math.unit(7, "inches")
  24479. },
  24480. {
  24481. name: "Mini",
  24482. height: math.unit(3 + 7 / 12, "feet")
  24483. },
  24484. {
  24485. name: "Normal",
  24486. height: math.unit(5 + 7 / 12, "feet"),
  24487. default: true
  24488. },
  24489. {
  24490. name: "Macro",
  24491. height: math.unit(157 + 7 / 12, "feet")
  24492. },
  24493. {
  24494. name: "Megamacro",
  24495. height: math.unit(1557 + 7 / 12, "feet")
  24496. },
  24497. {
  24498. name: "Gigamacro",
  24499. height: math.unit(15557 + 7 / 12, "feet")
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24505. {
  24506. front: {
  24507. height: math.unit(3 + 2 / 12, "inches"),
  24508. weight: math.unit(0.3, "ounces"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/hiphae/front.svg",
  24512. extra: 1931 / 1683,
  24513. bottom: 24 / 1955
  24514. }
  24515. },
  24516. },
  24517. [
  24518. {
  24519. name: "Normal",
  24520. height: math.unit(3 + 1 / 2, "inches"),
  24521. default: true
  24522. },
  24523. ]
  24524. ))
  24525. characterMakers.push(() => makeCharacter(
  24526. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24527. {
  24528. front: {
  24529. height: math.unit(5 + 10 / 12, "feet"),
  24530. weight: math.unit(165, "lb"),
  24531. name: "Front",
  24532. image: {
  24533. source: "./media/characters/nicky/front.svg",
  24534. extra: 3144 / 2886,
  24535. bottom: 45.6 / 3192
  24536. }
  24537. },
  24538. back: {
  24539. height: math.unit(5 + 10 / 12, "feet"),
  24540. weight: math.unit(165, "lb"),
  24541. name: "Back",
  24542. image: {
  24543. source: "./media/characters/nicky/back.svg",
  24544. extra: 3055 / 2804,
  24545. bottom: 28.4 / 3087
  24546. }
  24547. },
  24548. frontclothed: {
  24549. height: math.unit(5 + 10 / 12, "feet"),
  24550. weight: math.unit(165, "lb"),
  24551. name: "Front-clothed",
  24552. image: {
  24553. source: "./media/characters/nicky/front-clothed.svg",
  24554. extra: 3184.9 / 2926.9,
  24555. bottom: 86.5 / 3239.9
  24556. }
  24557. },
  24558. foot: {
  24559. height: math.unit(1.16, "feet"),
  24560. name: "Foot",
  24561. image: {
  24562. source: "./media/characters/nicky/foot.svg"
  24563. }
  24564. },
  24565. feet: {
  24566. height: math.unit(1.34, "feet"),
  24567. name: "Feet",
  24568. image: {
  24569. source: "./media/characters/nicky/feet.svg"
  24570. }
  24571. },
  24572. maw: {
  24573. height: math.unit(0.9, "feet"),
  24574. name: "Maw",
  24575. image: {
  24576. source: "./media/characters/nicky/maw.svg"
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Normal",
  24583. height: math.unit(5 + 10 / 12, "feet"),
  24584. default: true
  24585. },
  24586. {
  24587. name: "Macro",
  24588. height: math.unit(60, "feet")
  24589. },
  24590. {
  24591. name: "Megamacro",
  24592. height: math.unit(1, "mile")
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24598. {
  24599. side: {
  24600. height: math.unit(10, "feet"),
  24601. weight: math.unit(600, "lb"),
  24602. name: "Side",
  24603. image: {
  24604. source: "./media/characters/blair/side.svg",
  24605. bottom: 16.6 / 475,
  24606. extra: 458 / 431
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Micro",
  24613. height: math.unit(8, "inches")
  24614. },
  24615. {
  24616. name: "Normal",
  24617. height: math.unit(10, "feet"),
  24618. default: true
  24619. },
  24620. {
  24621. name: "Macro",
  24622. height: math.unit(180, "feet")
  24623. },
  24624. ]
  24625. ))
  24626. characterMakers.push(() => makeCharacter(
  24627. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24628. {
  24629. front: {
  24630. height: math.unit(5 + 4 / 12, "feet"),
  24631. weight: math.unit(125, "lb"),
  24632. name: "Front",
  24633. image: {
  24634. source: "./media/characters/fisher/front.svg",
  24635. extra: 444 / 390,
  24636. bottom: 2 / 444.8
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Micro",
  24643. height: math.unit(4, "inches")
  24644. },
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(5 + 4 / 12, "feet"),
  24648. default: true
  24649. },
  24650. {
  24651. name: "Macro",
  24652. height: math.unit(100, "feet")
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24658. {
  24659. front: {
  24660. height: math.unit(6.71, "feet"),
  24661. weight: math.unit(200, "lb"),
  24662. capacity: math.unit(1000000, "people"),
  24663. name: "Front",
  24664. image: {
  24665. source: "./media/characters/gliss/front.svg",
  24666. extra: 2347 / 2231,
  24667. bottom: 113 / 2462
  24668. }
  24669. },
  24670. hammerspaceSize: {
  24671. height: math.unit(6.71 * 717, "feet"),
  24672. weight: math.unit(200, "lb"),
  24673. capacity: math.unit(1000000, "people"),
  24674. name: "Hammerspace Size",
  24675. image: {
  24676. source: "./media/characters/gliss/front.svg",
  24677. extra: 2347 / 2231,
  24678. bottom: 113 / 2462
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Normal",
  24685. height: math.unit(6.71, "feet"),
  24686. default: true
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24692. {
  24693. side: {
  24694. height: math.unit(1.44, "m"),
  24695. weight: math.unit(80, "kg"),
  24696. name: "Side",
  24697. image: {
  24698. source: "./media/characters/dune-anderson/side.svg",
  24699. bottom: 49 / 1426
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Wolf-sized",
  24706. height: math.unit(1.44, "meters")
  24707. },
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(5.05, "meters"),
  24711. default: true
  24712. },
  24713. {
  24714. name: "Big",
  24715. height: math.unit(14.4, "meters")
  24716. },
  24717. {
  24718. name: "Huge",
  24719. height: math.unit(144, "meters")
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24725. {
  24726. front: {
  24727. height: math.unit(7, "feet"),
  24728. weight: math.unit(425, "lb"),
  24729. name: "Front",
  24730. image: {
  24731. source: "./media/characters/hind/front.svg",
  24732. extra: 2091 / 1860,
  24733. bottom: 129 / 2220
  24734. }
  24735. },
  24736. back: {
  24737. height: math.unit(7, "feet"),
  24738. weight: math.unit(425, "lb"),
  24739. name: "Back",
  24740. image: {
  24741. source: "./media/characters/hind/back.svg",
  24742. extra: 2091 / 1860,
  24743. bottom: 24.6 / 2309
  24744. }
  24745. },
  24746. tail: {
  24747. height: math.unit(2.8, "feet"),
  24748. name: "Tail",
  24749. image: {
  24750. source: "./media/characters/hind/tail.svg"
  24751. }
  24752. },
  24753. head: {
  24754. height: math.unit(2.55, "feet"),
  24755. name: "Head",
  24756. image: {
  24757. source: "./media/characters/hind/head.svg"
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "XS",
  24764. height: math.unit(0.7, "feet")
  24765. },
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(7, "feet"),
  24769. default: true
  24770. },
  24771. {
  24772. name: "XL",
  24773. height: math.unit(70, "feet")
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24779. {
  24780. front: {
  24781. height: math.unit(6, "feet"),
  24782. weight: math.unit(150, "lb"),
  24783. name: "Front",
  24784. image: {
  24785. source: "./media/characters/dylan-skaven/front.svg",
  24786. extra: 2318 / 2063,
  24787. bottom: 93.4 / 2410
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Nano",
  24794. height: math.unit(1, "mm")
  24795. },
  24796. {
  24797. name: "Micro",
  24798. height: math.unit(1, "cm")
  24799. },
  24800. {
  24801. name: "Normal",
  24802. height: math.unit(2.1, "meters"),
  24803. default: true
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(7 + 5 / 12, "feet"),
  24812. weight: math.unit(357, "lb"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/solex-draconov/front.svg",
  24816. extra: 1993 / 1865,
  24817. bottom: 117 / 2111
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Natural Height",
  24824. height: math.unit(7 + 5 / 12, "feet"),
  24825. default: true
  24826. },
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(350, "feet")
  24830. },
  24831. {
  24832. name: "Macro+",
  24833. height: math.unit(1000, "feet")
  24834. },
  24835. {
  24836. name: "Megamacro",
  24837. height: math.unit(20, "km")
  24838. },
  24839. {
  24840. name: "Megamacro+",
  24841. height: math.unit(1000, "km")
  24842. },
  24843. {
  24844. name: "Gigamacro",
  24845. height: math.unit(2.5, "Gm")
  24846. },
  24847. {
  24848. name: "Teramacro",
  24849. height: math.unit(15, "Tm")
  24850. },
  24851. {
  24852. name: "Galactic",
  24853. height: math.unit(30, "Zm")
  24854. },
  24855. {
  24856. name: "Universal",
  24857. height: math.unit(21000, "Ym")
  24858. },
  24859. {
  24860. name: "Omniversal",
  24861. height: math.unit(9.861e50, "Ym")
  24862. },
  24863. {
  24864. name: "Existential",
  24865. height: math.unit(1e300, "meters")
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24871. {
  24872. side: {
  24873. height: math.unit(25, "feet"),
  24874. weight: math.unit(90000, "lb"),
  24875. name: "Side",
  24876. image: {
  24877. source: "./media/characters/mandarax/side.svg",
  24878. extra: 614 / 332,
  24879. bottom: 55 / 630
  24880. }
  24881. },
  24882. head: {
  24883. height: math.unit(11.4, "feet"),
  24884. name: "Head",
  24885. image: {
  24886. source: "./media/characters/mandarax/head.svg"
  24887. }
  24888. },
  24889. belly: {
  24890. height: math.unit(33, "feet"),
  24891. name: "Belly",
  24892. capacity: math.unit(500, "people"),
  24893. image: {
  24894. source: "./media/characters/mandarax/belly.svg"
  24895. }
  24896. },
  24897. dick: {
  24898. height: math.unit(8.46, "feet"),
  24899. name: "Dick",
  24900. image: {
  24901. source: "./media/characters/mandarax/dick.svg"
  24902. }
  24903. },
  24904. top: {
  24905. height: math.unit(28, "meters"),
  24906. name: "Top",
  24907. image: {
  24908. source: "./media/characters/mandarax/top.svg"
  24909. }
  24910. },
  24911. },
  24912. [
  24913. {
  24914. name: "Normal",
  24915. height: math.unit(25, "feet"),
  24916. default: true
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(5, "feet"),
  24925. weight: math.unit(90, "lb"),
  24926. name: "Front",
  24927. image: {
  24928. source: "./media/characters/pixil/front.svg",
  24929. extra: 2000 / 1618,
  24930. bottom: 12.3 / 2011
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(5, "feet"),
  24938. default: true
  24939. },
  24940. {
  24941. name: "Megamacro",
  24942. height: math.unit(10, "miles"),
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(7 + 2 / 12, "feet"),
  24951. weight: math.unit(200, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/angel/front.svg",
  24955. extra: 1830 / 1737,
  24956. bottom: 22.6 / 1854,
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Normal",
  24963. height: math.unit(7 + 2 / 12, "feet"),
  24964. default: true
  24965. },
  24966. {
  24967. name: "Macro",
  24968. height: math.unit(1000, "feet")
  24969. },
  24970. {
  24971. name: "Megamacro",
  24972. height: math.unit(2, "miles")
  24973. },
  24974. {
  24975. name: "Gigamacro",
  24976. height: math.unit(20, "earths")
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(5, "feet"),
  24985. weight: math.unit(180, "lb"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/mekana/front.svg",
  24989. extra: 1671 / 1605,
  24990. bottom: 3.5 / 1691
  24991. }
  24992. },
  24993. side: {
  24994. height: math.unit(5, "feet"),
  24995. weight: math.unit(180, "lb"),
  24996. name: "Side",
  24997. image: {
  24998. source: "./media/characters/mekana/side.svg",
  24999. extra: 1671 / 1605,
  25000. bottom: 3.5 / 1691
  25001. }
  25002. },
  25003. back: {
  25004. height: math.unit(5, "feet"),
  25005. weight: math.unit(180, "lb"),
  25006. name: "Back",
  25007. image: {
  25008. source: "./media/characters/mekana/back.svg",
  25009. extra: 1671 / 1605,
  25010. bottom: 3.5 / 1691
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(5, "feet"),
  25018. default: true
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25024. {
  25025. front: {
  25026. height: math.unit(4 + 6 / 12, "feet"),
  25027. weight: math.unit(80, "lb"),
  25028. name: "Front",
  25029. image: {
  25030. source: "./media/characters/pixie/front.svg",
  25031. extra: 1924 / 1825,
  25032. bottom: 22.4 / 1946
  25033. }
  25034. },
  25035. },
  25036. [
  25037. {
  25038. name: "Normal",
  25039. height: math.unit(4 + 6 / 12, "feet"),
  25040. default: true
  25041. },
  25042. {
  25043. name: "Macro",
  25044. height: math.unit(40, "feet")
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25050. {
  25051. front: {
  25052. height: math.unit(2.1, "meters"),
  25053. weight: math.unit(200, "lb"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/the-lascivious/front.svg",
  25057. extra: 1 / 0.893,
  25058. bottom: 3.5 / 573.7
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Human Scale",
  25065. height: math.unit(2.1, "meters")
  25066. },
  25067. {
  25068. name: "Wolxi Scale",
  25069. height: math.unit(46.2, "m"),
  25070. default: true
  25071. },
  25072. {
  25073. name: "Boinker of Buildings",
  25074. height: math.unit(10, "km")
  25075. },
  25076. {
  25077. name: "Shagger of Skyscrapers",
  25078. height: math.unit(40, "km")
  25079. },
  25080. {
  25081. name: "Banger of Boroughs",
  25082. height: math.unit(4000, "km")
  25083. },
  25084. {
  25085. name: "Screwer of States",
  25086. height: math.unit(100000, "km")
  25087. },
  25088. {
  25089. name: "Pounder of Planets",
  25090. height: math.unit(2000000, "km")
  25091. },
  25092. ]
  25093. ))
  25094. characterMakers.push(() => makeCharacter(
  25095. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25096. {
  25097. front: {
  25098. height: math.unit(6, "feet"),
  25099. weight: math.unit(150, "lb"),
  25100. name: "Front",
  25101. image: {
  25102. source: "./media/characters/aj/front.svg",
  25103. extra: 2039 / 1562,
  25104. bottom: 40 / 2079
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Normal",
  25111. height: math.unit(11 + 6 / 12, "feet"),
  25112. default: true
  25113. },
  25114. {
  25115. name: "Megamacro",
  25116. height: math.unit(60, "megameters")
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25122. {
  25123. side: {
  25124. height: math.unit(31 + 8 / 12, "feet"),
  25125. weight: math.unit(75000, "kg"),
  25126. name: "Side",
  25127. image: {
  25128. source: "./media/characters/koros/side.svg",
  25129. extra: 1442 / 1297,
  25130. bottom: 122.7 / 1562
  25131. }
  25132. },
  25133. dicksKingsCrown: {
  25134. height: math.unit(6, "feet"),
  25135. name: "Dicks (King's Crown)",
  25136. image: {
  25137. source: "./media/characters/koros/dicks-kings-crown.svg"
  25138. }
  25139. },
  25140. dicksTailSet: {
  25141. height: math.unit(3, "feet"),
  25142. name: "Dicks (Tail Set)",
  25143. image: {
  25144. source: "./media/characters/koros/dicks-tail-set.svg"
  25145. }
  25146. },
  25147. dickCumming: {
  25148. height: math.unit(7.98, "feet"),
  25149. name: "Dick (Cumming)",
  25150. image: {
  25151. source: "./media/characters/koros/dick-cumming.svg"
  25152. }
  25153. },
  25154. dicksBack: {
  25155. height: math.unit(5.9, "feet"),
  25156. name: "Dicks (Back)",
  25157. image: {
  25158. source: "./media/characters/koros/dicks-back.svg"
  25159. }
  25160. },
  25161. dicksFront: {
  25162. height: math.unit(3.72, "feet"),
  25163. name: "Dicks (Front)",
  25164. image: {
  25165. source: "./media/characters/koros/dicks-front.svg"
  25166. }
  25167. },
  25168. dicksPeeking: {
  25169. height: math.unit(3.0, "feet"),
  25170. name: "Dicks (Peeking)",
  25171. image: {
  25172. source: "./media/characters/koros/dicks-peeking.svg"
  25173. }
  25174. },
  25175. eye: {
  25176. height: math.unit(1.7, "feet"),
  25177. name: "Eye",
  25178. image: {
  25179. source: "./media/characters/koros/eye.svg"
  25180. }
  25181. },
  25182. headFront: {
  25183. height: math.unit(11.69, "feet"),
  25184. name: "Head (Front)",
  25185. image: {
  25186. source: "./media/characters/koros/head-front.svg"
  25187. }
  25188. },
  25189. headSide: {
  25190. height: math.unit(14, "feet"),
  25191. name: "Head (Side)",
  25192. image: {
  25193. source: "./media/characters/koros/head-side.svg"
  25194. }
  25195. },
  25196. leg: {
  25197. height: math.unit(17, "feet"),
  25198. name: "Leg",
  25199. image: {
  25200. source: "./media/characters/koros/leg.svg"
  25201. }
  25202. },
  25203. mawSide: {
  25204. height: math.unit(12.8, "feet"),
  25205. name: "Maw (Side)",
  25206. image: {
  25207. source: "./media/characters/koros/maw-side.svg"
  25208. }
  25209. },
  25210. mawSpitting: {
  25211. height: math.unit(17, "feet"),
  25212. name: "Maw (Spitting)",
  25213. image: {
  25214. source: "./media/characters/koros/maw-spitting.svg"
  25215. }
  25216. },
  25217. slit: {
  25218. height: math.unit(2.8, "feet"),
  25219. name: "Slit",
  25220. image: {
  25221. source: "./media/characters/koros/slit.svg"
  25222. }
  25223. },
  25224. stomach: {
  25225. height: math.unit(6.8, "feet"),
  25226. capacity: math.unit(20, "people"),
  25227. name: "Stomach",
  25228. image: {
  25229. source: "./media/characters/koros/stomach.svg"
  25230. }
  25231. },
  25232. wingspanBottom: {
  25233. height: math.unit(114, "feet"),
  25234. name: "Wingspan (Bottom)",
  25235. image: {
  25236. source: "./media/characters/koros/wingspan-bottom.svg"
  25237. }
  25238. },
  25239. wingspanTop: {
  25240. height: math.unit(104, "feet"),
  25241. name: "Wingspan (Top)",
  25242. image: {
  25243. source: "./media/characters/koros/wingspan-top.svg"
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(31 + 8 / 12, "feet"),
  25251. default: true
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25257. {
  25258. front: {
  25259. height: math.unit(18 + 5 / 12, "feet"),
  25260. weight: math.unit(3750, "kg"),
  25261. name: "Front",
  25262. image: {
  25263. source: "./media/characters/vexx/front.svg",
  25264. extra: 426 / 396,
  25265. bottom: 31.5 / 458
  25266. }
  25267. },
  25268. maw: {
  25269. height: math.unit(6, "feet"),
  25270. name: "Maw",
  25271. image: {
  25272. source: "./media/characters/vexx/maw.svg"
  25273. }
  25274. },
  25275. },
  25276. [
  25277. {
  25278. name: "Normal",
  25279. height: math.unit(18 + 5 / 12, "feet"),
  25280. default: true
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25286. {
  25287. front: {
  25288. height: math.unit(17 + 6 / 12, "feet"),
  25289. weight: math.unit(150, "lb"),
  25290. name: "Front",
  25291. image: {
  25292. source: "./media/characters/baadra/front.svg",
  25293. extra: 3137 / 2890,
  25294. bottom: 168.4 / 3305
  25295. }
  25296. },
  25297. back: {
  25298. height: math.unit(17 + 6 / 12, "feet"),
  25299. weight: math.unit(150, "lb"),
  25300. name: "Back",
  25301. image: {
  25302. source: "./media/characters/baadra/back.svg",
  25303. extra: 3142 / 2890,
  25304. bottom: 220 / 3371
  25305. }
  25306. },
  25307. head: {
  25308. height: math.unit(5.45, "feet"),
  25309. name: "Head",
  25310. image: {
  25311. source: "./media/characters/baadra/head.svg"
  25312. }
  25313. },
  25314. headAngry: {
  25315. height: math.unit(4.95, "feet"),
  25316. name: "Head (Angry)",
  25317. image: {
  25318. source: "./media/characters/baadra/head-angry.svg"
  25319. }
  25320. },
  25321. headOpen: {
  25322. height: math.unit(6, "feet"),
  25323. name: "Head (Open)",
  25324. image: {
  25325. source: "./media/characters/baadra/head-open.svg"
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(17 + 6 / 12, "feet"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(7 + 3 / 12, "feet"),
  25342. weight: math.unit(180, "lb"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/juri/front.svg",
  25346. extra: 1401 / 1237,
  25347. bottom: 18.5 / 1418
  25348. }
  25349. },
  25350. side: {
  25351. height: math.unit(7 + 3 / 12, "feet"),
  25352. weight: math.unit(180, "lb"),
  25353. name: "Side",
  25354. image: {
  25355. source: "./media/characters/juri/side.svg",
  25356. extra: 1424 / 1242,
  25357. bottom: 18.5 / 1447
  25358. }
  25359. },
  25360. sitting: {
  25361. height: math.unit(6, "feet"),
  25362. weight: math.unit(180, "lb"),
  25363. name: "Sitting",
  25364. image: {
  25365. source: "./media/characters/juri/sitting.svg",
  25366. extra: 1270 / 1143,
  25367. bottom: 100 / 1343
  25368. }
  25369. },
  25370. back: {
  25371. height: math.unit(7 + 3 / 12, "feet"),
  25372. weight: math.unit(180, "lb"),
  25373. name: "Back",
  25374. image: {
  25375. source: "./media/characters/juri/back.svg",
  25376. extra: 1377 / 1240,
  25377. bottom: 23.7 / 1405
  25378. }
  25379. },
  25380. maw: {
  25381. height: math.unit(2.8, "feet"),
  25382. name: "Maw",
  25383. image: {
  25384. source: "./media/characters/juri/maw.svg"
  25385. }
  25386. },
  25387. stomach: {
  25388. height: math.unit(0.89, "feet"),
  25389. capacity: math.unit(4, "liters"),
  25390. name: "Stomach",
  25391. image: {
  25392. source: "./media/characters/juri/stomach.svg"
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Normal",
  25399. height: math.unit(7 + 3 / 12, "feet"),
  25400. default: true
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25406. {
  25407. fox: {
  25408. height: math.unit(5 + 6 / 12, "feet"),
  25409. weight: math.unit(140, "lb"),
  25410. name: "Fox",
  25411. image: {
  25412. source: "./media/characters/maxene-sita/fox.svg",
  25413. extra: 146 / 138,
  25414. bottom: 2.1 / 148.19
  25415. }
  25416. },
  25417. foxLaying: {
  25418. height: math.unit(1.70, "feet"),
  25419. weight: math.unit(140, "lb"),
  25420. name: "Fox (Laying)",
  25421. image: {
  25422. source: "./media/characters/maxene-sita/fox-laying.svg",
  25423. extra: 910 / 572,
  25424. bottom: 71 / 981
  25425. }
  25426. },
  25427. kitsune: {
  25428. height: math.unit(10, "feet"),
  25429. weight: math.unit(800, "lb"),
  25430. name: "Kitsune",
  25431. image: {
  25432. source: "./media/characters/maxene-sita/kitsune.svg",
  25433. extra: 185 / 176,
  25434. bottom: 4.7 / 189.9
  25435. }
  25436. },
  25437. hellhound: {
  25438. height: math.unit(10, "feet"),
  25439. weight: math.unit(700, "lb"),
  25440. name: "Hellhound",
  25441. image: {
  25442. source: "./media/characters/maxene-sita/hellhound.svg",
  25443. extra: 1600 / 1545,
  25444. bottom: 81 / 1681
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(5 + 6 / 12, "feet"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25458. {
  25459. front: {
  25460. height: math.unit(3 + 4 / 12, "feet"),
  25461. weight: math.unit(70, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/maia/front.svg",
  25465. extra: 227 / 219.5,
  25466. bottom: 40 / 267
  25467. }
  25468. },
  25469. back: {
  25470. height: math.unit(3 + 4 / 12, "feet"),
  25471. weight: math.unit(70, "lb"),
  25472. name: "Back",
  25473. image: {
  25474. source: "./media/characters/maia/back.svg",
  25475. extra: 237 / 225
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Normal",
  25482. height: math.unit(3 + 4 / 12, "feet"),
  25483. default: true
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25489. {
  25490. front: {
  25491. height: math.unit(5 + 10 / 12, "feet"),
  25492. weight: math.unit(197, "lb"),
  25493. name: "Front",
  25494. image: {
  25495. source: "./media/characters/jabaro/front.svg",
  25496. extra: 225 / 216,
  25497. bottom: 5.06 / 230
  25498. }
  25499. },
  25500. back: {
  25501. height: math.unit(5 + 10 / 12, "feet"),
  25502. weight: math.unit(197, "lb"),
  25503. name: "Back",
  25504. image: {
  25505. source: "./media/characters/jabaro/back.svg",
  25506. extra: 225 / 219,
  25507. bottom: 1.9 / 227
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(5 + 10 / 12, "feet"),
  25515. default: true
  25516. },
  25517. ]
  25518. ))
  25519. characterMakers.push(() => makeCharacter(
  25520. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25521. {
  25522. front: {
  25523. height: math.unit(5 + 8 / 12, "feet"),
  25524. weight: math.unit(139, "lb"),
  25525. name: "Front",
  25526. image: {
  25527. source: "./media/characters/risa/front.svg",
  25528. extra: 270 / 260,
  25529. bottom: 11.2 / 282
  25530. }
  25531. },
  25532. back: {
  25533. height: math.unit(5 + 8 / 12, "feet"),
  25534. weight: math.unit(139, "lb"),
  25535. name: "Back",
  25536. image: {
  25537. source: "./media/characters/risa/back.svg",
  25538. extra: 264 / 255,
  25539. bottom: 4 / 268
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(5 + 8 / 12, "feet"),
  25547. default: true
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25553. {
  25554. front: {
  25555. height: math.unit(2 + 11 / 12, "feet"),
  25556. weight: math.unit(30, "lb"),
  25557. name: "Front",
  25558. image: {
  25559. source: "./media/characters/weatley/front.svg",
  25560. bottom: 10.7 / 414,
  25561. extra: 403.5 / 362
  25562. }
  25563. },
  25564. back: {
  25565. height: math.unit(2 + 11 / 12, "feet"),
  25566. weight: math.unit(30, "lb"),
  25567. name: "Back",
  25568. image: {
  25569. source: "./media/characters/weatley/back.svg",
  25570. bottom: 10.7 / 414,
  25571. extra: 403.5 / 362
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(2 + 11 / 12, "feet"),
  25579. default: true
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25585. {
  25586. front: {
  25587. height: math.unit(5 + 2 / 12, "feet"),
  25588. weight: math.unit(50, "kg"),
  25589. name: "Front",
  25590. image: {
  25591. source: "./media/characters/mercury-crescent/front.svg",
  25592. extra: 1088 / 1033,
  25593. bottom: 18.9 / 1109
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Normal",
  25600. height: math.unit(5 + 2 / 12, "feet"),
  25601. default: true
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(2, "feet"),
  25610. weight: math.unit(15, "kg"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/diamond-jones/front.svg",
  25614. extra: 727/723,
  25615. bottom: 46/773
  25616. }
  25617. },
  25618. },
  25619. [
  25620. {
  25621. name: "Normal",
  25622. height: math.unit(2, "feet"),
  25623. default: true
  25624. },
  25625. ]
  25626. ))
  25627. characterMakers.push(() => makeCharacter(
  25628. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25629. {
  25630. front: {
  25631. height: math.unit(3, "feet"),
  25632. weight: math.unit(30, "kg"),
  25633. name: "Front",
  25634. image: {
  25635. source: "./media/characters/sweet-bit/front.svg",
  25636. extra: 675 / 567,
  25637. bottom: 27.7 / 703
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Normal",
  25644. height: math.unit(3, "feet"),
  25645. default: true
  25646. },
  25647. ]
  25648. ))
  25649. characterMakers.push(() => makeCharacter(
  25650. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25651. {
  25652. side: {
  25653. height: math.unit(9.178, "feet"),
  25654. weight: math.unit(500, "lb"),
  25655. name: "Side",
  25656. image: {
  25657. source: "./media/characters/umbrazen/side.svg",
  25658. extra: 1730 / 1473,
  25659. bottom: 34.6 / 1765
  25660. }
  25661. },
  25662. },
  25663. [
  25664. {
  25665. name: "Normal",
  25666. height: math.unit(9.178, "feet"),
  25667. default: true
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25673. {
  25674. front: {
  25675. height: math.unit(10, "feet"),
  25676. weight: math.unit(750, "lb"),
  25677. name: "Front",
  25678. image: {
  25679. source: "./media/characters/arlist/front.svg",
  25680. extra: 961 / 778,
  25681. bottom: 6.2 / 986
  25682. }
  25683. },
  25684. },
  25685. [
  25686. {
  25687. name: "Normal",
  25688. height: math.unit(10, "feet"),
  25689. default: true
  25690. },
  25691. ]
  25692. ))
  25693. characterMakers.push(() => makeCharacter(
  25694. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25695. {
  25696. front: {
  25697. height: math.unit(5 + 1 / 12, "feet"),
  25698. weight: math.unit(110, "lb"),
  25699. name: "Front",
  25700. image: {
  25701. source: "./media/characters/aradel/front.svg",
  25702. extra: 324 / 303,
  25703. bottom: 3.6 / 329.4
  25704. }
  25705. },
  25706. },
  25707. [
  25708. {
  25709. name: "Normal",
  25710. height: math.unit(5 + 1 / 12, "feet"),
  25711. default: true
  25712. },
  25713. ]
  25714. ))
  25715. characterMakers.push(() => makeCharacter(
  25716. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25717. {
  25718. front: {
  25719. height: math.unit(3 + 8 / 12, "feet"),
  25720. weight: math.unit(50, "lb"),
  25721. name: "Front",
  25722. image: {
  25723. source: "./media/characters/serryn/front.svg",
  25724. extra: 1792 / 1656,
  25725. bottom: 43.5 / 1840
  25726. }
  25727. },
  25728. },
  25729. [
  25730. {
  25731. name: "Normal",
  25732. height: math.unit(3 + 8 / 12, "feet"),
  25733. default: true
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25739. {
  25740. front: {
  25741. height: math.unit(7 + 10 / 12, "feet"),
  25742. weight: math.unit(255, "lb"),
  25743. name: "Front",
  25744. image: {
  25745. source: "./media/characters/xavier-thyme/front.svg",
  25746. extra: 3733 / 3642,
  25747. bottom: 131 / 3869
  25748. }
  25749. },
  25750. frontRaven: {
  25751. height: math.unit(7 + 10 / 12, "feet"),
  25752. weight: math.unit(255, "lb"),
  25753. name: "Front (Raven)",
  25754. image: {
  25755. source: "./media/characters/xavier-thyme/front-raven.svg",
  25756. extra: 4385 / 3642,
  25757. bottom: 131 / 4517
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Normal",
  25764. height: math.unit(7 + 10 / 12, "feet"),
  25765. default: true
  25766. },
  25767. ]
  25768. ))
  25769. characterMakers.push(() => makeCharacter(
  25770. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25771. {
  25772. front: {
  25773. height: math.unit(1.6, "m"),
  25774. weight: math.unit(50, "kg"),
  25775. name: "Front",
  25776. image: {
  25777. source: "./media/characters/kiki/front.svg",
  25778. extra: 4682 / 3610,
  25779. bottom: 115 / 4777
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Normal",
  25786. height: math.unit(1.6, "meters"),
  25787. default: true
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(50, "m"),
  25796. weight: math.unit(500, "tonnes"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/ryoko/front.svg",
  25800. extra: 4632 / 3926,
  25801. bottom: 193 / 4823
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Normal",
  25808. height: math.unit(50, "meters"),
  25809. default: true
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25815. {
  25816. front: {
  25817. height: math.unit(30, "m"),
  25818. weight: math.unit(22, "tonnes"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/elio/front.svg",
  25822. extra: 4582 / 3720,
  25823. bottom: 236 / 4828
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(30, "meters"),
  25831. default: true
  25832. },
  25833. ]
  25834. ))
  25835. characterMakers.push(() => makeCharacter(
  25836. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25837. {
  25838. front: {
  25839. height: math.unit(6 + 3 / 12, "feet"),
  25840. weight: math.unit(120, "lb"),
  25841. name: "Front",
  25842. image: {
  25843. source: "./media/characters/azura/front.svg",
  25844. extra: 1149 / 1135,
  25845. bottom: 45 / 1194
  25846. }
  25847. },
  25848. frontClothed: {
  25849. height: math.unit(6 + 3 / 12, "feet"),
  25850. weight: math.unit(120, "lb"),
  25851. name: "Front (Clothed)",
  25852. image: {
  25853. source: "./media/characters/azura/front-clothed.svg",
  25854. extra: 1149 / 1135,
  25855. bottom: 45 / 1194
  25856. }
  25857. },
  25858. },
  25859. [
  25860. {
  25861. name: "Normal",
  25862. height: math.unit(6 + 3 / 12, "feet"),
  25863. default: true
  25864. },
  25865. {
  25866. name: "Macro",
  25867. height: math.unit(20 + 6 / 12, "feet")
  25868. },
  25869. {
  25870. name: "Megamacro",
  25871. height: math.unit(12, "miles")
  25872. },
  25873. {
  25874. name: "Gigamacro",
  25875. height: math.unit(10000, "miles")
  25876. },
  25877. {
  25878. name: "Teramacro",
  25879. height: math.unit(900000, "miles")
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(12, "feet"),
  25888. weight: math.unit(1, "ton"),
  25889. capacity: math.unit(660000, "gallons"),
  25890. name: "Front",
  25891. image: {
  25892. source: "./media/characters/zeus/front.svg",
  25893. extra: 5005 / 4717,
  25894. bottom: 363 / 5388
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(12, "feet")
  25902. },
  25903. {
  25904. name: "Preferred Size",
  25905. height: math.unit(0.5, "miles"),
  25906. default: true
  25907. },
  25908. {
  25909. name: "Giga Horse",
  25910. height: math.unit(300, "miles")
  25911. },
  25912. {
  25913. name: "Riding Planets",
  25914. height: math.unit(30, "megameters")
  25915. },
  25916. {
  25917. name: "Cosmic Giant",
  25918. height: math.unit(3, "zettameters")
  25919. },
  25920. {
  25921. name: "Breeding God",
  25922. height: math.unit(9.92e22, "yottameters")
  25923. },
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25928. {
  25929. side: {
  25930. height: math.unit(9, "feet"),
  25931. weight: math.unit(1500, "kg"),
  25932. name: "Side",
  25933. image: {
  25934. source: "./media/characters/fang/side.svg",
  25935. extra: 924 / 866,
  25936. bottom: 47.5 / 972.3
  25937. }
  25938. },
  25939. },
  25940. [
  25941. {
  25942. name: "Normal",
  25943. height: math.unit(9, "feet"),
  25944. default: true
  25945. },
  25946. {
  25947. name: "Macro",
  25948. height: math.unit(75 + 6 / 12, "feet")
  25949. },
  25950. {
  25951. name: "Teramacro",
  25952. height: math.unit(50000, "miles")
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25958. {
  25959. front: {
  25960. height: math.unit(10, "feet"),
  25961. weight: math.unit(2, "tons"),
  25962. name: "Front",
  25963. image: {
  25964. source: "./media/characters/rekhit/front.svg",
  25965. extra: 2796 / 2590,
  25966. bottom: 225 / 3022
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(10, "feet"),
  25974. default: true
  25975. },
  25976. {
  25977. name: "Macro",
  25978. height: math.unit(500, "feet")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(7 + 6.451 / 12, "feet"),
  25987. weight: math.unit(310, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/dahlia-verrick/front.svg",
  25991. extra: 1488 / 1365,
  25992. bottom: 6.2 / 1495
  25993. }
  25994. },
  25995. back: {
  25996. height: math.unit(7 + 6.451 / 12, "feet"),
  25997. weight: math.unit(310, "lb"),
  25998. name: "Back",
  25999. image: {
  26000. source: "./media/characters/dahlia-verrick/back.svg",
  26001. extra: 1472 / 1351,
  26002. bottom: 5.28 / 1477
  26003. }
  26004. },
  26005. frontBusiness: {
  26006. height: math.unit(7 + 6.451 / 12, "feet"),
  26007. weight: math.unit(200, "lb"),
  26008. name: "Front (Business)",
  26009. image: {
  26010. source: "./media/characters/dahlia-verrick/front-business.svg",
  26011. extra: 1478 / 1381,
  26012. bottom: 5.5 / 1484
  26013. }
  26014. },
  26015. frontCasual: {
  26016. height: math.unit(7 + 6.451 / 12, "feet"),
  26017. weight: math.unit(200, "lb"),
  26018. name: "Front (Casual)",
  26019. image: {
  26020. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26021. extra: 1478 / 1381,
  26022. bottom: 5.5 / 1484
  26023. }
  26024. },
  26025. },
  26026. [
  26027. {
  26028. name: "Travel-Sized",
  26029. height: math.unit(7.45, "inches")
  26030. },
  26031. {
  26032. name: "Normal",
  26033. height: math.unit(7 + 6.451 / 12, "feet"),
  26034. default: true
  26035. },
  26036. {
  26037. name: "Hitting the Town",
  26038. height: math.unit(37 + 8 / 12, "feet")
  26039. },
  26040. {
  26041. name: "Stomp in the Suburbs",
  26042. height: math.unit(964 + 9.728 / 12, "feet")
  26043. },
  26044. {
  26045. name: "Sit on the City",
  26046. height: math.unit(61747 + 10.592 / 12, "feet")
  26047. },
  26048. {
  26049. name: "Glomp the Globe",
  26050. height: math.unit(252919327 + 4.832 / 12, "feet")
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26056. {
  26057. front: {
  26058. height: math.unit(6 + 4 / 12, "feet"),
  26059. weight: math.unit(320, "lb"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/balina-mahigan/front.svg",
  26063. extra: 447 / 428,
  26064. bottom: 18 / 466
  26065. }
  26066. },
  26067. back: {
  26068. height: math.unit(6 + 4 / 12, "feet"),
  26069. weight: math.unit(320, "lb"),
  26070. name: "Back",
  26071. image: {
  26072. source: "./media/characters/balina-mahigan/back.svg",
  26073. extra: 445 / 428,
  26074. bottom: 4.07 / 448
  26075. }
  26076. },
  26077. arm: {
  26078. height: math.unit(1.88, "feet"),
  26079. name: "Arm",
  26080. image: {
  26081. source: "./media/characters/balina-mahigan/arm.svg"
  26082. }
  26083. },
  26084. backPort: {
  26085. height: math.unit(0.685, "feet"),
  26086. name: "Back Port",
  26087. image: {
  26088. source: "./media/characters/balina-mahigan/back-port.svg"
  26089. }
  26090. },
  26091. hoofpaw: {
  26092. height: math.unit(1.41, "feet"),
  26093. name: "Hoofpaw",
  26094. image: {
  26095. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26096. }
  26097. },
  26098. leftHandBack: {
  26099. height: math.unit(0.938, "feet"),
  26100. name: "Left Hand (Back)",
  26101. image: {
  26102. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26103. }
  26104. },
  26105. leftHandFront: {
  26106. height: math.unit(0.938, "feet"),
  26107. name: "Left Hand (Front)",
  26108. image: {
  26109. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26110. }
  26111. },
  26112. rightHandBack: {
  26113. height: math.unit(0.95, "feet"),
  26114. name: "Right Hand (Back)",
  26115. image: {
  26116. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26117. }
  26118. },
  26119. rightHandFront: {
  26120. height: math.unit(0.95, "feet"),
  26121. name: "Right Hand (Front)",
  26122. image: {
  26123. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26124. }
  26125. },
  26126. },
  26127. [
  26128. {
  26129. name: "Normal",
  26130. height: math.unit(6 + 4 / 12, "feet"),
  26131. default: true
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(6, "feet"),
  26140. weight: math.unit(320, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/balina-mejeri/front.svg",
  26144. extra: 517 / 488,
  26145. bottom: 44.2 / 561
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Normal",
  26152. height: math.unit(6 + 4 / 12, "feet")
  26153. },
  26154. {
  26155. name: "Business",
  26156. height: math.unit(155, "feet"),
  26157. default: true
  26158. },
  26159. ]
  26160. ))
  26161. characterMakers.push(() => makeCharacter(
  26162. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26163. {
  26164. kneeling: {
  26165. height: math.unit(6 + 4 / 12, "feet"),
  26166. weight: math.unit(300 * 20, "lb"),
  26167. name: "Kneeling",
  26168. image: {
  26169. source: "./media/characters/balbarian/kneeling.svg",
  26170. extra: 922 / 862,
  26171. bottom: 42.4 / 965
  26172. }
  26173. },
  26174. },
  26175. [
  26176. {
  26177. name: "Normal",
  26178. height: math.unit(6 + 4 / 12, "feet")
  26179. },
  26180. {
  26181. name: "Treasured",
  26182. height: math.unit(18 + 9 / 12, "feet"),
  26183. default: true
  26184. },
  26185. {
  26186. name: "Macro",
  26187. height: math.unit(900, "feet")
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(6 + 4 / 12, "feet"),
  26196. weight: math.unit(325, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/balina-amarini/front.svg",
  26200. extra: 415 / 403,
  26201. bottom: 19 / 433.4
  26202. }
  26203. },
  26204. back: {
  26205. height: math.unit(6 + 4 / 12, "feet"),
  26206. weight: math.unit(325, "lb"),
  26207. name: "Back",
  26208. image: {
  26209. source: "./media/characters/balina-amarini/back.svg",
  26210. extra: 415 / 403,
  26211. bottom: 13.5 / 432
  26212. }
  26213. },
  26214. overdrive: {
  26215. height: math.unit(6 + 4 / 12, "feet"),
  26216. weight: math.unit(400, "lb"),
  26217. name: "Overdrive",
  26218. image: {
  26219. source: "./media/characters/balina-amarini/overdrive.svg",
  26220. extra: 269 / 259,
  26221. bottom: 12 / 282
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Boom",
  26228. height: math.unit(9 + 10 / 12, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(280, "feet")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26239. {
  26240. goddess: {
  26241. height: math.unit(600, "feet"),
  26242. weight: math.unit(2000000, "tons"),
  26243. name: "Goddess",
  26244. image: {
  26245. source: "./media/characters/lady-kubwa/goddess.svg",
  26246. extra: 1240.5 / 1223,
  26247. bottom: 22 / 1263
  26248. }
  26249. },
  26250. goddesser: {
  26251. height: math.unit(900, "feet"),
  26252. weight: math.unit(20000000, "lb"),
  26253. name: "Goddess-er",
  26254. image: {
  26255. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26256. extra: 899 / 888,
  26257. bottom: 12.6 / 912
  26258. }
  26259. },
  26260. },
  26261. [
  26262. {
  26263. name: "Macro",
  26264. height: math.unit(600, "feet"),
  26265. default: true
  26266. },
  26267. {
  26268. name: "Megamacro",
  26269. height: math.unit(250, "miles")
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26275. {
  26276. front: {
  26277. height: math.unit(7 + 7 / 12, "feet"),
  26278. weight: math.unit(250, "lb"),
  26279. name: "Front",
  26280. image: {
  26281. source: "./media/characters/tala-grovehorn/front.svg",
  26282. extra: 2636 / 2525,
  26283. bottom: 147 / 2781
  26284. }
  26285. },
  26286. back: {
  26287. height: math.unit(7 + 7 / 12, "feet"),
  26288. weight: math.unit(250, "lb"),
  26289. name: "Back",
  26290. image: {
  26291. source: "./media/characters/tala-grovehorn/back.svg",
  26292. extra: 2635 / 2539,
  26293. bottom: 100 / 2732.8
  26294. }
  26295. },
  26296. mouth: {
  26297. height: math.unit(1.15, "feet"),
  26298. name: "Mouth",
  26299. image: {
  26300. source: "./media/characters/tala-grovehorn/mouth.svg"
  26301. }
  26302. },
  26303. dick: {
  26304. height: math.unit(2.36, "feet"),
  26305. name: "Dick",
  26306. image: {
  26307. source: "./media/characters/tala-grovehorn/dick.svg"
  26308. }
  26309. },
  26310. slit: {
  26311. height: math.unit(0.61, "feet"),
  26312. name: "Slit",
  26313. image: {
  26314. source: "./media/characters/tala-grovehorn/slit.svg"
  26315. }
  26316. },
  26317. },
  26318. [
  26319. ]
  26320. ))
  26321. characterMakers.push(() => makeCharacter(
  26322. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26323. {
  26324. front: {
  26325. height: math.unit(7 + 7 / 12, "feet"),
  26326. weight: math.unit(225, "lb"),
  26327. name: "Front",
  26328. image: {
  26329. source: "./media/characters/epona/front.svg",
  26330. extra: 2445 / 2290,
  26331. bottom: 251 / 2696
  26332. }
  26333. },
  26334. back: {
  26335. height: math.unit(7 + 7 / 12, "feet"),
  26336. weight: math.unit(225, "lb"),
  26337. name: "Back",
  26338. image: {
  26339. source: "./media/characters/epona/back.svg",
  26340. extra: 2546 / 2408,
  26341. bottom: 44 / 2589
  26342. }
  26343. },
  26344. genitals: {
  26345. height: math.unit(1.5, "feet"),
  26346. name: "Genitals",
  26347. image: {
  26348. source: "./media/characters/epona/genitals.svg"
  26349. }
  26350. },
  26351. },
  26352. [
  26353. {
  26354. name: "Normal",
  26355. height: math.unit(7 + 7 / 12, "feet"),
  26356. default: true
  26357. },
  26358. ]
  26359. ))
  26360. characterMakers.push(() => makeCharacter(
  26361. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26362. {
  26363. front: {
  26364. height: math.unit(7, "feet"),
  26365. weight: math.unit(518, "lb"),
  26366. name: "Front",
  26367. image: {
  26368. source: "./media/characters/avia-bloodbourn/front.svg",
  26369. extra: 1466 / 1350,
  26370. bottom: 65 / 1527
  26371. }
  26372. },
  26373. },
  26374. [
  26375. ]
  26376. ))
  26377. characterMakers.push(() => makeCharacter(
  26378. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26379. {
  26380. front: {
  26381. height: math.unit(9.35, "feet"),
  26382. weight: math.unit(600, "lb"),
  26383. name: "Front",
  26384. image: {
  26385. source: "./media/characters/amera/front.svg",
  26386. extra: 891 / 818,
  26387. bottom: 30 / 922.7
  26388. }
  26389. },
  26390. back: {
  26391. height: math.unit(9.35, "feet"),
  26392. weight: math.unit(600, "lb"),
  26393. name: "Back",
  26394. image: {
  26395. source: "./media/characters/amera/back.svg",
  26396. extra: 876 / 824,
  26397. bottom: 6.8 / 884
  26398. }
  26399. },
  26400. dick: {
  26401. height: math.unit(2.14, "feet"),
  26402. name: "Dick",
  26403. image: {
  26404. source: "./media/characters/amera/dick.svg"
  26405. }
  26406. },
  26407. },
  26408. [
  26409. {
  26410. name: "Normal",
  26411. height: math.unit(9.35, "feet"),
  26412. default: true
  26413. },
  26414. ]
  26415. ))
  26416. characterMakers.push(() => makeCharacter(
  26417. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26418. {
  26419. kneeling: {
  26420. height: math.unit(3 + 4 / 12, "feet"),
  26421. weight: math.unit(90, "lb"),
  26422. name: "Kneeling",
  26423. image: {
  26424. source: "./media/characters/rosewen/kneeling.svg",
  26425. extra: 1835 / 1571,
  26426. bottom: 27.7 / 1862
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Normal",
  26433. height: math.unit(3 + 4 / 12, "feet"),
  26434. default: true
  26435. },
  26436. ]
  26437. ))
  26438. characterMakers.push(() => makeCharacter(
  26439. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26440. {
  26441. front: {
  26442. height: math.unit(5 + 10 / 12, "feet"),
  26443. weight: math.unit(200, "lb"),
  26444. name: "Front",
  26445. image: {
  26446. source: "./media/characters/sabah/front.svg",
  26447. extra: 849 / 763,
  26448. bottom: 33.9 / 881
  26449. }
  26450. },
  26451. },
  26452. [
  26453. {
  26454. name: "Normal",
  26455. height: math.unit(5 + 10 / 12, "feet"),
  26456. default: true
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26462. {
  26463. front: {
  26464. height: math.unit(3 + 5 / 12, "feet"),
  26465. weight: math.unit(40, "kg"),
  26466. name: "Front",
  26467. image: {
  26468. source: "./media/characters/purple-flame/front.svg",
  26469. extra: 1577 / 1412,
  26470. bottom: 97 / 1694
  26471. }
  26472. },
  26473. frontDressed: {
  26474. height: math.unit(3 + 5 / 12, "feet"),
  26475. weight: math.unit(40, "kg"),
  26476. name: "Front (Dressed)",
  26477. image: {
  26478. source: "./media/characters/purple-flame/front-dressed.svg",
  26479. extra: 1577 / 1412,
  26480. bottom: 97 / 1694
  26481. }
  26482. },
  26483. headphones: {
  26484. height: math.unit(0.85, "feet"),
  26485. name: "Headphones",
  26486. image: {
  26487. source: "./media/characters/purple-flame/headphones.svg"
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Really Small",
  26494. height: math.unit(5, "cm")
  26495. },
  26496. {
  26497. name: "Micro",
  26498. height: math.unit(1 + 5 / 12, "feet")
  26499. },
  26500. {
  26501. name: "Normal",
  26502. height: math.unit(3 + 5 / 12, "feet"),
  26503. default: true
  26504. },
  26505. {
  26506. name: "Minimacro",
  26507. height: math.unit(125, "feet")
  26508. },
  26509. {
  26510. name: "Macro",
  26511. height: math.unit(0.5, "miles")
  26512. },
  26513. {
  26514. name: "Megamacro",
  26515. height: math.unit(50, "miles")
  26516. },
  26517. {
  26518. name: "Gigantic",
  26519. height: math.unit(750, "miles")
  26520. },
  26521. {
  26522. name: "Planetary",
  26523. height: math.unit(15000, "miles")
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26529. {
  26530. front: {
  26531. height: math.unit(14, "feet"),
  26532. weight: math.unit(959, "lb"),
  26533. name: "Front",
  26534. image: {
  26535. source: "./media/characters/arsenal/front.svg",
  26536. extra: 2357 / 2157,
  26537. bottom: 93 / 2458
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(14, "feet"),
  26545. default: true
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(6, "feet"),
  26554. weight: math.unit(150, "lb"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/adira/front.svg",
  26558. extra: 1078 / 1029,
  26559. bottom: 87 / 1166
  26560. }
  26561. },
  26562. },
  26563. [
  26564. {
  26565. name: "Micro",
  26566. height: math.unit(4, "inches"),
  26567. default: true
  26568. },
  26569. {
  26570. name: "Macro",
  26571. height: math.unit(50, "feet")
  26572. },
  26573. ]
  26574. ))
  26575. characterMakers.push(() => makeCharacter(
  26576. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26577. {
  26578. front: {
  26579. height: math.unit(16, "feet"),
  26580. weight: math.unit(1000, "lb"),
  26581. name: "Front",
  26582. image: {
  26583. source: "./media/characters/grim/front.svg",
  26584. extra: 622 / 614,
  26585. bottom: 18.1 / 642
  26586. }
  26587. },
  26588. back: {
  26589. height: math.unit(16, "feet"),
  26590. weight: math.unit(1000, "lb"),
  26591. name: "Back",
  26592. image: {
  26593. source: "./media/characters/grim/back.svg",
  26594. extra: 610.6 / 602,
  26595. bottom: 40.8 / 652
  26596. }
  26597. },
  26598. hunched: {
  26599. height: math.unit(9.75, "feet"),
  26600. weight: math.unit(1000, "lb"),
  26601. name: "Hunched",
  26602. image: {
  26603. source: "./media/characters/grim/hunched.svg",
  26604. extra: 304 / 297,
  26605. bottom: 35.4 / 394
  26606. }
  26607. },
  26608. },
  26609. [
  26610. {
  26611. name: "Normal",
  26612. height: math.unit(16, "feet"),
  26613. default: true
  26614. },
  26615. ]
  26616. ))
  26617. characterMakers.push(() => makeCharacter(
  26618. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26619. {
  26620. front: {
  26621. height: math.unit(2.3, "meters"),
  26622. weight: math.unit(300, "lb"),
  26623. name: "Front",
  26624. image: {
  26625. source: "./media/characters/sinja/front-sfw.svg",
  26626. extra: 1393 / 1294,
  26627. bottom: 70 / 1463
  26628. }
  26629. },
  26630. frontNsfw: {
  26631. height: math.unit(2.3, "meters"),
  26632. weight: math.unit(300, "lb"),
  26633. name: "Front (NSFW)",
  26634. image: {
  26635. source: "./media/characters/sinja/front-nsfw.svg",
  26636. extra: 1393 / 1294,
  26637. bottom: 70 / 1463
  26638. }
  26639. },
  26640. back: {
  26641. height: math.unit(2.3, "meters"),
  26642. weight: math.unit(300, "lb"),
  26643. name: "Back",
  26644. image: {
  26645. source: "./media/characters/sinja/back.svg",
  26646. extra: 1393 / 1294,
  26647. bottom: 70 / 1463
  26648. }
  26649. },
  26650. head: {
  26651. height: math.unit(1.771, "feet"),
  26652. name: "Head",
  26653. image: {
  26654. source: "./media/characters/sinja/head.svg"
  26655. }
  26656. },
  26657. slit: {
  26658. height: math.unit(0.8, "feet"),
  26659. name: "Slit",
  26660. image: {
  26661. source: "./media/characters/sinja/slit.svg"
  26662. }
  26663. },
  26664. },
  26665. [
  26666. {
  26667. name: "Normal",
  26668. height: math.unit(2.3, "meters")
  26669. },
  26670. {
  26671. name: "Macro",
  26672. height: math.unit(91, "meters"),
  26673. default: true
  26674. },
  26675. {
  26676. name: "Megamacro",
  26677. height: math.unit(91440, "meters")
  26678. },
  26679. {
  26680. name: "Gigamacro",
  26681. height: math.unit(60960000, "meters")
  26682. },
  26683. {
  26684. name: "Teramacro",
  26685. height: math.unit(9144000000, "meters")
  26686. },
  26687. ]
  26688. ))
  26689. characterMakers.push(() => makeCharacter(
  26690. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26691. {
  26692. front: {
  26693. height: math.unit(1.7, "meters"),
  26694. weight: math.unit(130, "lb"),
  26695. name: "Front",
  26696. image: {
  26697. source: "./media/characters/kyu/front.svg",
  26698. extra: 415 / 395,
  26699. bottom: 5 / 420
  26700. }
  26701. },
  26702. head: {
  26703. height: math.unit(1.75, "feet"),
  26704. name: "Head",
  26705. image: {
  26706. source: "./media/characters/kyu/head.svg"
  26707. }
  26708. },
  26709. foot: {
  26710. height: math.unit(0.81, "feet"),
  26711. name: "Foot",
  26712. image: {
  26713. source: "./media/characters/kyu/foot.svg"
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(1.7, "meters")
  26721. },
  26722. {
  26723. name: "Macro",
  26724. height: math.unit(131, "feet"),
  26725. default: true
  26726. },
  26727. {
  26728. name: "Megamacro",
  26729. height: math.unit(91440, "meters")
  26730. },
  26731. {
  26732. name: "Gigamacro",
  26733. height: math.unit(60960000, "meters")
  26734. },
  26735. {
  26736. name: "Teramacro",
  26737. height: math.unit(9144000000, "meters")
  26738. },
  26739. ]
  26740. ))
  26741. characterMakers.push(() => makeCharacter(
  26742. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26743. {
  26744. front: {
  26745. height: math.unit(7 + 1 / 12, "feet"),
  26746. weight: math.unit(250, "lb"),
  26747. name: "Front",
  26748. image: {
  26749. source: "./media/characters/joey/front.svg",
  26750. extra: 1791 / 1537,
  26751. bottom: 28 / 1816
  26752. }
  26753. },
  26754. },
  26755. [
  26756. {
  26757. name: "Micro",
  26758. height: math.unit(3, "inches")
  26759. },
  26760. {
  26761. name: "Normal",
  26762. height: math.unit(7 + 1 / 12, "feet"),
  26763. default: true
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26769. {
  26770. front: {
  26771. height: math.unit(165, "cm"),
  26772. weight: math.unit(140, "lb"),
  26773. name: "Front",
  26774. image: {
  26775. source: "./media/characters/sam-evans/front.svg",
  26776. extra: 3417 / 3230,
  26777. bottom: 41.3 / 3417
  26778. }
  26779. },
  26780. frontSixTails: {
  26781. height: math.unit(165, "cm"),
  26782. weight: math.unit(140, "lb"),
  26783. name: "Front-six-tails",
  26784. image: {
  26785. source: "./media/characters/sam-evans/front-six-tails.svg",
  26786. extra: 3417 / 3230,
  26787. bottom: 41.3 / 3417
  26788. }
  26789. },
  26790. back: {
  26791. height: math.unit(165, "cm"),
  26792. weight: math.unit(140, "lb"),
  26793. name: "Back",
  26794. image: {
  26795. source: "./media/characters/sam-evans/back.svg",
  26796. extra: 3227 / 3032,
  26797. bottom: 6.8 / 3234
  26798. }
  26799. },
  26800. face: {
  26801. height: math.unit(0.68, "feet"),
  26802. name: "Face",
  26803. image: {
  26804. source: "./media/characters/sam-evans/face.svg"
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(165, "cm"),
  26812. default: true
  26813. },
  26814. {
  26815. name: "Macro",
  26816. height: math.unit(100, "meters")
  26817. },
  26818. {
  26819. name: "Macro+",
  26820. height: math.unit(800, "meters")
  26821. },
  26822. {
  26823. name: "Macro++",
  26824. height: math.unit(3, "km")
  26825. },
  26826. {
  26827. name: "Macro+++",
  26828. height: math.unit(30, "km")
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26834. {
  26835. front: {
  26836. height: math.unit(10, "feet"),
  26837. weight: math.unit(750, "lb"),
  26838. name: "Front",
  26839. image: {
  26840. source: "./media/characters/juliet-a/front.svg",
  26841. extra: 1766 / 1720,
  26842. bottom: 43 / 1809
  26843. }
  26844. },
  26845. back: {
  26846. height: math.unit(10, "feet"),
  26847. weight: math.unit(750, "lb"),
  26848. name: "Back",
  26849. image: {
  26850. source: "./media/characters/juliet-a/back.svg",
  26851. extra: 1781 / 1734,
  26852. bottom: 35 / 1810,
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(10, "feet"),
  26860. default: true
  26861. },
  26862. {
  26863. name: "Dragon Form",
  26864. height: math.unit(250, "feet")
  26865. },
  26866. {
  26867. name: "Macro",
  26868. height: math.unit(1000, "feet")
  26869. },
  26870. {
  26871. name: "Megamacro",
  26872. height: math.unit(10000, "feet")
  26873. }
  26874. ]
  26875. ))
  26876. characterMakers.push(() => makeCharacter(
  26877. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26878. {
  26879. regular: {
  26880. height: math.unit(7 + 3 / 12, "feet"),
  26881. weight: math.unit(260, "lb"),
  26882. name: "Regular",
  26883. image: {
  26884. source: "./media/characters/wild/regular.svg",
  26885. extra: 97.45 / 92,
  26886. bottom: 6.8 / 104.3
  26887. }
  26888. },
  26889. biggums: {
  26890. height: math.unit(8 + 6 / 12, "feet"),
  26891. weight: math.unit(425, "lb"),
  26892. name: "Biggums",
  26893. image: {
  26894. source: "./media/characters/wild/biggums.svg",
  26895. extra: 97.45 / 92,
  26896. bottom: 7.5 / 132.34
  26897. }
  26898. },
  26899. mawRegular: {
  26900. height: math.unit(1.24, "feet"),
  26901. name: "Maw (Regular)",
  26902. image: {
  26903. source: "./media/characters/wild/maw.svg"
  26904. }
  26905. },
  26906. mawBiggums: {
  26907. height: math.unit(1.47, "feet"),
  26908. name: "Maw (Biggums)",
  26909. image: {
  26910. source: "./media/characters/wild/maw.svg"
  26911. }
  26912. },
  26913. },
  26914. [
  26915. {
  26916. name: "Normal",
  26917. height: math.unit(7 + 3 / 12, "feet"),
  26918. default: true
  26919. },
  26920. ]
  26921. ))
  26922. characterMakers.push(() => makeCharacter(
  26923. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26924. {
  26925. front: {
  26926. height: math.unit(2.5, "meters"),
  26927. weight: math.unit(200, "kg"),
  26928. name: "Front",
  26929. image: {
  26930. source: "./media/characters/vidar/front.svg",
  26931. extra: 2994 / 2795,
  26932. bottom: 56 / 3061
  26933. }
  26934. },
  26935. back: {
  26936. height: math.unit(2.5, "meters"),
  26937. weight: math.unit(200, "kg"),
  26938. name: "Back",
  26939. image: {
  26940. source: "./media/characters/vidar/back.svg",
  26941. extra: 3131 / 2928,
  26942. bottom: 13.5 / 3141.5
  26943. }
  26944. },
  26945. feral: {
  26946. height: math.unit(2.5, "meters"),
  26947. weight: math.unit(2000, "kg"),
  26948. name: "Feral",
  26949. image: {
  26950. source: "./media/characters/vidar/feral.svg",
  26951. extra: 2790 / 1765,
  26952. bottom: 6 / 2796
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(2.5, "meters"),
  26960. default: true
  26961. },
  26962. {
  26963. name: "Macro",
  26964. height: math.unit(100, "meters")
  26965. },
  26966. ]
  26967. ))
  26968. characterMakers.push(() => makeCharacter(
  26969. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26970. {
  26971. front: {
  26972. height: math.unit(5 + 9 / 12, "feet"),
  26973. weight: math.unit(120, "lb"),
  26974. name: "Front",
  26975. image: {
  26976. source: "./media/characters/ash/front.svg",
  26977. extra: 2189 / 1961,
  26978. bottom: 5.2 / 2194
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Normal",
  26985. height: math.unit(5 + 9 / 12, "feet"),
  26986. default: true
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(9, "feet"),
  26995. weight: math.unit(10000, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/gygabite/front.svg",
  26999. bottom: 31.7 / 537.8,
  27000. extra: 505 / 370
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Normal",
  27007. height: math.unit(9, "feet"),
  27008. default: true
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27014. {
  27015. front: {
  27016. height: math.unit(12, "feet"),
  27017. weight: math.unit(35000, "lb"),
  27018. name: "Front",
  27019. image: {
  27020. source: "./media/characters/p0tat0/front.svg",
  27021. extra: 1065 / 921,
  27022. bottom: 55.7 / 1121.25
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Normal",
  27029. height: math.unit(12, "feet"),
  27030. default: true
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27036. {
  27037. side: {
  27038. height: math.unit(6.5, "feet"),
  27039. weight: math.unit(800, "lb"),
  27040. name: "Side",
  27041. image: {
  27042. source: "./media/characters/dusk/side.svg",
  27043. extra: 615 / 373,
  27044. bottom: 53 / 664
  27045. }
  27046. },
  27047. sitting: {
  27048. height: math.unit(7, "feet"),
  27049. weight: math.unit(800, "lb"),
  27050. name: "Sitting",
  27051. image: {
  27052. source: "./media/characters/dusk/sitting.svg",
  27053. extra: 753 / 425,
  27054. bottom: 33 / 774
  27055. }
  27056. },
  27057. head: {
  27058. height: math.unit(6.1, "feet"),
  27059. name: "Head",
  27060. image: {
  27061. source: "./media/characters/dusk/head.svg"
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Normal",
  27068. height: math.unit(7, "feet"),
  27069. default: true
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(15, "feet"),
  27078. weight: math.unit(7000, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/jay-direwolf/front.svg",
  27082. extra: 1810 / 1732,
  27083. bottom: 66 / 1892
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(15, "feet"),
  27091. default: true
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27097. {
  27098. front: {
  27099. height: math.unit(4 + 9 / 12, "feet"),
  27100. weight: math.unit(130, "lb"),
  27101. name: "Front",
  27102. image: {
  27103. source: "./media/characters/anchovie/front.svg",
  27104. extra: 382 / 350,
  27105. bottom: 25 / 409
  27106. }
  27107. },
  27108. back: {
  27109. height: math.unit(4 + 9 / 12, "feet"),
  27110. weight: math.unit(130, "lb"),
  27111. name: "Back",
  27112. image: {
  27113. source: "./media/characters/anchovie/back.svg",
  27114. extra: 385 / 352,
  27115. bottom: 16.6 / 402
  27116. }
  27117. },
  27118. frontDressed: {
  27119. height: math.unit(4 + 9 / 12, "feet"),
  27120. weight: math.unit(130, "lb"),
  27121. name: "Front (Dressed)",
  27122. image: {
  27123. source: "./media/characters/anchovie/front-dressed.svg",
  27124. extra: 382 / 350,
  27125. bottom: 25 / 409
  27126. }
  27127. },
  27128. backDressed: {
  27129. height: math.unit(4 + 9 / 12, "feet"),
  27130. weight: math.unit(130, "lb"),
  27131. name: "Back (Dressed)",
  27132. image: {
  27133. source: "./media/characters/anchovie/back-dressed.svg",
  27134. extra: 385 / 352,
  27135. bottom: 16.6 / 402
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Micro",
  27142. height: math.unit(6.4, "inches")
  27143. },
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(4 + 9 / 12, "feet"),
  27147. default: true
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27153. {
  27154. front: {
  27155. height: math.unit(2, "meters"),
  27156. weight: math.unit(180, "lb"),
  27157. name: "Front",
  27158. image: {
  27159. source: "./media/characters/acidrenamon/front.svg",
  27160. extra: 987 / 890,
  27161. bottom: 22.8 / 1009
  27162. }
  27163. },
  27164. back: {
  27165. height: math.unit(2, "meters"),
  27166. weight: math.unit(180, "lb"),
  27167. name: "Back",
  27168. image: {
  27169. source: "./media/characters/acidrenamon/back.svg",
  27170. extra: 983 / 891,
  27171. bottom: 8.4 / 992
  27172. }
  27173. },
  27174. head: {
  27175. height: math.unit(1.92, "feet"),
  27176. name: "Head",
  27177. image: {
  27178. source: "./media/characters/acidrenamon/head.svg"
  27179. }
  27180. },
  27181. rump: {
  27182. height: math.unit(1.72, "feet"),
  27183. name: "Rump",
  27184. image: {
  27185. source: "./media/characters/acidrenamon/rump.svg"
  27186. }
  27187. },
  27188. tail: {
  27189. height: math.unit(4.2, "feet"),
  27190. name: "Tail",
  27191. image: {
  27192. source: "./media/characters/acidrenamon/tail.svg"
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(2, "meters"),
  27200. default: true
  27201. },
  27202. {
  27203. name: "Minimacro",
  27204. height: math.unit(7, "meters")
  27205. },
  27206. {
  27207. name: "Macro",
  27208. height: math.unit(200, "meters")
  27209. },
  27210. {
  27211. name: "Gigamacro",
  27212. height: math.unit(0.2, "earths")
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(6, "feet"),
  27221. weight: math.unit(150, "lb"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/kenzie-lee/front.svg",
  27225. extra: 1525 / 1465,
  27226. bottom: 45 / 1570
  27227. }
  27228. },
  27229. side: {
  27230. height: math.unit(6, "feet"),
  27231. weight: math.unit(150, "lb"),
  27232. name: "Side",
  27233. image: {
  27234. source: "./media/characters/kenzie-lee/side.svg",
  27235. extra: 5505 / 5383,
  27236. bottom: 60 / 5573
  27237. }
  27238. },
  27239. paw: {
  27240. height: math.unit(0.57, "feet"),
  27241. name: "Paw",
  27242. image: {
  27243. source: "./media/characters/kenzie-lee/paw.svg"
  27244. }
  27245. },
  27246. },
  27247. [
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(152, "feet"),
  27251. default: true
  27252. },
  27253. {
  27254. name: "Megamacro",
  27255. height: math.unit(7, "miles")
  27256. },
  27257. {
  27258. name: "Gigamacro",
  27259. height: math.unit(8000, "miles")
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27265. {
  27266. side: {
  27267. height: math.unit(6, "feet"),
  27268. weight: math.unit(150, "lb"),
  27269. name: "Side",
  27270. image: {
  27271. source: "./media/characters/withers/side.svg",
  27272. extra: 1830 / 1728,
  27273. bottom: 96 / 1927
  27274. }
  27275. },
  27276. front: {
  27277. height: math.unit(6, "feet"),
  27278. weight: math.unit(150, "lb"),
  27279. name: "Front",
  27280. image: {
  27281. source: "./media/characters/withers/front.svg",
  27282. extra: 1514 / 1438,
  27283. bottom: 118 / 1632
  27284. }
  27285. },
  27286. },
  27287. [
  27288. {
  27289. name: "Macro",
  27290. height: math.unit(168, "feet"),
  27291. default: true
  27292. },
  27293. {
  27294. name: "Megamacro",
  27295. height: math.unit(15, "miles")
  27296. }
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(6 + 7 / 12, "feet"),
  27304. weight: math.unit(250, "lb"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/nemoskii/front.svg",
  27308. extra: 2270 / 1734,
  27309. bottom: 86 / 2354
  27310. }
  27311. },
  27312. back: {
  27313. height: math.unit(6 + 7 / 12, "feet"),
  27314. weight: math.unit(250, "lb"),
  27315. name: "Back",
  27316. image: {
  27317. source: "./media/characters/nemoskii/back.svg",
  27318. extra: 1845 / 1788,
  27319. bottom: 10.5 / 1852
  27320. }
  27321. },
  27322. head: {
  27323. height: math.unit(1.31, "feet"),
  27324. name: "Head",
  27325. image: {
  27326. source: "./media/characters/nemoskii/head.svg"
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Micro",
  27333. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27334. },
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(6 + 7 / 12, "feet"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Macro",
  27342. height: math.unit((6 + 7 / 12) * 150, "feet")
  27343. },
  27344. {
  27345. name: "Macro+",
  27346. height: math.unit((6 + 7 / 12) * 500, "feet")
  27347. },
  27348. {
  27349. name: "Megamacro",
  27350. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27356. {
  27357. front: {
  27358. height: math.unit(1, "mile"),
  27359. weight: math.unit(265261.9, "lb"),
  27360. name: "Front",
  27361. image: {
  27362. source: "./media/characters/shui/front.svg",
  27363. extra: 1633 / 1564,
  27364. bottom: 91.5 / 1726
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Macro",
  27371. height: math.unit(1, "mile"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(12 + 6 / 12, "feet"),
  27381. weight: math.unit(1342, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/arokh-takakura/front.svg",
  27385. extra: 1089 / 1043,
  27386. bottom: 77.4 / 1176.7
  27387. }
  27388. },
  27389. back: {
  27390. height: math.unit(12 + 6 / 12, "feet"),
  27391. weight: math.unit(1342, "lb"),
  27392. name: "Back",
  27393. image: {
  27394. source: "./media/characters/arokh-takakura/back.svg",
  27395. extra: 1046 / 1019,
  27396. bottom: 102 / 1150
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Big",
  27403. height: math.unit(12 + 6 / 12, "feet"),
  27404. default: true
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27410. {
  27411. front: {
  27412. height: math.unit(5 + 6 / 12, "feet"),
  27413. weight: math.unit(150, "lb"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/theo/front.svg",
  27417. extra: 1184 / 1131,
  27418. bottom: 7.4 / 1191
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Micro",
  27425. height: math.unit(5, "inches")
  27426. },
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(5 + 6 / 12, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(5 + 9 / 12, "feet"),
  27439. weight: math.unit(130, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/cecelia-swift/front.svg",
  27443. extra: 502 / 484,
  27444. bottom: 23 / 523
  27445. }
  27446. },
  27447. back: {
  27448. height: math.unit(5 + 9 / 12, "feet"),
  27449. weight: math.unit(130, "lb"),
  27450. name: "Back",
  27451. image: {
  27452. source: "./media/characters/cecelia-swift/back.svg",
  27453. extra: 499 / 485,
  27454. bottom: 12 / 511
  27455. }
  27456. },
  27457. head: {
  27458. height: math.unit(0.90, "feet"),
  27459. name: "Head",
  27460. image: {
  27461. source: "./media/characters/cecelia-swift/head.svg"
  27462. }
  27463. },
  27464. rump: {
  27465. height: math.unit(1.75, "feet"),
  27466. name: "Rump",
  27467. image: {
  27468. source: "./media/characters/cecelia-swift/rump.svg"
  27469. }
  27470. },
  27471. },
  27472. [
  27473. {
  27474. name: "Normal",
  27475. height: math.unit(5 + 9 / 12, "feet"),
  27476. default: true
  27477. },
  27478. {
  27479. name: "Big",
  27480. height: math.unit(50, "feet")
  27481. },
  27482. {
  27483. name: "Macro",
  27484. height: math.unit(100, "feet")
  27485. },
  27486. {
  27487. name: "Macro+",
  27488. height: math.unit(500, "feet")
  27489. },
  27490. {
  27491. name: "Macro++",
  27492. height: math.unit(1000, "feet")
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(6, "feet"),
  27501. weight: math.unit(150, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/kaunan/front.svg",
  27505. extra: 2890 / 2523,
  27506. bottom: 49 / 2939
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Macro",
  27513. height: math.unit(150, "feet"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(175, "cm"),
  27523. weight: math.unit(60, "kg"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/fei/front.svg",
  27527. extra: 1873/1723,
  27528. bottom: 53/1926
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Mortal",
  27535. height: math.unit(175, "cm")
  27536. },
  27537. {
  27538. name: "Normal",
  27539. height: math.unit(3500, "m"),
  27540. default: true
  27541. },
  27542. {
  27543. name: "Stroll",
  27544. height: math.unit(17.5, "km")
  27545. },
  27546. {
  27547. name: "Showoff",
  27548. height: math.unit(175, "km")
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(7, "feet"),
  27557. weight: math.unit(1000, "kg"),
  27558. name: "Front",
  27559. image: {
  27560. source: "./media/characters/edrax/front.svg",
  27561. extra: 2838 / 2550,
  27562. bottom: 130 / 2968
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Small",
  27569. height: math.unit(7, "feet")
  27570. },
  27571. {
  27572. name: "Normal",
  27573. height: math.unit(1500, "meters")
  27574. },
  27575. {
  27576. name: "Mega",
  27577. height: math.unit(12000000, "km"),
  27578. default: true
  27579. },
  27580. {
  27581. name: "Megamacro",
  27582. height: math.unit(10600000, "lightyears")
  27583. },
  27584. {
  27585. name: "Hypermacro",
  27586. height: math.unit(256, "yottameters")
  27587. },
  27588. ]
  27589. ))
  27590. characterMakers.push(() => makeCharacter(
  27591. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27592. {
  27593. front: {
  27594. height: math.unit(10, "feet"),
  27595. weight: math.unit(750, "lb"),
  27596. name: "Front",
  27597. image: {
  27598. source: "./media/characters/clove/front.svg",
  27599. extra: 2031 / 1860,
  27600. bottom: 47.8 / 2080
  27601. }
  27602. },
  27603. back: {
  27604. height: math.unit(10, "feet"),
  27605. weight: math.unit(750, "lb"),
  27606. name: "Back",
  27607. image: {
  27608. source: "./media/characters/clove/back.svg",
  27609. extra: 2025 / 1859,
  27610. bottom: 46 / 2071
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Normal",
  27617. height: math.unit(10, "feet"),
  27618. default: true
  27619. },
  27620. ]
  27621. ))
  27622. characterMakers.push(() => makeCharacter(
  27623. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27624. {
  27625. front: {
  27626. height: math.unit(4, "feet"),
  27627. weight: math.unit(50, "lb"),
  27628. name: "Front",
  27629. image: {
  27630. source: "./media/characters/alex-rabbit/front.svg",
  27631. extra: 507 / 458,
  27632. bottom: 18.5 / 527
  27633. }
  27634. },
  27635. back: {
  27636. height: math.unit(4, "feet"),
  27637. weight: math.unit(50, "lb"),
  27638. name: "Back",
  27639. image: {
  27640. source: "./media/characters/alex-rabbit/back.svg",
  27641. extra: 502 / 460,
  27642. bottom: 18.9 / 521
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Normal",
  27649. height: math.unit(4, "feet"),
  27650. default: true
  27651. },
  27652. ]
  27653. ))
  27654. characterMakers.push(() => makeCharacter(
  27655. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27656. {
  27657. front: {
  27658. height: math.unit(1 + 3 / 12, "feet"),
  27659. weight: math.unit(80, "lb"),
  27660. name: "Front",
  27661. image: {
  27662. source: "./media/characters/zander-rose/front.svg",
  27663. extra: 916 / 797,
  27664. bottom: 17 / 933
  27665. }
  27666. },
  27667. back: {
  27668. height: math.unit(1 + 3 / 12, "feet"),
  27669. weight: math.unit(80, "lb"),
  27670. name: "Back",
  27671. image: {
  27672. source: "./media/characters/zander-rose/back.svg",
  27673. extra: 903 / 779,
  27674. bottom: 31 / 934
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(1 + 3 / 12, "feet"),
  27682. default: true
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27688. {
  27689. anthro: {
  27690. height: math.unit(6, "feet"),
  27691. weight: math.unit(150, "lb"),
  27692. name: "Anthro",
  27693. image: {
  27694. source: "./media/characters/razz/anthro.svg",
  27695. extra: 1437 / 1343,
  27696. bottom: 48 / 1485
  27697. }
  27698. },
  27699. feral: {
  27700. height: math.unit(6, "feet"),
  27701. weight: math.unit(150, "lb"),
  27702. name: "Feral",
  27703. image: {
  27704. source: "./media/characters/razz/feral.svg",
  27705. extra: 2569 / 1385,
  27706. bottom: 95 / 2664
  27707. }
  27708. },
  27709. },
  27710. [
  27711. {
  27712. name: "Normal",
  27713. height: math.unit(6, "feet"),
  27714. default: true
  27715. },
  27716. ]
  27717. ))
  27718. characterMakers.push(() => makeCharacter(
  27719. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27720. {
  27721. front: {
  27722. height: math.unit(9 + 4 / 12, "feet"),
  27723. weight: math.unit(500, "lb"),
  27724. name: "Front",
  27725. image: {
  27726. source: "./media/characters/morrigan/front.svg",
  27727. extra: 2707 / 2579,
  27728. bottom: 156 / 2863
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(9 + 4 / 12, "feet"),
  27736. default: true
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(5, "stories"),
  27745. weight: math.unit(4000, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/jenene/front.svg",
  27749. extra: 1780 / 1710,
  27750. bottom: 57 / 1837
  27751. }
  27752. },
  27753. },
  27754. [
  27755. {
  27756. name: "Normal",
  27757. height: math.unit(5, "stories"),
  27758. default: true
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27764. {
  27765. taurSfw: {
  27766. height: math.unit(10, "meters"),
  27767. weight: math.unit(17500, "kg"),
  27768. name: "Taur",
  27769. image: {
  27770. source: "./media/characters/faey/taur-sfw.svg",
  27771. extra: 1200 / 968,
  27772. bottom: 41 / 1241
  27773. }
  27774. },
  27775. chestmaw: {
  27776. height: math.unit(2.01, "meters"),
  27777. name: "Chestmaw",
  27778. image: {
  27779. source: "./media/characters/faey/chestmaw.svg"
  27780. }
  27781. },
  27782. foot: {
  27783. height: math.unit(2.43, "meters"),
  27784. name: "Foot",
  27785. image: {
  27786. source: "./media/characters/faey/foot.svg"
  27787. }
  27788. },
  27789. jaws: {
  27790. height: math.unit(1.66, "meters"),
  27791. name: "Jaws",
  27792. image: {
  27793. source: "./media/characters/faey/jaws.svg"
  27794. }
  27795. },
  27796. tongues: {
  27797. height: math.unit(2.01, "meters"),
  27798. name: "Tongues",
  27799. image: {
  27800. source: "./media/characters/faey/tongues.svg"
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Small",
  27807. height: math.unit(10, "meters"),
  27808. default: true
  27809. },
  27810. {
  27811. name: "Big",
  27812. height: math.unit(500000, "km")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(7, "feet"),
  27821. weight: math.unit(275, "lb"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/roku/front.svg",
  27825. extra: 903 / 878,
  27826. bottom: 37 / 940
  27827. }
  27828. },
  27829. },
  27830. [
  27831. {
  27832. name: "Normal",
  27833. height: math.unit(7, "feet"),
  27834. default: true
  27835. },
  27836. {
  27837. name: "Macro",
  27838. height: math.unit(500, "feet")
  27839. },
  27840. {
  27841. name: "Megamacro",
  27842. height: math.unit(200, "miles")
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27848. {
  27849. front: {
  27850. height: math.unit(6 + 2 / 12, "feet"),
  27851. weight: math.unit(150, "lb"),
  27852. name: "Front",
  27853. image: {
  27854. source: "./media/characters/lira/front.svg",
  27855. extra: 1727 / 1605,
  27856. bottom: 26 / 1753
  27857. }
  27858. },
  27859. back: {
  27860. height: math.unit(6 + 2 / 12, "feet"),
  27861. weight: math.unit(150, "lb"),
  27862. name: "Back",
  27863. image: {
  27864. source: "./media/characters/lira/back.svg",
  27865. extra: 1713/1621,
  27866. bottom: 20/1733
  27867. }
  27868. },
  27869. hand: {
  27870. height: math.unit(0.75, "feet"),
  27871. name: "Hand",
  27872. image: {
  27873. source: "./media/characters/lira/hand.svg"
  27874. }
  27875. },
  27876. maw: {
  27877. height: math.unit(0.65, "feet"),
  27878. name: "Maw",
  27879. image: {
  27880. source: "./media/characters/lira/maw.svg"
  27881. }
  27882. },
  27883. pawDigi: {
  27884. height: math.unit(1.6, "feet"),
  27885. name: "Paw Digi",
  27886. image: {
  27887. source: "./media/characters/lira/paw-digi.svg"
  27888. }
  27889. },
  27890. pawPlanti: {
  27891. height: math.unit(1.4, "feet"),
  27892. name: "Paw Planti",
  27893. image: {
  27894. source: "./media/characters/lira/paw-planti.svg"
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(6 + 2 / 12, "feet"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Macro",
  27906. height: math.unit(100, "feet")
  27907. },
  27908. {
  27909. name: "Macro²",
  27910. height: math.unit(1600, "feet")
  27911. },
  27912. {
  27913. name: "Planetary",
  27914. height: math.unit(20, "earths")
  27915. },
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(6, "feet"),
  27923. weight: math.unit(150, "lb"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/hadjet/front.svg",
  27927. extra: 1480 / 1346,
  27928. bottom: 26 / 1506
  27929. }
  27930. },
  27931. frontNsfw: {
  27932. height: math.unit(6, "feet"),
  27933. weight: math.unit(150, "lb"),
  27934. name: "Front (NSFW)",
  27935. image: {
  27936. source: "./media/characters/hadjet/front-nsfw.svg",
  27937. extra: 1440 / 1358,
  27938. bottom: 52 / 1492
  27939. }
  27940. },
  27941. },
  27942. [
  27943. {
  27944. name: "Macro",
  27945. height: math.unit(10, "stories"),
  27946. default: true
  27947. },
  27948. {
  27949. name: "Megamacro",
  27950. height: math.unit(1.5, "miles")
  27951. },
  27952. {
  27953. name: "Megamacro+",
  27954. height: math.unit(5, "miles")
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27960. {
  27961. side: {
  27962. height: math.unit(106, "feet"),
  27963. weight: math.unit(500, "tonnes"),
  27964. name: "Side",
  27965. image: {
  27966. source: "./media/characters/kodran/side.svg",
  27967. extra: 553 / 480,
  27968. bottom: 33 / 586
  27969. }
  27970. },
  27971. front: {
  27972. height: math.unit(132, "feet"),
  27973. weight: math.unit(500, "tonnes"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/kodran/front.svg",
  27977. extra: 667 / 643,
  27978. bottom: 42 / 709
  27979. }
  27980. },
  27981. flying: {
  27982. height: math.unit(350, "feet"),
  27983. weight: math.unit(500, "tonnes"),
  27984. name: "Flying",
  27985. image: {
  27986. source: "./media/characters/kodran/flying.svg"
  27987. }
  27988. },
  27989. foot: {
  27990. height: math.unit(33, "feet"),
  27991. name: "Foot",
  27992. image: {
  27993. source: "./media/characters/kodran/foot.svg"
  27994. }
  27995. },
  27996. footFront: {
  27997. height: math.unit(19, "feet"),
  27998. name: "Foot (Front)",
  27999. image: {
  28000. source: "./media/characters/kodran/foot-front.svg",
  28001. extra: 261 / 261,
  28002. bottom: 91 / 352
  28003. }
  28004. },
  28005. headFront: {
  28006. height: math.unit(53, "feet"),
  28007. name: "Head (Front)",
  28008. image: {
  28009. source: "./media/characters/kodran/head-front.svg"
  28010. }
  28011. },
  28012. headSide: {
  28013. height: math.unit(65, "feet"),
  28014. name: "Head (Side)",
  28015. image: {
  28016. source: "./media/characters/kodran/head-side.svg"
  28017. }
  28018. },
  28019. throat: {
  28020. height: math.unit(79, "feet"),
  28021. name: "Throat",
  28022. image: {
  28023. source: "./media/characters/kodran/throat.svg"
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Large",
  28030. height: math.unit(106, "feet"),
  28031. default: true
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28037. {
  28038. side: {
  28039. height: math.unit(11, "feet"),
  28040. weight: math.unit(150, "lb"),
  28041. name: "Side",
  28042. image: {
  28043. source: "./media/characters/pyxaron/side.svg",
  28044. extra: 305 / 195,
  28045. bottom: 17 / 322
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(11, "feet"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(6, "feet"),
  28062. weight: math.unit(150, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/meep/front.svg",
  28066. extra: 88 / 80,
  28067. bottom: 6 / 94
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Fun Sized",
  28074. height: math.unit(2, "inches"),
  28075. default: true
  28076. },
  28077. {
  28078. name: "Friend Sized",
  28079. height: math.unit(8, "inches")
  28080. },
  28081. ]
  28082. ))
  28083. characterMakers.push(() => makeCharacter(
  28084. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28085. {
  28086. front: {
  28087. height: math.unit(15, "feet"),
  28088. weight: math.unit(2500, "lb"),
  28089. name: "Front",
  28090. image: {
  28091. source: "./media/characters/holly-rabbit/front.svg",
  28092. extra: 1433 / 1233,
  28093. bottom: 125 / 1558
  28094. }
  28095. },
  28096. dick: {
  28097. height: math.unit(4.6, "feet"),
  28098. name: "Dick",
  28099. image: {
  28100. source: "./media/characters/holly-rabbit/dick.svg"
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(15, "feet"),
  28108. default: true
  28109. },
  28110. {
  28111. name: "Macro",
  28112. height: math.unit(250, "feet")
  28113. },
  28114. {
  28115. name: "Macro+",
  28116. height: math.unit(2500, "feet")
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28122. {
  28123. front: {
  28124. height: math.unit(3.02, "meters"),
  28125. weight: math.unit(500, "kg"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/drena/front.svg",
  28129. extra: 282 / 243,
  28130. bottom: 8 / 290
  28131. }
  28132. },
  28133. side: {
  28134. height: math.unit(3.02, "meters"),
  28135. weight: math.unit(500, "kg"),
  28136. name: "Side",
  28137. image: {
  28138. source: "./media/characters/drena/side.svg",
  28139. extra: 280 / 245,
  28140. bottom: 10 / 290
  28141. }
  28142. },
  28143. back: {
  28144. height: math.unit(3.02, "meters"),
  28145. weight: math.unit(500, "kg"),
  28146. name: "Back",
  28147. image: {
  28148. source: "./media/characters/drena/back.svg",
  28149. extra: 278 / 243,
  28150. bottom: 2 / 280
  28151. }
  28152. },
  28153. foot: {
  28154. height: math.unit(0.75, "meters"),
  28155. name: "Foot",
  28156. image: {
  28157. source: "./media/characters/drena/foot.svg"
  28158. }
  28159. },
  28160. maw: {
  28161. height: math.unit(0.82, "meters"),
  28162. name: "Maw",
  28163. image: {
  28164. source: "./media/characters/drena/maw.svg"
  28165. }
  28166. },
  28167. rump: {
  28168. height: math.unit(0.93, "meters"),
  28169. name: "Rump",
  28170. image: {
  28171. source: "./media/characters/drena/rump.svg"
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(3.02, "meters"),
  28179. default: true
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(6 + 4 / 12, "feet"),
  28188. weight: math.unit(250, "lb"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/remmyzilla/front.svg",
  28192. extra: 4033 / 3588,
  28193. bottom: 123 / 4156
  28194. }
  28195. },
  28196. back: {
  28197. height: math.unit(6 + 4 / 12, "feet"),
  28198. weight: math.unit(250, "lb"),
  28199. name: "Back",
  28200. image: {
  28201. source: "./media/characters/remmyzilla/back.svg",
  28202. extra: 2687 / 2555,
  28203. bottom: 48 / 2735
  28204. }
  28205. },
  28206. paw: {
  28207. height: math.unit(1.73, "feet"),
  28208. name: "Paw",
  28209. image: {
  28210. source: "./media/characters/remmyzilla/paw.svg"
  28211. }
  28212. },
  28213. maw: {
  28214. height: math.unit(1.73, "feet"),
  28215. name: "Maw",
  28216. image: {
  28217. source: "./media/characters/remmyzilla/maw.svg"
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(6 + 4 / 12, "feet")
  28225. },
  28226. {
  28227. name: "Minimacro",
  28228. height: math.unit(12 + 8 / 12, "feet")
  28229. },
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(640, "feet"),
  28233. default: true
  28234. },
  28235. {
  28236. name: "Megamacro",
  28237. height: math.unit(6400, "feet")
  28238. },
  28239. {
  28240. name: "Gigamacro",
  28241. height: math.unit(64000, "miles")
  28242. },
  28243. ]
  28244. ))
  28245. characterMakers.push(() => makeCharacter(
  28246. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28247. {
  28248. front: {
  28249. height: math.unit(2.5, "meters"),
  28250. weight: math.unit(300, "lb"),
  28251. name: "Front",
  28252. image: {
  28253. source: "./media/characters/lawrence/front.svg",
  28254. extra: 357 / 335,
  28255. bottom: 30 / 387
  28256. }
  28257. },
  28258. back: {
  28259. height: math.unit(2.5, "meters"),
  28260. weight: math.unit(300, "lb"),
  28261. name: "Back",
  28262. image: {
  28263. source: "./media/characters/lawrence/back.svg",
  28264. extra: 357 / 338,
  28265. bottom: 16 / 373
  28266. }
  28267. },
  28268. head: {
  28269. height: math.unit(0.9, "meter"),
  28270. name: "Head",
  28271. image: {
  28272. source: "./media/characters/lawrence/head.svg"
  28273. }
  28274. },
  28275. maw: {
  28276. height: math.unit(0.7, "meter"),
  28277. name: "Maw",
  28278. image: {
  28279. source: "./media/characters/lawrence/maw.svg"
  28280. }
  28281. },
  28282. footBottom: {
  28283. height: math.unit(0.5, "meter"),
  28284. name: "Foot (Bottom)",
  28285. image: {
  28286. source: "./media/characters/lawrence/foot-bottom.svg"
  28287. }
  28288. },
  28289. footTop: {
  28290. height: math.unit(0.5, "meter"),
  28291. name: "Foot (Top)",
  28292. image: {
  28293. source: "./media/characters/lawrence/foot-top.svg"
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Normal",
  28300. height: math.unit(2.5, "meters"),
  28301. default: true
  28302. },
  28303. {
  28304. name: "Macro",
  28305. height: math.unit(95, "meters")
  28306. },
  28307. {
  28308. name: "Megamacro",
  28309. height: math.unit(150, "km")
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28315. {
  28316. front: {
  28317. height: math.unit(4.2, "meters"),
  28318. name: "Front",
  28319. image: {
  28320. source: "./media/characters/sydney/front.svg",
  28321. extra: 1323 / 1277,
  28322. bottom: 111 / 1434
  28323. }
  28324. },
  28325. },
  28326. [
  28327. {
  28328. name: "Normal",
  28329. height: math.unit(4.2, "meters"),
  28330. default: true
  28331. },
  28332. ]
  28333. ))
  28334. characterMakers.push(() => makeCharacter(
  28335. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28336. {
  28337. back: {
  28338. height: math.unit(201, "feet"),
  28339. name: "Back",
  28340. image: {
  28341. source: "./media/characters/jessica/back.svg",
  28342. extra: 273 / 259,
  28343. bottom: 7 / 280
  28344. }
  28345. },
  28346. },
  28347. [
  28348. {
  28349. name: "Normal",
  28350. height: math.unit(201, "feet"),
  28351. default: true
  28352. },
  28353. {
  28354. name: "Megamacro",
  28355. height: math.unit(8, "miles")
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28361. {
  28362. side: {
  28363. height: math.unit(320, "cm"),
  28364. name: "Side",
  28365. image: {
  28366. source: "./media/characters/victoria/side.svg",
  28367. extra: 778 / 346,
  28368. bottom: 56 / 834
  28369. }
  28370. },
  28371. maw: {
  28372. height: math.unit(5.9, "feet"),
  28373. name: "Maw",
  28374. image: {
  28375. source: "./media/characters/victoria/maw.svg"
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Normal",
  28382. height: math.unit(320, "cm"),
  28383. default: true
  28384. },
  28385. ]
  28386. ))
  28387. characterMakers.push(() => makeCharacter(
  28388. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28389. {
  28390. front: {
  28391. height: math.unit(5 + 6 / 12, "feet"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/cat/front.svg",
  28395. extra: 1449/1295,
  28396. bottom: 34/1483
  28397. }
  28398. },
  28399. back: {
  28400. height: math.unit(5 + 6 / 12, "feet"),
  28401. name: "Back",
  28402. image: {
  28403. source: "./media/characters/cat/back.svg",
  28404. extra: 1466/1301,
  28405. bottom: 19/1485
  28406. }
  28407. },
  28408. taur: {
  28409. height: math.unit(7, "feet"),
  28410. name: "Taur",
  28411. image: {
  28412. source: "./media/characters/cat/taur.svg",
  28413. extra: 1389/1233,
  28414. bottom: 83/1472
  28415. }
  28416. },
  28417. lucarioFront: {
  28418. height: math.unit(4, "feet"),
  28419. name: "Lucario (Front)",
  28420. image: {
  28421. source: "./media/characters/cat/lucario-front.svg",
  28422. extra: 1149/1019,
  28423. bottom: 84/1233
  28424. }
  28425. },
  28426. lucarioBack: {
  28427. height: math.unit(4, "feet"),
  28428. name: "Lucario (Back)",
  28429. image: {
  28430. source: "./media/characters/cat/lucario-back.svg",
  28431. extra: 1190/1059,
  28432. bottom: 33/1223
  28433. }
  28434. },
  28435. megaLucario: {
  28436. height: math.unit(4, "feet"),
  28437. name: "Mega Lucario",
  28438. image: {
  28439. source: "./media/characters/cat/mega-lucario.svg",
  28440. extra: 1515 / 1319,
  28441. bottom: 63 / 1578
  28442. }
  28443. },
  28444. nickit: {
  28445. height: math.unit(2, "feet"),
  28446. name: "Nickit",
  28447. image: {
  28448. source: "./media/characters/cat/nickit.svg",
  28449. extra: 1980 / 1585,
  28450. bottom: 102 / 2082
  28451. }
  28452. },
  28453. lopunnyFront: {
  28454. height: math.unit(5, "feet"),
  28455. name: "Lopunny (Front)",
  28456. image: {
  28457. source: "./media/characters/cat/lopunny-front.svg",
  28458. extra: 1782 / 1469,
  28459. bottom: 38 / 1820
  28460. }
  28461. },
  28462. lopunnyBack: {
  28463. height: math.unit(5, "feet"),
  28464. name: "Lopunny (Back)",
  28465. image: {
  28466. source: "./media/characters/cat/lopunny-back.svg",
  28467. extra: 1660 / 1490,
  28468. bottom: 25 / 1685
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Really small",
  28475. height: math.unit(1, "nm")
  28476. },
  28477. {
  28478. name: "Micro",
  28479. height: math.unit(5, "inches")
  28480. },
  28481. {
  28482. name: "Normal",
  28483. height: math.unit(5 + 6 / 12, "feet"),
  28484. default: true
  28485. },
  28486. {
  28487. name: "Macro",
  28488. height: math.unit(50, "feet")
  28489. },
  28490. {
  28491. name: "Macro+",
  28492. height: math.unit(150, "feet")
  28493. },
  28494. {
  28495. name: "Megamacro",
  28496. height: math.unit(100, "miles")
  28497. },
  28498. ]
  28499. ))
  28500. characterMakers.push(() => makeCharacter(
  28501. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28502. {
  28503. front: {
  28504. height: math.unit(63.4, "meters"),
  28505. weight: math.unit(3.28349e+6, "kilograms"),
  28506. name: "Front",
  28507. image: {
  28508. source: "./media/characters/kirina-violet/front.svg",
  28509. extra: 2812 / 2725,
  28510. bottom: 0 / 2812
  28511. }
  28512. },
  28513. back: {
  28514. height: math.unit(63.4, "meters"),
  28515. weight: math.unit(3.28349e+6, "kilograms"),
  28516. name: "Back",
  28517. image: {
  28518. source: "./media/characters/kirina-violet/back.svg",
  28519. extra: 2812 / 2725,
  28520. bottom: 0 / 2812
  28521. }
  28522. },
  28523. mouth: {
  28524. height: math.unit(4.35, "meters"),
  28525. name: "Mouth",
  28526. image: {
  28527. source: "./media/characters/kirina-violet/mouth.svg"
  28528. }
  28529. },
  28530. paw: {
  28531. height: math.unit(5.6, "meters"),
  28532. name: "Paw",
  28533. image: {
  28534. source: "./media/characters/kirina-violet/paw.svg"
  28535. }
  28536. },
  28537. tail: {
  28538. height: math.unit(18, "meters"),
  28539. name: "Tail",
  28540. image: {
  28541. source: "./media/characters/kirina-violet/tail.svg"
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Macro",
  28548. height: math.unit(63.4, "meters"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(75, "feet"),
  28558. name: "Front",
  28559. image: {
  28560. source: "./media/characters/cat-gigachu/front.svg",
  28561. extra: 1239/1027,
  28562. bottom: 32/1271
  28563. }
  28564. },
  28565. back: {
  28566. height: math.unit(75, "feet"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/cat-gigachu/back.svg",
  28570. extra: 1229/1030,
  28571. bottom: 9/1238
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Dynamax",
  28578. height: math.unit(75, "feet"),
  28579. default: true
  28580. },
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28585. {
  28586. front: {
  28587. height: math.unit(6, "feet"),
  28588. weight: math.unit(150, "lb"),
  28589. name: "Front",
  28590. image: {
  28591. source: "./media/characters/sfaiyan/front.svg",
  28592. extra: 999 / 978,
  28593. bottom: 5 / 1004
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Normal",
  28600. height: math.unit(1.82, "meters")
  28601. },
  28602. {
  28603. name: "Giant",
  28604. height: math.unit(2.27, "km"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(179, "cm"),
  28614. weight: math.unit(100, "kg"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/raunehkeli/front.svg",
  28618. extra: 1934 / 1926,
  28619. bottom: 0 / 1934
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(179, "cm")
  28627. },
  28628. {
  28629. name: "Maximum",
  28630. height: math.unit(575, "meters"),
  28631. default: true
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(6, "feet"),
  28640. weight: math.unit(150, "lb"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28644. extra: 2625 / 2518,
  28645. bottom: 60 / 2685
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(6 + 2 / 12, "feet")
  28653. },
  28654. {
  28655. name: "Macro",
  28656. height: math.unit(1180, "feet"),
  28657. default: true
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28663. {
  28664. front: {
  28665. height: math.unit(5 + 6 / 12, "feet"),
  28666. weight: math.unit(108, "lb"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/lilith-zott/front.svg",
  28670. extra: 2510 / 2238,
  28671. bottom: 100 / 2610
  28672. }
  28673. },
  28674. frontDressed: {
  28675. height: math.unit(5 + 6 / 12, "feet"),
  28676. weight: math.unit(108, "lb"),
  28677. name: "Front (Dressed)",
  28678. image: {
  28679. source: "./media/characters/lilith-zott/front-dressed.svg",
  28680. extra: 2510 / 2238,
  28681. bottom: 100 / 2610
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Normal",
  28688. height: math.unit(5 + 6 / 12, "feet")
  28689. },
  28690. {
  28691. name: "Macro",
  28692. height: math.unit(1030, "feet"),
  28693. default: true
  28694. },
  28695. ]
  28696. ))
  28697. characterMakers.push(() => makeCharacter(
  28698. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28699. {
  28700. front: {
  28701. height: math.unit(6, "feet"),
  28702. weight: math.unit(150, "lb"),
  28703. name: "Front",
  28704. image: {
  28705. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28706. extra: 2567 / 2435,
  28707. bottom: 39 / 2606
  28708. }
  28709. },
  28710. frontSuper: {
  28711. height: math.unit(6, "feet"),
  28712. name: "Front (Super)",
  28713. image: {
  28714. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28715. extra: 2567 / 2435,
  28716. bottom: 39 / 2606
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(5 + 10 / 12, "feet")
  28724. },
  28725. {
  28726. name: "Macro",
  28727. height: math.unit(1100, "feet"),
  28728. default: true
  28729. },
  28730. ]
  28731. ))
  28732. characterMakers.push(() => makeCharacter(
  28733. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28734. {
  28735. front: {
  28736. height: math.unit(100, "miles"),
  28737. name: "Front",
  28738. image: {
  28739. source: "./media/characters/sona/front.svg",
  28740. extra: 2433 / 2201,
  28741. bottom: 53 / 2486
  28742. }
  28743. },
  28744. foot: {
  28745. height: math.unit(16.1, "miles"),
  28746. name: "Foot",
  28747. image: {
  28748. source: "./media/characters/sona/foot.svg"
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Macro",
  28755. height: math.unit(100, "miles"),
  28756. default: true
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(6, "feet"),
  28765. weight: math.unit(150, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/bailey/front.svg",
  28769. extra: 1778 / 1724,
  28770. bottom: 30 / 1808
  28771. }
  28772. },
  28773. },
  28774. [
  28775. {
  28776. name: "Micro",
  28777. height: math.unit(4, "inches")
  28778. },
  28779. {
  28780. name: "Normal",
  28781. height: math.unit(5 + 5 / 12, "feet"),
  28782. default: true
  28783. },
  28784. {
  28785. name: "Macro",
  28786. height: math.unit(250, "feet")
  28787. },
  28788. {
  28789. name: "Megamacro",
  28790. height: math.unit(100, "miles")
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(5 + 2 / 12, "feet"),
  28799. weight: math.unit(120, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/snaps/front.svg",
  28803. extra: 2370 / 2177,
  28804. bottom: 48 / 2418
  28805. }
  28806. },
  28807. back: {
  28808. height: math.unit(5 + 2 / 12, "feet"),
  28809. weight: math.unit(120, "lb"),
  28810. name: "Back",
  28811. image: {
  28812. source: "./media/characters/snaps/back.svg",
  28813. extra: 2408 / 2258,
  28814. bottom: 15 / 2423
  28815. }
  28816. },
  28817. },
  28818. [
  28819. {
  28820. name: "Micro",
  28821. height: math.unit(9, "inches")
  28822. },
  28823. {
  28824. name: "Normal",
  28825. height: math.unit(5 + 2 / 12, "feet"),
  28826. default: true
  28827. },
  28828. {
  28829. name: "Mini Macro",
  28830. height: math.unit(10, "feet")
  28831. },
  28832. ]
  28833. ))
  28834. characterMakers.push(() => makeCharacter(
  28835. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28836. {
  28837. front: {
  28838. height: math.unit(1.8, "meters"),
  28839. weight: math.unit(85, "kg"),
  28840. name: "Front",
  28841. image: {
  28842. source: "./media/characters/azteck/front.svg",
  28843. extra: 2815 / 2625,
  28844. bottom: 89 / 2904
  28845. }
  28846. },
  28847. back: {
  28848. height: math.unit(1.8, "meters"),
  28849. weight: math.unit(85, "kg"),
  28850. name: "Back",
  28851. image: {
  28852. source: "./media/characters/azteck/back.svg",
  28853. extra: 2856 / 2648,
  28854. bottom: 85 / 2941
  28855. }
  28856. },
  28857. frontDressed: {
  28858. height: math.unit(1.8, "meters"),
  28859. weight: math.unit(85, "kg"),
  28860. name: "Front (Dressed)",
  28861. image: {
  28862. source: "./media/characters/azteck/front-dressed.svg",
  28863. extra: 2147 / 2003,
  28864. bottom: 68 / 2215
  28865. }
  28866. },
  28867. head: {
  28868. height: math.unit(0.47, "meters"),
  28869. weight: math.unit(85, "kg"),
  28870. name: "Head",
  28871. image: {
  28872. source: "./media/characters/azteck/head.svg"
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Bite sized",
  28879. height: math.unit(16, "cm")
  28880. },
  28881. {
  28882. name: "Normal",
  28883. height: math.unit(1.8, "meters"),
  28884. default: true
  28885. },
  28886. ]
  28887. ))
  28888. characterMakers.push(() => makeCharacter(
  28889. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28890. {
  28891. front: {
  28892. height: math.unit(6, "feet"),
  28893. weight: math.unit(150, "lb"),
  28894. name: "Front",
  28895. image: {
  28896. source: "./media/characters/pidge/front.svg",
  28897. extra: 620 / 588,
  28898. bottom: 9 / 629
  28899. }
  28900. },
  28901. back: {
  28902. height: math.unit(6, "feet"),
  28903. weight: math.unit(150, "lb"),
  28904. name: "Back",
  28905. image: {
  28906. source: "./media/characters/pidge/back.svg",
  28907. extra: 620 / 588,
  28908. bottom: 9 / 629
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Macro",
  28915. height: math.unit(1, "mile"),
  28916. default: true
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28922. {
  28923. front: {
  28924. height: math.unit(6, "feet"),
  28925. weight: math.unit(150, "lb"),
  28926. name: "Front",
  28927. image: {
  28928. source: "./media/characters/en/front.svg",
  28929. extra: 1697 / 1563,
  28930. bottom: 103 / 1800
  28931. }
  28932. },
  28933. back: {
  28934. height: math.unit(6, "feet"),
  28935. weight: math.unit(150, "lb"),
  28936. name: "Back",
  28937. image: {
  28938. source: "./media/characters/en/back.svg",
  28939. extra: 1700 / 1570,
  28940. bottom: 51 / 1751
  28941. }
  28942. },
  28943. frontDressed: {
  28944. height: math.unit(6, "feet"),
  28945. weight: math.unit(150, "lb"),
  28946. name: "Front (Dressed)",
  28947. image: {
  28948. source: "./media/characters/en/front-dressed.svg",
  28949. extra: 1697 / 1563,
  28950. bottom: 103 / 1800
  28951. }
  28952. },
  28953. backDressed: {
  28954. height: math.unit(6, "feet"),
  28955. weight: math.unit(150, "lb"),
  28956. name: "Back (Dressed)",
  28957. image: {
  28958. source: "./media/characters/en/back-dressed.svg",
  28959. extra: 1700 / 1570,
  28960. bottom: 51 / 1751
  28961. }
  28962. },
  28963. },
  28964. [
  28965. {
  28966. name: "Macro",
  28967. height: math.unit(210, "feet"),
  28968. default: true
  28969. },
  28970. ]
  28971. ))
  28972. characterMakers.push(() => makeCharacter(
  28973. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28974. {
  28975. front: {
  28976. height: math.unit(6, "feet"),
  28977. weight: math.unit(150, "lb"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/haze-orris/front.svg",
  28981. extra: 3975 / 3525,
  28982. bottom: 137 / 4112
  28983. }
  28984. },
  28985. },
  28986. [
  28987. {
  28988. name: "Micro",
  28989. height: math.unit(150, "mm"),
  28990. default: true
  28991. },
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(6, "feet"),
  28999. weight: math.unit(150, "lb"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/casselene-yaro/front.svg",
  29003. extra: 4721 / 4541,
  29004. bottom: 82 / 4803
  29005. }
  29006. },
  29007. back: {
  29008. height: math.unit(6, "feet"),
  29009. weight: math.unit(150, "lb"),
  29010. name: "Back",
  29011. image: {
  29012. source: "./media/characters/casselene-yaro/back.svg",
  29013. extra: 4569 / 4377,
  29014. bottom: 69 / 4638
  29015. }
  29016. },
  29017. frontDressed: {
  29018. height: math.unit(6, "feet"),
  29019. weight: math.unit(150, "lb"),
  29020. name: "Front-dressed",
  29021. image: {
  29022. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29023. extra: 4721 / 4541,
  29024. bottom: 82 / 4803
  29025. }
  29026. },
  29027. },
  29028. [
  29029. {
  29030. name: "Macro",
  29031. height: math.unit(190, "feet"),
  29032. default: true
  29033. },
  29034. ]
  29035. ))
  29036. characterMakers.push(() => makeCharacter(
  29037. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29038. {
  29039. front: {
  29040. height: math.unit(6, "feet"),
  29041. weight: math.unit(150, "lb"),
  29042. name: "Front",
  29043. image: {
  29044. source: "./media/characters/myra-rue-delore/front.svg",
  29045. extra: 1340 / 1308,
  29046. bottom: 67 / 1407
  29047. }
  29048. },
  29049. back: {
  29050. height: math.unit(6, "feet"),
  29051. weight: math.unit(150, "lb"),
  29052. name: "Back",
  29053. image: {
  29054. source: "./media/characters/myra-rue-delore/back.svg",
  29055. extra: 1341 / 1310,
  29056. bottom: 40 / 1381
  29057. }
  29058. },
  29059. frontDressed: {
  29060. height: math.unit(6, "feet"),
  29061. weight: math.unit(150, "lb"),
  29062. name: "Front (Dressed)",
  29063. image: {
  29064. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29065. extra: 1340 / 1308,
  29066. bottom: 67 / 1407
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Macro",
  29073. height: math.unit(150, "feet"),
  29074. default: true
  29075. },
  29076. ]
  29077. ))
  29078. characterMakers.push(() => makeCharacter(
  29079. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29080. {
  29081. front: {
  29082. height: math.unit(10, "feet"),
  29083. weight: math.unit(15015, "lb"),
  29084. name: "Front",
  29085. image: {
  29086. source: "./media/characters/fem!plat/front.svg",
  29087. extra: 2799 / 2604,
  29088. bottom: 149 / 2948
  29089. }
  29090. },
  29091. },
  29092. [
  29093. {
  29094. name: "Normal",
  29095. height: math.unit(10, "feet"),
  29096. default: true
  29097. },
  29098. {
  29099. name: "Macro",
  29100. height: math.unit(100, "feet")
  29101. },
  29102. {
  29103. name: "Megamacro",
  29104. height: math.unit(1000, "feet")
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(15 + 5 / 12, "feet"),
  29113. weight: math.unit(4600, "lb"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/neapolitan-ananassa/front.svg",
  29117. extra: 2903 / 2736,
  29118. bottom: 0 / 2903
  29119. }
  29120. },
  29121. side: {
  29122. height: math.unit(15 + 5 / 12, "feet"),
  29123. weight: math.unit(4600, "lb"),
  29124. name: "Side",
  29125. image: {
  29126. source: "./media/characters/neapolitan-ananassa/side.svg",
  29127. extra: 2925 / 2719,
  29128. bottom: 0 / 2925
  29129. }
  29130. },
  29131. back: {
  29132. height: math.unit(15 + 5 / 12, "feet"),
  29133. weight: math.unit(4600, "lb"),
  29134. name: "Back",
  29135. image: {
  29136. source: "./media/characters/neapolitan-ananassa/back.svg",
  29137. extra: 2903 / 2736,
  29138. bottom: 0 / 2903
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Normal",
  29145. height: math.unit(15 + 5 / 12, "feet"),
  29146. default: true
  29147. },
  29148. {
  29149. name: "Post-Millenium",
  29150. height: math.unit(35 + 5 / 12, "feet")
  29151. },
  29152. {
  29153. name: "Post-Era",
  29154. height: math.unit(450 + 5 / 12, "feet")
  29155. },
  29156. ]
  29157. ))
  29158. characterMakers.push(() => makeCharacter(
  29159. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29160. {
  29161. front: {
  29162. height: math.unit(300, "meters"),
  29163. weight: math.unit(125000, "tonnes"),
  29164. name: "Front",
  29165. image: {
  29166. source: "./media/characters/pazuzu/front.svg",
  29167. extra: 877 / 794,
  29168. bottom: 47 / 924
  29169. }
  29170. },
  29171. },
  29172. [
  29173. {
  29174. name: "Macro",
  29175. height: math.unit(300, "meters"),
  29176. default: true
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29182. {
  29183. side: {
  29184. height: math.unit(10 + 7 / 12, "feet"),
  29185. weight: math.unit(2.5, "tons"),
  29186. name: "Side",
  29187. image: {
  29188. source: "./media/characters/aasha/side.svg",
  29189. extra: 1345 / 1245,
  29190. bottom: 111 / 1456
  29191. }
  29192. },
  29193. back: {
  29194. height: math.unit(10 + 7 / 12, "feet"),
  29195. weight: math.unit(2.5, "tons"),
  29196. name: "Back",
  29197. image: {
  29198. source: "./media/characters/aasha/back.svg",
  29199. extra: 1133 / 1057,
  29200. bottom: 257 / 1390
  29201. }
  29202. },
  29203. },
  29204. [
  29205. {
  29206. name: "Normal",
  29207. height: math.unit(10 + 7 / 12, "feet"),
  29208. default: true
  29209. },
  29210. ]
  29211. ))
  29212. characterMakers.push(() => makeCharacter(
  29213. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29214. {
  29215. front: {
  29216. height: math.unit(6 + 3 / 12, "feet"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/nevan/front.svg",
  29220. extra: 704 / 704,
  29221. bottom: 28 / 732
  29222. }
  29223. },
  29224. back: {
  29225. height: math.unit(6 + 3 / 12, "feet"),
  29226. name: "Back",
  29227. image: {
  29228. source: "./media/characters/nevan/back.svg",
  29229. extra: 714 / 714,
  29230. bottom: 21 / 735
  29231. }
  29232. },
  29233. frontFlaccid: {
  29234. height: math.unit(6 + 3 / 12, "feet"),
  29235. name: "Front (Flaccid)",
  29236. image: {
  29237. source: "./media/characters/nevan/front-flaccid.svg",
  29238. extra: 704 / 704,
  29239. bottom: 28 / 732
  29240. }
  29241. },
  29242. frontErect: {
  29243. height: math.unit(6 + 3 / 12, "feet"),
  29244. name: "Front (Erect)",
  29245. image: {
  29246. source: "./media/characters/nevan/front-erect.svg",
  29247. extra: 704 / 704,
  29248. bottom: 28 / 732
  29249. }
  29250. },
  29251. backFlaccid: {
  29252. height: math.unit(6 + 3 / 12, "feet"),
  29253. name: "Back (Flaccid)",
  29254. image: {
  29255. source: "./media/characters/nevan/back-flaccid.svg",
  29256. extra: 714 / 714,
  29257. bottom: 21 / 735
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(6 + 3 / 12, "feet"),
  29265. default: true
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(4, "feet"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/arhan/front.svg",
  29277. extra: 3368 / 3133,
  29278. bottom: 0 / 3368
  29279. }
  29280. },
  29281. side: {
  29282. height: math.unit(4, "feet"),
  29283. name: "Side",
  29284. image: {
  29285. source: "./media/characters/arhan/side.svg",
  29286. extra: 3347 / 3105,
  29287. bottom: 0 / 3347
  29288. }
  29289. },
  29290. tongue: {
  29291. height: math.unit(1.42, "feet"),
  29292. name: "Tongue",
  29293. image: {
  29294. source: "./media/characters/arhan/tongue.svg"
  29295. }
  29296. },
  29297. head: {
  29298. height: math.unit(0.85, "feet"),
  29299. name: "Head",
  29300. image: {
  29301. source: "./media/characters/arhan/head.svg"
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(4, "feet"),
  29309. default: true
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(5 + 7.5 / 12, "feet"),
  29318. weight: math.unit(120, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/digi-duncan/front.svg",
  29322. extra: 330 / 326,
  29323. bottom: 16 / 346
  29324. }
  29325. },
  29326. side: {
  29327. height: math.unit(5 + 7.5 / 12, "feet"),
  29328. weight: math.unit(120, "lb"),
  29329. name: "Side",
  29330. image: {
  29331. source: "./media/characters/digi-duncan/side.svg",
  29332. extra: 341 / 337,
  29333. bottom: 1 / 342
  29334. }
  29335. },
  29336. back: {
  29337. height: math.unit(5 + 7.5 / 12, "feet"),
  29338. weight: math.unit(120, "lb"),
  29339. name: "Back",
  29340. image: {
  29341. source: "./media/characters/digi-duncan/back.svg",
  29342. extra: 330 / 326,
  29343. bottom: 12 / 342
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Speck",
  29350. height: math.unit(0.25, "mm")
  29351. },
  29352. {
  29353. name: "Micro",
  29354. height: math.unit(5, "mm")
  29355. },
  29356. {
  29357. name: "Tiny",
  29358. height: math.unit(0.5, "inches"),
  29359. default: true
  29360. },
  29361. {
  29362. name: "Human",
  29363. height: math.unit(5 + 7.5 / 12, "feet")
  29364. },
  29365. {
  29366. name: "Minigiant",
  29367. height: math.unit(8 + 5.25, "feet")
  29368. },
  29369. {
  29370. name: "Giant",
  29371. height: math.unit(2000, "feet")
  29372. },
  29373. {
  29374. name: "Mega",
  29375. height: math.unit(371.1, "miles")
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29381. {
  29382. front: {
  29383. height: math.unit(2, "meters"),
  29384. weight: math.unit(350, "kg"),
  29385. name: "Front",
  29386. image: {
  29387. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29388. extra: 898 / 838,
  29389. bottom: 9 / 907
  29390. }
  29391. },
  29392. },
  29393. [
  29394. {
  29395. name: "Micro",
  29396. height: math.unit(8, "meters")
  29397. },
  29398. {
  29399. name: "Normal",
  29400. height: math.unit(50, "meters"),
  29401. default: true
  29402. },
  29403. {
  29404. name: "Macro",
  29405. height: math.unit(500, "meters")
  29406. },
  29407. ]
  29408. ))
  29409. characterMakers.push(() => makeCharacter(
  29410. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29411. {
  29412. front: {
  29413. height: math.unit(6 + 6 / 12, "feet"),
  29414. name: "Front",
  29415. image: {
  29416. source: "./media/characters/khardesh/front.svg",
  29417. extra: 888 / 797,
  29418. bottom: 25 / 913
  29419. }
  29420. },
  29421. },
  29422. [
  29423. {
  29424. name: "Normal",
  29425. height: math.unit(6 + 6 / 12, "feet"),
  29426. default: true
  29427. },
  29428. {
  29429. name: "Normal+",
  29430. height: math.unit(4, "meters")
  29431. },
  29432. {
  29433. name: "Macro",
  29434. height: math.unit(50, "meters")
  29435. },
  29436. {
  29437. name: "Macro+",
  29438. height: math.unit(100, "meters")
  29439. },
  29440. {
  29441. name: "Megamacro",
  29442. height: math.unit(20, "km")
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(6, "feet"),
  29451. weight: math.unit(150, "lb"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/kosho/front.svg",
  29455. extra: 1847 / 1847,
  29456. bottom: 86 / 1933
  29457. }
  29458. },
  29459. },
  29460. [
  29461. {
  29462. name: "Second-stage micro",
  29463. height: math.unit(0.5, "inches")
  29464. },
  29465. {
  29466. name: "First-stage micro",
  29467. height: math.unit(6, "inches")
  29468. },
  29469. {
  29470. name: "Normal",
  29471. height: math.unit(6, "feet"),
  29472. default: true
  29473. },
  29474. {
  29475. name: "First-stage macro",
  29476. height: math.unit(72, "feet")
  29477. },
  29478. {
  29479. name: "Second-stage macro",
  29480. height: math.unit(864, "feet")
  29481. },
  29482. ]
  29483. ))
  29484. characterMakers.push(() => makeCharacter(
  29485. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29486. {
  29487. normal: {
  29488. height: math.unit(4 + 6 / 12, "feet"),
  29489. name: "Normal",
  29490. image: {
  29491. source: "./media/characters/hydra/normal.svg",
  29492. extra: 2833 / 2634,
  29493. bottom: 68 / 2901
  29494. }
  29495. },
  29496. smol: {
  29497. height: math.unit(0.705, "inches"),
  29498. name: "Smol",
  29499. image: {
  29500. source: "./media/characters/hydra/smol.svg",
  29501. extra: 2715 / 2540,
  29502. bottom: 0 / 2715
  29503. }
  29504. },
  29505. },
  29506. [
  29507. {
  29508. name: "Normal",
  29509. height: math.unit(4 + 6 / 12, "feet"),
  29510. default: true
  29511. }
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(0.6, "cm"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/daz/front.svg",
  29522. extra: 1682 / 1164,
  29523. bottom: 42 / 1724
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Normal",
  29530. height: math.unit(0.6, "cm"),
  29531. default: true
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(6, "feet"),
  29540. weight: math.unit(235, "lb"),
  29541. name: "Front",
  29542. image: {
  29543. source: "./media/characters/theo-pangolin/front.svg",
  29544. extra: 1996 / 1969,
  29545. bottom: 115 / 2111
  29546. }
  29547. },
  29548. back: {
  29549. height: math.unit(6, "feet"),
  29550. weight: math.unit(235, "lb"),
  29551. name: "Back",
  29552. image: {
  29553. source: "./media/characters/theo-pangolin/back.svg",
  29554. extra: 1979 / 1979,
  29555. bottom: 40 / 2019
  29556. }
  29557. },
  29558. feral: {
  29559. height: math.unit(2, "feet"),
  29560. weight: math.unit(30, "lb"),
  29561. name: "Feral",
  29562. image: {
  29563. source: "./media/characters/theo-pangolin/feral.svg",
  29564. extra: 803 / 791,
  29565. bottom: 181 / 984
  29566. }
  29567. },
  29568. footFive: {
  29569. height: math.unit(1.43, "feet"),
  29570. name: "Foot (Five Toes)",
  29571. image: {
  29572. source: "./media/characters/theo-pangolin/foot-five.svg"
  29573. }
  29574. },
  29575. footFour: {
  29576. height: math.unit(1.43, "feet"),
  29577. name: "Foot (Four Toes)",
  29578. image: {
  29579. source: "./media/characters/theo-pangolin/foot-four.svg"
  29580. }
  29581. },
  29582. handFour: {
  29583. height: math.unit(0.81, "feet"),
  29584. name: "Hand (Four Fingers)",
  29585. image: {
  29586. source: "./media/characters/theo-pangolin/hand-four.svg"
  29587. }
  29588. },
  29589. handThree: {
  29590. height: math.unit(0.81, "feet"),
  29591. name: "Hand (Three Fingers)",
  29592. image: {
  29593. source: "./media/characters/theo-pangolin/hand-three.svg"
  29594. }
  29595. },
  29596. headFront: {
  29597. height: math.unit(1.37, "feet"),
  29598. name: "Head (Front)",
  29599. image: {
  29600. source: "./media/characters/theo-pangolin/head-front.svg"
  29601. }
  29602. },
  29603. headSide: {
  29604. height: math.unit(1.43, "feet"),
  29605. name: "Head (Side)",
  29606. image: {
  29607. source: "./media/characters/theo-pangolin/head-side.svg"
  29608. }
  29609. },
  29610. tongue: {
  29611. height: math.unit(2.29, "feet"),
  29612. name: "Tongue",
  29613. image: {
  29614. source: "./media/characters/theo-pangolin/tongue.svg"
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Normal",
  29621. height: math.unit(6, "feet")
  29622. },
  29623. {
  29624. name: "Macro",
  29625. height: math.unit(400, "feet"),
  29626. default: true
  29627. },
  29628. ]
  29629. ))
  29630. characterMakers.push(() => makeCharacter(
  29631. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29632. {
  29633. front: {
  29634. height: math.unit(6, "inches"),
  29635. weight: math.unit(0.036, "kg"),
  29636. name: "Front",
  29637. image: {
  29638. source: "./media/characters/renée/front.svg",
  29639. extra: 900 / 886,
  29640. bottom: 8 / 908
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Nano",
  29647. height: math.unit(1, "nm")
  29648. },
  29649. {
  29650. name: "Micro",
  29651. height: math.unit(1, "mm")
  29652. },
  29653. {
  29654. name: "Normal",
  29655. height: math.unit(6, "inches")
  29656. },
  29657. {
  29658. name: "Macro",
  29659. height: math.unit(2000, "feet"),
  29660. default: true
  29661. },
  29662. {
  29663. name: "Megamacro",
  29664. height: math.unit(2, "km")
  29665. },
  29666. {
  29667. name: "Gigamacro",
  29668. height: math.unit(2000, "km")
  29669. },
  29670. {
  29671. name: "Teramacro",
  29672. height: math.unit(250000, "km")
  29673. },
  29674. ]
  29675. ))
  29676. characterMakers.push(() => makeCharacter(
  29677. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29678. {
  29679. front: {
  29680. height: math.unit(4, "meters"),
  29681. weight: math.unit(150, "kg"),
  29682. name: "Front",
  29683. image: {
  29684. source: "./media/characters/caledvwlch/front.svg",
  29685. extra: 1760 / 1551,
  29686. bottom: 28 / 1788
  29687. }
  29688. },
  29689. side: {
  29690. height: math.unit(4, "meters"),
  29691. weight: math.unit(150, "kg"),
  29692. name: "Side",
  29693. image: {
  29694. source: "./media/characters/caledvwlch/side.svg",
  29695. extra: 1605 / 1536,
  29696. bottom: 31 / 1636
  29697. }
  29698. },
  29699. back: {
  29700. height: math.unit(4, "meters"),
  29701. weight: math.unit(150, "kg"),
  29702. name: "Back",
  29703. image: {
  29704. source: "./media/characters/caledvwlch/back.svg",
  29705. extra: 1635 / 1565,
  29706. bottom: 27 / 1662
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "\"Incognito\"",
  29713. height: math.unit(4, "meters")
  29714. },
  29715. {
  29716. name: "Small rampage",
  29717. height: math.unit(600, "meters")
  29718. },
  29719. {
  29720. name: "Mega",
  29721. height: math.unit(30, "km")
  29722. },
  29723. {
  29724. name: "Home-size",
  29725. height: math.unit(50, "km"),
  29726. default: true
  29727. },
  29728. {
  29729. name: "Giga",
  29730. height: math.unit(300, "km")
  29731. },
  29732. {
  29733. name: "Lounging",
  29734. height: math.unit(11000, "km")
  29735. },
  29736. {
  29737. name: "Planet snacking",
  29738. height: math.unit(2000000, "km")
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(6, "feet"),
  29747. weight: math.unit(215, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/sapphire-svell/front.svg",
  29751. extra: 495 / 455,
  29752. bottom: 20 / 515
  29753. }
  29754. },
  29755. back: {
  29756. height: math.unit(6, "feet"),
  29757. weight: math.unit(216, "lb"),
  29758. name: "Back",
  29759. image: {
  29760. source: "./media/characters/sapphire-svell/back.svg",
  29761. extra: 497 / 477,
  29762. bottom: 7 / 504
  29763. }
  29764. },
  29765. maw: {
  29766. height: math.unit(1.57, "feet"),
  29767. name: "Maw",
  29768. image: {
  29769. source: "./media/characters/sapphire-svell/maw.svg"
  29770. }
  29771. },
  29772. foot: {
  29773. height: math.unit(1.07, "feet"),
  29774. name: "Foot",
  29775. image: {
  29776. source: "./media/characters/sapphire-svell/foot.svg"
  29777. }
  29778. },
  29779. toering: {
  29780. height: math.unit(1.7, "inch"),
  29781. name: "Toering",
  29782. image: {
  29783. source: "./media/characters/sapphire-svell/toering.svg"
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Normal",
  29790. height: math.unit(300, "feet"),
  29791. default: true
  29792. },
  29793. {
  29794. name: "Augmented",
  29795. height: math.unit(1250, "feet")
  29796. },
  29797. {
  29798. name: "Unleashed",
  29799. height: math.unit(3000, "feet")
  29800. },
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29805. {
  29806. side: {
  29807. height: math.unit(2 + 3 / 12, "feet"),
  29808. weight: math.unit(110, "lb"),
  29809. name: "Side",
  29810. image: {
  29811. source: "./media/characters/glitch-flux/side.svg",
  29812. extra: 997 / 805,
  29813. bottom: 20 / 1017
  29814. }
  29815. },
  29816. },
  29817. [
  29818. {
  29819. name: "Normal",
  29820. height: math.unit(2 + 3 / 12, "feet"),
  29821. default: true
  29822. },
  29823. ]
  29824. ))
  29825. characterMakers.push(() => makeCharacter(
  29826. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29827. {
  29828. front: {
  29829. height: math.unit(4, "meters"),
  29830. name: "Front",
  29831. image: {
  29832. source: "./media/characters/mid/front.svg",
  29833. extra: 507 / 476,
  29834. bottom: 17 / 524
  29835. }
  29836. },
  29837. back: {
  29838. height: math.unit(4, "meters"),
  29839. name: "Back",
  29840. image: {
  29841. source: "./media/characters/mid/back.svg",
  29842. extra: 519 / 487,
  29843. bottom: 7 / 526
  29844. }
  29845. },
  29846. stuck: {
  29847. height: math.unit(2.2, "meters"),
  29848. name: "Stuck",
  29849. image: {
  29850. source: "./media/characters/mid/stuck.svg",
  29851. extra: 1951 / 1869,
  29852. bottom: 88 / 2039
  29853. }
  29854. }
  29855. },
  29856. [
  29857. {
  29858. name: "Normal",
  29859. height: math.unit(4, "meters"),
  29860. default: true
  29861. },
  29862. {
  29863. name: "Big",
  29864. height: math.unit(10, "meters")
  29865. },
  29866. {
  29867. name: "Macro",
  29868. height: math.unit(800, "meters")
  29869. },
  29870. {
  29871. name: "Megamacro",
  29872. height: math.unit(100, "km")
  29873. },
  29874. {
  29875. name: "Overgrown",
  29876. height: math.unit(1, "parsec")
  29877. },
  29878. ]
  29879. ))
  29880. characterMakers.push(() => makeCharacter(
  29881. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29882. {
  29883. front: {
  29884. height: math.unit(2.5, "meters"),
  29885. weight: math.unit(225, "kg"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/iris/front.svg",
  29889. extra: 3348 / 3251,
  29890. bottom: 205 / 3553
  29891. }
  29892. },
  29893. maw: {
  29894. height: math.unit(0.56, "meter"),
  29895. name: "Maw",
  29896. image: {
  29897. source: "./media/characters/iris/maw.svg"
  29898. }
  29899. },
  29900. },
  29901. [
  29902. {
  29903. name: "Mewter cat",
  29904. height: math.unit(1.2, "meters")
  29905. },
  29906. {
  29907. name: "Minimacro",
  29908. height: math.unit(2.5, "meters"),
  29909. default: true
  29910. },
  29911. {
  29912. name: "Macro",
  29913. height: math.unit(180, "meters")
  29914. },
  29915. {
  29916. name: "Megamacro",
  29917. height: math.unit(2746, "meters")
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29923. {
  29924. front: {
  29925. height: math.unit(6, "feet"),
  29926. weight: math.unit(135, "lb"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/axel/front.svg",
  29930. extra: 908 / 908,
  29931. bottom: 58 / 966
  29932. }
  29933. },
  29934. side: {
  29935. height: math.unit(6, "feet"),
  29936. weight: math.unit(135, "lb"),
  29937. name: "Side",
  29938. image: {
  29939. source: "./media/characters/axel/side.svg",
  29940. extra: 958 / 958,
  29941. bottom: 11 / 969
  29942. }
  29943. },
  29944. back: {
  29945. height: math.unit(6, "feet"),
  29946. weight: math.unit(135, "lb"),
  29947. name: "Back",
  29948. image: {
  29949. source: "./media/characters/axel/back.svg",
  29950. extra: 887 / 887,
  29951. bottom: 34 / 921
  29952. }
  29953. },
  29954. head: {
  29955. height: math.unit(1.07, "feet"),
  29956. name: "Head",
  29957. image: {
  29958. source: "./media/characters/axel/head.svg"
  29959. }
  29960. },
  29961. beak: {
  29962. height: math.unit(1.4, "feet"),
  29963. name: "Beak",
  29964. image: {
  29965. source: "./media/characters/axel/beak.svg"
  29966. }
  29967. },
  29968. beakSide: {
  29969. height: math.unit(1.4, "feet"),
  29970. name: "Beak Side",
  29971. image: {
  29972. source: "./media/characters/axel/beak-side.svg"
  29973. }
  29974. },
  29975. sheath: {
  29976. height: math.unit(0.5, "feet"),
  29977. name: "Sheath",
  29978. image: {
  29979. source: "./media/characters/axel/sheath.svg"
  29980. }
  29981. },
  29982. dick: {
  29983. height: math.unit(0.98, "feet"),
  29984. name: "Dick",
  29985. image: {
  29986. source: "./media/characters/axel/dick.svg"
  29987. }
  29988. },
  29989. },
  29990. [
  29991. {
  29992. name: "Macro",
  29993. height: math.unit(68, "meters"),
  29994. default: true
  29995. },
  29996. ]
  29997. ))
  29998. characterMakers.push(() => makeCharacter(
  29999. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30000. {
  30001. front: {
  30002. height: math.unit(3.5, "meters"),
  30003. weight: math.unit(1200, "kg"),
  30004. name: "Front",
  30005. image: {
  30006. source: "./media/characters/joanna/front.svg",
  30007. extra: 1596 / 1488,
  30008. bottom: 29 / 1625
  30009. }
  30010. },
  30011. back: {
  30012. height: math.unit(3.5, "meters"),
  30013. weight: math.unit(1200, "kg"),
  30014. name: "Back",
  30015. image: {
  30016. source: "./media/characters/joanna/back.svg",
  30017. extra: 1594 / 1495,
  30018. bottom: 26 / 1620
  30019. }
  30020. },
  30021. frontShorts: {
  30022. height: math.unit(3.5, "meters"),
  30023. weight: math.unit(1200, "kg"),
  30024. name: "Front (Shorts)",
  30025. image: {
  30026. source: "./media/characters/joanna/front-shorts.svg",
  30027. extra: 1596 / 1488,
  30028. bottom: 29 / 1625
  30029. }
  30030. },
  30031. frontBiker: {
  30032. height: math.unit(3.5, "meters"),
  30033. weight: math.unit(1200, "kg"),
  30034. name: "Front (Biker)",
  30035. image: {
  30036. source: "./media/characters/joanna/front-biker.svg",
  30037. extra: 1596 / 1488,
  30038. bottom: 29 / 1625
  30039. }
  30040. },
  30041. backBiker: {
  30042. height: math.unit(3.5, "meters"),
  30043. weight: math.unit(1200, "kg"),
  30044. name: "Back (Biker)",
  30045. image: {
  30046. source: "./media/characters/joanna/back-biker.svg",
  30047. extra: 1594 / 1495,
  30048. bottom: 88 / 1682
  30049. }
  30050. },
  30051. bikeLeft: {
  30052. height: math.unit(2.4, "meters"),
  30053. weight: math.unit(1600, "kg"),
  30054. name: "Bike (Left)",
  30055. image: {
  30056. source: "./media/characters/joanna/bike-left.svg",
  30057. extra: 720 / 720,
  30058. bottom: 8 / 728
  30059. }
  30060. },
  30061. bikeRight: {
  30062. height: math.unit(2.4, "meters"),
  30063. weight: math.unit(1600, "kg"),
  30064. name: "Bike (Right)",
  30065. image: {
  30066. source: "./media/characters/joanna/bike-right.svg",
  30067. extra: 720 / 720,
  30068. bottom: 8 / 728
  30069. }
  30070. },
  30071. },
  30072. [
  30073. {
  30074. name: "Incognito",
  30075. height: math.unit(3.5, "meters")
  30076. },
  30077. {
  30078. name: "Casual Big",
  30079. height: math.unit(200, "meters")
  30080. },
  30081. {
  30082. name: "Macro",
  30083. height: math.unit(600, "meters")
  30084. },
  30085. {
  30086. name: "Original",
  30087. height: math.unit(20, "km"),
  30088. default: true
  30089. },
  30090. {
  30091. name: "Giga",
  30092. height: math.unit(400, "km")
  30093. },
  30094. {
  30095. name: "Lounging",
  30096. height: math.unit(1500, "km")
  30097. },
  30098. {
  30099. name: "Planetary",
  30100. height: math.unit(200000, "km")
  30101. },
  30102. ]
  30103. ))
  30104. characterMakers.push(() => makeCharacter(
  30105. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30106. {
  30107. front: {
  30108. height: math.unit(6, "feet"),
  30109. weight: math.unit(150, "lb"),
  30110. name: "Front",
  30111. image: {
  30112. source: "./media/characters/hugo-sigil/front.svg",
  30113. extra: 522 / 500,
  30114. bottom: 2 / 524
  30115. }
  30116. },
  30117. back: {
  30118. height: math.unit(6, "feet"),
  30119. weight: math.unit(150, "lb"),
  30120. name: "Back",
  30121. image: {
  30122. source: "./media/characters/hugo-sigil/back.svg",
  30123. extra: 519 / 495,
  30124. bottom: 5 / 524
  30125. }
  30126. },
  30127. maw: {
  30128. height: math.unit(1.4, "feet"),
  30129. weight: math.unit(150, "lb"),
  30130. name: "Maw",
  30131. image: {
  30132. source: "./media/characters/hugo-sigil/maw.svg"
  30133. }
  30134. },
  30135. feet: {
  30136. height: math.unit(1.56, "feet"),
  30137. weight: math.unit(150, "lb"),
  30138. name: "Feet",
  30139. image: {
  30140. source: "./media/characters/hugo-sigil/feet.svg",
  30141. extra: 177 / 177,
  30142. bottom: 12 / 189
  30143. }
  30144. },
  30145. },
  30146. [
  30147. {
  30148. name: "Normal",
  30149. height: math.unit(6, "feet")
  30150. },
  30151. {
  30152. name: "Macro",
  30153. height: math.unit(200, "feet"),
  30154. default: true
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30160. {
  30161. front: {
  30162. height: math.unit(6, "feet"),
  30163. weight: math.unit(150, "lb"),
  30164. name: "Front",
  30165. image: {
  30166. source: "./media/characters/peri/front.svg",
  30167. extra: 2354 / 2233,
  30168. bottom: 49 / 2403
  30169. }
  30170. },
  30171. },
  30172. [
  30173. {
  30174. name: "Really Small",
  30175. height: math.unit(1, "nm")
  30176. },
  30177. {
  30178. name: "Micro",
  30179. height: math.unit(4, "inches")
  30180. },
  30181. {
  30182. name: "Normal",
  30183. height: math.unit(7, "inches"),
  30184. default: true
  30185. },
  30186. {
  30187. name: "Macro",
  30188. height: math.unit(400, "feet")
  30189. },
  30190. {
  30191. name: "Megamacro",
  30192. height: math.unit(100, "miles")
  30193. },
  30194. ]
  30195. ))
  30196. characterMakers.push(() => makeCharacter(
  30197. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30198. {
  30199. frontSlim: {
  30200. height: math.unit(7, "feet"),
  30201. name: "Front (Slim)",
  30202. image: {
  30203. source: "./media/characters/issilora/front-slim.svg",
  30204. extra: 529 / 449,
  30205. bottom: 53 / 582
  30206. }
  30207. },
  30208. sideSlim: {
  30209. height: math.unit(7, "feet"),
  30210. name: "Side (Slim)",
  30211. image: {
  30212. source: "./media/characters/issilora/side-slim.svg",
  30213. extra: 570 / 480,
  30214. bottom: 30 / 600
  30215. }
  30216. },
  30217. backSlim: {
  30218. height: math.unit(7, "feet"),
  30219. name: "Back (Slim)",
  30220. image: {
  30221. source: "./media/characters/issilora/back-slim.svg",
  30222. extra: 537 / 455,
  30223. bottom: 46 / 583
  30224. }
  30225. },
  30226. frontBuff: {
  30227. height: math.unit(7, "feet"),
  30228. name: "Front (Buff)",
  30229. image: {
  30230. source: "./media/characters/issilora/front-buff.svg",
  30231. extra: 2310 / 2035,
  30232. bottom: 335 / 2645
  30233. }
  30234. },
  30235. head: {
  30236. height: math.unit(1.94, "feet"),
  30237. name: "Head",
  30238. image: {
  30239. source: "./media/characters/issilora/head.svg"
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Minimum",
  30246. height: math.unit(7, "feet")
  30247. },
  30248. {
  30249. name: "Comfortable",
  30250. height: math.unit(17, "feet")
  30251. },
  30252. {
  30253. name: "Fun Size",
  30254. height: math.unit(47, "feet")
  30255. },
  30256. {
  30257. name: "Natural Macro",
  30258. height: math.unit(137, "feet"),
  30259. default: true
  30260. },
  30261. {
  30262. name: "Maximum Kaiju",
  30263. height: math.unit(397, "feet")
  30264. },
  30265. ]
  30266. ))
  30267. characterMakers.push(() => makeCharacter(
  30268. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30269. {
  30270. front: {
  30271. height: math.unit(50 + 9/12, "feet"),
  30272. weight: math.unit(32.8, "tons"),
  30273. name: "Front",
  30274. image: {
  30275. source: "./media/characters/irb'iiritaahn/front.svg",
  30276. extra: 1878/1826,
  30277. bottom: 326/2204
  30278. }
  30279. },
  30280. back: {
  30281. height: math.unit(50 + 9/12, "feet"),
  30282. weight: math.unit(32.8, "tons"),
  30283. name: "Back",
  30284. image: {
  30285. source: "./media/characters/irb'iiritaahn/back.svg",
  30286. extra: 2052/2018,
  30287. bottom: 152/2204
  30288. }
  30289. },
  30290. head: {
  30291. height: math.unit(12.86, "feet"),
  30292. name: "Head",
  30293. image: {
  30294. source: "./media/characters/irb'iiritaahn/head.svg"
  30295. }
  30296. },
  30297. maw: {
  30298. height: math.unit(9.66, "feet"),
  30299. name: "Maw",
  30300. image: {
  30301. source: "./media/characters/irb'iiritaahn/maw.svg"
  30302. }
  30303. },
  30304. frontDick: {
  30305. height: math.unit(8.78461, "feet"),
  30306. name: "Front Dick",
  30307. image: {
  30308. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30309. }
  30310. },
  30311. rearDick: {
  30312. height: math.unit(8.78461, "feet"),
  30313. name: "Rear Dick",
  30314. image: {
  30315. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30316. }
  30317. },
  30318. rearDickUnfolded: {
  30319. height: math.unit(8.78, "feet"),
  30320. name: "Rear Dick (Unfolded)",
  30321. image: {
  30322. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30323. }
  30324. },
  30325. wings: {
  30326. height: math.unit(43, "feet"),
  30327. name: "Wings",
  30328. image: {
  30329. source: "./media/characters/irb'iiritaahn/wings.svg"
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Macro",
  30336. height: math.unit(50 + 9/12, "feet"),
  30337. default: true
  30338. },
  30339. ]
  30340. ))
  30341. characterMakers.push(() => makeCharacter(
  30342. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30343. {
  30344. front: {
  30345. height: math.unit(205, "cm"),
  30346. weight: math.unit(102, "kg"),
  30347. name: "Front",
  30348. image: {
  30349. source: "./media/characters/irbisgreif/front.svg",
  30350. extra: 785/706,
  30351. bottom: 13/798
  30352. }
  30353. },
  30354. back: {
  30355. height: math.unit(205, "cm"),
  30356. weight: math.unit(102, "kg"),
  30357. name: "Back",
  30358. image: {
  30359. source: "./media/characters/irbisgreif/back.svg",
  30360. extra: 713/701,
  30361. bottom: 26/739
  30362. }
  30363. },
  30364. frontDressed: {
  30365. height: math.unit(216, "cm"),
  30366. weight: math.unit(102, "kg"),
  30367. name: "Front-dressed",
  30368. image: {
  30369. source: "./media/characters/irbisgreif/front-dressed.svg",
  30370. extra: 902/776,
  30371. bottom: 14/916
  30372. }
  30373. },
  30374. sideDressed: {
  30375. height: math.unit(195, "cm"),
  30376. weight: math.unit(102, "kg"),
  30377. name: "Side-dressed",
  30378. image: {
  30379. source: "./media/characters/irbisgreif/side-dressed.svg",
  30380. extra: 788/688,
  30381. bottom: 21/809
  30382. }
  30383. },
  30384. backDressed: {
  30385. height: math.unit(216, "cm"),
  30386. weight: math.unit(102, "kg"),
  30387. name: "Back-dressed",
  30388. image: {
  30389. source: "./media/characters/irbisgreif/back-dressed.svg",
  30390. extra: 901/783,
  30391. bottom: 10/911
  30392. }
  30393. },
  30394. dick: {
  30395. height: math.unit(0.49, "feet"),
  30396. name: "Dick",
  30397. image: {
  30398. source: "./media/characters/irbisgreif/dick.svg"
  30399. }
  30400. },
  30401. wingTop: {
  30402. height: math.unit(1.93 , "feet"),
  30403. name: "Wing-top",
  30404. image: {
  30405. source: "./media/characters/irbisgreif/wing-top.svg"
  30406. }
  30407. },
  30408. wingBottom: {
  30409. height: math.unit(1.93 , "feet"),
  30410. name: "Wing-bottom",
  30411. image: {
  30412. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30413. }
  30414. },
  30415. },
  30416. [
  30417. {
  30418. name: "Normal",
  30419. height: math.unit(216, "cm"),
  30420. default: true
  30421. },
  30422. ]
  30423. ))
  30424. characterMakers.push(() => makeCharacter(
  30425. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30426. {
  30427. front: {
  30428. height: math.unit(6, "feet"),
  30429. weight: math.unit(150, "lb"),
  30430. name: "Front",
  30431. image: {
  30432. source: "./media/characters/pride/front.svg",
  30433. extra: 1299/1230,
  30434. bottom: 18/1317
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Normal",
  30441. height: math.unit(7, "feet")
  30442. },
  30443. {
  30444. name: "Mini-macro",
  30445. height: math.unit(11, "feet")
  30446. },
  30447. {
  30448. name: "Macro",
  30449. height: math.unit(15, "meters"),
  30450. default: true
  30451. },
  30452. {
  30453. name: "Macro+",
  30454. height: math.unit(40, "meters")
  30455. },
  30456. ]
  30457. ))
  30458. characterMakers.push(() => makeCharacter(
  30459. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30460. {
  30461. front: {
  30462. height: math.unit(4 + 2 / 12, "feet"),
  30463. weight: math.unit(95, "lb"),
  30464. name: "Front",
  30465. image: {
  30466. source: "./media/characters/vaelophis-nyx/front.svg",
  30467. extra: 2532/2330,
  30468. bottom: 0/2532
  30469. }
  30470. },
  30471. back: {
  30472. height: math.unit(4 + 2 / 12, "feet"),
  30473. weight: math.unit(95, "lb"),
  30474. name: "Back",
  30475. image: {
  30476. source: "./media/characters/vaelophis-nyx/back.svg",
  30477. extra: 2484/2361,
  30478. bottom: 0/2484
  30479. }
  30480. },
  30481. feralSide: {
  30482. height: math.unit(2 + 1/12, "feet"),
  30483. weight: math.unit(20, "lb"),
  30484. name: "Feral (Side)",
  30485. image: {
  30486. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30487. extra: 1721/1581,
  30488. bottom: 70/1791
  30489. }
  30490. },
  30491. feralLazing: {
  30492. height: math.unit(1.08, "feet"),
  30493. weight: math.unit(20, "lb"),
  30494. name: "Feral (Lazing)",
  30495. image: {
  30496. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30497. extra: 822/822,
  30498. bottom: 248/1070
  30499. }
  30500. },
  30501. ear: {
  30502. height: math.unit(0.416, "feet"),
  30503. name: "Ear",
  30504. image: {
  30505. source: "./media/characters/vaelophis-nyx/ear.svg"
  30506. }
  30507. },
  30508. eye: {
  30509. height: math.unit(0.0748, "feet"),
  30510. name: "Eye",
  30511. image: {
  30512. source: "./media/characters/vaelophis-nyx/eye.svg"
  30513. }
  30514. },
  30515. mouth: {
  30516. height: math.unit(0.378, "feet"),
  30517. name: "Mouth",
  30518. image: {
  30519. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30520. }
  30521. },
  30522. spade: {
  30523. height: math.unit(0.55, "feet"),
  30524. name: "Spade",
  30525. image: {
  30526. source: "./media/characters/vaelophis-nyx/spade.svg"
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Normal",
  30533. height: math.unit(4 + 2/12, "feet"),
  30534. default: true
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30540. {
  30541. front: {
  30542. height: math.unit(7, "feet"),
  30543. weight: math.unit(231, "lb"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/flux/front.svg",
  30547. extra: 919/871,
  30548. bottom: 0/919
  30549. }
  30550. },
  30551. back: {
  30552. height: math.unit(7, "feet"),
  30553. weight: math.unit(231, "lb"),
  30554. name: "Back",
  30555. image: {
  30556. source: "./media/characters/flux/back.svg",
  30557. extra: 1040/992,
  30558. bottom: 0/1040
  30559. }
  30560. },
  30561. frontDressed: {
  30562. height: math.unit(7, "feet"),
  30563. weight: math.unit(231, "lb"),
  30564. name: "Front (Dressed)",
  30565. image: {
  30566. source: "./media/characters/flux/front-dressed.svg",
  30567. extra: 919/871,
  30568. bottom: 0/919
  30569. }
  30570. },
  30571. feralSide: {
  30572. height: math.unit(5, "feet"),
  30573. weight: math.unit(150, "lb"),
  30574. name: "Feral (Side)",
  30575. image: {
  30576. source: "./media/characters/flux/feral-side.svg",
  30577. extra: 598/528,
  30578. bottom: 28/626
  30579. }
  30580. },
  30581. head: {
  30582. height: math.unit(1.585, "feet"),
  30583. name: "Head",
  30584. image: {
  30585. source: "./media/characters/flux/head.svg"
  30586. }
  30587. },
  30588. headSide: {
  30589. height: math.unit(1.74, "feet"),
  30590. name: "Head (Side)",
  30591. image: {
  30592. source: "./media/characters/flux/head-side.svg"
  30593. }
  30594. },
  30595. headSideFire: {
  30596. height: math.unit(1.76, "feet"),
  30597. name: "Head (Side, Fire)",
  30598. image: {
  30599. source: "./media/characters/flux/head-side-fire.svg"
  30600. }
  30601. },
  30602. },
  30603. [
  30604. {
  30605. name: "Normal",
  30606. height: math.unit(7, "feet"),
  30607. default: true
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30613. {
  30614. front: {
  30615. height: math.unit(9, "feet"),
  30616. weight: math.unit(1012, "lb"),
  30617. name: "Front",
  30618. image: {
  30619. source: "./media/characters/ulfra-lupae/front.svg",
  30620. extra: 1083/1011,
  30621. bottom: 67/1150
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Micro",
  30628. height: math.unit(6, "inches")
  30629. },
  30630. {
  30631. name: "Socializing",
  30632. height: math.unit(6 + 5/12, "feet")
  30633. },
  30634. {
  30635. name: "Normal",
  30636. height: math.unit(9, "feet"),
  30637. default: true
  30638. },
  30639. {
  30640. name: "Macro",
  30641. height: math.unit(150, "feet")
  30642. },
  30643. ]
  30644. ))
  30645. characterMakers.push(() => makeCharacter(
  30646. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30647. {
  30648. front: {
  30649. height: math.unit(5 + 2/12, "feet"),
  30650. weight: math.unit(120, "lb"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/timber/front.svg",
  30654. extra: 2814/2705,
  30655. bottom: 181/2995
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(5 + 2/12, "feet"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(5 + 7/12, "feet"),
  30672. weight: math.unit(220, "lb"),
  30673. name: "Front",
  30674. image: {
  30675. source: "./media/characters/nicki/front.svg",
  30676. extra: 453/419,
  30677. bottom: 7/460
  30678. }
  30679. },
  30680. frontAlt: {
  30681. height: math.unit(5 + 7/12, "feet"),
  30682. weight: math.unit(220, "lb"),
  30683. name: "Front-alt",
  30684. image: {
  30685. source: "./media/characters/nicki/front-alt.svg",
  30686. extra: 435/411,
  30687. bottom: 12/447
  30688. }
  30689. },
  30690. back: {
  30691. height: math.unit(5 + 7/12, "feet"),
  30692. weight: math.unit(220, "lb"),
  30693. name: "Back",
  30694. image: {
  30695. source: "./media/characters/nicki/back.svg",
  30696. extra: 440/413,
  30697. bottom: 19/459
  30698. }
  30699. },
  30700. taur: {
  30701. height: math.unit(7 + 6/12, "feet"),
  30702. weight: math.unit(700, "lb"),
  30703. name: "Taur",
  30704. image: {
  30705. source: "./media/characters/nicki/taur.svg",
  30706. extra: 975/773,
  30707. bottom: 0/975
  30708. }
  30709. },
  30710. frontNsfw: {
  30711. height: math.unit(5 + 7/12, "feet"),
  30712. weight: math.unit(220, "lb"),
  30713. name: "Front (NSFW)",
  30714. image: {
  30715. source: "./media/characters/nicki/front-nsfw.svg",
  30716. extra: 453/419,
  30717. bottom: 7/460
  30718. }
  30719. },
  30720. frontNsfwAlt: {
  30721. height: math.unit(5 + 7/12, "feet"),
  30722. weight: math.unit(220, "lb"),
  30723. name: "Front (Alt, NSFW)",
  30724. image: {
  30725. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30726. extra: 435/411,
  30727. bottom: 12/447
  30728. }
  30729. },
  30730. backNsfw: {
  30731. height: math.unit(5 + 7/12, "feet"),
  30732. weight: math.unit(220, "lb"),
  30733. name: "Back (NSFW)",
  30734. image: {
  30735. source: "./media/characters/nicki/back-nsfw.svg",
  30736. extra: 440/413,
  30737. bottom: 19/459
  30738. }
  30739. },
  30740. head: {
  30741. height: math.unit(2.1, "feet"),
  30742. name: "Head",
  30743. image: {
  30744. source: "./media/characters/nicki/head.svg"
  30745. }
  30746. },
  30747. paw: {
  30748. height: math.unit(1.88, "feet"),
  30749. name: "Paw",
  30750. image: {
  30751. source: "./media/characters/nicki/paw.svg"
  30752. }
  30753. },
  30754. },
  30755. [
  30756. {
  30757. name: "Normal",
  30758. height: math.unit(5 + 7/12, "feet"),
  30759. default: true
  30760. },
  30761. ]
  30762. ))
  30763. characterMakers.push(() => makeCharacter(
  30764. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30765. {
  30766. front: {
  30767. height: math.unit(7 + 10/12, "feet"),
  30768. weight: math.unit(3.5, "tons"),
  30769. name: "Front",
  30770. image: {
  30771. source: "./media/characters/lee/front.svg",
  30772. extra: 1773/1615,
  30773. bottom: 86/1859
  30774. }
  30775. },
  30776. hand: {
  30777. height: math.unit(1.78, "feet"),
  30778. name: "Hand",
  30779. image: {
  30780. source: "./media/characters/lee/hand.svg"
  30781. }
  30782. },
  30783. maw: {
  30784. height: math.unit(1.18, "feet"),
  30785. name: "Maw",
  30786. image: {
  30787. source: "./media/characters/lee/maw.svg"
  30788. }
  30789. },
  30790. },
  30791. [
  30792. {
  30793. name: "Normal",
  30794. height: math.unit(7 + 10/12, "feet"),
  30795. default: true
  30796. },
  30797. ]
  30798. ))
  30799. characterMakers.push(() => makeCharacter(
  30800. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30801. {
  30802. front: {
  30803. height: math.unit(9, "feet"),
  30804. name: "Front",
  30805. image: {
  30806. source: "./media/characters/guti/front.svg",
  30807. extra: 4551/4355,
  30808. bottom: 123/4674
  30809. }
  30810. },
  30811. tongue: {
  30812. height: math.unit(1, "feet"),
  30813. name: "Tongue",
  30814. image: {
  30815. source: "./media/characters/guti/tongue.svg"
  30816. }
  30817. },
  30818. paw: {
  30819. height: math.unit(1.18, "feet"),
  30820. name: "Paw",
  30821. image: {
  30822. source: "./media/characters/guti/paw.svg"
  30823. }
  30824. },
  30825. },
  30826. [
  30827. {
  30828. name: "Normal",
  30829. height: math.unit(9, "feet"),
  30830. default: true
  30831. },
  30832. ]
  30833. ))
  30834. characterMakers.push(() => makeCharacter(
  30835. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30836. {
  30837. side: {
  30838. height: math.unit(5, "meters"),
  30839. name: "Side",
  30840. image: {
  30841. source: "./media/characters/vesper/side.svg",
  30842. extra: 1605/1518,
  30843. bottom: 0/1605
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Small",
  30850. height: math.unit(5, "meters")
  30851. },
  30852. {
  30853. name: "Sage",
  30854. height: math.unit(100, "meters"),
  30855. default: true
  30856. },
  30857. {
  30858. name: "Fun Size",
  30859. height: math.unit(600, "meters")
  30860. },
  30861. {
  30862. name: "Goddess",
  30863. height: math.unit(20000, "km")
  30864. },
  30865. {
  30866. name: "Maximum",
  30867. height: math.unit(5, "galaxies")
  30868. },
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30873. {
  30874. front: {
  30875. height: math.unit(6 + 3/12, "feet"),
  30876. weight: math.unit(190, "lb"),
  30877. name: "Front",
  30878. image: {
  30879. source: "./media/characters/gawain/front.svg",
  30880. extra: 2222/2139,
  30881. bottom: 90/2312
  30882. }
  30883. },
  30884. back: {
  30885. height: math.unit(6 + 3/12, "feet"),
  30886. weight: math.unit(190, "lb"),
  30887. name: "Back",
  30888. image: {
  30889. source: "./media/characters/gawain/back.svg",
  30890. extra: 2199/2111,
  30891. bottom: 73/2272
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Normal",
  30898. height: math.unit(6 + 3/12, "feet"),
  30899. default: true
  30900. },
  30901. ]
  30902. ))
  30903. characterMakers.push(() => makeCharacter(
  30904. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30905. {
  30906. side: {
  30907. height: math.unit(3.5, "meters"),
  30908. weight: math.unit(16000, "lb"),
  30909. name: "Side",
  30910. image: {
  30911. source: "./media/characters/dascalti/side.svg",
  30912. extra: 392/273,
  30913. bottom: 47/439
  30914. }
  30915. },
  30916. breath: {
  30917. height: math.unit(7.4, "feet"),
  30918. name: "Breath",
  30919. image: {
  30920. source: "./media/characters/dascalti/breath.svg"
  30921. }
  30922. },
  30923. fed: {
  30924. height: math.unit(3.6, "meters"),
  30925. weight: math.unit(16000, "lb"),
  30926. name: "Fed",
  30927. image: {
  30928. source: "./media/characters/dascalti/fed.svg",
  30929. extra: 1419/820,
  30930. bottom: 95/1514
  30931. }
  30932. },
  30933. },
  30934. [
  30935. {
  30936. name: "Normal",
  30937. height: math.unit(3.5, "meters"),
  30938. default: true
  30939. },
  30940. ]
  30941. ))
  30942. characterMakers.push(() => makeCharacter(
  30943. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30944. {
  30945. front: {
  30946. height: math.unit(3 + 5/12, "feet"),
  30947. name: "Front",
  30948. image: {
  30949. source: "./media/characters/mauve/front.svg",
  30950. extra: 1126/1033,
  30951. bottom: 65/1191
  30952. }
  30953. },
  30954. side: {
  30955. height: math.unit(3 + 5/12, "feet"),
  30956. name: "Side",
  30957. image: {
  30958. source: "./media/characters/mauve/side.svg",
  30959. extra: 1089/1001,
  30960. bottom: 29/1118
  30961. }
  30962. },
  30963. back: {
  30964. height: math.unit(3 + 5/12, "feet"),
  30965. name: "Back",
  30966. image: {
  30967. source: "./media/characters/mauve/back.svg",
  30968. extra: 1173/1053,
  30969. bottom: 109/1282
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(3 + 5/12, "feet"),
  30977. default: true
  30978. },
  30979. ]
  30980. ))
  30981. characterMakers.push(() => makeCharacter(
  30982. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30983. {
  30984. front: {
  30985. height: math.unit(6 + 3/12, "feet"),
  30986. weight: math.unit(430, "lb"),
  30987. name: "Front",
  30988. image: {
  30989. source: "./media/characters/carlos/front.svg",
  30990. extra: 1964/1913,
  30991. bottom: 70/2034
  30992. }
  30993. },
  30994. },
  30995. [
  30996. {
  30997. name: "Normal",
  30998. height: math.unit(6 + 3/12, "feet"),
  30999. default: true
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31005. {
  31006. back: {
  31007. height: math.unit(5 + 10/12, "feet"),
  31008. weight: math.unit(200, "lb"),
  31009. name: "Back",
  31010. image: {
  31011. source: "./media/characters/jax/back.svg",
  31012. extra: 764/739,
  31013. bottom: 25/789
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Normal",
  31020. height: math.unit(5 + 10/12, "feet"),
  31021. default: true
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31027. {
  31028. front: {
  31029. height: math.unit(8, "feet"),
  31030. weight: math.unit(250, "lb"),
  31031. name: "Front",
  31032. image: {
  31033. source: "./media/characters/eikthynir/front.svg",
  31034. extra: 1332/1166,
  31035. bottom: 82/1414
  31036. }
  31037. },
  31038. back: {
  31039. height: math.unit(8, "feet"),
  31040. weight: math.unit(250, "lb"),
  31041. name: "Back",
  31042. image: {
  31043. source: "./media/characters/eikthynir/back.svg",
  31044. extra: 1342/1190,
  31045. bottom: 19/1361
  31046. }
  31047. },
  31048. dick: {
  31049. height: math.unit(2.35, "feet"),
  31050. name: "Dick",
  31051. image: {
  31052. source: "./media/characters/eikthynir/dick.svg"
  31053. }
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Normal",
  31059. height: math.unit(8, "feet"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(99, "meters"),
  31069. weight: math.unit(13000, "tons"),
  31070. name: "Front",
  31071. image: {
  31072. source: "./media/characters/zlmos/front.svg",
  31073. extra: 2202/1992,
  31074. bottom: 315/2517
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Macro",
  31081. height: math.unit(99, "meters"),
  31082. default: true
  31083. },
  31084. ]
  31085. ))
  31086. characterMakers.push(() => makeCharacter(
  31087. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31088. {
  31089. front: {
  31090. height: math.unit(6 + 5/12, "feet"),
  31091. name: "Front",
  31092. image: {
  31093. source: "./media/characters/purri/front.svg",
  31094. extra: 1698/1610,
  31095. bottom: 32/1730
  31096. }
  31097. },
  31098. frontAlt: {
  31099. height: math.unit(6 + 5/12, "feet"),
  31100. name: "Front (Alt)",
  31101. image: {
  31102. source: "./media/characters/purri/front-alt.svg",
  31103. extra: 450/420,
  31104. bottom: 26/476
  31105. }
  31106. },
  31107. boots: {
  31108. height: math.unit(5.5, "feet"),
  31109. name: "Boots",
  31110. image: {
  31111. source: "./media/characters/purri/boots.svg",
  31112. extra: 905/853,
  31113. bottom: 18/923
  31114. }
  31115. },
  31116. lying: {
  31117. height: math.unit(2, "feet"),
  31118. name: "Lying",
  31119. image: {
  31120. source: "./media/characters/purri/lying.svg",
  31121. extra: 940/843,
  31122. bottom: 146/1086
  31123. }
  31124. },
  31125. devious: {
  31126. height: math.unit(1.77, "feet"),
  31127. name: "Devious",
  31128. image: {
  31129. source: "./media/characters/purri/devious.svg",
  31130. extra: 1440/1155,
  31131. bottom: 147/1587
  31132. }
  31133. },
  31134. bean: {
  31135. height: math.unit(1.94, "feet"),
  31136. name: "Bean",
  31137. image: {
  31138. source: "./media/characters/purri/bean.svg"
  31139. }
  31140. },
  31141. },
  31142. [
  31143. {
  31144. name: "Micro",
  31145. height: math.unit(1, "mm")
  31146. },
  31147. {
  31148. name: "Normal",
  31149. height: math.unit(6 + 5/12, "feet"),
  31150. default: true
  31151. },
  31152. {
  31153. name: "Macro :3c",
  31154. height: math.unit(2, "miles")
  31155. },
  31156. ]
  31157. ))
  31158. characterMakers.push(() => makeCharacter(
  31159. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31160. {
  31161. front: {
  31162. height: math.unit(6 + 2/12, "feet"),
  31163. weight: math.unit(250, "lb"),
  31164. name: "Front",
  31165. image: {
  31166. source: "./media/characters/moonlight/front.svg",
  31167. extra: 1044/908,
  31168. bottom: 56/1100
  31169. }
  31170. },
  31171. feral: {
  31172. height: math.unit(3 + 1/12, "feet"),
  31173. weight: math.unit(50, "kg"),
  31174. name: "Feral",
  31175. image: {
  31176. source: "./media/characters/moonlight/feral.svg",
  31177. extra: 3705/2791,
  31178. bottom: 145/3850
  31179. }
  31180. },
  31181. paw: {
  31182. height: math.unit(1, "feet"),
  31183. name: "Paw",
  31184. image: {
  31185. source: "./media/characters/moonlight/paw.svg"
  31186. }
  31187. },
  31188. paws: {
  31189. height: math.unit(0.98, "feet"),
  31190. name: "Paws",
  31191. image: {
  31192. source: "./media/characters/moonlight/paws.svg",
  31193. extra: 939/939,
  31194. bottom: 50/989
  31195. }
  31196. },
  31197. mouth: {
  31198. height: math.unit(0.48, "feet"),
  31199. name: "Mouth",
  31200. image: {
  31201. source: "./media/characters/moonlight/mouth.svg"
  31202. }
  31203. },
  31204. dick: {
  31205. height: math.unit(1.46, "feet"),
  31206. name: "Dick",
  31207. image: {
  31208. source: "./media/characters/moonlight/dick.svg"
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Normal",
  31215. height: math.unit(6 + 2/12, "feet"),
  31216. default: true
  31217. },
  31218. {
  31219. name: "Macro",
  31220. height: math.unit(300, "feet")
  31221. },
  31222. {
  31223. name: "Macro+",
  31224. height: math.unit(1, "mile")
  31225. },
  31226. {
  31227. name: "Mt. Moon",
  31228. height: math.unit(5, "miles")
  31229. },
  31230. {
  31231. name: "Megamacro",
  31232. height: math.unit(15, "miles")
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31238. {
  31239. back: {
  31240. height: math.unit(6, "feet"),
  31241. weight: math.unit(150, "lb"),
  31242. name: "Back",
  31243. image: {
  31244. source: "./media/characters/sylen/back.svg",
  31245. extra: 1335/1273,
  31246. bottom: 107/1442
  31247. }
  31248. },
  31249. },
  31250. [
  31251. {
  31252. name: "Normal",
  31253. height: math.unit(5 + 5/12, "feet")
  31254. },
  31255. {
  31256. name: "Megamacro",
  31257. height: math.unit(3, "miles"),
  31258. default: true
  31259. },
  31260. ]
  31261. ))
  31262. characterMakers.push(() => makeCharacter(
  31263. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31264. {
  31265. front: {
  31266. height: math.unit(6, "feet"),
  31267. weight: math.unit(190, "lb"),
  31268. name: "Front",
  31269. image: {
  31270. source: "./media/characters/huttser/front.svg",
  31271. extra: 1152/1058,
  31272. bottom: 23/1175
  31273. }
  31274. },
  31275. side: {
  31276. height: math.unit(6, "feet"),
  31277. weight: math.unit(190, "lb"),
  31278. name: "Side",
  31279. image: {
  31280. source: "./media/characters/huttser/side.svg",
  31281. extra: 1174/1065,
  31282. bottom: 18/1192
  31283. }
  31284. },
  31285. back: {
  31286. height: math.unit(6, "feet"),
  31287. weight: math.unit(190, "lb"),
  31288. name: "Back",
  31289. image: {
  31290. source: "./media/characters/huttser/back.svg",
  31291. extra: 1158/1056,
  31292. bottom: 12/1170
  31293. }
  31294. },
  31295. },
  31296. [
  31297. ]
  31298. ))
  31299. characterMakers.push(() => makeCharacter(
  31300. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31301. {
  31302. side: {
  31303. height: math.unit(12 + 9/12, "feet"),
  31304. weight: math.unit(15000, "lb"),
  31305. name: "Side",
  31306. image: {
  31307. source: "./media/characters/faan/side.svg",
  31308. extra: 2747/2697,
  31309. bottom: 0/2747
  31310. }
  31311. },
  31312. front: {
  31313. height: math.unit(12 + 9/12, "feet"),
  31314. weight: math.unit(15000, "lb"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/faan/front.svg",
  31318. extra: 607/571,
  31319. bottom: 24/631
  31320. }
  31321. },
  31322. head: {
  31323. height: math.unit(2.85, "feet"),
  31324. name: "Head",
  31325. image: {
  31326. source: "./media/characters/faan/head.svg"
  31327. }
  31328. },
  31329. headAlt: {
  31330. height: math.unit(3.13, "feet"),
  31331. name: "Head-alt",
  31332. image: {
  31333. source: "./media/characters/faan/head-alt.svg"
  31334. }
  31335. },
  31336. },
  31337. [
  31338. {
  31339. name: "Normal",
  31340. height: math.unit(12 + 9/12, "feet"),
  31341. default: true
  31342. },
  31343. ]
  31344. ))
  31345. characterMakers.push(() => makeCharacter(
  31346. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31347. {
  31348. front: {
  31349. height: math.unit(6, "feet"),
  31350. weight: math.unit(300, "lb"),
  31351. name: "Front",
  31352. image: {
  31353. source: "./media/characters/tanio/front.svg",
  31354. extra: 711/673,
  31355. bottom: 25/736
  31356. }
  31357. },
  31358. },
  31359. [
  31360. {
  31361. name: "Normal",
  31362. height: math.unit(6, "feet"),
  31363. default: true
  31364. },
  31365. ]
  31366. ))
  31367. characterMakers.push(() => makeCharacter(
  31368. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31369. {
  31370. front: {
  31371. height: math.unit(3, "inches"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/noboru/front.svg",
  31375. extra: 1039/932,
  31376. bottom: 18/1057
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Micro",
  31383. height: math.unit(3, "inches"),
  31384. default: true
  31385. },
  31386. ]
  31387. ))
  31388. characterMakers.push(() => makeCharacter(
  31389. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31390. {
  31391. front: {
  31392. height: math.unit(1.85, "meters"),
  31393. weight: math.unit(80, "kg"),
  31394. name: "Front",
  31395. image: {
  31396. source: "./media/characters/daniel-barrett/front.svg",
  31397. extra: 355/337,
  31398. bottom: 9/364
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Pico",
  31405. height: math.unit(0.0433, "mm")
  31406. },
  31407. {
  31408. name: "Nano",
  31409. height: math.unit(1.5, "mm")
  31410. },
  31411. {
  31412. name: "Micro",
  31413. height: math.unit(5.3, "cm"),
  31414. default: true
  31415. },
  31416. {
  31417. name: "Normal",
  31418. height: math.unit(1.85, "meters")
  31419. },
  31420. {
  31421. name: "Macro",
  31422. height: math.unit(64.7, "meters")
  31423. },
  31424. {
  31425. name: "Megamacro",
  31426. height: math.unit(2.26, "km")
  31427. },
  31428. {
  31429. name: "Gigamacro",
  31430. height: math.unit(79, "km")
  31431. },
  31432. {
  31433. name: "Teramacro",
  31434. height: math.unit(2765, "km")
  31435. },
  31436. {
  31437. name: "Petamacro",
  31438. height: math.unit(96678, "km")
  31439. },
  31440. ]
  31441. ))
  31442. characterMakers.push(() => makeCharacter(
  31443. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31444. {
  31445. front: {
  31446. height: math.unit(30, "meters"),
  31447. weight: math.unit(400, "tons"),
  31448. name: "Front",
  31449. image: {
  31450. source: "./media/characters/zeel/front.svg",
  31451. extra: 2599/2599,
  31452. bottom: 226/2825
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Macro",
  31459. height: math.unit(30, "meters"),
  31460. default: true
  31461. },
  31462. ]
  31463. ))
  31464. characterMakers.push(() => makeCharacter(
  31465. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31466. {
  31467. front: {
  31468. height: math.unit(6 + 7/12, "feet"),
  31469. weight: math.unit(210, "lb"),
  31470. name: "Front",
  31471. image: {
  31472. source: "./media/characters/tarn/front.svg",
  31473. extra: 3517/3220,
  31474. bottom: 91/3608
  31475. }
  31476. },
  31477. back: {
  31478. height: math.unit(6 + 7/12, "feet"),
  31479. weight: math.unit(210, "lb"),
  31480. name: "Back",
  31481. image: {
  31482. source: "./media/characters/tarn/back.svg",
  31483. extra: 3566/3241,
  31484. bottom: 34/3600
  31485. }
  31486. },
  31487. dick: {
  31488. height: math.unit(1.65, "feet"),
  31489. name: "Dick",
  31490. image: {
  31491. source: "./media/characters/tarn/dick.svg"
  31492. }
  31493. },
  31494. paw: {
  31495. height: math.unit(1.80, "feet"),
  31496. name: "Paw",
  31497. image: {
  31498. source: "./media/characters/tarn/paw.svg"
  31499. }
  31500. },
  31501. tongue: {
  31502. height: math.unit(0.97, "feet"),
  31503. name: "Tongue",
  31504. image: {
  31505. source: "./media/characters/tarn/tongue.svg"
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Micro",
  31512. height: math.unit(4, "inches")
  31513. },
  31514. {
  31515. name: "Normal",
  31516. height: math.unit(6 + 7/12, "feet"),
  31517. default: true
  31518. },
  31519. {
  31520. name: "Macro",
  31521. height: math.unit(300, "feet")
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(5 + 7/12, "feet"),
  31530. weight: math.unit(80, "kg"),
  31531. name: "Front",
  31532. image: {
  31533. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31534. extra: 3023/2865,
  31535. bottom: 33/3056
  31536. }
  31537. },
  31538. back: {
  31539. height: math.unit(5 + 7/12, "feet"),
  31540. weight: math.unit(80, "kg"),
  31541. name: "Back",
  31542. image: {
  31543. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31544. extra: 3020/2886,
  31545. bottom: 30/3050
  31546. }
  31547. },
  31548. dick: {
  31549. height: math.unit(0.98, "feet"),
  31550. name: "Dick",
  31551. image: {
  31552. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31553. }
  31554. },
  31555. anatomy: {
  31556. height: math.unit(2.86, "feet"),
  31557. name: "Anatomy",
  31558. image: {
  31559. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Really Small",
  31566. height: math.unit(2, "inches")
  31567. },
  31568. {
  31569. name: "Micro",
  31570. height: math.unit(5.583, "inches")
  31571. },
  31572. {
  31573. name: "Normal",
  31574. height: math.unit(5 + 7/12, "feet"),
  31575. default: true
  31576. },
  31577. {
  31578. name: "Macro",
  31579. height: math.unit(67, "feet")
  31580. },
  31581. {
  31582. name: "Megamacro",
  31583. height: math.unit(134, "feet")
  31584. },
  31585. ]
  31586. ))
  31587. characterMakers.push(() => makeCharacter(
  31588. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31589. {
  31590. front: {
  31591. height: math.unit(9, "feet"),
  31592. weight: math.unit(120, "lb"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/sally/front.svg",
  31596. extra: 1506/1349,
  31597. bottom: 66/1572
  31598. }
  31599. },
  31600. },
  31601. [
  31602. {
  31603. name: "Normal",
  31604. height: math.unit(9, "feet"),
  31605. default: true
  31606. },
  31607. ]
  31608. ))
  31609. characterMakers.push(() => makeCharacter(
  31610. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31611. {
  31612. front: {
  31613. height: math.unit(8, "feet"),
  31614. weight: math.unit(900, "lb"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/owen/front.svg",
  31618. extra: 1761/1657,
  31619. bottom: 74/1835
  31620. }
  31621. },
  31622. side: {
  31623. height: math.unit(8, "feet"),
  31624. weight: math.unit(900, "lb"),
  31625. name: "Side",
  31626. image: {
  31627. source: "./media/characters/owen/side.svg",
  31628. extra: 1797/1734,
  31629. bottom: 30/1827
  31630. }
  31631. },
  31632. back: {
  31633. height: math.unit(8, "feet"),
  31634. weight: math.unit(900, "lb"),
  31635. name: "Back",
  31636. image: {
  31637. source: "./media/characters/owen/back.svg",
  31638. extra: 1796/1706,
  31639. bottom: 59/1855
  31640. }
  31641. },
  31642. maw: {
  31643. height: math.unit(1.76, "feet"),
  31644. name: "Maw",
  31645. image: {
  31646. source: "./media/characters/owen/maw.svg"
  31647. }
  31648. },
  31649. },
  31650. [
  31651. {
  31652. name: "Normal",
  31653. height: math.unit(8, "feet"),
  31654. default: true
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31660. {
  31661. front: {
  31662. height: math.unit(4, "feet"),
  31663. weight: math.unit(400, "lb"),
  31664. name: "Front",
  31665. image: {
  31666. source: "./media/characters/ryth/front.svg",
  31667. extra: 1920/1748,
  31668. bottom: 42/1962
  31669. }
  31670. },
  31671. back: {
  31672. height: math.unit(4, "feet"),
  31673. weight: math.unit(400, "lb"),
  31674. name: "Back",
  31675. image: {
  31676. source: "./media/characters/ryth/back.svg",
  31677. extra: 1897/1690,
  31678. bottom: 89/1986
  31679. }
  31680. },
  31681. mouth: {
  31682. height: math.unit(1.39, "feet"),
  31683. name: "Mouth",
  31684. image: {
  31685. source: "./media/characters/ryth/mouth.svg"
  31686. }
  31687. },
  31688. tailmaw: {
  31689. height: math.unit(1.23, "feet"),
  31690. name: "Tailmaw",
  31691. image: {
  31692. source: "./media/characters/ryth/tailmaw.svg"
  31693. }
  31694. },
  31695. goia: {
  31696. height: math.unit(12, "feet"),
  31697. weight: math.unit(10800, "lb"),
  31698. name: "Goia",
  31699. image: {
  31700. source: "./media/characters/ryth/goia.svg",
  31701. extra: 3450/3198,
  31702. bottom: 61/3511
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Normal",
  31709. height: math.unit(4, "feet"),
  31710. default: true
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31716. {
  31717. front: {
  31718. height: math.unit(7, "feet"),
  31719. weight: math.unit(180, "lb"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/necrolance/front.svg",
  31723. extra: 1062/947,
  31724. bottom: 41/1103
  31725. }
  31726. },
  31727. back: {
  31728. height: math.unit(7, "feet"),
  31729. weight: math.unit(180, "lb"),
  31730. name: "Back",
  31731. image: {
  31732. source: "./media/characters/necrolance/back.svg",
  31733. extra: 1045/984,
  31734. bottom: 14/1059
  31735. }
  31736. },
  31737. wing: {
  31738. height: math.unit(2.67, "feet"),
  31739. name: "Wing",
  31740. image: {
  31741. source: "./media/characters/necrolance/wing.svg"
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(7, "feet"),
  31749. default: true
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31755. {
  31756. front: {
  31757. height: math.unit(76, "meters"),
  31758. weight: math.unit(30000, "tons"),
  31759. name: "Front",
  31760. image: {
  31761. source: "./media/characters/tyler/front.svg",
  31762. extra: 1640/1640,
  31763. bottom: 114/1754
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Macro",
  31770. height: math.unit(76, "meters"),
  31771. default: true
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31777. {
  31778. front: {
  31779. height: math.unit(4 + 11/12, "feet"),
  31780. weight: math.unit(132, "lb"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/icey/front.svg",
  31784. extra: 2750/2550,
  31785. bottom: 33/2783
  31786. }
  31787. },
  31788. back: {
  31789. height: math.unit(4 + 11/12, "feet"),
  31790. weight: math.unit(132, "lb"),
  31791. name: "Back",
  31792. image: {
  31793. source: "./media/characters/icey/back.svg",
  31794. extra: 2624/2481,
  31795. bottom: 35/2659
  31796. }
  31797. },
  31798. },
  31799. [
  31800. {
  31801. name: "Normal",
  31802. height: math.unit(4 + 11/12, "feet"),
  31803. default: true
  31804. },
  31805. ]
  31806. ))
  31807. characterMakers.push(() => makeCharacter(
  31808. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31809. {
  31810. front: {
  31811. height: math.unit(100, "feet"),
  31812. weight: math.unit(0, "lb"),
  31813. name: "Front",
  31814. image: {
  31815. source: "./media/characters/smile/front.svg",
  31816. extra: 2983/2912,
  31817. bottom: 162/3145
  31818. }
  31819. },
  31820. back: {
  31821. height: math.unit(100, "feet"),
  31822. weight: math.unit(0, "lb"),
  31823. name: "Back",
  31824. image: {
  31825. source: "./media/characters/smile/back.svg",
  31826. extra: 3143/3031,
  31827. bottom: 91/3234
  31828. }
  31829. },
  31830. head: {
  31831. height: math.unit(26.3, "feet"),
  31832. weight: math.unit(0, "lb"),
  31833. name: "Head",
  31834. image: {
  31835. source: "./media/characters/smile/head.svg"
  31836. }
  31837. },
  31838. collar: {
  31839. height: math.unit(5.3, "feet"),
  31840. weight: math.unit(0, "lb"),
  31841. name: "Collar",
  31842. image: {
  31843. source: "./media/characters/smile/collar.svg"
  31844. }
  31845. },
  31846. },
  31847. [
  31848. {
  31849. name: "Macro",
  31850. height: math.unit(100, "feet"),
  31851. default: true
  31852. },
  31853. ]
  31854. ))
  31855. characterMakers.push(() => makeCharacter(
  31856. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31857. {
  31858. dragon: {
  31859. height: math.unit(26, "feet"),
  31860. weight: math.unit(36, "tons"),
  31861. name: "Dragon",
  31862. image: {
  31863. source: "./media/characters/arimphae/dragon.svg",
  31864. extra: 1574/983,
  31865. bottom: 357/1931
  31866. }
  31867. },
  31868. drake: {
  31869. height: math.unit(9, "feet"),
  31870. weight: math.unit(1.5, "tons"),
  31871. name: "Drake",
  31872. image: {
  31873. source: "./media/characters/arimphae/drake.svg",
  31874. extra: 1120/925,
  31875. bottom: 435/1555
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Small",
  31882. height: math.unit(26*5/9, "feet")
  31883. },
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(26, "feet"),
  31887. default: true
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(8 + 9/12, "feet"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/xander/front.svg",
  31899. extra: 848/673,
  31900. bottom: 62/910
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(8 + 9/12, "feet"),
  31908. default: true
  31909. },
  31910. {
  31911. name: "Gaze Grabber",
  31912. height: math.unit(13 + 8/12, "feet")
  31913. },
  31914. {
  31915. name: "Jaw Dropper",
  31916. height: math.unit(27, "feet")
  31917. },
  31918. {
  31919. name: "Show Stopper",
  31920. height: math.unit(136, "feet")
  31921. },
  31922. {
  31923. name: "Superstar",
  31924. height: math.unit(1.9e6, "miles")
  31925. },
  31926. ]
  31927. ))
  31928. characterMakers.push(() => makeCharacter(
  31929. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31930. {
  31931. side: {
  31932. height: math.unit(2100, "feet"),
  31933. name: "Side",
  31934. image: {
  31935. source: "./media/characters/osiris/side.svg",
  31936. extra: 1105/939,
  31937. bottom: 167/1272
  31938. }
  31939. },
  31940. },
  31941. [
  31942. {
  31943. name: "Macro",
  31944. height: math.unit(2100, "feet"),
  31945. default: true
  31946. },
  31947. ]
  31948. ))
  31949. characterMakers.push(() => makeCharacter(
  31950. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31951. {
  31952. front: {
  31953. height: math.unit(6 + 8/12, "feet"),
  31954. weight: math.unit(225, "lb"),
  31955. name: "Front",
  31956. image: {
  31957. source: "./media/characters/rhys-londe/front.svg",
  31958. extra: 2258/2141,
  31959. bottom: 188/2446
  31960. }
  31961. },
  31962. back: {
  31963. height: math.unit(6 + 8/12, "feet"),
  31964. weight: math.unit(225, "lb"),
  31965. name: "Back",
  31966. image: {
  31967. source: "./media/characters/rhys-londe/back.svg",
  31968. extra: 2237/2137,
  31969. bottom: 63/2300
  31970. }
  31971. },
  31972. frontNsfw: {
  31973. height: math.unit(6 + 8/12, "feet"),
  31974. weight: math.unit(225, "lb"),
  31975. name: "Front (NSFW)",
  31976. image: {
  31977. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31978. extra: 2258/2141,
  31979. bottom: 188/2446
  31980. }
  31981. },
  31982. backNsfw: {
  31983. height: math.unit(6 + 8/12, "feet"),
  31984. weight: math.unit(225, "lb"),
  31985. name: "Back (NSFW)",
  31986. image: {
  31987. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31988. extra: 2237/2137,
  31989. bottom: 63/2300
  31990. }
  31991. },
  31992. dick: {
  31993. height: math.unit(30, "inches"),
  31994. name: "Dick",
  31995. image: {
  31996. source: "./media/characters/rhys-londe/dick.svg"
  31997. }
  31998. },
  31999. maw: {
  32000. height: math.unit(1.6, "feet"),
  32001. name: "Maw",
  32002. image: {
  32003. source: "./media/characters/rhys-londe/maw.svg"
  32004. }
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Normal",
  32010. height: math.unit(6 + 8/12, "feet"),
  32011. default: true
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32017. {
  32018. front: {
  32019. height: math.unit(3 + 10/12, "feet"),
  32020. weight: math.unit(90, "lb"),
  32021. name: "Front",
  32022. image: {
  32023. source: "./media/characters/taivas-ensim/front.svg",
  32024. extra: 1327/1216,
  32025. bottom: 96/1423
  32026. }
  32027. },
  32028. back: {
  32029. height: math.unit(3 + 10/12, "feet"),
  32030. weight: math.unit(90, "lb"),
  32031. name: "Back",
  32032. image: {
  32033. source: "./media/characters/taivas-ensim/back.svg",
  32034. extra: 1355/1247,
  32035. bottom: 11/1366
  32036. }
  32037. },
  32038. frontNsfw: {
  32039. height: math.unit(3 + 10/12, "feet"),
  32040. weight: math.unit(90, "lb"),
  32041. name: "Front (NSFW)",
  32042. image: {
  32043. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32044. extra: 1327/1216,
  32045. bottom: 96/1423
  32046. }
  32047. },
  32048. backNsfw: {
  32049. height: math.unit(3 + 10/12, "feet"),
  32050. weight: math.unit(90, "lb"),
  32051. name: "Back (NSFW)",
  32052. image: {
  32053. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32054. extra: 1355/1247,
  32055. bottom: 11/1366
  32056. }
  32057. },
  32058. },
  32059. [
  32060. {
  32061. name: "Normal",
  32062. height: math.unit(3 + 10/12, "feet"),
  32063. default: true
  32064. },
  32065. ]
  32066. ))
  32067. characterMakers.push(() => makeCharacter(
  32068. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32069. {
  32070. front: {
  32071. height: math.unit(9 + 6/12, "feet"),
  32072. weight: math.unit(940, "lb"),
  32073. name: "Front",
  32074. image: {
  32075. source: "./media/characters/byliss/front.svg",
  32076. extra: 1327/1290,
  32077. bottom: 82/1409
  32078. }
  32079. },
  32080. back: {
  32081. height: math.unit(9 + 6/12, "feet"),
  32082. weight: math.unit(940, "lb"),
  32083. name: "Back",
  32084. image: {
  32085. source: "./media/characters/byliss/back.svg",
  32086. extra: 1376/1349,
  32087. bottom: 9/1385
  32088. }
  32089. },
  32090. frontNsfw: {
  32091. height: math.unit(9 + 6/12, "feet"),
  32092. weight: math.unit(940, "lb"),
  32093. name: "Front (NSFW)",
  32094. image: {
  32095. source: "./media/characters/byliss/front-nsfw.svg",
  32096. extra: 1327/1290,
  32097. bottom: 82/1409
  32098. }
  32099. },
  32100. backNsfw: {
  32101. height: math.unit(9 + 6/12, "feet"),
  32102. weight: math.unit(940, "lb"),
  32103. name: "Back (NSFW)",
  32104. image: {
  32105. source: "./media/characters/byliss/back-nsfw.svg",
  32106. extra: 1376/1349,
  32107. bottom: 9/1385
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Normal",
  32114. height: math.unit(9 + 6/12, "feet"),
  32115. default: true
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32121. {
  32122. front: {
  32123. height: math.unit(5 + 2/12, "feet"),
  32124. weight: math.unit(200, "lb"),
  32125. name: "Front",
  32126. image: {
  32127. source: "./media/characters/noraly/front.svg",
  32128. extra: 4985/4773,
  32129. bottom: 150/5135
  32130. }
  32131. },
  32132. full: {
  32133. height: math.unit(5 + 2/12, "feet"),
  32134. weight: math.unit(164, "lb"),
  32135. name: "Full",
  32136. image: {
  32137. source: "./media/characters/noraly/full.svg",
  32138. extra: 1114/1059,
  32139. bottom: 35/1149
  32140. }
  32141. },
  32142. fuller: {
  32143. height: math.unit(5 + 2/12, "feet"),
  32144. weight: math.unit(230, "lb"),
  32145. name: "Fuller",
  32146. image: {
  32147. source: "./media/characters/noraly/fuller.svg",
  32148. extra: 1114/1059,
  32149. bottom: 35/1149
  32150. }
  32151. },
  32152. fullest: {
  32153. height: math.unit(5 + 2/12, "feet"),
  32154. weight: math.unit(300, "lb"),
  32155. name: "Fullest",
  32156. image: {
  32157. source: "./media/characters/noraly/fullest.svg",
  32158. extra: 1114/1059,
  32159. bottom: 35/1149
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Normal",
  32166. height: math.unit(5 + 2/12, "feet"),
  32167. default: true
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32173. {
  32174. front: {
  32175. height: math.unit(5 + 2/12, "feet"),
  32176. weight: math.unit(210, "lb"),
  32177. name: "Front",
  32178. image: {
  32179. source: "./media/characters/pera/front.svg",
  32180. extra: 1560/1531,
  32181. bottom: 165/1725
  32182. }
  32183. },
  32184. back: {
  32185. height: math.unit(5 + 2/12, "feet"),
  32186. weight: math.unit(210, "lb"),
  32187. name: "Back",
  32188. image: {
  32189. source: "./media/characters/pera/back.svg",
  32190. extra: 1523/1493,
  32191. bottom: 152/1675
  32192. }
  32193. },
  32194. dick: {
  32195. height: math.unit(2.4, "feet"),
  32196. name: "Dick",
  32197. image: {
  32198. source: "./media/characters/pera/dick.svg"
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(5 + 2/12, "feet"),
  32206. default: true
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32212. {
  32213. front: {
  32214. height: math.unit(12, "feet"),
  32215. weight: math.unit(3200, "lb"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/julian/front.svg",
  32219. extra: 2962/2701,
  32220. bottom: 184/3146
  32221. }
  32222. },
  32223. maw: {
  32224. height: math.unit(5.35, "feet"),
  32225. name: "Maw",
  32226. image: {
  32227. source: "./media/characters/julian/maw.svg"
  32228. }
  32229. },
  32230. paw: {
  32231. height: math.unit(3.07, "feet"),
  32232. name: "Paw",
  32233. image: {
  32234. source: "./media/characters/julian/paw.svg"
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Default",
  32241. height: math.unit(12, "feet"),
  32242. default: true
  32243. },
  32244. {
  32245. name: "Big",
  32246. height: math.unit(50, "feet")
  32247. },
  32248. {
  32249. name: "Really Big",
  32250. height: math.unit(1, "mile")
  32251. },
  32252. {
  32253. name: "Extremely Big",
  32254. height: math.unit(100, "miles")
  32255. },
  32256. {
  32257. name: "Planet Hugger",
  32258. height: math.unit(200, "megameters")
  32259. },
  32260. {
  32261. name: "Unreasonably Big",
  32262. height: math.unit(1e300, "meters")
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32268. {
  32269. solgooleo: {
  32270. height: math.unit(4, "meters"),
  32271. weight: math.unit(6000*1.5, "kg"),
  32272. volume: math.unit(6000, "liters"),
  32273. name: "Solgooleo",
  32274. image: {
  32275. source: "./media/characters/pi/solgooleo.svg",
  32276. extra: 388/331,
  32277. bottom: 29/417
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(4, "meters"),
  32285. default: true
  32286. },
  32287. ]
  32288. ))
  32289. characterMakers.push(() => makeCharacter(
  32290. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32291. {
  32292. front: {
  32293. height: math.unit(8 + 2/12, "feet"),
  32294. weight: math.unit(4, "tons"),
  32295. name: "Front",
  32296. image: {
  32297. source: "./media/characters/shaun/front.svg",
  32298. extra: 1550/1505,
  32299. bottom: 353/1903
  32300. }
  32301. },
  32302. },
  32303. [
  32304. {
  32305. name: "Lorg",
  32306. height: math.unit(8 + 2/12, "feet"),
  32307. default: true
  32308. },
  32309. ]
  32310. ))
  32311. characterMakers.push(() => makeCharacter(
  32312. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32313. {
  32314. front: {
  32315. height: math.unit(7, "feet"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/sini/front.svg",
  32319. extra: 726/678,
  32320. bottom: 35/761
  32321. }
  32322. },
  32323. back: {
  32324. height: math.unit(7, "feet"),
  32325. name: "Back",
  32326. image: {
  32327. source: "./media/characters/sini/back.svg",
  32328. extra: 743/701,
  32329. bottom: 12/755
  32330. }
  32331. },
  32332. mawAnthro: {
  32333. height: math.unit(2.14, "feet"),
  32334. name: "Maw (Anthro)",
  32335. image: {
  32336. source: "./media/characters/sini/maw-anthro.svg"
  32337. }
  32338. },
  32339. dick: {
  32340. height: math.unit(1.45, "feet"),
  32341. name: "Dick (Anthro)",
  32342. image: {
  32343. source: "./media/characters/sini/dick-anthro.svg"
  32344. }
  32345. },
  32346. feral: {
  32347. height: math.unit(16, "feet"),
  32348. name: "Feral",
  32349. image: {
  32350. source: "./media/characters/sini/feral.svg",
  32351. extra: 814/605,
  32352. bottom: 11/825
  32353. }
  32354. },
  32355. mawFeral: {
  32356. height: math.unit(5.66, "feet"),
  32357. name: "Maw-feral",
  32358. image: {
  32359. source: "./media/characters/sini/maw-feral.svg"
  32360. }
  32361. },
  32362. footFeral: {
  32363. height: math.unit(5.17, "feet"),
  32364. name: "Foot-feral",
  32365. image: {
  32366. source: "./media/characters/sini/foot-feral.svg"
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(7, "feet"),
  32374. default: true
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32380. {
  32381. side: {
  32382. height: math.unit(13, "meters"),
  32383. weight: math.unit(9072, "kg"),
  32384. name: "Side",
  32385. image: {
  32386. source: "./media/characters/raylldo/side.svg",
  32387. extra: 403/344,
  32388. bottom: 42/445
  32389. }
  32390. },
  32391. leaping: {
  32392. height: math.unit(12.3, "meters"),
  32393. weight: math.unit(9072, "kg"),
  32394. name: "Leaping",
  32395. image: {
  32396. source: "./media/characters/raylldo/leaping.svg",
  32397. extra: 470/249,
  32398. bottom: 13/483
  32399. }
  32400. },
  32401. flying: {
  32402. height: math.unit(18, "meters"),
  32403. weight: math.unit(9072, "kg"),
  32404. name: "Flying",
  32405. image: {
  32406. source: "./media/characters/raylldo/flying.svg"
  32407. }
  32408. },
  32409. head: {
  32410. height: math.unit(5.85, "meters"),
  32411. name: "Head",
  32412. image: {
  32413. source: "./media/characters/raylldo/head.svg"
  32414. }
  32415. },
  32416. maw: {
  32417. height: math.unit(5.32, "meters"),
  32418. name: "Maw",
  32419. image: {
  32420. source: "./media/characters/raylldo/maw.svg"
  32421. }
  32422. },
  32423. eye: {
  32424. height: math.unit(0.54, "meters"),
  32425. name: "Eye",
  32426. image: {
  32427. source: "./media/characters/raylldo/eye.svg"
  32428. }
  32429. },
  32430. },
  32431. [
  32432. {
  32433. name: "Normal",
  32434. height: math.unit(13, "meters"),
  32435. default: true
  32436. },
  32437. ]
  32438. ))
  32439. characterMakers.push(() => makeCharacter(
  32440. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32441. {
  32442. anthroFront: {
  32443. height: math.unit(9, "feet"),
  32444. weight: math.unit(600, "lb"),
  32445. name: "Anthro (Front)",
  32446. image: {
  32447. source: "./media/characters/glint/anthro-front.svg",
  32448. extra: 1097/1018,
  32449. bottom: 28/1125
  32450. }
  32451. },
  32452. anthroBack: {
  32453. height: math.unit(9, "feet"),
  32454. weight: math.unit(600, "lb"),
  32455. name: "Anthro (Back)",
  32456. image: {
  32457. source: "./media/characters/glint/anthro-back.svg",
  32458. extra: 1154/997,
  32459. bottom: 36/1190
  32460. }
  32461. },
  32462. feral: {
  32463. height: math.unit(11, "feet"),
  32464. weight: math.unit(50000, "lb"),
  32465. name: "Feral",
  32466. image: {
  32467. source: "./media/characters/glint/feral.svg",
  32468. extra: 3035/1585,
  32469. bottom: 1169/4204
  32470. }
  32471. },
  32472. dickAnthro: {
  32473. height: math.unit(0.7, "meters"),
  32474. name: "Dick (Anthro)",
  32475. image: {
  32476. source: "./media/characters/glint/dick-anthro.svg"
  32477. }
  32478. },
  32479. dickFeral: {
  32480. height: math.unit(2.65, "meters"),
  32481. name: "Dick (Feral)",
  32482. image: {
  32483. source: "./media/characters/glint/dick-feral.svg"
  32484. }
  32485. },
  32486. slitHidden: {
  32487. height: math.unit(5.85, "meters"),
  32488. name: "Slit (Hidden)",
  32489. image: {
  32490. source: "./media/characters/glint/slit-hidden.svg"
  32491. }
  32492. },
  32493. slitErect: {
  32494. height: math.unit(5.85, "meters"),
  32495. name: "Slit (Erect)",
  32496. image: {
  32497. source: "./media/characters/glint/slit-erect.svg"
  32498. }
  32499. },
  32500. mawAnthro: {
  32501. height: math.unit(0.63, "meters"),
  32502. name: "Maw (Anthro)",
  32503. image: {
  32504. source: "./media/characters/glint/maw.svg"
  32505. }
  32506. },
  32507. mawFeral: {
  32508. height: math.unit(2.89, "meters"),
  32509. name: "Maw (Feral)",
  32510. image: {
  32511. source: "./media/characters/glint/maw.svg"
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(9, "feet"),
  32519. default: true
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32525. {
  32526. side: {
  32527. height: math.unit(15, "feet"),
  32528. weight: math.unit(5000, "kg"),
  32529. name: "Side",
  32530. image: {
  32531. source: "./media/characters/kairne/side.svg",
  32532. extra: 979/811,
  32533. bottom: 13/992
  32534. }
  32535. },
  32536. front: {
  32537. height: math.unit(15, "feet"),
  32538. weight: math.unit(5000, "kg"),
  32539. name: "Front",
  32540. image: {
  32541. source: "./media/characters/kairne/front.svg",
  32542. extra: 908/814,
  32543. bottom: 26/934
  32544. }
  32545. },
  32546. sideNsfw: {
  32547. height: math.unit(15, "feet"),
  32548. weight: math.unit(5000, "kg"),
  32549. name: "Side (NSFW)",
  32550. image: {
  32551. source: "./media/characters/kairne/side-nsfw.svg",
  32552. extra: 979/811,
  32553. bottom: 13/992
  32554. }
  32555. },
  32556. frontNsfw: {
  32557. height: math.unit(15, "feet"),
  32558. weight: math.unit(5000, "kg"),
  32559. name: "Front (NSFW)",
  32560. image: {
  32561. source: "./media/characters/kairne/front-nsfw.svg",
  32562. extra: 908/814,
  32563. bottom: 26/934
  32564. }
  32565. },
  32566. dickCaged: {
  32567. height: math.unit(0.65, "meters"),
  32568. name: "Dick-caged",
  32569. image: {
  32570. source: "./media/characters/kairne/dick-caged.svg"
  32571. }
  32572. },
  32573. dick: {
  32574. height: math.unit(0.79, "meters"),
  32575. name: "Dick",
  32576. image: {
  32577. source: "./media/characters/kairne/dick.svg"
  32578. }
  32579. },
  32580. genitals: {
  32581. height: math.unit(1.29, "meters"),
  32582. name: "Genitals",
  32583. image: {
  32584. source: "./media/characters/kairne/genitals.svg"
  32585. }
  32586. },
  32587. maw: {
  32588. height: math.unit(1.73, "meters"),
  32589. name: "Maw",
  32590. image: {
  32591. source: "./media/characters/kairne/maw.svg"
  32592. }
  32593. },
  32594. },
  32595. [
  32596. {
  32597. name: "Normal",
  32598. height: math.unit(15, "feet"),
  32599. default: true
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32605. {
  32606. front: {
  32607. height: math.unit(5 + 8/12, "feet"),
  32608. weight: math.unit(139, "lb"),
  32609. name: "Front",
  32610. image: {
  32611. source: "./media/characters/biscuit-jackal/front.svg",
  32612. extra: 2106/1961,
  32613. bottom: 58/2164
  32614. }
  32615. },
  32616. back: {
  32617. height: math.unit(5 + 8/12, "feet"),
  32618. weight: math.unit(139, "lb"),
  32619. name: "Back",
  32620. image: {
  32621. source: "./media/characters/biscuit-jackal/back.svg",
  32622. extra: 2132/1976,
  32623. bottom: 57/2189
  32624. }
  32625. },
  32626. werejackal: {
  32627. height: math.unit(6 + 3/12, "feet"),
  32628. weight: math.unit(188, "lb"),
  32629. name: "Werejackal",
  32630. image: {
  32631. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32632. extra: 2373/2178,
  32633. bottom: 53/2426
  32634. }
  32635. },
  32636. },
  32637. [
  32638. {
  32639. name: "Normal",
  32640. height: math.unit(5 + 8/12, "feet"),
  32641. default: true
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32647. {
  32648. front: {
  32649. height: math.unit(140, "cm"),
  32650. weight: math.unit(45, "kg"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/tayra-white/front.svg",
  32654. extra: 2229/2192,
  32655. bottom: 75/2304
  32656. }
  32657. },
  32658. },
  32659. [
  32660. {
  32661. name: "Normal",
  32662. height: math.unit(140, "cm"),
  32663. default: true
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32669. {
  32670. front: {
  32671. height: math.unit(4 + 5/12, "feet"),
  32672. name: "Front",
  32673. image: {
  32674. source: "./media/characters/scoop/front.svg",
  32675. extra: 1257/1136,
  32676. bottom: 69/1326
  32677. }
  32678. },
  32679. back: {
  32680. height: math.unit(4 + 5/12, "feet"),
  32681. name: "Back",
  32682. image: {
  32683. source: "./media/characters/scoop/back.svg",
  32684. extra: 1321/1152,
  32685. bottom: 32/1353
  32686. }
  32687. },
  32688. maw: {
  32689. height: math.unit(0.68, "feet"),
  32690. name: "Maw",
  32691. image: {
  32692. source: "./media/characters/scoop/maw.svg"
  32693. }
  32694. },
  32695. },
  32696. [
  32697. {
  32698. name: "Really Small",
  32699. height: math.unit(1, "mm")
  32700. },
  32701. {
  32702. name: "Micro",
  32703. height: math.unit(1, "inch")
  32704. },
  32705. {
  32706. name: "Normal",
  32707. height: math.unit(4 + 5/12, "feet"),
  32708. default: true
  32709. },
  32710. {
  32711. name: "Macro",
  32712. height: math.unit(200, "feet")
  32713. },
  32714. {
  32715. name: "Megamacro",
  32716. height: math.unit(3240, "feet")
  32717. },
  32718. {
  32719. name: "Teramacro",
  32720. height: math.unit(2500, "miles")
  32721. },
  32722. ]
  32723. ))
  32724. characterMakers.push(() => makeCharacter(
  32725. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32726. {
  32727. front: {
  32728. height: math.unit(15 + 7/12, "feet"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/saphinara/front.svg",
  32732. extra: 604/546,
  32733. bottom: 19/623
  32734. }
  32735. },
  32736. side: {
  32737. height: math.unit(15 + 7/12, "feet"),
  32738. name: "Side",
  32739. image: {
  32740. source: "./media/characters/saphinara/side.svg",
  32741. extra: 605/547,
  32742. bottom: 6/611
  32743. }
  32744. },
  32745. back: {
  32746. height: math.unit(15 + 7/12, "feet"),
  32747. name: "Back",
  32748. image: {
  32749. source: "./media/characters/saphinara/back.svg",
  32750. extra: 591/531,
  32751. bottom: 13/604
  32752. }
  32753. },
  32754. frontTail: {
  32755. height: math.unit(15 + 7/12, "feet"),
  32756. name: "Front (Full Tail)",
  32757. image: {
  32758. source: "./media/characters/saphinara/front-tail.svg",
  32759. extra: 748/547,
  32760. bottom: 66/814
  32761. }
  32762. },
  32763. },
  32764. [
  32765. {
  32766. name: "Normal",
  32767. height: math.unit(15 + 7/12, "feet"),
  32768. default: true
  32769. },
  32770. {
  32771. name: "Angry",
  32772. height: math.unit(30 + 6/12, "feet")
  32773. },
  32774. {
  32775. name: "Enraged",
  32776. height: math.unit(102 + 1/12, "feet")
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(6 + 8/12, "feet"),
  32785. weight: math.unit(300, "lb"),
  32786. name: "Front",
  32787. image: {
  32788. source: "./media/characters/jrain/front.svg",
  32789. extra: 3039/2865,
  32790. bottom: 399/3438
  32791. }
  32792. },
  32793. back: {
  32794. height: math.unit(6 + 8/12, "feet"),
  32795. weight: math.unit(300, "lb"),
  32796. name: "Back",
  32797. image: {
  32798. source: "./media/characters/jrain/back.svg",
  32799. extra: 3089/2938,
  32800. bottom: 172/3261
  32801. }
  32802. },
  32803. head: {
  32804. height: math.unit(2.14, "feet"),
  32805. name: "Head",
  32806. image: {
  32807. source: "./media/characters/jrain/head.svg"
  32808. }
  32809. },
  32810. maw: {
  32811. height: math.unit(1.77, "feet"),
  32812. name: "Maw",
  32813. image: {
  32814. source: "./media/characters/jrain/maw.svg"
  32815. }
  32816. },
  32817. leftHand: {
  32818. height: math.unit(1.1, "feet"),
  32819. name: "Left Hand",
  32820. image: {
  32821. source: "./media/characters/jrain/left-hand.svg"
  32822. }
  32823. },
  32824. rightHand: {
  32825. height: math.unit(1.1, "feet"),
  32826. name: "Right Hand",
  32827. image: {
  32828. source: "./media/characters/jrain/right-hand.svg"
  32829. }
  32830. },
  32831. eye: {
  32832. height: math.unit(0.35, "feet"),
  32833. name: "Eye",
  32834. image: {
  32835. source: "./media/characters/jrain/eye.svg"
  32836. }
  32837. },
  32838. },
  32839. [
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(6 + 8/12, "feet"),
  32843. default: true
  32844. },
  32845. {
  32846. name: "Casually Large",
  32847. height: math.unit(25, "feet")
  32848. },
  32849. {
  32850. name: "Giant",
  32851. height: math.unit(100, "feet")
  32852. },
  32853. {
  32854. name: "Kaiju",
  32855. height: math.unit(300, "feet")
  32856. },
  32857. ]
  32858. ))
  32859. characterMakers.push(() => makeCharacter(
  32860. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32861. {
  32862. dragon: {
  32863. height: math.unit(5, "meters"),
  32864. name: "Dragon",
  32865. image: {
  32866. source: "./media/characters/sabrina/dragon.svg",
  32867. extra: 3670 / 2365,
  32868. bottom: 333 / 4003
  32869. }
  32870. },
  32871. gryphon: {
  32872. height: math.unit(3, "meters"),
  32873. name: "Gryphon",
  32874. image: {
  32875. source: "./media/characters/sabrina/gryphon.svg",
  32876. extra: 1576 / 945,
  32877. bottom: 71 / 1647
  32878. }
  32879. },
  32880. snake: {
  32881. height: math.unit(12, "meters"),
  32882. name: "Snake",
  32883. image: {
  32884. source: "./media/characters/sabrina/snake.svg",
  32885. extra: 1758 / 1320,
  32886. bottom: 186 / 1944
  32887. }
  32888. },
  32889. collar: {
  32890. height: math.unit(1.86, "meters"),
  32891. name: "Collar",
  32892. image: {
  32893. source: "./media/characters/sabrina/collar.svg"
  32894. }
  32895. },
  32896. eye: {
  32897. height: math.unit(0.53, "meters"),
  32898. name: "Eye",
  32899. image: {
  32900. source: "./media/characters/sabrina/eye.svg"
  32901. }
  32902. },
  32903. foot: {
  32904. height: math.unit(1.86, "meters"),
  32905. name: "Foot",
  32906. image: {
  32907. source: "./media/characters/sabrina/foot.svg"
  32908. }
  32909. },
  32910. hand: {
  32911. height: math.unit(1.32, "meters"),
  32912. name: "Hand",
  32913. image: {
  32914. source: "./media/characters/sabrina/hand.svg"
  32915. }
  32916. },
  32917. head: {
  32918. height: math.unit(2.44, "meters"),
  32919. name: "Head",
  32920. image: {
  32921. source: "./media/characters/sabrina/head.svg"
  32922. }
  32923. },
  32924. headAngry: {
  32925. height: math.unit(2.44, "meters"),
  32926. name: "Head (Angry))",
  32927. image: {
  32928. source: "./media/characters/sabrina/head-angry.svg"
  32929. }
  32930. },
  32931. maw: {
  32932. height: math.unit(1.65, "meters"),
  32933. name: "Maw",
  32934. image: {
  32935. source: "./media/characters/sabrina/maw.svg"
  32936. }
  32937. },
  32938. spikes: {
  32939. height: math.unit(1.69, "meters"),
  32940. name: "Spikes",
  32941. image: {
  32942. source: "./media/characters/sabrina/spikes.svg"
  32943. }
  32944. },
  32945. stomach: {
  32946. height: math.unit(1.15, "meters"),
  32947. name: "Stomach",
  32948. image: {
  32949. source: "./media/characters/sabrina/stomach.svg"
  32950. }
  32951. },
  32952. tongue: {
  32953. height: math.unit(1.27, "meters"),
  32954. name: "Tongue",
  32955. image: {
  32956. source: "./media/characters/sabrina/tongue.svg"
  32957. }
  32958. },
  32959. wingDorsal: {
  32960. height: math.unit(4.85, "meters"),
  32961. name: "Wing (Dorsal)",
  32962. image: {
  32963. source: "./media/characters/sabrina/wing-dorsal.svg"
  32964. }
  32965. },
  32966. wingVentral: {
  32967. height: math.unit(4.85, "meters"),
  32968. name: "Wing (Ventral)",
  32969. image: {
  32970. source: "./media/characters/sabrina/wing-ventral.svg"
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(5, "meters"),
  32978. default: true
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32984. {
  32985. frontMaid: {
  32986. height: math.unit(5 + 5/12, "feet"),
  32987. weight: math.unit(130, "lb"),
  32988. name: "Front (Maid)",
  32989. image: {
  32990. source: "./media/characters/midnight-tales/front-maid.svg",
  32991. extra: 489/454,
  32992. bottom: 61/550
  32993. }
  32994. },
  32995. frontFormal: {
  32996. height: math.unit(5 + 5/12, "feet"),
  32997. weight: math.unit(130, "lb"),
  32998. name: "Front (Formal)",
  32999. image: {
  33000. source: "./media/characters/midnight-tales/front-formal.svg",
  33001. extra: 489/454,
  33002. bottom: 61/550
  33003. }
  33004. },
  33005. back: {
  33006. height: math.unit(5 + 5/12, "feet"),
  33007. weight: math.unit(130, "lb"),
  33008. name: "Back",
  33009. image: {
  33010. source: "./media/characters/midnight-tales/back.svg",
  33011. extra: 498/456,
  33012. bottom: 33/531
  33013. }
  33014. },
  33015. frontBeast: {
  33016. height: math.unit(40, "feet"),
  33017. weight: math.unit(64000, "lb"),
  33018. name: "Front (Beast)",
  33019. image: {
  33020. source: "./media/characters/midnight-tales/front-beast.svg",
  33021. extra: 927/860,
  33022. bottom: 53/980
  33023. }
  33024. },
  33025. backBeast: {
  33026. height: math.unit(40, "feet"),
  33027. weight: math.unit(64000, "lb"),
  33028. name: "Back (Beast)",
  33029. image: {
  33030. source: "./media/characters/midnight-tales/back-beast.svg",
  33031. extra: 929/855,
  33032. bottom: 16/945
  33033. }
  33034. },
  33035. footBeast: {
  33036. height: math.unit(6.7, "feet"),
  33037. name: "Foot (Beast)",
  33038. image: {
  33039. source: "./media/characters/midnight-tales/foot-beast.svg"
  33040. }
  33041. },
  33042. headBeast: {
  33043. height: math.unit(8, "feet"),
  33044. name: "Head (Beast)",
  33045. image: {
  33046. source: "./media/characters/midnight-tales/head-beast.svg"
  33047. }
  33048. },
  33049. },
  33050. [
  33051. {
  33052. name: "Normal",
  33053. height: math.unit(5 + 5 / 12, "feet"),
  33054. default: true
  33055. },
  33056. {
  33057. name: "Macro",
  33058. height: math.unit(25, "feet")
  33059. },
  33060. ]
  33061. ))
  33062. characterMakers.push(() => makeCharacter(
  33063. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33064. {
  33065. front: {
  33066. height: math.unit(5 + 10/12, "feet"),
  33067. name: "Front",
  33068. image: {
  33069. source: "./media/characters/argon/front.svg",
  33070. extra: 2009/1935,
  33071. bottom: 118/2127
  33072. }
  33073. },
  33074. back: {
  33075. height: math.unit(5 + 10/12, "feet"),
  33076. name: "Back",
  33077. image: {
  33078. source: "./media/characters/argon/back.svg",
  33079. extra: 2047/1992,
  33080. bottom: 20/2067
  33081. }
  33082. },
  33083. frontDressed: {
  33084. height: math.unit(5 + 10/12, "feet"),
  33085. name: "Front (Dressed)",
  33086. image: {
  33087. source: "./media/characters/argon/front-dressed.svg",
  33088. extra: 2009/1935,
  33089. bottom: 118/2127
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Normal",
  33096. height: math.unit(5 + 10/12, "feet"),
  33097. default: true
  33098. },
  33099. ]
  33100. ))
  33101. characterMakers.push(() => makeCharacter(
  33102. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33103. {
  33104. front: {
  33105. height: math.unit(8 + 6/12, "feet"),
  33106. weight: math.unit(1150, "lb"),
  33107. name: "Front",
  33108. image: {
  33109. source: "./media/characters/kichi/front.svg",
  33110. extra: 1267/1164,
  33111. bottom: 61/1328
  33112. }
  33113. },
  33114. back: {
  33115. height: math.unit(8 + 6/12, "feet"),
  33116. weight: math.unit(1150, "lb"),
  33117. name: "Back",
  33118. image: {
  33119. source: "./media/characters/kichi/back.svg",
  33120. extra: 1273/1166,
  33121. bottom: 33/1306
  33122. }
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Normal",
  33128. height: math.unit(8 + 6/12, "feet"),
  33129. default: true
  33130. },
  33131. ]
  33132. ))
  33133. characterMakers.push(() => makeCharacter(
  33134. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33135. {
  33136. front: {
  33137. height: math.unit(6, "feet"),
  33138. weight: math.unit(210, "lb"),
  33139. name: "Front",
  33140. image: {
  33141. source: "./media/characters/manetel-greyscale/front.svg",
  33142. extra: 350/312,
  33143. bottom: 8/358
  33144. }
  33145. },
  33146. },
  33147. [
  33148. {
  33149. name: "Micro",
  33150. height: math.unit(2, "inches")
  33151. },
  33152. {
  33153. name: "Normal",
  33154. height: math.unit(6, "feet"),
  33155. default: true
  33156. },
  33157. {
  33158. name: "Minimacro",
  33159. height: math.unit(17, "feet")
  33160. },
  33161. {
  33162. name: "Macro",
  33163. height: math.unit(117, "feet")
  33164. },
  33165. ]
  33166. ))
  33167. characterMakers.push(() => makeCharacter(
  33168. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33169. {
  33170. side: {
  33171. height: math.unit(5 + 1/12, "feet"),
  33172. weight: math.unit(418, "lb"),
  33173. name: "Side",
  33174. image: {
  33175. source: "./media/characters/softpurr/side.svg",
  33176. extra: 1993/1945,
  33177. bottom: 134/2127
  33178. }
  33179. },
  33180. front: {
  33181. height: math.unit(5 + 1/12, "feet"),
  33182. weight: math.unit(418, "lb"),
  33183. name: "Front",
  33184. image: {
  33185. source: "./media/characters/softpurr/front.svg",
  33186. extra: 1950/1856,
  33187. bottom: 174/2124
  33188. }
  33189. },
  33190. paw: {
  33191. height: math.unit(1, "feet"),
  33192. name: "Paw",
  33193. image: {
  33194. source: "./media/characters/softpurr/paw.svg"
  33195. }
  33196. },
  33197. },
  33198. [
  33199. {
  33200. name: "Normal",
  33201. height: math.unit(5 + 1/12, "feet"),
  33202. default: true
  33203. },
  33204. ]
  33205. ))
  33206. characterMakers.push(() => makeCharacter(
  33207. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33208. {
  33209. front: {
  33210. height: math.unit(260, "meters"),
  33211. name: "Front",
  33212. image: {
  33213. source: "./media/characters/anahita/front.svg",
  33214. extra: 665/635,
  33215. bottom: 89/754
  33216. }
  33217. },
  33218. },
  33219. [
  33220. {
  33221. name: "Macro",
  33222. height: math.unit(260, "meters"),
  33223. default: true
  33224. },
  33225. ]
  33226. ))
  33227. characterMakers.push(() => makeCharacter(
  33228. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33229. {
  33230. front: {
  33231. height: math.unit(4 + 10/12, "feet"),
  33232. weight: math.unit(160, "lb"),
  33233. name: "Front",
  33234. image: {
  33235. source: "./media/characters/chip-mouse/front.svg",
  33236. extra: 3528/3408,
  33237. bottom: 0/3528
  33238. }
  33239. },
  33240. frontNsfw: {
  33241. height: math.unit(4 + 10/12, "feet"),
  33242. weight: math.unit(160, "lb"),
  33243. name: "Front (NSFW)",
  33244. image: {
  33245. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33246. extra: 3528/3408,
  33247. bottom: 0/3528
  33248. }
  33249. },
  33250. },
  33251. [
  33252. {
  33253. name: "Normal",
  33254. height: math.unit(4 + 10/12, "feet"),
  33255. default: true
  33256. },
  33257. ]
  33258. ))
  33259. characterMakers.push(() => makeCharacter(
  33260. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33261. {
  33262. side: {
  33263. height: math.unit(10, "feet"),
  33264. weight: math.unit(14000, "lb"),
  33265. name: "Side",
  33266. image: {
  33267. source: "./media/characters/kremm/side.svg",
  33268. extra: 1390/1053,
  33269. bottom: 90/1480
  33270. }
  33271. },
  33272. gut: {
  33273. height: math.unit(5.8, "feet"),
  33274. name: "Gut",
  33275. image: {
  33276. source: "./media/characters/kremm/gut.svg"
  33277. }
  33278. },
  33279. ass: {
  33280. height: math.unit(6.1, "feet"),
  33281. name: "Ass",
  33282. image: {
  33283. source: "./media/characters/kremm/ass.svg"
  33284. }
  33285. },
  33286. jaws: {
  33287. height: math.unit(2.2, "feet"),
  33288. name: "Jaws",
  33289. image: {
  33290. source: "./media/characters/kremm/jaws.svg"
  33291. }
  33292. },
  33293. dick: {
  33294. height: math.unit(4.26, "feet"),
  33295. name: "Dick",
  33296. image: {
  33297. source: "./media/characters/kremm/dick.svg"
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(10, "feet"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(30, "stories"),
  33314. name: "Front",
  33315. image: {
  33316. source: "./media/characters/kai/front.svg",
  33317. extra: 1892/1718,
  33318. bottom: 162/2054
  33319. }
  33320. },
  33321. },
  33322. [
  33323. {
  33324. name: "Macro",
  33325. height: math.unit(30, "stories"),
  33326. default: true
  33327. },
  33328. ]
  33329. ))
  33330. characterMakers.push(() => makeCharacter(
  33331. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33332. {
  33333. front: {
  33334. height: math.unit(6 + 4/12, "feet"),
  33335. weight: math.unit(145, "lb"),
  33336. name: "Front",
  33337. image: {
  33338. source: "./media/characters/sykes/front.svg",
  33339. extra: 1321 / 1187,
  33340. bottom: 66 / 1387
  33341. }
  33342. },
  33343. back: {
  33344. height: math.unit(6 + 4/12, "feet"),
  33345. weight: math.unit(145, "lb"),
  33346. name: "Back",
  33347. image: {
  33348. source: "./media/characters/sykes/back.svg",
  33349. extra: 1326/1181,
  33350. bottom: 31/1357
  33351. }
  33352. },
  33353. handBack: {
  33354. height: math.unit(0.9, "feet"),
  33355. name: "Hand (Back)",
  33356. image: {
  33357. source: "./media/characters/sykes/hand-back.svg"
  33358. }
  33359. },
  33360. handFront: {
  33361. height: math.unit(0.839, "feet"),
  33362. name: "Hand (Front)",
  33363. image: {
  33364. source: "./media/characters/sykes/hand-front.svg"
  33365. }
  33366. },
  33367. leftFoot: {
  33368. height: math.unit(1.2, "feet"),
  33369. name: "Foot (Left)",
  33370. image: {
  33371. source: "./media/characters/sykes/foot-left.svg"
  33372. }
  33373. },
  33374. rightFoot: {
  33375. height: math.unit(1.2, "feet"),
  33376. name: "Foot (Right)",
  33377. image: {
  33378. source: "./media/characters/sykes/foot-right.svg"
  33379. }
  33380. },
  33381. maw: {
  33382. height: math.unit(1.93, "feet"),
  33383. name: "Maw",
  33384. image: {
  33385. source: "./media/characters/sykes/maw.svg"
  33386. }
  33387. },
  33388. teeth: {
  33389. height: math.unit(0.51, "feet"),
  33390. name: "Teeth",
  33391. image: {
  33392. source: "./media/characters/sykes/teeth.svg"
  33393. }
  33394. },
  33395. tongue: {
  33396. height: math.unit(2.13, "feet"),
  33397. name: "Tongue",
  33398. image: {
  33399. source: "./media/characters/sykes/tongue.svg"
  33400. }
  33401. },
  33402. uvula: {
  33403. height: math.unit(0.16, "feet"),
  33404. name: "Uvula",
  33405. image: {
  33406. source: "./media/characters/sykes/uvula.svg"
  33407. }
  33408. },
  33409. collar: {
  33410. height: math.unit(0.287, "feet"),
  33411. name: "Collar",
  33412. image: {
  33413. source: "./media/characters/sykes/collar.svg"
  33414. }
  33415. },
  33416. },
  33417. [
  33418. {
  33419. name: "Shrunken",
  33420. height: math.unit(5, "inches")
  33421. },
  33422. {
  33423. name: "Normal",
  33424. height: math.unit(6 + 4 / 12, "feet"),
  33425. default: true
  33426. },
  33427. {
  33428. name: "Big",
  33429. height: math.unit(15, "feet")
  33430. },
  33431. ]
  33432. ))
  33433. characterMakers.push(() => makeCharacter(
  33434. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33435. {
  33436. front: {
  33437. height: math.unit(5 + 8/12, "feet"),
  33438. weight: math.unit(190, "lb"),
  33439. name: "Front",
  33440. image: {
  33441. source: "./media/characters/oven-otter/front.svg",
  33442. extra: 1809/1740,
  33443. bottom: 181/1990
  33444. }
  33445. },
  33446. back: {
  33447. height: math.unit(5 + 8/12, "feet"),
  33448. weight: math.unit(190, "lb"),
  33449. name: "Back",
  33450. image: {
  33451. source: "./media/characters/oven-otter/back.svg",
  33452. extra: 1709/1635,
  33453. bottom: 118/1827
  33454. }
  33455. },
  33456. hand: {
  33457. height: math.unit(1.07, "feet"),
  33458. name: "Hand",
  33459. image: {
  33460. source: "./media/characters/oven-otter/hand.svg"
  33461. }
  33462. },
  33463. beans: {
  33464. height: math.unit(1.74, "feet"),
  33465. name: "Beans",
  33466. image: {
  33467. source: "./media/characters/oven-otter/beans.svg"
  33468. }
  33469. },
  33470. },
  33471. [
  33472. {
  33473. name: "Micro",
  33474. height: math.unit(0.5, "inches")
  33475. },
  33476. {
  33477. name: "Normal",
  33478. height: math.unit(5 + 8/12, "feet"),
  33479. default: true
  33480. },
  33481. {
  33482. name: "Macro",
  33483. height: math.unit(250, "feet")
  33484. },
  33485. {
  33486. name: "Really High",
  33487. height: math.unit(420, "feet")
  33488. },
  33489. ]
  33490. ))
  33491. characterMakers.push(() => makeCharacter(
  33492. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33493. {
  33494. front: {
  33495. height: math.unit(5, "meters"),
  33496. weight: math.unit(292000000000000, "kg"),
  33497. name: "Front",
  33498. image: {
  33499. source: "./media/characters/devourer/front.svg",
  33500. extra: 1800/1733,
  33501. bottom: 211/2011
  33502. }
  33503. },
  33504. maw: {
  33505. height: math.unit(1.1, "meter"),
  33506. name: "Maw",
  33507. image: {
  33508. source: "./media/characters/devourer/maw.svg"
  33509. }
  33510. },
  33511. },
  33512. [
  33513. {
  33514. name: "Small",
  33515. height: math.unit(3, "meters")
  33516. },
  33517. {
  33518. name: "Large",
  33519. height: math.unit(5, "meters"),
  33520. default: true
  33521. },
  33522. ]
  33523. ))
  33524. characterMakers.push(() => makeCharacter(
  33525. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33526. {
  33527. front: {
  33528. height: math.unit(6, "feet"),
  33529. weight: math.unit(400, "lb"),
  33530. name: "Front",
  33531. image: {
  33532. source: "./media/characters/ellarby/front.svg",
  33533. extra: 1909/1763,
  33534. bottom: 80/1989
  33535. }
  33536. },
  33537. back: {
  33538. height: math.unit(6, "feet"),
  33539. weight: math.unit(400, "lb"),
  33540. name: "Back",
  33541. image: {
  33542. source: "./media/characters/ellarby/back.svg",
  33543. extra: 1914/1784,
  33544. bottom: 172/2086
  33545. }
  33546. },
  33547. },
  33548. [
  33549. {
  33550. name: "Mischief",
  33551. height: math.unit(18, "inches")
  33552. },
  33553. {
  33554. name: "Trouble",
  33555. height: math.unit(12, "feet")
  33556. },
  33557. {
  33558. name: "Havoc",
  33559. height: math.unit(200, "feet"),
  33560. default: true
  33561. },
  33562. {
  33563. name: "Pandemonium",
  33564. height: math.unit(1, "mile")
  33565. },
  33566. {
  33567. name: "Catastrophe",
  33568. height: math.unit(100, "miles")
  33569. },
  33570. ]
  33571. ))
  33572. characterMakers.push(() => makeCharacter(
  33573. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33574. {
  33575. front: {
  33576. height: math.unit(4.7, "meters"),
  33577. weight: math.unit(6500, "kg"),
  33578. name: "Front",
  33579. image: {
  33580. source: "./media/characters/vex/front.svg",
  33581. extra: 1288/1140,
  33582. bottom: 100/1388
  33583. }
  33584. },
  33585. },
  33586. [
  33587. {
  33588. name: "Normal",
  33589. height: math.unit(4.7, "meters"),
  33590. default: true
  33591. },
  33592. ]
  33593. ))
  33594. characterMakers.push(() => makeCharacter(
  33595. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33596. {
  33597. normal: {
  33598. height: math.unit(6, "feet"),
  33599. weight: math.unit(350, "lb"),
  33600. name: "Normal",
  33601. image: {
  33602. source: "./media/characters/teshy/normal.svg",
  33603. extra: 1795/1735,
  33604. bottom: 16/1811
  33605. }
  33606. },
  33607. monsterFront: {
  33608. height: math.unit(12, "feet"),
  33609. weight: math.unit(4700, "lb"),
  33610. name: "Monster (Front)",
  33611. image: {
  33612. source: "./media/characters/teshy/monster-front.svg",
  33613. extra: 2042/2034,
  33614. bottom: 128/2170
  33615. }
  33616. },
  33617. monsterSide: {
  33618. height: math.unit(12, "feet"),
  33619. weight: math.unit(4700, "lb"),
  33620. name: "Monster (Side)",
  33621. image: {
  33622. source: "./media/characters/teshy/monster-side.svg",
  33623. extra: 2067/2056,
  33624. bottom: 70/2137
  33625. }
  33626. },
  33627. monsterBack: {
  33628. height: math.unit(12, "feet"),
  33629. weight: math.unit(4700, "lb"),
  33630. name: "Monster (Back)",
  33631. image: {
  33632. source: "./media/characters/teshy/monster-back.svg",
  33633. extra: 1921/1914,
  33634. bottom: 171/2092
  33635. }
  33636. },
  33637. },
  33638. [
  33639. {
  33640. name: "Normal",
  33641. height: math.unit(6, "feet"),
  33642. default: true
  33643. },
  33644. ]
  33645. ))
  33646. characterMakers.push(() => makeCharacter(
  33647. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33648. {
  33649. front: {
  33650. height: math.unit(6, "feet"),
  33651. name: "Front",
  33652. image: {
  33653. source: "./media/characters/ramey/front.svg",
  33654. extra: 790/787,
  33655. bottom: 27/817
  33656. }
  33657. },
  33658. },
  33659. [
  33660. {
  33661. name: "Normal",
  33662. height: math.unit(6, "feet"),
  33663. default: true
  33664. },
  33665. ]
  33666. ))
  33667. characterMakers.push(() => makeCharacter(
  33668. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33669. {
  33670. front: {
  33671. height: math.unit(5 + 5/12, "feet"),
  33672. weight: math.unit(120, "lb"),
  33673. name: "Front",
  33674. image: {
  33675. source: "./media/characters/phirae/front.svg",
  33676. extra: 2491/2436,
  33677. bottom: 38/2529
  33678. }
  33679. },
  33680. },
  33681. [
  33682. {
  33683. name: "Normal",
  33684. height: math.unit(5 + 5/12, "feet"),
  33685. default: true
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(6, "feet"),
  33694. weight: math.unit(150, "lb"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/stagglas/front.svg",
  33698. extra: 962/882,
  33699. bottom: 53/1015
  33700. }
  33701. },
  33702. },
  33703. [
  33704. {
  33705. name: "Normal",
  33706. height: math.unit(5 + 3/12, "feet"),
  33707. default: true
  33708. },
  33709. ]
  33710. ))
  33711. characterMakers.push(() => makeCharacter(
  33712. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33713. {
  33714. front: {
  33715. height: math.unit(5 + 4/12, "feet"),
  33716. weight: math.unit(145, "lb"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/starra/front.svg",
  33720. extra: 1790/1691,
  33721. bottom: 91/1881
  33722. }
  33723. },
  33724. },
  33725. [
  33726. {
  33727. name: "Normal",
  33728. height: math.unit(5 + 4/12, "feet"),
  33729. default: true
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33735. {
  33736. front: {
  33737. height: math.unit(2.2, "meters"),
  33738. name: "Front",
  33739. image: {
  33740. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33741. extra: 1194/1005,
  33742. bottom: 25/1219
  33743. }
  33744. },
  33745. },
  33746. [
  33747. {
  33748. name: "Normal",
  33749. height: math.unit(2.2, "meters"),
  33750. default: true
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33756. {
  33757. side: {
  33758. height: math.unit(8 + 2/12, "feet"),
  33759. weight: math.unit(1240, "lb"),
  33760. name: "Side",
  33761. image: {
  33762. source: "./media/characters/mika-valentine/side.svg",
  33763. extra: 2670/2501,
  33764. bottom: 250/2920
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(8 + 2/12, "feet"),
  33772. default: true
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(7 + 2/12, "feet"),
  33781. name: "Front",
  33782. image: {
  33783. source: "./media/characters/xoltol/front.svg",
  33784. extra: 2212/2124,
  33785. bottom: 84/2296
  33786. }
  33787. },
  33788. side: {
  33789. height: math.unit(7 + 2/12, "feet"),
  33790. name: "Side",
  33791. image: {
  33792. source: "./media/characters/xoltol/side.svg",
  33793. extra: 2273/2197,
  33794. bottom: 26/2299
  33795. }
  33796. },
  33797. hand: {
  33798. height: math.unit(2.5, "feet"),
  33799. name: "Hand",
  33800. image: {
  33801. source: "./media/characters/xoltol/hand.svg"
  33802. }
  33803. },
  33804. },
  33805. [
  33806. {
  33807. name: "Small-ish",
  33808. height: math.unit(5 + 11/12, "feet")
  33809. },
  33810. {
  33811. name: "Normal",
  33812. height: math.unit(7 + 2/12, "feet")
  33813. },
  33814. {
  33815. name: "\"Macro\"",
  33816. height: math.unit(14 + 9/12, "feet"),
  33817. default: true
  33818. },
  33819. {
  33820. name: "Alternate Height",
  33821. height: math.unit(20, "feet")
  33822. },
  33823. {
  33824. name: "Actually Macro",
  33825. height: math.unit(100, "feet")
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33831. {
  33832. front: {
  33833. height: math.unit(5 + 2/12, "feet"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/kotetsu-redwood/front.svg",
  33837. extra: 1053/942,
  33838. bottom: 60/1113
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Normal",
  33845. height: math.unit(5 + 2/12, "feet"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(2.4, "meters"),
  33855. weight: math.unit(125, "kg"),
  33856. name: "Front",
  33857. image: {
  33858. source: "./media/characters/lilith/front.svg",
  33859. extra: 1590/1513,
  33860. bottom: 203/1793
  33861. }
  33862. },
  33863. },
  33864. [
  33865. {
  33866. name: "Humanoid",
  33867. height: math.unit(2.4, "meters")
  33868. },
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(6, "meters"),
  33872. default: true
  33873. },
  33874. {
  33875. name: "Largest",
  33876. height: math.unit(55, "meters")
  33877. },
  33878. ]
  33879. ))
  33880. characterMakers.push(() => makeCharacter(
  33881. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33882. {
  33883. front: {
  33884. height: math.unit(8 + 4/12, "feet"),
  33885. weight: math.unit(535, "lb"),
  33886. name: "Front",
  33887. image: {
  33888. source: "./media/characters/beh'kah-bolger/front.svg",
  33889. extra: 1660/1603,
  33890. bottom: 37/1697
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Normal",
  33897. height: math.unit(8 + 4/12, "feet"),
  33898. default: true
  33899. },
  33900. {
  33901. name: "Kaiju",
  33902. height: math.unit(250, "feet")
  33903. },
  33904. {
  33905. name: "Still Growing",
  33906. height: math.unit(10, "miles")
  33907. },
  33908. {
  33909. name: "Continental",
  33910. height: math.unit(5000, "miles")
  33911. },
  33912. {
  33913. name: "Final Form",
  33914. height: math.unit(2500000, "miles")
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33920. {
  33921. front: {
  33922. height: math.unit(7 + 2/12, "feet"),
  33923. weight: math.unit(230, "kg"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/tatyana-milewska/front.svg",
  33927. extra: 1199/1150,
  33928. bottom: 86/1285
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Normal",
  33935. height: math.unit(7 + 2/12, "feet"),
  33936. default: true
  33937. },
  33938. {
  33939. name: "Big",
  33940. height: math.unit(12, "feet")
  33941. },
  33942. {
  33943. name: "Minimacro",
  33944. height: math.unit(20, "feet")
  33945. },
  33946. {
  33947. name: "Macro",
  33948. height: math.unit(120, "feet")
  33949. },
  33950. ]
  33951. ))
  33952. characterMakers.push(() => makeCharacter(
  33953. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33954. {
  33955. front: {
  33956. height: math.unit(7 + 8/12, "feet"),
  33957. weight: math.unit(152, "kg"),
  33958. name: "Front",
  33959. image: {
  33960. source: "./media/characters/helen-arri/front.svg",
  33961. extra: 440/423,
  33962. bottom: 14/454
  33963. }
  33964. },
  33965. back: {
  33966. height: math.unit(7 + 8/12, "feet"),
  33967. weight: math.unit(152, "kg"),
  33968. name: "Back",
  33969. image: {
  33970. source: "./media/characters/helen-arri/back.svg",
  33971. extra: 443/426,
  33972. bottom: 8/451
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Normal",
  33979. height: math.unit(7 + 8/12, "feet"),
  33980. default: true
  33981. },
  33982. {
  33983. name: "Big",
  33984. height: math.unit(14, "feet")
  33985. },
  33986. {
  33987. name: "Minimacro",
  33988. height: math.unit(24, "feet")
  33989. },
  33990. {
  33991. name: "Macro",
  33992. height: math.unit(140, "feet")
  33993. },
  33994. ]
  33995. ))
  33996. characterMakers.push(() => makeCharacter(
  33997. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33998. {
  33999. front: {
  34000. height: math.unit(6, "meters"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/ehanu-rehu/front.svg",
  34004. extra: 1800/1800,
  34005. bottom: 59/1859
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(6, "meters"),
  34013. default: true
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34019. {
  34020. front: {
  34021. height: math.unit(7 + 3/12, "feet"),
  34022. name: "Front",
  34023. image: {
  34024. source: "./media/characters/renholder/front.svg",
  34025. extra: 3096/2960,
  34026. bottom: 250/3346
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Normal Bat",
  34033. height: math.unit(7 + 3/12, "feet"),
  34034. default: true
  34035. },
  34036. {
  34037. name: "Slightly Tall Bat",
  34038. height: math.unit(100, "feet")
  34039. },
  34040. {
  34041. name: "Big Bat",
  34042. height: math.unit(1000, "feet")
  34043. },
  34044. {
  34045. name: "City-Sized Bat",
  34046. height: math.unit(200000, "feet")
  34047. },
  34048. {
  34049. name: "Bigger Bat",
  34050. height: math.unit(10000, "miles")
  34051. },
  34052. {
  34053. name: "Solar Sized Bat",
  34054. height: math.unit(100, "AU")
  34055. },
  34056. {
  34057. name: "Galactic Bat",
  34058. height: math.unit(200000, "lightyears")
  34059. },
  34060. {
  34061. name: "Universally Known Bat",
  34062. height: math.unit(1, "universe")
  34063. },
  34064. ]
  34065. ))
  34066. characterMakers.push(() => makeCharacter(
  34067. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34068. {
  34069. front: {
  34070. height: math.unit(6 + 11/12, "feet"),
  34071. weight: math.unit(250, "lb"),
  34072. name: "Front",
  34073. image: {
  34074. source: "./media/characters/cookiecat/front.svg",
  34075. extra: 893/827,
  34076. bottom: 14/907
  34077. }
  34078. },
  34079. },
  34080. [
  34081. {
  34082. name: "Micro",
  34083. height: math.unit(3, "inches")
  34084. },
  34085. {
  34086. name: "Normal",
  34087. height: math.unit(6 + 11/12, "feet"),
  34088. default: true
  34089. },
  34090. {
  34091. name: "Macro",
  34092. height: math.unit(100, "feet")
  34093. },
  34094. {
  34095. name: "Macro+",
  34096. height: math.unit(404, "feet")
  34097. },
  34098. {
  34099. name: "Megamacro",
  34100. height: math.unit(165, "miles")
  34101. },
  34102. {
  34103. name: "Planetary",
  34104. height: math.unit(4600, "miles")
  34105. },
  34106. ]
  34107. ))
  34108. characterMakers.push(() => makeCharacter(
  34109. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34110. {
  34111. front: {
  34112. height: math.unit(10 + 3/12, "feet"),
  34113. weight: math.unit(1500, "lb"),
  34114. name: "Front",
  34115. image: {
  34116. source: "./media/characters/tux-kusanagi/front.svg",
  34117. extra: 944/840,
  34118. bottom: 39/983
  34119. }
  34120. },
  34121. back: {
  34122. height: math.unit(10 + 3/12, "feet"),
  34123. weight: math.unit(1500, "lb"),
  34124. name: "Back",
  34125. image: {
  34126. source: "./media/characters/tux-kusanagi/back.svg",
  34127. extra: 941/842,
  34128. bottom: 28/969
  34129. }
  34130. },
  34131. rump: {
  34132. height: math.unit(5.25, "feet"),
  34133. name: "Rump",
  34134. image: {
  34135. source: "./media/characters/tux-kusanagi/rump.svg"
  34136. }
  34137. },
  34138. beak: {
  34139. height: math.unit(1.54, "feet"),
  34140. name: "Beak",
  34141. image: {
  34142. source: "./media/characters/tux-kusanagi/beak.svg"
  34143. }
  34144. },
  34145. },
  34146. [
  34147. {
  34148. name: "Normal",
  34149. height: math.unit(10 + 3/12, "feet"),
  34150. default: true
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34156. {
  34157. front: {
  34158. height: math.unit(58, "feet"),
  34159. weight: math.unit(200, "tons"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/uzarmazari/front.svg",
  34163. extra: 1575/1455,
  34164. bottom: 152/1727
  34165. }
  34166. },
  34167. back: {
  34168. height: math.unit(58, "feet"),
  34169. weight: math.unit(200, "tons"),
  34170. name: "Back",
  34171. image: {
  34172. source: "./media/characters/uzarmazari/back.svg",
  34173. extra: 1585/1510,
  34174. bottom: 157/1742
  34175. }
  34176. },
  34177. head: {
  34178. height: math.unit(26, "feet"),
  34179. name: "Head",
  34180. image: {
  34181. source: "./media/characters/uzarmazari/head.svg"
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Normal",
  34188. height: math.unit(58, "feet"),
  34189. default: true
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34195. {
  34196. side: {
  34197. height: math.unit(15, "feet"),
  34198. name: "Side",
  34199. image: {
  34200. source: "./media/characters/akitu/side.svg",
  34201. extra: 1421/1321,
  34202. bottom: 157/1578
  34203. }
  34204. },
  34205. front: {
  34206. height: math.unit(15, "feet"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/akitu/front.svg",
  34210. extra: 1435/1326,
  34211. bottom: 232/1667
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Normal",
  34218. height: math.unit(15, "feet"),
  34219. default: true
  34220. },
  34221. ]
  34222. ))
  34223. characterMakers.push(() => makeCharacter(
  34224. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34225. {
  34226. front: {
  34227. height: math.unit(10 + 8/12, "feet"),
  34228. name: "Front",
  34229. image: {
  34230. source: "./media/characters/azalie-croixland/front.svg",
  34231. extra: 1972/1856,
  34232. bottom: 31/2003
  34233. }
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Original Height",
  34239. height: math.unit(5 + 4/12, "feet")
  34240. },
  34241. {
  34242. name: "Normal Height",
  34243. height: math.unit(10 + 8/12, "feet"),
  34244. default: true
  34245. },
  34246. ]
  34247. ))
  34248. characterMakers.push(() => makeCharacter(
  34249. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34250. {
  34251. side: {
  34252. height: math.unit(7 + 1/12, "feet"),
  34253. weight: math.unit(245, "lb"),
  34254. name: "Side",
  34255. image: {
  34256. source: "./media/characters/kavus-kazian/side.svg",
  34257. extra: 349/342,
  34258. bottom: 15/364
  34259. }
  34260. },
  34261. },
  34262. [
  34263. {
  34264. name: "Normal",
  34265. height: math.unit(7 + 1/12, "feet"),
  34266. default: true
  34267. },
  34268. ]
  34269. ))
  34270. characterMakers.push(() => makeCharacter(
  34271. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34272. {
  34273. normal: {
  34274. height: math.unit(5 + 11/12, "feet"),
  34275. name: "Normal",
  34276. image: {
  34277. source: "./media/characters/moonlight-rose/normal.svg",
  34278. extra: 1979/1835,
  34279. bottom: 14/1993
  34280. }
  34281. },
  34282. demon: {
  34283. height: math.unit(5, "km"),
  34284. name: "Demon",
  34285. image: {
  34286. source: "./media/characters/moonlight-rose/demon.svg",
  34287. extra: 986/916,
  34288. bottom: 28/1014
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "\"Natural\" height",
  34295. height: math.unit(5 + 11/12, "feet")
  34296. },
  34297. {
  34298. name: "Comfortable Size",
  34299. height: math.unit(40, "meters")
  34300. },
  34301. {
  34302. name: "Common Size",
  34303. height: math.unit(50, "km"),
  34304. default: true
  34305. },
  34306. {
  34307. name: "Demonic",
  34308. height: math.unit(1.24415e+21, "meters")
  34309. },
  34310. ]
  34311. ))
  34312. characterMakers.push(() => makeCharacter(
  34313. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34314. {
  34315. front: {
  34316. height: math.unit(16, "feet"),
  34317. weight: math.unit(610, "kg"),
  34318. name: "Front",
  34319. image: {
  34320. source: "./media/characters/huckle/front.svg",
  34321. extra: 1731/1625,
  34322. bottom: 33/1764
  34323. }
  34324. },
  34325. back: {
  34326. height: math.unit(16, "feet"),
  34327. weight: math.unit(610, "kg"),
  34328. name: "Back",
  34329. image: {
  34330. source: "./media/characters/huckle/back.svg",
  34331. extra: 1738/1651,
  34332. bottom: 37/1775
  34333. }
  34334. },
  34335. laughing: {
  34336. height: math.unit(3.75, "feet"),
  34337. name: "Laughing",
  34338. image: {
  34339. source: "./media/characters/huckle/laughing.svg"
  34340. }
  34341. },
  34342. angry: {
  34343. height: math.unit(4.15, "feet"),
  34344. name: "Angry",
  34345. image: {
  34346. source: "./media/characters/huckle/angry.svg"
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(16, "feet"),
  34354. default: true
  34355. },
  34356. {
  34357. name: "Mini Macro",
  34358. height: math.unit(463, "feet")
  34359. },
  34360. {
  34361. name: "Macro",
  34362. height: math.unit(1680, "meters")
  34363. },
  34364. {
  34365. name: "Mega Macro",
  34366. height: math.unit(175, "km")
  34367. },
  34368. {
  34369. name: "Terra Macro",
  34370. height: math.unit(32, "gigameters")
  34371. },
  34372. {
  34373. name: "Multiverse+",
  34374. height: math.unit(2.56e23, "yottameters")
  34375. },
  34376. ]
  34377. ))
  34378. characterMakers.push(() => makeCharacter(
  34379. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34380. {
  34381. front: {
  34382. height: math.unit(6 + 9/12, "feet"),
  34383. weight: math.unit(280, "lb"),
  34384. name: "Front",
  34385. image: {
  34386. source: "./media/characters/candy/front.svg",
  34387. extra: 234/217,
  34388. bottom: 11/245
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Really Small",
  34395. height: math.unit(0.1, "nm")
  34396. },
  34397. {
  34398. name: "Micro",
  34399. height: math.unit(2, "inches")
  34400. },
  34401. {
  34402. name: "Normal",
  34403. height: math.unit(6 + 9/12, "feet"),
  34404. default: true
  34405. },
  34406. {
  34407. name: "Small Macro",
  34408. height: math.unit(69, "feet")
  34409. },
  34410. {
  34411. name: "Macro",
  34412. height: math.unit(160, "feet")
  34413. },
  34414. {
  34415. name: "Megamacro",
  34416. height: math.unit(22000, "miles")
  34417. },
  34418. {
  34419. name: "Gigamacro",
  34420. height: math.unit(50000, "miles")
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(4, "feet"),
  34429. weight: math.unit(90, "lb"),
  34430. name: "Front",
  34431. image: {
  34432. source: "./media/characters/joey-mcdonald/front.svg",
  34433. extra: 1059/852,
  34434. bottom: 33/1092
  34435. }
  34436. },
  34437. back: {
  34438. height: math.unit(4, "feet"),
  34439. weight: math.unit(90, "lb"),
  34440. name: "Back",
  34441. image: {
  34442. source: "./media/characters/joey-mcdonald/back.svg",
  34443. extra: 1077/879,
  34444. bottom: 5/1082
  34445. }
  34446. },
  34447. },
  34448. [
  34449. {
  34450. name: "Normal",
  34451. height: math.unit(4, "feet"),
  34452. default: true
  34453. },
  34454. ]
  34455. ))
  34456. characterMakers.push(() => makeCharacter(
  34457. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34458. {
  34459. front: {
  34460. height: math.unit(12 + 6/12, "feet"),
  34461. name: "Front",
  34462. image: {
  34463. source: "./media/characters/kass-lockheed/front.svg",
  34464. extra: 354/343,
  34465. bottom: 9/363
  34466. }
  34467. },
  34468. back: {
  34469. height: math.unit(12 + 6/12, "feet"),
  34470. name: "Back",
  34471. image: {
  34472. source: "./media/characters/kass-lockheed/back.svg",
  34473. extra: 364/352,
  34474. bottom: 3/367
  34475. }
  34476. },
  34477. dick: {
  34478. height: math.unit(3.12, "feet"),
  34479. name: "Dick",
  34480. image: {
  34481. source: "./media/characters/kass-lockheed/dick.svg"
  34482. }
  34483. },
  34484. head: {
  34485. height: math.unit(2.6, "feet"),
  34486. name: "Head",
  34487. image: {
  34488. source: "./media/characters/kass-lockheed/head.svg"
  34489. }
  34490. },
  34491. bleh: {
  34492. height: math.unit(2.85, "feet"),
  34493. name: "Bleh",
  34494. image: {
  34495. source: "./media/characters/kass-lockheed/bleh.svg"
  34496. }
  34497. },
  34498. smug: {
  34499. height: math.unit(2.85, "feet"),
  34500. name: "Smug",
  34501. image: {
  34502. source: "./media/characters/kass-lockheed/smug.svg"
  34503. }
  34504. },
  34505. },
  34506. [
  34507. {
  34508. name: "Normal",
  34509. height: math.unit(12 + 6/12, "feet"),
  34510. default: true
  34511. },
  34512. ]
  34513. ))
  34514. characterMakers.push(() => makeCharacter(
  34515. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34516. {
  34517. front: {
  34518. height: math.unit(6 + 2/12, "feet"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/taylor/front.svg",
  34522. extra: 639/495,
  34523. bottom: 12/651
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Normal",
  34530. height: math.unit(6 + 2/12, "feet"),
  34531. default: true
  34532. },
  34533. {
  34534. name: "Big",
  34535. height: math.unit(15, "feet")
  34536. },
  34537. {
  34538. name: "Lorg",
  34539. height: math.unit(80, "feet")
  34540. },
  34541. {
  34542. name: "Too Lorg",
  34543. height: math.unit(120, "feet")
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(15, "feet"),
  34552. name: "Front",
  34553. image: {
  34554. source: "./media/characters/kaizer/front.svg",
  34555. extra: 1612/1436,
  34556. bottom: 43/1655
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Normal",
  34563. height: math.unit(15, "feet"),
  34564. default: true
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34570. {
  34571. front: {
  34572. height: math.unit(2, "feet"),
  34573. weight: math.unit(30, "lb"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/sandy/front.svg",
  34577. extra: 1439/1307,
  34578. bottom: 194/1633
  34579. }
  34580. },
  34581. },
  34582. [
  34583. {
  34584. name: "Normal",
  34585. height: math.unit(2, "feet"),
  34586. default: true
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(3, "feet"),
  34595. name: "Front",
  34596. image: {
  34597. source: "./media/characters/mellvi/front.svg",
  34598. extra: 1831/1630,
  34599. bottom: 58/1889
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Normal",
  34606. height: math.unit(3, "feet"),
  34607. default: true
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34613. {
  34614. front: {
  34615. height: math.unit(5 + 11/12, "feet"),
  34616. weight: math.unit(200, "lb"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/shirou/front.svg",
  34620. extra: 2491/2383,
  34621. bottom: 189/2680
  34622. }
  34623. },
  34624. back: {
  34625. height: math.unit(5 + 11/12, "feet"),
  34626. weight: math.unit(200, "lb"),
  34627. name: "Back",
  34628. image: {
  34629. source: "./media/characters/shirou/back.svg",
  34630. extra: 2554/2450,
  34631. bottom: 76/2630
  34632. }
  34633. },
  34634. },
  34635. [
  34636. {
  34637. name: "Normal",
  34638. height: math.unit(5 + 11/12, "feet"),
  34639. default: true
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34645. {
  34646. front: {
  34647. height: math.unit(6 + 3/12, "feet"),
  34648. weight: math.unit(177, "lb"),
  34649. name: "Front",
  34650. image: {
  34651. source: "./media/characters/noryu/front.svg",
  34652. extra: 973/885,
  34653. bottom: 10/983
  34654. }
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Normal",
  34660. height: math.unit(6 + 3/12, "feet"),
  34661. default: true
  34662. },
  34663. ]
  34664. ))
  34665. characterMakers.push(() => makeCharacter(
  34666. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34667. {
  34668. front: {
  34669. height: math.unit(5 + 6/12, "feet"),
  34670. weight: math.unit(170, "lb"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/mevolas-rubenido/front.svg",
  34674. extra: 2109/1901,
  34675. bottom: 96/2205
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(5 + 6/12, "feet"),
  34683. default: true
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(100, "feet"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/dee/front.svg",
  34695. extra: 2153/2036,
  34696. bottom: 59/2212
  34697. }
  34698. },
  34699. back: {
  34700. height: math.unit(100, "feet"),
  34701. name: "Back",
  34702. image: {
  34703. source: "./media/characters/dee/back.svg",
  34704. extra: 2183/2058,
  34705. bottom: 75/2258
  34706. }
  34707. },
  34708. foot: {
  34709. height: math.unit(19.43, "feet"),
  34710. name: "Foot",
  34711. image: {
  34712. source: "./media/characters/dee/foot.svg"
  34713. }
  34714. },
  34715. hoof: {
  34716. height: math.unit(20.6, "feet"),
  34717. name: "Hoof",
  34718. image: {
  34719. source: "./media/characters/dee/hoof.svg"
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Macro",
  34726. height: math.unit(100, "feet"),
  34727. default: true
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34733. {
  34734. front: {
  34735. height: math.unit(5 + 6/12, "feet"),
  34736. name: "Front",
  34737. image: {
  34738. source: "./media/characters/teh/front.svg",
  34739. extra: 1002/847,
  34740. bottom: 62/1064
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Normal",
  34747. height: math.unit(5 + 6/12, "feet"),
  34748. default: true
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34754. {
  34755. side: {
  34756. height: math.unit(6 + 1/12, "feet"),
  34757. weight: math.unit(204, "lb"),
  34758. name: "Side",
  34759. image: {
  34760. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34761. extra: 974/775,
  34762. bottom: 169/1143
  34763. }
  34764. },
  34765. sitting: {
  34766. height: math.unit(6 + 2/12, "feet"),
  34767. weight: math.unit(204, "lb"),
  34768. name: "Sitting",
  34769. image: {
  34770. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34771. extra: 1175/964,
  34772. bottom: 378/1553
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Normal",
  34779. height: math.unit(6 + 1/12, "feet"),
  34780. default: true
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(6, "inches"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/tululi/front.svg",
  34792. extra: 1997/1876,
  34793. bottom: 20/2017
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(6, "inches"),
  34801. default: true
  34802. },
  34803. ]
  34804. ))
  34805. characterMakers.push(() => makeCharacter(
  34806. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34807. {
  34808. front: {
  34809. height: math.unit(4 + 1/12, "feet"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/star/front.svg",
  34813. extra: 1493/1189,
  34814. bottom: 48/1541
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(4 + 1/12, "feet"),
  34822. default: true
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(6 + 3/12, "feet"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/comet/front.svg",
  34834. extra: 1681/1462,
  34835. bottom: 26/1707
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(6 + 3/12, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(950, "feet"),
  34852. name: "Front",
  34853. image: {
  34854. source: "./media/characters/vortex/front.svg",
  34855. extra: 1497/1434,
  34856. bottom: 56/1553
  34857. }
  34858. },
  34859. maw: {
  34860. height: math.unit(285, "feet"),
  34861. name: "Maw",
  34862. image: {
  34863. source: "./media/characters/vortex/maw.svg"
  34864. }
  34865. },
  34866. },
  34867. [
  34868. {
  34869. name: "Macro",
  34870. height: math.unit(950, "feet"),
  34871. default: true
  34872. },
  34873. ]
  34874. ))
  34875. characterMakers.push(() => makeCharacter(
  34876. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34877. {
  34878. front: {
  34879. height: math.unit(600, "feet"),
  34880. weight: math.unit(0.02, "grams"),
  34881. name: "Front",
  34882. image: {
  34883. source: "./media/characters/doodle/front.svg",
  34884. extra: 1578/1413,
  34885. bottom: 37/1615
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Macro",
  34892. height: math.unit(600, "feet"),
  34893. default: true
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34899. {
  34900. front: {
  34901. height: math.unit(6 + 6/12, "feet"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/jai/front.svg",
  34905. extra: 1645/1534,
  34906. bottom: 115/1760
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(6 + 6/12, "feet"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34920. {
  34921. front: {
  34922. height: math.unit(6 + 8/12, "feet"),
  34923. name: "Front",
  34924. image: {
  34925. source: "./media/characters/pixel/front.svg",
  34926. extra: 1900/1735,
  34927. bottom: 63/1963
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Normal",
  34934. height: math.unit(6 + 8/12, "feet"),
  34935. default: true
  34936. },
  34937. ]
  34938. ))
  34939. characterMakers.push(() => makeCharacter(
  34940. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34941. {
  34942. front: {
  34943. height: math.unit(4 + 11/12, "feet"),
  34944. weight: math.unit(111, "lb"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/rhett/front.svg",
  34948. extra: 1682/1586,
  34949. bottom: 92/1774
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Mini",
  34956. height: math.unit(1 + 1/12, "feet")
  34957. },
  34958. {
  34959. name: "Normal",
  34960. height: math.unit(4 + 11/12, "feet"),
  34961. default: true
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(3 + 3/12, "feet"),
  34970. name: "Front",
  34971. image: {
  34972. source: "./media/characters/penny/front.svg",
  34973. extra: 1406/1311,
  34974. bottom: 26/1432
  34975. }
  34976. },
  34977. },
  34978. [
  34979. {
  34980. name: "Normal",
  34981. height: math.unit(3 + 3/12, "feet"),
  34982. default: true
  34983. },
  34984. ]
  34985. ))
  34986. characterMakers.push(() => makeCharacter(
  34987. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34988. {
  34989. front: {
  34990. height: math.unit(4 + 11/12, "feet"),
  34991. name: "Front",
  34992. image: {
  34993. source: "./media/characters/monty/front.svg",
  34994. extra: 1479/1209,
  34995. bottom: 0/1479
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(4 + 11/12, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(8 + 4/12, "feet"),
  35012. name: "Front",
  35013. image: {
  35014. source: "./media/characters/sterling/front.svg",
  35015. extra: 1420/1236,
  35016. bottom: 27/1447
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Normal",
  35023. height: math.unit(8 + 4/12, "feet"),
  35024. default: true
  35025. },
  35026. ]
  35027. ))
  35028. characterMakers.push(() => makeCharacter(
  35029. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35030. {
  35031. front: {
  35032. height: math.unit(15, "feet"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/marble/front.svg",
  35036. extra: 973/937,
  35037. bottom: 32/1005
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(15, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35051. {
  35052. front: {
  35053. height: math.unit(3, "inches"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/powder/front.svg",
  35057. extra: 1504/1334,
  35058. bottom: 518/2022
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(3, "inches"),
  35066. default: true
  35067. },
  35068. ]
  35069. ))
  35070. characterMakers.push(() => makeCharacter(
  35071. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35072. {
  35073. front: {
  35074. height: math.unit(4 + 5/12, "feet"),
  35075. name: "Front",
  35076. image: {
  35077. source: "./media/characters/joey-raccoon/front.svg",
  35078. extra: 1273/1197,
  35079. bottom: 0/1273
  35080. }
  35081. },
  35082. },
  35083. [
  35084. {
  35085. name: "Normal",
  35086. height: math.unit(4 + 5/12, "feet"),
  35087. default: true
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(8 + 4/12, "feet"),
  35096. name: "Front",
  35097. image: {
  35098. source: "./media/characters/vick/front.svg",
  35099. extra: 2187/2118,
  35100. bottom: 47/2234
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(8 + 4/12, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35114. {
  35115. front: {
  35116. height: math.unit(5 + 5/12, "feet"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/mitsy/front.svg",
  35120. extra: 1842/1695,
  35121. bottom: 0/1842
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(5 + 5/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(6 + 3/12, "feet"),
  35138. name: "Front",
  35139. image: {
  35140. source: "./media/characters/silvy/front.svg",
  35141. extra: 1995/1836,
  35142. bottom: 225/2220
  35143. }
  35144. },
  35145. },
  35146. [
  35147. {
  35148. name: "Normal",
  35149. height: math.unit(6 + 3/12, "feet"),
  35150. default: true
  35151. },
  35152. ]
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(3 + 8/12, "feet"),
  35159. name: "Front",
  35160. image: {
  35161. source: "./media/characters/rodney/front.svg",
  35162. extra: 1956/1747,
  35163. bottom: 31/1987
  35164. }
  35165. },
  35166. frontDressed: {
  35167. height: math.unit(2.9, "feet"),
  35168. name: "Front (Dressed)",
  35169. image: {
  35170. source: "./media/characters/rodney/front-dressed.svg",
  35171. extra: 1382/1241,
  35172. bottom: 385/1767
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(3 + 8/12, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(5 + 9/12, "feet"),
  35189. weight: math.unit(194, "lbs"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/zakail-sudekai/front.svg",
  35193. extra: 2696/2533,
  35194. bottom: 248/2944
  35195. }
  35196. },
  35197. maw: {
  35198. height: math.unit(1.35, "feet"),
  35199. name: "Maw",
  35200. image: {
  35201. source: "./media/characters/zakail-sudekai/maw.svg"
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Normal",
  35208. height: math.unit(5 + 9/12, "feet"),
  35209. default: true
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35215. {
  35216. front: {
  35217. height: math.unit(8 + 4/12, "feet"),
  35218. weight: math.unit(1200, "lb"),
  35219. name: "Front",
  35220. image: {
  35221. source: "./media/characters/eleanor/front.svg",
  35222. extra: 1226/1192,
  35223. bottom: 52/1278
  35224. }
  35225. },
  35226. back: {
  35227. height: math.unit(8 + 4/12, "feet"),
  35228. weight: math.unit(1200, "lb"),
  35229. name: "Back",
  35230. image: {
  35231. source: "./media/characters/eleanor/back.svg",
  35232. extra: 1242/1184,
  35233. bottom: 60/1302
  35234. }
  35235. },
  35236. head: {
  35237. height: math.unit(2.62, "feet"),
  35238. name: "Head",
  35239. image: {
  35240. source: "./media/characters/eleanor/head.svg"
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(8 + 4/12, "feet"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35254. {
  35255. front: {
  35256. height: math.unit(8 + 4/12, "feet"),
  35257. weight: math.unit(750, "lb"),
  35258. name: "Front",
  35259. image: {
  35260. source: "./media/characters/tanya/front.svg",
  35261. extra: 1749/1615,
  35262. bottom: 33/1782
  35263. }
  35264. },
  35265. },
  35266. [
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(8 + 4/12, "feet"),
  35270. default: true
  35271. },
  35272. ]
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35276. {
  35277. front: {
  35278. height: math.unit(5, "feet"),
  35279. weight: math.unit(225, "lb"),
  35280. name: "Front",
  35281. image: {
  35282. source: "./media/characters/cindy/front.svg",
  35283. extra: 1320/1250,
  35284. bottom: 42/1362
  35285. }
  35286. },
  35287. frontDressed: {
  35288. height: math.unit(5, "feet"),
  35289. weight: math.unit(225, "lb"),
  35290. name: "Front (Dressed)",
  35291. image: {
  35292. source: "./media/characters/cindy/front-dressed.svg",
  35293. extra: 1320/1250,
  35294. bottom: 42/1362
  35295. }
  35296. },
  35297. back: {
  35298. height: math.unit(5, "feet"),
  35299. weight: math.unit(225, "lb"),
  35300. name: "Back",
  35301. image: {
  35302. source: "./media/characters/cindy/back.svg",
  35303. extra: 1384/1346,
  35304. bottom: 14/1398
  35305. }
  35306. },
  35307. },
  35308. [
  35309. {
  35310. name: "Normal",
  35311. height: math.unit(5, "feet"),
  35312. default: true
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35318. {
  35319. front: {
  35320. height: math.unit(6 + 9/12, "feet"),
  35321. weight: math.unit(440, "lb"),
  35322. name: "Front",
  35323. image: {
  35324. source: "./media/characters/wilbur-owen/front.svg",
  35325. extra: 1575/1448,
  35326. bottom: 72/1647
  35327. }
  35328. },
  35329. back: {
  35330. height: math.unit(6 + 9/12, "feet"),
  35331. weight: math.unit(440, "lb"),
  35332. name: "Back",
  35333. image: {
  35334. source: "./media/characters/wilbur-owen/back.svg",
  35335. extra: 1578/1445,
  35336. bottom: 36/1614
  35337. }
  35338. },
  35339. },
  35340. [
  35341. {
  35342. name: "Normal",
  35343. height: math.unit(6 + 9/12, "feet"),
  35344. default: true
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35350. {
  35351. front: {
  35352. height: math.unit(6 + 5/12, "feet"),
  35353. weight: math.unit(650, "lb"),
  35354. name: "Front",
  35355. image: {
  35356. source: "./media/characters/keegan/front.svg",
  35357. extra: 2387/2198,
  35358. bottom: 33/2420
  35359. }
  35360. },
  35361. side: {
  35362. height: math.unit(6 + 5/12, "feet"),
  35363. weight: math.unit(650, "lb"),
  35364. name: "Side",
  35365. image: {
  35366. source: "./media/characters/keegan/side.svg",
  35367. extra: 2390/2202,
  35368. bottom: 47/2437
  35369. }
  35370. },
  35371. back: {
  35372. height: math.unit(6 + 5/12, "feet"),
  35373. weight: math.unit(650, "lb"),
  35374. name: "Back",
  35375. image: {
  35376. source: "./media/characters/keegan/back.svg",
  35377. extra: 2418/2268,
  35378. bottom: 15/2433
  35379. }
  35380. },
  35381. frontSfw: {
  35382. height: math.unit(6 + 5/12, "feet"),
  35383. weight: math.unit(650, "lb"),
  35384. name: "Front (SFW)",
  35385. image: {
  35386. source: "./media/characters/keegan/front-sfw.svg",
  35387. extra: 2387/2198,
  35388. bottom: 33/2420
  35389. }
  35390. },
  35391. beans: {
  35392. height: math.unit(1.85, "feet"),
  35393. name: "Beans",
  35394. image: {
  35395. source: "./media/characters/keegan/beans.svg"
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Normal",
  35402. height: math.unit(6 + 5/12, "feet"),
  35403. default: true
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(9, "feet"),
  35412. name: "Front",
  35413. image: {
  35414. source: "./media/characters/colton/front.svg",
  35415. extra: 1589/1326,
  35416. bottom: 139/1728
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(9, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(2 + 9/12, "feet"),
  35433. name: "Front",
  35434. image: {
  35435. source: "./media/characters/bora/front.svg",
  35436. extra: 1265/1250,
  35437. bottom: 24/1289
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(2 + 9/12, "feet"),
  35445. default: true
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35451. {
  35452. front: {
  35453. height: math.unit(8, "feet"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/myu-myu/front.svg",
  35457. extra: 1949/1857,
  35458. bottom: 90/2039
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(8, "feet"),
  35466. default: true
  35467. },
  35468. {
  35469. name: "Big",
  35470. height: math.unit(15, "feet")
  35471. },
  35472. {
  35473. name: "BIG",
  35474. height: math.unit(25, "feet")
  35475. },
  35476. ]
  35477. ))
  35478. characterMakers.push(() => makeCharacter(
  35479. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35480. {
  35481. side: {
  35482. height: math.unit(7 + 5/12, "feet"),
  35483. weight: math.unit(2800, "lb"),
  35484. name: "Side",
  35485. image: {
  35486. source: "./media/characters/haloren/side.svg",
  35487. extra: 1793/409,
  35488. bottom: 59/1852
  35489. }
  35490. },
  35491. frontPaw: {
  35492. height: math.unit(2.36, "feet"),
  35493. name: "Front paw",
  35494. image: {
  35495. source: "./media/characters/haloren/front-paw.svg"
  35496. }
  35497. },
  35498. hindPaw: {
  35499. height: math.unit(3.18, "feet"),
  35500. name: "Hind paw",
  35501. image: {
  35502. source: "./media/characters/haloren/hind-paw.svg"
  35503. }
  35504. },
  35505. maw: {
  35506. height: math.unit(5.05, "feet"),
  35507. name: "Maw",
  35508. image: {
  35509. source: "./media/characters/haloren/maw.svg"
  35510. }
  35511. },
  35512. dick: {
  35513. height: math.unit(2.90, "feet"),
  35514. name: "Dick",
  35515. image: {
  35516. source: "./media/characters/haloren/dick.svg"
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(7 + 5/12, "feet"),
  35524. default: true
  35525. },
  35526. {
  35527. name: "Enhanced",
  35528. height: math.unit(14 + 3/12, "feet")
  35529. },
  35530. ]
  35531. ))
  35532. characterMakers.push(() => makeCharacter(
  35533. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35534. {
  35535. front: {
  35536. height: math.unit(171, "cm"),
  35537. name: "Front",
  35538. image: {
  35539. source: "./media/characters/kimmy/front.svg",
  35540. extra: 1491/1435,
  35541. bottom: 53/1544
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Small",
  35548. height: math.unit(9, "cm")
  35549. },
  35550. {
  35551. name: "Normal",
  35552. height: math.unit(171, "cm"),
  35553. default: true
  35554. },
  35555. ]
  35556. ))
  35557. characterMakers.push(() => makeCharacter(
  35558. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35559. {
  35560. front: {
  35561. height: math.unit(8, "feet"),
  35562. weight: math.unit(300, "lb"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/galeboomer/front.svg",
  35566. extra: 4651/4415,
  35567. bottom: 162/4813
  35568. }
  35569. },
  35570. back: {
  35571. height: math.unit(8, "feet"),
  35572. weight: math.unit(300, "lb"),
  35573. name: "Back",
  35574. image: {
  35575. source: "./media/characters/galeboomer/back.svg",
  35576. extra: 4544/4314,
  35577. bottom: 16/4560
  35578. }
  35579. },
  35580. frontAlt: {
  35581. height: math.unit(8, "feet"),
  35582. weight: math.unit(300, "lb"),
  35583. name: "Front (Alt)",
  35584. image: {
  35585. source: "./media/characters/galeboomer/front-alt.svg",
  35586. extra: 4458/4228,
  35587. bottom: 68/4526
  35588. }
  35589. },
  35590. maw: {
  35591. height: math.unit(1.2, "feet"),
  35592. name: "Maw",
  35593. image: {
  35594. source: "./media/characters/galeboomer/maw.svg"
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(8, "feet"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35608. {
  35609. front: {
  35610. height: math.unit(5 + 9/12, "feet"),
  35611. weight: math.unit(120, "lb"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/chyr/front.svg",
  35615. extra: 1323/1254,
  35616. bottom: 63/1386
  35617. }
  35618. },
  35619. back: {
  35620. height: math.unit(5 + 9/12, "feet"),
  35621. weight: math.unit(120, "lb"),
  35622. name: "Back",
  35623. image: {
  35624. source: "./media/characters/chyr/back.svg",
  35625. extra: 1323/1252,
  35626. bottom: 48/1371
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(5 + 9/12, "feet"),
  35634. default: true
  35635. },
  35636. ]
  35637. ))
  35638. characterMakers.push(() => makeCharacter(
  35639. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35640. {
  35641. front: {
  35642. height: math.unit(7, "feet"),
  35643. weight: math.unit(310, "lb"),
  35644. name: "Front",
  35645. image: {
  35646. source: "./media/characters/solarus/front.svg",
  35647. extra: 2415/2021,
  35648. bottom: 103/2518
  35649. }
  35650. },
  35651. back: {
  35652. height: math.unit(7, "feet"),
  35653. weight: math.unit(310, "lb"),
  35654. name: "Back",
  35655. image: {
  35656. source: "./media/characters/solarus/back.svg",
  35657. extra: 2463/2089,
  35658. bottom: 79/2542
  35659. }
  35660. },
  35661. },
  35662. [
  35663. {
  35664. name: "Normal",
  35665. height: math.unit(7, "feet"),
  35666. default: true
  35667. },
  35668. ]
  35669. ))
  35670. characterMakers.push(() => makeCharacter(
  35671. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35672. {
  35673. front: {
  35674. height: math.unit(16, "feet"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35678. extra: 1844/1780,
  35679. bottom: 58/1902
  35680. }
  35681. },
  35682. },
  35683. [
  35684. {
  35685. name: "Normal",
  35686. height: math.unit(16, "feet"),
  35687. default: true
  35688. },
  35689. ]
  35690. ))
  35691. characterMakers.push(() => makeCharacter(
  35692. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35693. {
  35694. front: {
  35695. height: math.unit(11 + 6/12, "feet"),
  35696. weight: math.unit(1366, "lb"),
  35697. name: "Front",
  35698. image: {
  35699. source: "./media/characters/lexor/front.svg",
  35700. extra: 1560/1481,
  35701. bottom: 211/1771
  35702. }
  35703. },
  35704. back: {
  35705. height: math.unit(11 + 6/12, "feet"),
  35706. weight: math.unit(1366, "lb"),
  35707. name: "Back",
  35708. image: {
  35709. source: "./media/characters/lexor/back.svg",
  35710. extra: 1614/1533,
  35711. bottom: 76/1690
  35712. }
  35713. },
  35714. maw: {
  35715. height: math.unit(3, "feet"),
  35716. name: "Maw",
  35717. image: {
  35718. source: "./media/characters/lexor/maw.svg"
  35719. }
  35720. },
  35721. dick: {
  35722. height: math.unit(2.59, "feet"),
  35723. name: "Dick",
  35724. image: {
  35725. source: "./media/characters/lexor/dick.svg"
  35726. }
  35727. },
  35728. },
  35729. [
  35730. {
  35731. name: "Normal",
  35732. height: math.unit(11 + 6/12, "feet"),
  35733. default: true
  35734. },
  35735. ]
  35736. ))
  35737. characterMakers.push(() => makeCharacter(
  35738. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35739. {
  35740. front: {
  35741. height: math.unit(5 + 8/12, "feet"),
  35742. name: "Front",
  35743. image: {
  35744. source: "./media/characters/magnum/front.svg",
  35745. extra: 942/855,
  35746. bottom: 26/968
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(5 + 8/12, "feet"),
  35754. default: true
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35760. {
  35761. front: {
  35762. height: math.unit(18 + 4/12, "feet"),
  35763. weight: math.unit(1500, "kg"),
  35764. name: "Front",
  35765. image: {
  35766. source: "./media/characters/solas-sharpsman/front.svg",
  35767. extra: 1698/1589,
  35768. bottom: 0/1698
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(18 + 4/12, "feet"),
  35776. default: true
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35782. {
  35783. front: {
  35784. height: math.unit(5 + 5/12, "feet"),
  35785. weight: math.unit(180, "lb"),
  35786. name: "Front",
  35787. image: {
  35788. source: "./media/characters/october/front.svg",
  35789. extra: 1800/1650,
  35790. bottom: 0/1800
  35791. }
  35792. },
  35793. frontNsfw: {
  35794. height: math.unit(5 + 5/12, "feet"),
  35795. weight: math.unit(180, "lb"),
  35796. name: "Front (NSFW)",
  35797. image: {
  35798. source: "./media/characters/october/front-nsfw.svg",
  35799. extra: 1392/1307,
  35800. bottom: 42/1434
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(5 + 5/12, "feet"),
  35808. default: true
  35809. },
  35810. ]
  35811. ))
  35812. characterMakers.push(() => makeCharacter(
  35813. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35814. {
  35815. front: {
  35816. height: math.unit(8 + 6/12, "feet"),
  35817. name: "Front",
  35818. image: {
  35819. source: "./media/characters/essynkardi/front.svg",
  35820. extra: 1914/1846,
  35821. bottom: 22/1936
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Normal",
  35828. height: math.unit(8 + 6/12, "feet"),
  35829. default: true
  35830. },
  35831. ]
  35832. ))
  35833. characterMakers.push(() => makeCharacter(
  35834. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35835. {
  35836. front: {
  35837. height: math.unit(6 + 6/12, "feet"),
  35838. weight: math.unit(7, "lb"),
  35839. name: "Front",
  35840. image: {
  35841. source: "./media/characters/icky/front.svg",
  35842. extra: 813/782,
  35843. bottom: 66/879
  35844. }
  35845. },
  35846. back: {
  35847. height: math.unit(6 + 6/12, "feet"),
  35848. weight: math.unit(7, "lb"),
  35849. name: "Back",
  35850. image: {
  35851. source: "./media/characters/icky/back.svg",
  35852. extra: 754/735,
  35853. bottom: 56/810
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(6 + 6/12, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35867. {
  35868. front: {
  35869. height: math.unit(15, "feet"),
  35870. name: "Front",
  35871. image: {
  35872. source: "./media/characters/rojas/front.svg",
  35873. extra: 1462/1408,
  35874. bottom: 95/1557
  35875. }
  35876. },
  35877. back: {
  35878. height: math.unit(15, "feet"),
  35879. name: "Back",
  35880. image: {
  35881. source: "./media/characters/rojas/back.svg",
  35882. extra: 1023/954,
  35883. bottom: 28/1051
  35884. }
  35885. },
  35886. },
  35887. [
  35888. {
  35889. name: "Normal",
  35890. height: math.unit(15, "feet"),
  35891. default: true
  35892. },
  35893. ]
  35894. ))
  35895. characterMakers.push(() => makeCharacter(
  35896. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35897. {
  35898. frontHuman: {
  35899. height: math.unit(5 + 7/12, "feet"),
  35900. name: "Front (Human)",
  35901. image: {
  35902. source: "./media/characters/alek-dryagan/front-human.svg",
  35903. extra: 1687/1667,
  35904. bottom: 69/1756
  35905. }
  35906. },
  35907. backHuman: {
  35908. height: math.unit(5 + 7/12, "feet"),
  35909. name: "Back (Human)",
  35910. image: {
  35911. source: "./media/characters/alek-dryagan/back-human.svg",
  35912. extra: 1670/1649,
  35913. bottom: 65/1735
  35914. }
  35915. },
  35916. frontDemi: {
  35917. height: math.unit(65, "feet"),
  35918. name: "Front (Demi)",
  35919. image: {
  35920. source: "./media/characters/alek-dryagan/front-demi.svg",
  35921. extra: 1669/1642,
  35922. bottom: 49/1718
  35923. }
  35924. },
  35925. backDemi: {
  35926. height: math.unit(65, "feet"),
  35927. name: "Back (Demi)",
  35928. image: {
  35929. source: "./media/characters/alek-dryagan/back-demi.svg",
  35930. extra: 1658/1637,
  35931. bottom: 40/1698
  35932. }
  35933. },
  35934. mawHuman: {
  35935. height: math.unit(0.3, "feet"),
  35936. name: "Maw (Human)",
  35937. image: {
  35938. source: "./media/characters/alek-dryagan/maw-human.svg"
  35939. }
  35940. },
  35941. mawDemi: {
  35942. height: math.unit(3.8, "feet"),
  35943. name: "Maw (Demi)",
  35944. image: {
  35945. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35946. }
  35947. },
  35948. },
  35949. [
  35950. {
  35951. name: "Normal",
  35952. height: math.unit(5 + 7/12, "feet"),
  35953. default: true
  35954. },
  35955. ]
  35956. ))
  35957. characterMakers.push(() => makeCharacter(
  35958. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35959. {
  35960. frontHuman: {
  35961. height: math.unit(5 + 2/12, "feet"),
  35962. name: "Front (Human)",
  35963. image: {
  35964. source: "./media/characters/gen/front-human.svg",
  35965. extra: 1627/1538,
  35966. bottom: 71/1698
  35967. }
  35968. },
  35969. backHuman: {
  35970. height: math.unit(5 + 2/12, "feet"),
  35971. name: "Back (Human)",
  35972. image: {
  35973. source: "./media/characters/gen/back-human.svg",
  35974. extra: 1638/1548,
  35975. bottom: 69/1707
  35976. }
  35977. },
  35978. frontDemi: {
  35979. height: math.unit(5 + 2/12, "feet"),
  35980. name: "Front (Demi)",
  35981. image: {
  35982. source: "./media/characters/gen/front-demi.svg",
  35983. extra: 1627/1538,
  35984. bottom: 71/1698
  35985. }
  35986. },
  35987. backDemi: {
  35988. height: math.unit(5 + 2/12, "feet"),
  35989. name: "Back (Demi)",
  35990. image: {
  35991. source: "./media/characters/gen/back-demi.svg",
  35992. extra: 1638/1548,
  35993. bottom: 69/1707
  35994. }
  35995. },
  35996. },
  35997. [
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(5 + 2/12, "feet"),
  36001. default: true
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36007. {
  36008. frontImp: {
  36009. height: math.unit(1 + 11/12, "feet"),
  36010. name: "Front (Imp)",
  36011. image: {
  36012. source: "./media/characters/max-kobold/front-imp.svg",
  36013. extra: 1238/1134,
  36014. bottom: 81/1319
  36015. }
  36016. },
  36017. backImp: {
  36018. height: math.unit(1 + 11/12, "feet"),
  36019. name: "Back (Imp)",
  36020. image: {
  36021. source: "./media/characters/max-kobold/back-imp.svg",
  36022. extra: 1334/1175,
  36023. bottom: 34/1368
  36024. }
  36025. },
  36026. frontDemi: {
  36027. height: math.unit(5 + 9/12, "feet"),
  36028. name: "Front (Demi)",
  36029. image: {
  36030. source: "./media/characters/max-kobold/front-demi.svg",
  36031. extra: 1715/1685,
  36032. bottom: 54/1769
  36033. }
  36034. },
  36035. backDemi: {
  36036. height: math.unit(5 + 9/12, "feet"),
  36037. name: "Back (Demi)",
  36038. image: {
  36039. source: "./media/characters/max-kobold/back-demi.svg",
  36040. extra: 1752/1729,
  36041. bottom: 41/1793
  36042. }
  36043. },
  36044. handImp: {
  36045. height: math.unit(0.45, "feet"),
  36046. name: "Hand (Imp)",
  36047. image: {
  36048. source: "./media/characters/max-kobold/hand.svg"
  36049. }
  36050. },
  36051. pawImp: {
  36052. height: math.unit(0.46, "feet"),
  36053. name: "Paw (Imp)",
  36054. image: {
  36055. source: "./media/characters/max-kobold/paw.svg"
  36056. }
  36057. },
  36058. handDemi: {
  36059. height: math.unit(0.80, "feet"),
  36060. name: "Hand (Demi)",
  36061. image: {
  36062. source: "./media/characters/max-kobold/hand.svg"
  36063. }
  36064. },
  36065. pawDemi: {
  36066. height: math.unit(1.1, "feet"),
  36067. name: "Paw (Demi)",
  36068. image: {
  36069. source: "./media/characters/max-kobold/paw.svg"
  36070. }
  36071. },
  36072. headImp: {
  36073. height: math.unit(1.33, "feet"),
  36074. name: "Head (Imp)",
  36075. image: {
  36076. source: "./media/characters/max-kobold/head-imp.svg"
  36077. }
  36078. },
  36079. mawImp: {
  36080. height: math.unit(0.75, "feet"),
  36081. name: "Maw (Imp)",
  36082. image: {
  36083. source: "./media/characters/max-kobold/maw-imp.svg"
  36084. }
  36085. },
  36086. mawDemi: {
  36087. height: math.unit(0.42, "feet"),
  36088. name: "Maw (Demi)",
  36089. image: {
  36090. source: "./media/characters/max-kobold/maw-demi.svg"
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(1 + 11/12, "feet"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(7 + 5/12, "feet"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/carbon/front.svg",
  36110. extra: 1754/1689,
  36111. bottom: 65/1819
  36112. }
  36113. },
  36114. back: {
  36115. height: math.unit(7 + 5/12, "feet"),
  36116. name: "Back",
  36117. image: {
  36118. source: "./media/characters/carbon/back.svg",
  36119. extra: 1762/1695,
  36120. bottom: 24/1786
  36121. }
  36122. },
  36123. frontGigantamax: {
  36124. height: math.unit(150, "feet"),
  36125. name: "Front (Gigantamax)",
  36126. image: {
  36127. source: "./media/characters/carbon/front-gigantamax.svg",
  36128. extra: 1826/1669,
  36129. bottom: 59/1885
  36130. }
  36131. },
  36132. backGigantamax: {
  36133. height: math.unit(150, "feet"),
  36134. name: "Back (Gigantamax)",
  36135. image: {
  36136. source: "./media/characters/carbon/back-gigantamax.svg",
  36137. extra: 1796/1653,
  36138. bottom: 53/1849
  36139. }
  36140. },
  36141. maw: {
  36142. height: math.unit(0.48, "feet"),
  36143. name: "Maw",
  36144. image: {
  36145. source: "./media/characters/carbon/maw.svg"
  36146. }
  36147. },
  36148. mawGigantamax: {
  36149. height: math.unit(7.5, "feet"),
  36150. name: "Maw (Gigantamax)",
  36151. image: {
  36152. source: "./media/characters/carbon/maw-gigantamax.svg"
  36153. }
  36154. },
  36155. },
  36156. [
  36157. {
  36158. name: "Normal",
  36159. height: math.unit(7 + 5/12, "feet"),
  36160. default: true
  36161. },
  36162. ]
  36163. ))
  36164. characterMakers.push(() => makeCharacter(
  36165. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36166. {
  36167. front: {
  36168. height: math.unit(6, "feet"),
  36169. name: "Front",
  36170. image: {
  36171. source: "./media/characters/maverick/front.svg",
  36172. extra: 1672/1661,
  36173. bottom: 85/1757
  36174. }
  36175. },
  36176. back: {
  36177. height: math.unit(6, "feet"),
  36178. name: "Back",
  36179. image: {
  36180. source: "./media/characters/maverick/back.svg",
  36181. extra: 1642/1631,
  36182. bottom: 38/1680
  36183. }
  36184. },
  36185. },
  36186. [
  36187. {
  36188. name: "Normal",
  36189. height: math.unit(6, "feet"),
  36190. default: true
  36191. },
  36192. ]
  36193. ))
  36194. characterMakers.push(() => makeCharacter(
  36195. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36196. {
  36197. front: {
  36198. height: math.unit(15, "feet"),
  36199. weight: math.unit(615, "lb"),
  36200. name: "Front",
  36201. image: {
  36202. source: "./media/characters/grockle/front.svg",
  36203. extra: 1535/1427,
  36204. bottom: 56/1591
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Normal",
  36211. height: math.unit(15, "feet"),
  36212. default: true
  36213. },
  36214. {
  36215. name: "Large",
  36216. height: math.unit(150, "feet")
  36217. },
  36218. {
  36219. name: "Macro",
  36220. height: math.unit(1876, "feet")
  36221. },
  36222. {
  36223. name: "Mega Macro",
  36224. height: math.unit(121940, "feet")
  36225. },
  36226. {
  36227. name: "Giga Macro",
  36228. height: math.unit(750, "km")
  36229. },
  36230. {
  36231. name: "Tera Macro",
  36232. height: math.unit(750000, "km")
  36233. },
  36234. {
  36235. name: "Galactic",
  36236. height: math.unit(1.4e5, "km")
  36237. },
  36238. {
  36239. name: "Godlike",
  36240. height: math.unit(9.8e280, "galaxies")
  36241. },
  36242. ]
  36243. ))
  36244. characterMakers.push(() => makeCharacter(
  36245. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36246. {
  36247. front: {
  36248. height: math.unit(11, "meters"),
  36249. weight: math.unit(20, "tonnes"),
  36250. name: "Front",
  36251. image: {
  36252. source: "./media/characters/alistair/front.svg",
  36253. extra: 1265/1009,
  36254. bottom: 93/1358
  36255. }
  36256. },
  36257. },
  36258. [
  36259. {
  36260. name: "Normal",
  36261. height: math.unit(11, "meters"),
  36262. default: true
  36263. },
  36264. ]
  36265. ))
  36266. characterMakers.push(() => makeCharacter(
  36267. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36268. {
  36269. front: {
  36270. height: math.unit(5 + 8/12, "feet"),
  36271. name: "Front",
  36272. image: {
  36273. source: "./media/characters/haruka/front.svg",
  36274. extra: 2012/1952,
  36275. bottom: 0/2012
  36276. }
  36277. },
  36278. },
  36279. [
  36280. {
  36281. name: "Normal",
  36282. height: math.unit(5 + 8/12, "feet"),
  36283. default: true
  36284. },
  36285. ]
  36286. ))
  36287. characterMakers.push(() => makeCharacter(
  36288. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36289. {
  36290. back: {
  36291. height: math.unit(9, "feet"),
  36292. name: "Back",
  36293. image: {
  36294. source: "./media/characters/vivian-sylveon/back.svg",
  36295. extra: 1853/1714,
  36296. bottom: 0/1853
  36297. }
  36298. },
  36299. },
  36300. [
  36301. {
  36302. name: "Normal",
  36303. height: math.unit(9, "feet"),
  36304. default: true
  36305. },
  36306. {
  36307. name: "Macro",
  36308. height: math.unit(500, "feet")
  36309. },
  36310. {
  36311. name: "Megamacro",
  36312. height: math.unit(600, "miles")
  36313. },
  36314. {
  36315. name: "Gigamacro",
  36316. height: math.unit(30000, "miles")
  36317. },
  36318. ]
  36319. ))
  36320. characterMakers.push(() => makeCharacter(
  36321. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36322. {
  36323. anthro: {
  36324. height: math.unit(5 + 10/12, "feet"),
  36325. weight: math.unit(100, "lb"),
  36326. name: "Anthro",
  36327. image: {
  36328. source: "./media/characters/daiki/anthro.svg",
  36329. extra: 1115/1027,
  36330. bottom: 69/1184
  36331. }
  36332. },
  36333. feral: {
  36334. height: math.unit(200, "feet"),
  36335. name: "Feral",
  36336. image: {
  36337. source: "./media/characters/daiki/feral.svg",
  36338. extra: 1256/313,
  36339. bottom: 39/1295
  36340. }
  36341. },
  36342. feralHead: {
  36343. height: math.unit(171, "feet"),
  36344. name: "Feral Head",
  36345. image: {
  36346. source: "./media/characters/daiki/feral-head.svg"
  36347. }
  36348. },
  36349. manaDragon: {
  36350. height: math.unit(170, "meters"),
  36351. name: "Mana-dragon",
  36352. image: {
  36353. source: "./media/characters/daiki/mana-dragon.svg",
  36354. extra: 763/420,
  36355. bottom: 97/860
  36356. }
  36357. },
  36358. },
  36359. [
  36360. {
  36361. name: "Normal",
  36362. height: math.unit(5 + 10/12, "feet"),
  36363. default: true
  36364. },
  36365. ]
  36366. ))
  36367. characterMakers.push(() => makeCharacter(
  36368. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36369. {
  36370. fullyEquippedFront: {
  36371. height: math.unit(3 + 1/12, "feet"),
  36372. weight: math.unit(24, "lb"),
  36373. name: "Fully Equipped (Front)",
  36374. image: {
  36375. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36376. extra: 687/605,
  36377. bottom: 18/705
  36378. }
  36379. },
  36380. fullyEquippedBack: {
  36381. height: math.unit(3 + 1/12, "feet"),
  36382. weight: math.unit(24, "lb"),
  36383. name: "Fully Equipped (Back)",
  36384. image: {
  36385. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36386. extra: 689/590,
  36387. bottom: 18/707
  36388. }
  36389. },
  36390. dailyWear: {
  36391. height: math.unit(3 + 1/12, "feet"),
  36392. weight: math.unit(24, "lb"),
  36393. name: "Daily Wear",
  36394. image: {
  36395. source: "./media/characters/tea-spot/daily-wear.svg",
  36396. extra: 701/620,
  36397. bottom: 21/722
  36398. }
  36399. },
  36400. maidWork: {
  36401. height: math.unit(3 + 1/12, "feet"),
  36402. weight: math.unit(24, "lb"),
  36403. name: "Maid Work",
  36404. image: {
  36405. source: "./media/characters/tea-spot/maid-work.svg",
  36406. extra: 693/609,
  36407. bottom: 15/708
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(3 + 1/12, "feet"),
  36415. default: true
  36416. },
  36417. ]
  36418. ))
  36419. characterMakers.push(() => makeCharacter(
  36420. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36421. {
  36422. front: {
  36423. height: math.unit(175, "cm"),
  36424. weight: math.unit(75, "kg"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/chee/front.svg",
  36428. extra: 1796/1740,
  36429. bottom: 40/1836
  36430. }
  36431. },
  36432. },
  36433. [
  36434. {
  36435. name: "Micro-Micro",
  36436. height: math.unit(1, "nm")
  36437. },
  36438. {
  36439. name: "Micro-erst",
  36440. height: math.unit(1, "micrometer")
  36441. },
  36442. {
  36443. name: "Micro-er",
  36444. height: math.unit(1, "cm")
  36445. },
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(175, "cm"),
  36449. default: true
  36450. },
  36451. {
  36452. name: "Macro",
  36453. height: math.unit(100, "m")
  36454. },
  36455. {
  36456. name: "Macro-er",
  36457. height: math.unit(1, "km")
  36458. },
  36459. {
  36460. name: "Macro-erst",
  36461. height: math.unit(10, "km")
  36462. },
  36463. {
  36464. name: "Macro-Macro",
  36465. height: math.unit(100, "km")
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36471. {
  36472. front: {
  36473. height: math.unit(11 + 9/12, "feet"),
  36474. weight: math.unit(935, "lb"),
  36475. name: "Front",
  36476. image: {
  36477. source: "./media/characters/kingsley/front.svg",
  36478. extra: 1803/1674,
  36479. bottom: 127/1930
  36480. }
  36481. },
  36482. frontNude: {
  36483. height: math.unit(11 + 9/12, "feet"),
  36484. weight: math.unit(935, "lb"),
  36485. name: "Front (Nude)",
  36486. image: {
  36487. source: "./media/characters/kingsley/front-nude.svg",
  36488. extra: 1803/1674,
  36489. bottom: 127/1930
  36490. }
  36491. },
  36492. },
  36493. [
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(11 + 9/12, "feet"),
  36497. default: true
  36498. },
  36499. ]
  36500. ))
  36501. characterMakers.push(() => makeCharacter(
  36502. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36503. {
  36504. side: {
  36505. height: math.unit(9, "feet"),
  36506. name: "Side",
  36507. image: {
  36508. source: "./media/characters/rymel/side.svg",
  36509. extra: 792/469,
  36510. bottom: 121/913
  36511. }
  36512. },
  36513. maw: {
  36514. height: math.unit(2.4, "meters"),
  36515. name: "Maw",
  36516. image: {
  36517. source: "./media/characters/rymel/maw.svg"
  36518. }
  36519. },
  36520. },
  36521. [
  36522. {
  36523. name: "House Drake",
  36524. height: math.unit(2, "feet")
  36525. },
  36526. {
  36527. name: "Reduced",
  36528. height: math.unit(4.5, "feet")
  36529. },
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(9, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36539. {
  36540. front: {
  36541. height: math.unit(1.74, "meters"),
  36542. weight: math.unit(55, "kg"),
  36543. name: "Front",
  36544. image: {
  36545. source: "./media/characters/rubus/front.svg",
  36546. extra: 1894/1742,
  36547. bottom: 44/1938
  36548. }
  36549. },
  36550. },
  36551. [
  36552. {
  36553. name: "Normal",
  36554. height: math.unit(1.74, "meters"),
  36555. default: true
  36556. },
  36557. ]
  36558. ))
  36559. characterMakers.push(() => makeCharacter(
  36560. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36561. {
  36562. front: {
  36563. height: math.unit(5 + 2/12, "feet"),
  36564. weight: math.unit(112, "lb"),
  36565. name: "Front",
  36566. image: {
  36567. source: "./media/characters/cassie-kingston/front.svg",
  36568. extra: 1438/1390,
  36569. bottom: 47/1485
  36570. }
  36571. },
  36572. },
  36573. [
  36574. {
  36575. name: "Normal",
  36576. height: math.unit(5 + 2/12, "feet"),
  36577. default: true
  36578. },
  36579. {
  36580. name: "Macro",
  36581. height: math.unit(128, "feet")
  36582. },
  36583. {
  36584. name: "Megamacro",
  36585. height: math.unit(2.56, "miles")
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(7, "feet"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/fox/front.svg",
  36597. extra: 1798/1703,
  36598. bottom: 55/1853
  36599. }
  36600. },
  36601. back: {
  36602. height: math.unit(7, "feet"),
  36603. name: "Back",
  36604. image: {
  36605. source: "./media/characters/fox/back.svg",
  36606. extra: 1748/1649,
  36607. bottom: 32/1780
  36608. }
  36609. },
  36610. head: {
  36611. height: math.unit(1.95, "feet"),
  36612. name: "Head",
  36613. image: {
  36614. source: "./media/characters/fox/head.svg"
  36615. }
  36616. },
  36617. dick: {
  36618. height: math.unit(1.33, "feet"),
  36619. name: "Dick",
  36620. image: {
  36621. source: "./media/characters/fox/dick.svg"
  36622. }
  36623. },
  36624. foot: {
  36625. height: math.unit(1, "feet"),
  36626. name: "Foot",
  36627. image: {
  36628. source: "./media/characters/fox/foot.svg"
  36629. }
  36630. },
  36631. paw: {
  36632. height: math.unit(0.92, "feet"),
  36633. name: "Paw",
  36634. image: {
  36635. source: "./media/characters/fox/paw.svg"
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Small",
  36642. height: math.unit(3, "inches")
  36643. },
  36644. {
  36645. name: "\"Realistic\"",
  36646. height: math.unit(7, "feet")
  36647. },
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(150, "feet"),
  36651. default: true
  36652. },
  36653. {
  36654. name: "BIG",
  36655. height: math.unit(1200, "feet")
  36656. },
  36657. {
  36658. name: "👀",
  36659. height: math.unit(5, "miles")
  36660. },
  36661. {
  36662. name: "👀👀👀",
  36663. height: math.unit(64, "miles")
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36669. {
  36670. front: {
  36671. height: math.unit(625, "feet"),
  36672. name: "Front",
  36673. image: {
  36674. source: "./media/characters/asonja-rossa/front.svg",
  36675. extra: 1833/1686,
  36676. bottom: 24/1857
  36677. }
  36678. },
  36679. back: {
  36680. height: math.unit(625, "feet"),
  36681. name: "Back",
  36682. image: {
  36683. source: "./media/characters/asonja-rossa/back.svg",
  36684. extra: 1852/1753,
  36685. bottom: 26/1878
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Macro",
  36692. height: math.unit(625, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36699. {
  36700. side: {
  36701. height: math.unit(6, "feet"),
  36702. weight: math.unit(150, "lb"),
  36703. name: "Side",
  36704. image: {
  36705. source: "./media/characters/rezukii/side.svg",
  36706. extra: 979/542,
  36707. bottom: 87/1066
  36708. }
  36709. },
  36710. },
  36711. [
  36712. {
  36713. name: "Tiny",
  36714. height: math.unit(2, "feet")
  36715. },
  36716. {
  36717. name: "Smol",
  36718. height: math.unit(4, "feet")
  36719. },
  36720. {
  36721. name: "Normal",
  36722. height: math.unit(8, "feet"),
  36723. default: true
  36724. },
  36725. {
  36726. name: "Big",
  36727. height: math.unit(12, "feet")
  36728. },
  36729. {
  36730. name: "Macro",
  36731. height: math.unit(30, "feet")
  36732. },
  36733. ]
  36734. ))
  36735. characterMakers.push(() => makeCharacter(
  36736. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36737. {
  36738. front: {
  36739. height: math.unit(14, "feet"),
  36740. weight: math.unit(9.5, "tonnes"),
  36741. name: "Front",
  36742. image: {
  36743. source: "./media/characters/dawnheart/front.svg",
  36744. extra: 2792/2675,
  36745. bottom: 64/2856
  36746. }
  36747. },
  36748. },
  36749. [
  36750. {
  36751. name: "Normal",
  36752. height: math.unit(14, "feet"),
  36753. default: true
  36754. },
  36755. ]
  36756. ))
  36757. characterMakers.push(() => makeCharacter(
  36758. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36759. {
  36760. front: {
  36761. height: math.unit(1.7, "m"),
  36762. name: "Front",
  36763. image: {
  36764. source: "./media/characters/gladi/front.svg",
  36765. extra: 1460/1362,
  36766. bottom: 19/1479
  36767. }
  36768. },
  36769. back: {
  36770. height: math.unit(1.7, "m"),
  36771. name: "Back",
  36772. image: {
  36773. source: "./media/characters/gladi/back.svg",
  36774. extra: 1459/1357,
  36775. bottom: 12/1471
  36776. }
  36777. },
  36778. feral: {
  36779. height: math.unit(2.05, "m"),
  36780. name: "Feral",
  36781. image: {
  36782. source: "./media/characters/gladi/feral.svg",
  36783. extra: 821/557,
  36784. bottom: 91/912
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Shortest",
  36791. height: math.unit(70, "cm")
  36792. },
  36793. {
  36794. name: "Normal",
  36795. height: math.unit(1.7, "m")
  36796. },
  36797. {
  36798. name: "Macro",
  36799. height: math.unit(10, "m"),
  36800. default: true
  36801. },
  36802. {
  36803. name: "Tallest",
  36804. height: math.unit(200, "m")
  36805. },
  36806. ]
  36807. ))
  36808. characterMakers.push(() => makeCharacter(
  36809. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36810. {
  36811. front: {
  36812. height: math.unit(5 + 7/12, "feet"),
  36813. weight: math.unit(92, "kg"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/erdno/front.svg",
  36817. extra: 1954/1889,
  36818. bottom: 22/1976
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(5 + 7/12, "feet"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36832. {
  36833. front: {
  36834. height: math.unit(5 + 10/12, "feet"),
  36835. weight: math.unit(150, "lb"),
  36836. name: "Front",
  36837. image: {
  36838. source: "./media/characters/jamie/front.svg",
  36839. extra: 1908/1768,
  36840. bottom: 19/1927
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Minimum",
  36847. height: math.unit(2, "cm")
  36848. },
  36849. {
  36850. name: "Micro",
  36851. height: math.unit(3, "inches")
  36852. },
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(5 + 10/12, "feet"),
  36856. default: true
  36857. },
  36858. {
  36859. name: "Macro",
  36860. height: math.unit(150, "feet")
  36861. },
  36862. {
  36863. name: "Megamacro",
  36864. height: math.unit(10000, "m")
  36865. },
  36866. ]
  36867. ))
  36868. characterMakers.push(() => makeCharacter(
  36869. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36870. {
  36871. front: {
  36872. height: math.unit(2, "meters"),
  36873. weight: math.unit(100, "kg"),
  36874. name: "Front",
  36875. image: {
  36876. source: "./media/characters/shiron/front.svg",
  36877. extra: 2103/1985,
  36878. bottom: 98/2201
  36879. }
  36880. },
  36881. back: {
  36882. height: math.unit(2, "meters"),
  36883. weight: math.unit(100, "kg"),
  36884. name: "Back",
  36885. image: {
  36886. source: "./media/characters/shiron/back.svg",
  36887. extra: 2110/2015,
  36888. bottom: 89/2199
  36889. }
  36890. },
  36891. hand: {
  36892. height: math.unit(0.96, "feet"),
  36893. name: "Hand",
  36894. image: {
  36895. source: "./media/characters/shiron/hand.svg"
  36896. }
  36897. },
  36898. foot: {
  36899. height: math.unit(1.464, "feet"),
  36900. name: "Foot",
  36901. image: {
  36902. source: "./media/characters/shiron/foot.svg"
  36903. }
  36904. },
  36905. },
  36906. [
  36907. {
  36908. name: "Normal",
  36909. height: math.unit(2, "meters")
  36910. },
  36911. {
  36912. name: "Macro",
  36913. height: math.unit(500, "meters"),
  36914. default: true
  36915. },
  36916. {
  36917. name: "Megamacro",
  36918. height: math.unit(20, "km")
  36919. },
  36920. ]
  36921. ))
  36922. characterMakers.push(() => makeCharacter(
  36923. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36924. {
  36925. front: {
  36926. height: math.unit(6, "feet"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/sam/front.svg",
  36930. extra: 849/826,
  36931. bottom: 19/868
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(6, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(8 + 4/12, "feet"),
  36948. weight: math.unit(122, "kg"),
  36949. name: "Front",
  36950. image: {
  36951. source: "./media/characters/namori-kurogawa/front.svg",
  36952. extra: 1894/1576,
  36953. bottom: 34/1928
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(8 + 4/12, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(9, "feet"),
  36970. weight: math.unit(621, "lb"),
  36971. name: "Front",
  36972. image: {
  36973. source: "./media/characters/unmru/front.svg",
  36974. extra: 1853/1747,
  36975. bottom: 73/1926
  36976. }
  36977. },
  36978. side: {
  36979. height: math.unit(9, "feet"),
  36980. weight: math.unit(621, "lb"),
  36981. name: "Side",
  36982. image: {
  36983. source: "./media/characters/unmru/side.svg",
  36984. extra: 1781/1671,
  36985. bottom: 127/1908
  36986. }
  36987. },
  36988. back: {
  36989. height: math.unit(9, "feet"),
  36990. weight: math.unit(621, "lb"),
  36991. name: "Back",
  36992. image: {
  36993. source: "./media/characters/unmru/back.svg",
  36994. extra: 1894/1765,
  36995. bottom: 75/1969
  36996. }
  36997. },
  36998. dick: {
  36999. height: math.unit(3, "feet"),
  37000. weight: math.unit(35, "lb"),
  37001. name: "Dick",
  37002. image: {
  37003. source: "./media/characters/unmru/dick.svg"
  37004. }
  37005. },
  37006. },
  37007. [
  37008. {
  37009. name: "Normal",
  37010. height: math.unit(9, "feet")
  37011. },
  37012. {
  37013. name: "Natural",
  37014. height: math.unit(27, "feet"),
  37015. default: true
  37016. },
  37017. {
  37018. name: "Giant",
  37019. height: math.unit(90, "feet")
  37020. },
  37021. {
  37022. name: "Kaiju",
  37023. height: math.unit(270, "feet")
  37024. },
  37025. {
  37026. name: "Macro",
  37027. height: math.unit(900, "feet")
  37028. },
  37029. {
  37030. name: "Macro+",
  37031. height: math.unit(2700, "feet")
  37032. },
  37033. {
  37034. name: "Megamacro",
  37035. height: math.unit(9000, "feet")
  37036. },
  37037. {
  37038. name: "City-Crushing",
  37039. height: math.unit(27000, "feet")
  37040. },
  37041. {
  37042. name: "Mountain-Mashing",
  37043. height: math.unit(90000, "feet")
  37044. },
  37045. {
  37046. name: "Earth-Eclipsing",
  37047. height: math.unit(2.7e8, "feet")
  37048. },
  37049. {
  37050. name: "Sol-Swallowing",
  37051. height: math.unit(9e10, "feet")
  37052. },
  37053. {
  37054. name: "Majoris-Munching",
  37055. height: math.unit(2.7e13, "feet")
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37061. {
  37062. front: {
  37063. height: math.unit(1, "inch"),
  37064. name: "Front",
  37065. image: {
  37066. source: "./media/characters/squeaks-mouse/front.svg",
  37067. extra: 352/308,
  37068. bottom: 25/377
  37069. }
  37070. },
  37071. },
  37072. [
  37073. {
  37074. name: "Micro",
  37075. height: math.unit(1, "inch"),
  37076. default: true
  37077. },
  37078. ]
  37079. ))
  37080. characterMakers.push(() => makeCharacter(
  37081. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37082. {
  37083. side: {
  37084. height: math.unit(35, "feet"),
  37085. name: "Side",
  37086. image: {
  37087. source: "./media/characters/sayko/side.svg",
  37088. extra: 1697/1021,
  37089. bottom: 82/1779
  37090. }
  37091. },
  37092. head: {
  37093. height: math.unit(16, "feet"),
  37094. name: "Head",
  37095. image: {
  37096. source: "./media/characters/sayko/head.svg"
  37097. }
  37098. },
  37099. forepaw: {
  37100. height: math.unit(7.85, "feet"),
  37101. name: "Forepaw",
  37102. image: {
  37103. source: "./media/characters/sayko/forepaw.svg"
  37104. }
  37105. },
  37106. hindpaw: {
  37107. height: math.unit(8.8, "feet"),
  37108. name: "Hindpaw",
  37109. image: {
  37110. source: "./media/characters/sayko/hindpaw.svg"
  37111. }
  37112. },
  37113. },
  37114. [
  37115. {
  37116. name: "Normal",
  37117. height: math.unit(35, "feet"),
  37118. default: true
  37119. },
  37120. {
  37121. name: "Colossus",
  37122. height: math.unit(100, "meters")
  37123. },
  37124. {
  37125. name: "\"Small\" Deity",
  37126. height: math.unit(1, "km")
  37127. },
  37128. {
  37129. name: "\"Large\" Deity",
  37130. height: math.unit(15, "km")
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(6, "feet"),
  37139. weight: math.unit(250, "lb"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/mukiro/front.svg",
  37143. extra: 1368/1310,
  37144. bottom: 34/1402
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Normal",
  37151. height: math.unit(6, "feet"),
  37152. default: true
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37158. {
  37159. front: {
  37160. height: math.unit(12 + 4/12, "feet"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37164. extra: 1346/1311,
  37165. bottom: 65/1411
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Base",
  37172. height: math.unit(12 + 4/12, "feet"),
  37173. default: true
  37174. },
  37175. {
  37176. name: "Macro",
  37177. height: math.unit(150, "feet")
  37178. },
  37179. {
  37180. name: "Mega",
  37181. height: math.unit(2, "miles")
  37182. },
  37183. {
  37184. name: "Demi God",
  37185. height: math.unit(4, "AU")
  37186. },
  37187. {
  37188. name: "God Size",
  37189. height: math.unit(1, "universe")
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(3 + 3/12, "feet"),
  37198. weight: math.unit(88, "lb"),
  37199. name: "Front",
  37200. image: {
  37201. source: "./media/characters/trey/front.svg",
  37202. extra: 1815/1509,
  37203. bottom: 60/1875
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(3 + 3/12, "feet"),
  37211. default: true
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(4, "meters"),
  37220. name: "Front",
  37221. image: {
  37222. source: "./media/characters/adelonda/front.svg",
  37223. extra: 1942/1775,
  37224. bottom: 33/1975
  37225. }
  37226. },
  37227. back: {
  37228. height: math.unit(4, "meters"),
  37229. name: "Back",
  37230. image: {
  37231. source: "./media/characters/adelonda/back.svg",
  37232. extra: 1932/1780,
  37233. bottom: 42/1974
  37234. }
  37235. },
  37236. bust: {
  37237. height: math.unit(1.8, "meter"),
  37238. name: "Bust",
  37239. image: {
  37240. source: "./media/characters/adelonda/bust.svg"
  37241. }
  37242. },
  37243. },
  37244. [
  37245. {
  37246. name: "Normal",
  37247. height: math.unit(4, "meters"),
  37248. default: true
  37249. },
  37250. ]
  37251. ))
  37252. characterMakers.push(() => makeCharacter(
  37253. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37254. {
  37255. front: {
  37256. height: math.unit(8 + 4/12, "feet"),
  37257. weight: math.unit(670, "lb"),
  37258. name: "Front",
  37259. image: {
  37260. source: "./media/characters/acadiel/front.svg",
  37261. extra: 1901/1595,
  37262. bottom: 142/2043
  37263. }
  37264. },
  37265. },
  37266. [
  37267. {
  37268. name: "Normal",
  37269. height: math.unit(8 + 4/12, "feet"),
  37270. default: true
  37271. },
  37272. {
  37273. name: "Macro",
  37274. height: math.unit(200, "feet")
  37275. },
  37276. ]
  37277. ))
  37278. characterMakers.push(() => makeCharacter(
  37279. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37280. {
  37281. front: {
  37282. height: math.unit(6 + 2/12, "feet"),
  37283. weight: math.unit(185, "lb"),
  37284. name: "Front",
  37285. image: {
  37286. source: "./media/characters/kayne-ein/front.svg",
  37287. extra: 1780/1560,
  37288. bottom: 81/1861
  37289. }
  37290. },
  37291. },
  37292. [
  37293. {
  37294. name: "Normal",
  37295. height: math.unit(6 + 2/12, "feet"),
  37296. default: true
  37297. },
  37298. {
  37299. name: "Transformation Stage",
  37300. height: math.unit(15, "feet")
  37301. },
  37302. {
  37303. name: "Macro",
  37304. height: math.unit(150, "feet")
  37305. },
  37306. {
  37307. name: "Earth's Shadow",
  37308. height: math.unit(6200, "miles")
  37309. },
  37310. {
  37311. name: "Universal Demon",
  37312. height: math.unit(28e9, "parsecs")
  37313. },
  37314. {
  37315. name: "Multiverse God",
  37316. height: math.unit(3, "multiverses")
  37317. },
  37318. ]
  37319. ))
  37320. characterMakers.push(() => makeCharacter(
  37321. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37322. {
  37323. front: {
  37324. height: math.unit(5 + 5/12, "feet"),
  37325. name: "Front",
  37326. image: {
  37327. source: "./media/characters/fawn/front.svg",
  37328. extra: 1873/1731,
  37329. bottom: 95/1968
  37330. }
  37331. },
  37332. back: {
  37333. height: math.unit(5 + 5/12, "feet"),
  37334. name: "Back",
  37335. image: {
  37336. source: "./media/characters/fawn/back.svg",
  37337. extra: 1813/1700,
  37338. bottom: 14/1827
  37339. }
  37340. },
  37341. hoof: {
  37342. height: math.unit(1.45, "feet"),
  37343. name: "Hoof",
  37344. image: {
  37345. source: "./media/characters/fawn/hoof.svg"
  37346. }
  37347. },
  37348. },
  37349. [
  37350. {
  37351. name: "Normal",
  37352. height: math.unit(5 + 5/12, "feet"),
  37353. default: true
  37354. },
  37355. ]
  37356. ))
  37357. characterMakers.push(() => makeCharacter(
  37358. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37359. {
  37360. front: {
  37361. height: math.unit(2 + 5/12, "feet"),
  37362. name: "Front",
  37363. image: {
  37364. source: "./media/characters/orion/front.svg",
  37365. extra: 1366/1304,
  37366. bottom: 43/1409
  37367. }
  37368. },
  37369. paw: {
  37370. height: math.unit(0.52, "feet"),
  37371. name: "Paw",
  37372. image: {
  37373. source: "./media/characters/orion/paw.svg"
  37374. }
  37375. },
  37376. },
  37377. [
  37378. {
  37379. name: "Normal",
  37380. height: math.unit(2 + 5/12, "feet"),
  37381. default: true
  37382. },
  37383. ]
  37384. ))
  37385. characterMakers.push(() => makeCharacter(
  37386. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37387. {
  37388. front: {
  37389. height: math.unit(5 + 10/12, "feet"),
  37390. name: "Front",
  37391. image: {
  37392. source: "./media/characters/vera/front.svg",
  37393. extra: 1680/1575,
  37394. bottom: 49/1729
  37395. }
  37396. },
  37397. back: {
  37398. height: math.unit(5 + 10/12, "feet"),
  37399. name: "Back",
  37400. image: {
  37401. source: "./media/characters/vera/back.svg",
  37402. extra: 1700/1588,
  37403. bottom: 18/1718
  37404. }
  37405. },
  37406. arcanine: {
  37407. height: math.unit(6 + 8/12, "feet"),
  37408. name: "Arcanine",
  37409. image: {
  37410. source: "./media/characters/vera/arcanine.svg",
  37411. extra: 1590/1511,
  37412. bottom: 71/1661
  37413. }
  37414. },
  37415. maw: {
  37416. height: math.unit(0.82, "feet"),
  37417. name: "Maw",
  37418. image: {
  37419. source: "./media/characters/vera/maw.svg"
  37420. }
  37421. },
  37422. mawArcanine: {
  37423. height: math.unit(0.97, "feet"),
  37424. name: "Maw (Arcanine)",
  37425. image: {
  37426. source: "./media/characters/vera/maw-arcanine.svg"
  37427. }
  37428. },
  37429. paw: {
  37430. height: math.unit(0.75, "feet"),
  37431. name: "Paw",
  37432. image: {
  37433. source: "./media/characters/vera/paw.svg"
  37434. }
  37435. },
  37436. pawprint: {
  37437. height: math.unit(0.52, "feet"),
  37438. name: "Pawprint",
  37439. image: {
  37440. source: "./media/characters/vera/pawprint.svg"
  37441. }
  37442. },
  37443. },
  37444. [
  37445. {
  37446. name: "Normal",
  37447. height: math.unit(5 + 10/12, "feet"),
  37448. default: true
  37449. },
  37450. {
  37451. name: "Macro",
  37452. height: math.unit(75, "feet")
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(4, "feet"),
  37461. weight: math.unit(40, "lb"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/orvan-rabbit/front.svg",
  37465. extra: 1896/1642,
  37466. bottom: 29/1925
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(4, "feet"),
  37474. default: true
  37475. },
  37476. ]
  37477. ))
  37478. characterMakers.push(() => makeCharacter(
  37479. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37480. {
  37481. front: {
  37482. height: math.unit(6, "feet"),
  37483. weight: math.unit(168, "lb"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/lisa/front.svg",
  37487. extra: 2065/1867,
  37488. bottom: 46/2111
  37489. }
  37490. },
  37491. back: {
  37492. height: math.unit(6, "feet"),
  37493. weight: math.unit(168, "lb"),
  37494. name: "Back",
  37495. image: {
  37496. source: "./media/characters/lisa/back.svg",
  37497. extra: 1982/1838,
  37498. bottom: 29/2011
  37499. }
  37500. },
  37501. maw: {
  37502. height: math.unit(0.81, "feet"),
  37503. name: "Maw",
  37504. image: {
  37505. source: "./media/characters/lisa/maw.svg"
  37506. }
  37507. },
  37508. paw: {
  37509. height: math.unit(0.9, "feet"),
  37510. name: "Paw",
  37511. image: {
  37512. source: "./media/characters/lisa/paw.svg"
  37513. }
  37514. },
  37515. caribousune: {
  37516. height: math.unit(7 + 2/12, "feet"),
  37517. weight: math.unit(268, "lb"),
  37518. name: "Caribousune",
  37519. image: {
  37520. source: "./media/characters/lisa/caribousune.svg",
  37521. extra: 1843/1633,
  37522. bottom: 29/1872
  37523. }
  37524. },
  37525. frontCaribousune: {
  37526. height: math.unit(7 + 2/12, "feet"),
  37527. weight: math.unit(268, "lb"),
  37528. name: "Front (Caribousune)",
  37529. image: {
  37530. source: "./media/characters/lisa/front-caribousune.svg",
  37531. extra: 1818/1638,
  37532. bottom: 52/1870
  37533. }
  37534. },
  37535. sideCaribousune: {
  37536. height: math.unit(7 + 2/12, "feet"),
  37537. weight: math.unit(268, "lb"),
  37538. name: "Side (Caribousune)",
  37539. image: {
  37540. source: "./media/characters/lisa/side-caribousune.svg",
  37541. extra: 1851/1635,
  37542. bottom: 16/1867
  37543. }
  37544. },
  37545. backCaribousune: {
  37546. height: math.unit(7 + 2/12, "feet"),
  37547. weight: math.unit(268, "lb"),
  37548. name: "Back (Caribousune)",
  37549. image: {
  37550. source: "./media/characters/lisa/back-caribousune.svg",
  37551. extra: 1801/1604,
  37552. bottom: 44/1845
  37553. }
  37554. },
  37555. caribou: {
  37556. height: math.unit(7 + 2/12, "feet"),
  37557. weight: math.unit(268, "lb"),
  37558. name: "Caribou",
  37559. image: {
  37560. source: "./media/characters/lisa/caribou.svg",
  37561. extra: 1843/1633,
  37562. bottom: 29/1872
  37563. }
  37564. },
  37565. frontCaribou: {
  37566. height: math.unit(7 + 2/12, "feet"),
  37567. weight: math.unit(268, "lb"),
  37568. name: "Front (Caribou)",
  37569. image: {
  37570. source: "./media/characters/lisa/front-caribou.svg",
  37571. extra: 1818/1638,
  37572. bottom: 52/1870
  37573. }
  37574. },
  37575. sideCaribou: {
  37576. height: math.unit(7 + 2/12, "feet"),
  37577. weight: math.unit(268, "lb"),
  37578. name: "Side (Caribou)",
  37579. image: {
  37580. source: "./media/characters/lisa/side-caribou.svg",
  37581. extra: 1851/1635,
  37582. bottom: 16/1867
  37583. }
  37584. },
  37585. backCaribou: {
  37586. height: math.unit(7 + 2/12, "feet"),
  37587. weight: math.unit(268, "lb"),
  37588. name: "Back (Caribou)",
  37589. image: {
  37590. source: "./media/characters/lisa/back-caribou.svg",
  37591. extra: 1801/1604,
  37592. bottom: 44/1845
  37593. }
  37594. },
  37595. mawCaribou: {
  37596. height: math.unit(1.45, "feet"),
  37597. name: "Maw (Caribou)",
  37598. image: {
  37599. source: "./media/characters/lisa/maw-caribou.svg"
  37600. }
  37601. },
  37602. mawCaribousune: {
  37603. height: math.unit(1.45, "feet"),
  37604. name: "Maw (Caribousune)",
  37605. image: {
  37606. source: "./media/characters/lisa/maw-caribousune.svg"
  37607. }
  37608. },
  37609. pawCaribousune: {
  37610. height: math.unit(1.61, "feet"),
  37611. name: "Paw (Caribou)",
  37612. image: {
  37613. source: "./media/characters/lisa/paw-caribousune.svg"
  37614. }
  37615. },
  37616. },
  37617. [
  37618. {
  37619. name: "Normal",
  37620. height: math.unit(6, "feet")
  37621. },
  37622. {
  37623. name: "God Size",
  37624. height: math.unit(72, "feet"),
  37625. default: true
  37626. },
  37627. {
  37628. name: "Towering",
  37629. height: math.unit(288, "feet")
  37630. },
  37631. {
  37632. name: "City Size",
  37633. height: math.unit(48384, "feet")
  37634. },
  37635. {
  37636. name: "Continental",
  37637. height: math.unit(4200, "miles")
  37638. },
  37639. {
  37640. name: "Planet Eater",
  37641. height: math.unit(42, "earths")
  37642. },
  37643. {
  37644. name: "Star Swallower",
  37645. height: math.unit(42, "solarradii")
  37646. },
  37647. {
  37648. name: "System Swallower",
  37649. height: math.unit(84000, "AU")
  37650. },
  37651. {
  37652. name: "Galaxy Gobbler",
  37653. height: math.unit(42, "galaxies")
  37654. },
  37655. {
  37656. name: "Universe Devourer",
  37657. height: math.unit(42, "universes")
  37658. },
  37659. {
  37660. name: "Multiverse Muncher",
  37661. height: math.unit(42, "multiverses")
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(36, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/shadow-rat/front.svg",
  37673. extra: 1845/1758,
  37674. bottom: 83/1928
  37675. }
  37676. },
  37677. },
  37678. [
  37679. {
  37680. name: "Macro",
  37681. height: math.unit(36, "feet"),
  37682. default: true
  37683. },
  37684. ]
  37685. ))
  37686. characterMakers.push(() => makeCharacter(
  37687. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37688. {
  37689. side: {
  37690. height: math.unit(8, "feet"),
  37691. weight: math.unit(2630, "lb"),
  37692. name: "Side",
  37693. image: {
  37694. source: "./media/characters/torallia/side.svg",
  37695. extra: 2164/2021,
  37696. bottom: 371/2535
  37697. }
  37698. },
  37699. },
  37700. [
  37701. {
  37702. name: "Mortal Interaction",
  37703. height: math.unit(8, "feet")
  37704. },
  37705. {
  37706. name: "Natural",
  37707. height: math.unit(24, "feet"),
  37708. default: true
  37709. },
  37710. {
  37711. name: "Giant",
  37712. height: math.unit(80, "feet")
  37713. },
  37714. {
  37715. name: "Kaiju",
  37716. height: math.unit(240, "feet")
  37717. },
  37718. {
  37719. name: "Macro",
  37720. height: math.unit(800, "feet")
  37721. },
  37722. {
  37723. name: "Macro+",
  37724. height: math.unit(2400, "feet")
  37725. },
  37726. {
  37727. name: "Macro++",
  37728. height: math.unit(8000, "feet")
  37729. },
  37730. {
  37731. name: "City-Crushing",
  37732. height: math.unit(24000, "feet")
  37733. },
  37734. {
  37735. name: "Mountain-Mashing",
  37736. height: math.unit(80000, "feet")
  37737. },
  37738. {
  37739. name: "District Demolisher",
  37740. height: math.unit(240000, "feet")
  37741. },
  37742. {
  37743. name: "Tri-County Terror",
  37744. height: math.unit(800000, "feet")
  37745. },
  37746. {
  37747. name: "State Smasher",
  37748. height: math.unit(2.4e6, "feet")
  37749. },
  37750. {
  37751. name: "Nation Nemesis",
  37752. height: math.unit(8e6, "feet")
  37753. },
  37754. {
  37755. name: "Continent Cracker",
  37756. height: math.unit(2.4e7, "feet")
  37757. },
  37758. {
  37759. name: "Planet-Pillaging",
  37760. height: math.unit(8e7, "feet")
  37761. },
  37762. {
  37763. name: "Earth-Eclipsing",
  37764. height: math.unit(2.4e8, "feet")
  37765. },
  37766. {
  37767. name: "Jovian-Jostling",
  37768. height: math.unit(8e8, "feet")
  37769. },
  37770. {
  37771. name: "Gas Giant Gulper",
  37772. height: math.unit(2.4e9, "feet")
  37773. },
  37774. {
  37775. name: "Astral Annihilator",
  37776. height: math.unit(8e9, "feet")
  37777. },
  37778. {
  37779. name: "Celestial Conqueror",
  37780. height: math.unit(2.4e10, "feet")
  37781. },
  37782. {
  37783. name: "Sol-Swallowing",
  37784. height: math.unit(8e10, "feet")
  37785. },
  37786. {
  37787. name: "Hunter of the Heavens",
  37788. height: math.unit(2.4e13, "feet")
  37789. },
  37790. ]
  37791. ))
  37792. characterMakers.push(() => makeCharacter(
  37793. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37794. {
  37795. front: {
  37796. height: math.unit(6 + 8/12, "feet"),
  37797. name: "Front",
  37798. image: {
  37799. source: "./media/characters/rebecca-pawlson/front.svg",
  37800. extra: 1737/1596,
  37801. bottom: 107/1844
  37802. }
  37803. },
  37804. back: {
  37805. height: math.unit(6 + 8/12, "feet"),
  37806. name: "Back",
  37807. image: {
  37808. source: "./media/characters/rebecca-pawlson/back.svg",
  37809. extra: 1702/1523,
  37810. bottom: 86/1788
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Normal",
  37817. height: math.unit(6 + 8/12, "feet")
  37818. },
  37819. {
  37820. name: "Mini Macro",
  37821. height: math.unit(10, "feet"),
  37822. default: true
  37823. },
  37824. {
  37825. name: "Macro",
  37826. height: math.unit(100, "feet")
  37827. },
  37828. {
  37829. name: "Mega Macro",
  37830. height: math.unit(2500, "feet")
  37831. },
  37832. {
  37833. name: "Giga Macro",
  37834. height: math.unit(50, "miles")
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(7 + 6/12, "feet"),
  37843. weight: math.unit(600, "lb"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/moxie-nova/front.svg",
  37847. extra: 1734/1652,
  37848. bottom: 41/1775
  37849. }
  37850. },
  37851. },
  37852. [
  37853. {
  37854. name: "Normal",
  37855. height: math.unit(7 + 6/12, "feet"),
  37856. default: true
  37857. },
  37858. ]
  37859. ))
  37860. characterMakers.push(() => makeCharacter(
  37861. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37862. {
  37863. front: {
  37864. height: math.unit(5, "feet"),
  37865. weight: math.unit(150, "lb"),
  37866. name: "Front",
  37867. image: {
  37868. source: "./media/characters/tiffany/front.svg",
  37869. extra: 1941/1845,
  37870. bottom: 58/1999
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(5, "feet"),
  37878. default: true
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(8, "feet"),
  37887. weight: math.unit(300, "lb"),
  37888. name: "Front",
  37889. image: {
  37890. source: "./media/characters/raxinath/front.svg",
  37891. extra: 1407/1309,
  37892. bottom: 39/1446
  37893. }
  37894. },
  37895. back: {
  37896. height: math.unit(8, "feet"),
  37897. weight: math.unit(300, "lb"),
  37898. name: "Back",
  37899. image: {
  37900. source: "./media/characters/raxinath/back.svg",
  37901. extra: 1405/1315,
  37902. bottom: 9/1414
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Speck",
  37909. height: math.unit(0.5, "nm")
  37910. },
  37911. {
  37912. name: "Micro",
  37913. height: math.unit(3, "inches")
  37914. },
  37915. {
  37916. name: "Kobold",
  37917. height: math.unit(3, "feet")
  37918. },
  37919. {
  37920. name: "Normal",
  37921. height: math.unit(8, "feet"),
  37922. default: true
  37923. },
  37924. {
  37925. name: "Giant",
  37926. height: math.unit(50, "feet")
  37927. },
  37928. {
  37929. name: "Macro",
  37930. height: math.unit(1000, "feet")
  37931. },
  37932. {
  37933. name: "Megamacro",
  37934. height: math.unit(1, "mile")
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37940. {
  37941. front: {
  37942. height: math.unit(10, "feet"),
  37943. weight: math.unit(1442, "lb"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/mal-dragon/front.svg",
  37947. extra: 1515/1444,
  37948. bottom: 113/1628
  37949. }
  37950. },
  37951. back: {
  37952. height: math.unit(10, "feet"),
  37953. weight: math.unit(1442, "lb"),
  37954. name: "Back",
  37955. image: {
  37956. source: "./media/characters/mal-dragon/back.svg",
  37957. extra: 1527/1434,
  37958. bottom: 25/1552
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Mortal Interaction",
  37965. height: math.unit(10, "feet"),
  37966. default: true
  37967. },
  37968. {
  37969. name: "Large",
  37970. height: math.unit(30, "feet")
  37971. },
  37972. {
  37973. name: "Kaiju",
  37974. height: math.unit(300, "feet")
  37975. },
  37976. {
  37977. name: "Megamacro",
  37978. height: math.unit(10000, "feet")
  37979. },
  37980. {
  37981. name: "Continent Cracker",
  37982. height: math.unit(30000000, "feet")
  37983. },
  37984. {
  37985. name: "Sol-Swallowing",
  37986. height: math.unit(1e11, "feet")
  37987. },
  37988. {
  37989. name: "Light Universal",
  37990. height: math.unit(5, "universes")
  37991. },
  37992. {
  37993. name: "Universe Atoms",
  37994. height: math.unit(1.829e9, "universes")
  37995. },
  37996. {
  37997. name: "Light Multiversal",
  37998. height: math.unit(5, "multiverses")
  37999. },
  38000. {
  38001. name: "Multiverse Atoms",
  38002. height: math.unit(1.829e9, "multiverses")
  38003. },
  38004. {
  38005. name: "Fabric of Time",
  38006. height: math.unit(1e262, "multiverses")
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(9, "feet"),
  38015. weight: math.unit(1050, "lb"),
  38016. name: "Front",
  38017. image: {
  38018. source: "./media/characters/tabitha/front.svg",
  38019. extra: 2083/1994,
  38020. bottom: 68/2151
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Baseline",
  38027. height: math.unit(9, "feet"),
  38028. default: true
  38029. },
  38030. {
  38031. name: "Giant",
  38032. height: math.unit(90, "feet")
  38033. },
  38034. {
  38035. name: "Macro",
  38036. height: math.unit(900, "feet")
  38037. },
  38038. {
  38039. name: "Megamacro",
  38040. height: math.unit(9000, "feet")
  38041. },
  38042. {
  38043. name: "City-Crushing",
  38044. height: math.unit(27000, "feet")
  38045. },
  38046. {
  38047. name: "Mountain-Mashing",
  38048. height: math.unit(90000, "feet")
  38049. },
  38050. {
  38051. name: "Nation Nemesis",
  38052. height: math.unit(9e6, "feet")
  38053. },
  38054. {
  38055. name: "Continent Cracker",
  38056. height: math.unit(27e6, "feet")
  38057. },
  38058. {
  38059. name: "Earth-Eclipsing",
  38060. height: math.unit(2.7e8, "feet")
  38061. },
  38062. {
  38063. name: "Gas Giant Gulper",
  38064. height: math.unit(2.7e9, "feet")
  38065. },
  38066. {
  38067. name: "Sol-Swallowing",
  38068. height: math.unit(9e10, "feet")
  38069. },
  38070. {
  38071. name: "Galaxy Gulper",
  38072. height: math.unit(9, "galaxies")
  38073. },
  38074. {
  38075. name: "Cosmos Churner",
  38076. height: math.unit(9, "universes")
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38082. {
  38083. front: {
  38084. height: math.unit(160, "cm"),
  38085. weight: math.unit(55, "kg"),
  38086. name: "Front",
  38087. image: {
  38088. source: "./media/characters/tow/front.svg",
  38089. extra: 1751/1722,
  38090. bottom: 74/1825
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Norm",
  38097. height: math.unit(160, "cm")
  38098. },
  38099. {
  38100. name: "Casual",
  38101. height: math.unit(3200, "m"),
  38102. default: true
  38103. },
  38104. {
  38105. name: "Show-Off",
  38106. height: math.unit(160, "km")
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38112. {
  38113. front: {
  38114. height: math.unit(7 + 11/12, "feet"),
  38115. weight: math.unit(342.8, "lb"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/vivian-orca-dragon/front.svg",
  38119. extra: 1890/1865,
  38120. bottom: 28/1918
  38121. }
  38122. },
  38123. },
  38124. [
  38125. {
  38126. name: "Micro",
  38127. height: math.unit(5, "inches")
  38128. },
  38129. {
  38130. name: "Normal",
  38131. height: math.unit(7 + 11/12, "feet"),
  38132. default: true
  38133. },
  38134. {
  38135. name: "Macro",
  38136. height: math.unit(395 + 7/12, "feet")
  38137. },
  38138. ]
  38139. ))
  38140. characterMakers.push(() => makeCharacter(
  38141. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38142. {
  38143. side: {
  38144. height: math.unit(10, "feet"),
  38145. weight: math.unit(1442, "lb"),
  38146. name: "Side",
  38147. image: {
  38148. source: "./media/characters/lotherakon/side.svg",
  38149. extra: 1604/1497,
  38150. bottom: 89/1693
  38151. }
  38152. },
  38153. },
  38154. [
  38155. {
  38156. name: "Mortal Interaction",
  38157. height: math.unit(10, "feet")
  38158. },
  38159. {
  38160. name: "Large",
  38161. height: math.unit(30, "feet"),
  38162. default: true
  38163. },
  38164. {
  38165. name: "Giant",
  38166. height: math.unit(100, "feet")
  38167. },
  38168. {
  38169. name: "Kaiju",
  38170. height: math.unit(300, "feet")
  38171. },
  38172. {
  38173. name: "Macro",
  38174. height: math.unit(1000, "feet")
  38175. },
  38176. {
  38177. name: "Macro+",
  38178. height: math.unit(3000, "feet")
  38179. },
  38180. {
  38181. name: "Megamacro",
  38182. height: math.unit(10000, "feet")
  38183. },
  38184. {
  38185. name: "City-Crushing",
  38186. height: math.unit(30000, "feet")
  38187. },
  38188. {
  38189. name: "Continent Cracker",
  38190. height: math.unit(30e6, "feet")
  38191. },
  38192. {
  38193. name: "Earth Eclipsing",
  38194. height: math.unit(3e8, "feet")
  38195. },
  38196. {
  38197. name: "Gas Giant Gulper",
  38198. height: math.unit(3e9, "feet")
  38199. },
  38200. {
  38201. name: "Sol-Swallowing",
  38202. height: math.unit(1e11, "feet")
  38203. },
  38204. {
  38205. name: "System Swallower",
  38206. height: math.unit(3e14, "feet")
  38207. },
  38208. {
  38209. name: "Galaxy Gulper",
  38210. height: math.unit(10, "galaxies")
  38211. },
  38212. {
  38213. name: "Light Universal",
  38214. height: math.unit(5, "universes")
  38215. },
  38216. {
  38217. name: "Universe Palm",
  38218. height: math.unit(20, "universes")
  38219. },
  38220. {
  38221. name: "Light Multiversal",
  38222. height: math.unit(5, "multiverses")
  38223. },
  38224. {
  38225. name: "Multiverse Palm",
  38226. height: math.unit(20, "multiverses")
  38227. },
  38228. {
  38229. name: "Inferno Incarnate",
  38230. height: math.unit(1e7, "multiverses")
  38231. },
  38232. ]
  38233. ))
  38234. characterMakers.push(() => makeCharacter(
  38235. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38236. {
  38237. front: {
  38238. height: math.unit(8, "feet"),
  38239. weight: math.unit(1200, "lb"),
  38240. name: "Front",
  38241. image: {
  38242. source: "./media/characters/malithee/front.svg",
  38243. extra: 1675/1640,
  38244. bottom: 162/1837
  38245. }
  38246. },
  38247. },
  38248. [
  38249. {
  38250. name: "Mortal Interaction",
  38251. height: math.unit(8, "feet"),
  38252. default: true
  38253. },
  38254. {
  38255. name: "Large",
  38256. height: math.unit(24, "feet")
  38257. },
  38258. {
  38259. name: "Kaiju",
  38260. height: math.unit(240, "feet")
  38261. },
  38262. {
  38263. name: "Megamacro",
  38264. height: math.unit(8000, "feet")
  38265. },
  38266. {
  38267. name: "Continent Cracker",
  38268. height: math.unit(24e6, "feet")
  38269. },
  38270. {
  38271. name: "Earth-Eclipsing",
  38272. height: math.unit(2.4e8, "feet")
  38273. },
  38274. {
  38275. name: "Sol-Swallowing",
  38276. height: math.unit(8e10, "feet")
  38277. },
  38278. {
  38279. name: "Galaxy Gulper",
  38280. height: math.unit(8, "galaxies")
  38281. },
  38282. {
  38283. name: "Light Universal",
  38284. height: math.unit(4, "universes")
  38285. },
  38286. {
  38287. name: "Universe Atoms",
  38288. height: math.unit(1.829e9, "universes")
  38289. },
  38290. {
  38291. name: "Light Multiversal",
  38292. height: math.unit(4, "multiverses")
  38293. },
  38294. {
  38295. name: "Multiverse Atoms",
  38296. height: math.unit(1.829e9, "multiverses")
  38297. },
  38298. {
  38299. name: "Nigh-Omnipresence",
  38300. height: math.unit(8e261, "multiverses")
  38301. },
  38302. ]
  38303. ))
  38304. characterMakers.push(() => makeCharacter(
  38305. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38306. {
  38307. front: {
  38308. height: math.unit(10, "feet"),
  38309. weight: math.unit(1500, "lb"),
  38310. name: "Front",
  38311. image: {
  38312. source: "./media/characters/miles-thestia/front.svg",
  38313. extra: 1812/1727,
  38314. bottom: 86/1898
  38315. }
  38316. },
  38317. back: {
  38318. height: math.unit(10, "feet"),
  38319. weight: math.unit(1500, "lb"),
  38320. name: "Back",
  38321. image: {
  38322. source: "./media/characters/miles-thestia/back.svg",
  38323. extra: 1799/1690,
  38324. bottom: 47/1846
  38325. }
  38326. },
  38327. frontNsfw: {
  38328. height: math.unit(10, "feet"),
  38329. weight: math.unit(1500, "lb"),
  38330. name: "Front (NSFW)",
  38331. image: {
  38332. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38333. extra: 1812/1727,
  38334. bottom: 86/1898
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Mini-Macro",
  38341. height: math.unit(10, "feet"),
  38342. default: true
  38343. },
  38344. ]
  38345. ))
  38346. characterMakers.push(() => makeCharacter(
  38347. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38348. {
  38349. front: {
  38350. height: math.unit(25, "feet"),
  38351. name: "Front",
  38352. image: {
  38353. source: "./media/characters/titan-s-wulf/front.svg",
  38354. extra: 1560/1484,
  38355. bottom: 76/1636
  38356. }
  38357. },
  38358. },
  38359. [
  38360. {
  38361. name: "Smallest",
  38362. height: math.unit(25, "feet"),
  38363. default: true
  38364. },
  38365. {
  38366. name: "Normal",
  38367. height: math.unit(200, "feet")
  38368. },
  38369. {
  38370. name: "Macro",
  38371. height: math.unit(200000, "feet")
  38372. },
  38373. {
  38374. name: "Multiversal Original",
  38375. height: math.unit(10000, "multiverses")
  38376. },
  38377. ]
  38378. ))
  38379. characterMakers.push(() => makeCharacter(
  38380. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38381. {
  38382. front: {
  38383. height: math.unit(8, "feet"),
  38384. weight: math.unit(553, "lb"),
  38385. name: "Front",
  38386. image: {
  38387. source: "./media/characters/tawendeh/front.svg",
  38388. extra: 2365/2268,
  38389. bottom: 83/2448
  38390. }
  38391. },
  38392. frontClothed: {
  38393. height: math.unit(8, "feet"),
  38394. weight: math.unit(553, "lb"),
  38395. name: "Front (Clothed)",
  38396. image: {
  38397. source: "./media/characters/tawendeh/front-clothed.svg",
  38398. extra: 2365/2268,
  38399. bottom: 83/2448
  38400. }
  38401. },
  38402. back: {
  38403. height: math.unit(8, "feet"),
  38404. weight: math.unit(553, "lb"),
  38405. name: "Back",
  38406. image: {
  38407. source: "./media/characters/tawendeh/back.svg",
  38408. extra: 2397/2294,
  38409. bottom: 42/2439
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Mortal Interaction",
  38416. height: math.unit(8, "feet"),
  38417. default: true
  38418. },
  38419. {
  38420. name: "Giant",
  38421. height: math.unit(80, "feet")
  38422. },
  38423. {
  38424. name: "Macro",
  38425. height: math.unit(800, "feet")
  38426. },
  38427. {
  38428. name: "Megamacro",
  38429. height: math.unit(8000, "feet")
  38430. },
  38431. {
  38432. name: "City-Crushing",
  38433. height: math.unit(24000, "feet")
  38434. },
  38435. {
  38436. name: "Mountain-Mashing",
  38437. height: math.unit(80000, "feet")
  38438. },
  38439. {
  38440. name: "Nation Nemesis",
  38441. height: math.unit(8e6, "feet")
  38442. },
  38443. {
  38444. name: "Continent Cracker",
  38445. height: math.unit(24e6, "feet")
  38446. },
  38447. {
  38448. name: "Earth-Eclipsing",
  38449. height: math.unit(2.4e8, "feet")
  38450. },
  38451. {
  38452. name: "Gas Giant Gulper",
  38453. height: math.unit(2.4e9, "feet")
  38454. },
  38455. {
  38456. name: "Sol-Swallowing",
  38457. height: math.unit(8e10, "feet")
  38458. },
  38459. {
  38460. name: "Galaxy Gulper",
  38461. height: math.unit(8, "galaxies")
  38462. },
  38463. {
  38464. name: "Cosmos Churner",
  38465. height: math.unit(8, "universes")
  38466. },
  38467. {
  38468. name: "Omnipotent Otter",
  38469. height: math.unit(80, "universes")
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38475. {
  38476. front: {
  38477. height: math.unit(2.6, "meters"),
  38478. weight: math.unit(900, "kg"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/neesha/front.svg",
  38482. extra: 1803/1653,
  38483. bottom: 128/1931
  38484. }
  38485. },
  38486. },
  38487. [
  38488. {
  38489. name: "Normal",
  38490. height: math.unit(2.6, "meters"),
  38491. default: true
  38492. },
  38493. {
  38494. name: "Macro",
  38495. height: math.unit(50, "meters")
  38496. },
  38497. ]
  38498. ))
  38499. characterMakers.push(() => makeCharacter(
  38500. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38501. {
  38502. front: {
  38503. height: math.unit(5, "feet"),
  38504. weight: math.unit(185, "lb"),
  38505. name: "Front",
  38506. image: {
  38507. source: "./media/characters/kyera/front.svg",
  38508. extra: 1875/1790,
  38509. bottom: 96/1971
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(5, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(7 + 6/12, "feet"),
  38526. weight: math.unit(540, "lb"),
  38527. name: "Front",
  38528. image: {
  38529. source: "./media/characters/yuko/front.svg",
  38530. extra: 1282/1222,
  38531. bottom: 101/1383
  38532. }
  38533. },
  38534. frontClothed: {
  38535. height: math.unit(7 + 6/12, "feet"),
  38536. weight: math.unit(540, "lb"),
  38537. name: "Front (Clothed)",
  38538. image: {
  38539. source: "./media/characters/yuko/front-clothed.svg",
  38540. extra: 1282/1222,
  38541. bottom: 101/1383
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(7 + 6/12, "feet"),
  38549. default: true
  38550. },
  38551. {
  38552. name: "Macro",
  38553. height: math.unit(26 + 9/12, "feet")
  38554. },
  38555. {
  38556. name: "Megamacro",
  38557. height: math.unit(300, "feet")
  38558. },
  38559. {
  38560. name: "Gigamacro",
  38561. height: math.unit(5000, "feet")
  38562. },
  38563. {
  38564. name: "Planetary",
  38565. height: math.unit(10000, "miles")
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38571. {
  38572. front: {
  38573. height: math.unit(8 + 2/12, "feet"),
  38574. weight: math.unit(600, "lb"),
  38575. name: "Front",
  38576. image: {
  38577. source: "./media/characters/deam-nitrel/front.svg",
  38578. extra: 1308/1234,
  38579. bottom: 125/1433
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(8 + 2/12, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(6.1, "feet"),
  38596. weight: math.unit(180, "lb"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/skyress/front.svg",
  38600. extra: 1045/915,
  38601. bottom: 28/1073
  38602. }
  38603. },
  38604. maw: {
  38605. height: math.unit(1, "feet"),
  38606. name: "Maw",
  38607. image: {
  38608. source: "./media/characters/skyress/maw.svg"
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(6.1, "feet"),
  38616. default: true
  38617. },
  38618. {
  38619. name: "Macro",
  38620. height: math.unit(200, "feet")
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(4 + 2/12, "feet"),
  38629. weight: math.unit(40, "kg"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/amethyst-jones/front.svg",
  38633. extra: 1220/1150,
  38634. bottom: 101/1321
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Normal",
  38641. height: math.unit(4 + 2/12, "feet"),
  38642. default: true
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(1.7, "m"),
  38651. weight: math.unit(135, "lb"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/jade/front.svg",
  38655. extra: 1818/1767,
  38656. bottom: 32/1850
  38657. }
  38658. },
  38659. back: {
  38660. height: math.unit(1.7, "m"),
  38661. weight: math.unit(135, "lb"),
  38662. name: "Back",
  38663. image: {
  38664. source: "./media/characters/jade/back.svg",
  38665. extra: 1869/1809,
  38666. bottom: 35/1904
  38667. }
  38668. },
  38669. hand: {
  38670. height: math.unit(0.24, "m"),
  38671. name: "Hand",
  38672. image: {
  38673. source: "./media/characters/jade/hand.svg"
  38674. }
  38675. },
  38676. foot: {
  38677. height: math.unit(0.263, "m"),
  38678. name: "Foot",
  38679. image: {
  38680. source: "./media/characters/jade/foot.svg"
  38681. }
  38682. },
  38683. dick: {
  38684. height: math.unit(0.47, "m"),
  38685. name: "Dick",
  38686. image: {
  38687. source: "./media/characters/jade/dick.svg"
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Micro",
  38694. height: math.unit(22, "cm")
  38695. },
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(1.7, "m"),
  38699. default: true
  38700. },
  38701. {
  38702. name: "Macro",
  38703. height: math.unit(152, "m")
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(100, "miles"),
  38712. weight: math.unit(20000, "tons"),
  38713. name: "Front",
  38714. image: {
  38715. source: "./media/characters/cookie/front.svg",
  38716. extra: 1125/1070,
  38717. bottom: 30/1155
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Big",
  38724. height: math.unit(50, "feet")
  38725. },
  38726. {
  38727. name: "Macro",
  38728. height: math.unit(100, "miles"),
  38729. default: true
  38730. },
  38731. {
  38732. name: "Megamacro",
  38733. height: math.unit(90000, "miles")
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(6, "feet"),
  38742. weight: math.unit(145, "lb"),
  38743. name: "Front",
  38744. image: {
  38745. source: "./media/characters/farzian/front.svg",
  38746. extra: 1902/1693,
  38747. bottom: 108/2010
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Macro",
  38754. height: math.unit(500, "feet"),
  38755. default: true
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(3 + 6/12, "feet"),
  38764. weight: math.unit(50, "lb"),
  38765. name: "Front",
  38766. image: {
  38767. source: "./media/characters/kimberly-tilson/front.svg",
  38768. extra: 1400/1322,
  38769. bottom: 36/1436
  38770. }
  38771. },
  38772. back: {
  38773. height: math.unit(3 + 6/12, "feet"),
  38774. weight: math.unit(50, "lb"),
  38775. name: "Back",
  38776. image: {
  38777. source: "./media/characters/kimberly-tilson/back.svg",
  38778. extra: 1370/1307,
  38779. bottom: 20/1390
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(3 + 6/12, "feet"),
  38787. default: true
  38788. },
  38789. ]
  38790. ))
  38791. characterMakers.push(() => makeCharacter(
  38792. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38793. {
  38794. front: {
  38795. height: math.unit(1148, "feet"),
  38796. weight: math.unit(34057, "lb"),
  38797. name: "Front",
  38798. image: {
  38799. source: "./media/characters/harthos/front.svg",
  38800. extra: 1391/1339,
  38801. bottom: 13/1404
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Macro",
  38808. height: math.unit(1148, "feet"),
  38809. default: true
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(15, "feet"),
  38818. name: "Front",
  38819. image: {
  38820. source: "./media/characters/hypatia/front.svg",
  38821. extra: 1653/1591,
  38822. bottom: 79/1732
  38823. }
  38824. },
  38825. },
  38826. [
  38827. {
  38828. name: "Normal",
  38829. height: math.unit(15, "feet")
  38830. },
  38831. {
  38832. name: "Small",
  38833. height: math.unit(300, "feet")
  38834. },
  38835. {
  38836. name: "Macro",
  38837. height: math.unit(2500, "feet"),
  38838. default: true
  38839. },
  38840. {
  38841. name: "Mega Macro",
  38842. height: math.unit(1500, "miles")
  38843. },
  38844. {
  38845. name: "Giga Macro",
  38846. height: math.unit(1.5e6, "miles")
  38847. },
  38848. ]
  38849. ))
  38850. characterMakers.push(() => makeCharacter(
  38851. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38852. {
  38853. front: {
  38854. height: math.unit(6, "feet"),
  38855. weight: math.unit(200, "lb"),
  38856. name: "Front",
  38857. image: {
  38858. source: "./media/characters/wulver/front.svg",
  38859. extra: 1724/1632,
  38860. bottom: 130/1854
  38861. }
  38862. },
  38863. frontNsfw: {
  38864. height: math.unit(6, "feet"),
  38865. weight: math.unit(200, "lb"),
  38866. name: "Front (NSFW)",
  38867. image: {
  38868. source: "./media/characters/wulver/front-nsfw.svg",
  38869. extra: 1724/1632,
  38870. bottom: 130/1854
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Human-Sized",
  38877. height: math.unit(6, "feet")
  38878. },
  38879. {
  38880. name: "Normal",
  38881. height: math.unit(4, "meters"),
  38882. default: true
  38883. },
  38884. {
  38885. name: "Large",
  38886. height: math.unit(6, "m")
  38887. },
  38888. ]
  38889. ))
  38890. characterMakers.push(() => makeCharacter(
  38891. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38892. {
  38893. front: {
  38894. height: math.unit(7, "feet"),
  38895. name: "Front",
  38896. image: {
  38897. source: "./media/characters/maru/front.svg",
  38898. extra: 1595/1570,
  38899. bottom: 0/1595
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(7, "feet"),
  38907. default: true
  38908. },
  38909. {
  38910. name: "Macro",
  38911. height: math.unit(700, "feet")
  38912. },
  38913. {
  38914. name: "Mega Macro",
  38915. height: math.unit(25, "miles")
  38916. },
  38917. ]
  38918. ))
  38919. characterMakers.push(() => makeCharacter(
  38920. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38921. {
  38922. front: {
  38923. height: math.unit(6, "feet"),
  38924. weight: math.unit(170, "lb"),
  38925. name: "Front",
  38926. image: {
  38927. source: "./media/characters/xenon/front.svg",
  38928. extra: 1376/1305,
  38929. bottom: 56/1432
  38930. }
  38931. },
  38932. back: {
  38933. height: math.unit(6, "feet"),
  38934. weight: math.unit(170, "lb"),
  38935. name: "Back",
  38936. image: {
  38937. source: "./media/characters/xenon/back.svg",
  38938. extra: 1328/1259,
  38939. bottom: 95/1423
  38940. }
  38941. },
  38942. maw: {
  38943. height: math.unit(0.52, "feet"),
  38944. name: "Maw",
  38945. image: {
  38946. source: "./media/characters/xenon/maw.svg"
  38947. }
  38948. },
  38949. hand: {
  38950. height: math.unit(0.82, "feet"),
  38951. name: "Hand",
  38952. image: {
  38953. source: "./media/characters/xenon/hand.svg"
  38954. }
  38955. },
  38956. foot: {
  38957. height: math.unit(1.13, "feet"),
  38958. name: "Foot",
  38959. image: {
  38960. source: "./media/characters/xenon/foot.svg"
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Micro",
  38967. height: math.unit(0.8, "inches")
  38968. },
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(6, "feet")
  38972. },
  38973. {
  38974. name: "Macro",
  38975. height: math.unit(50, "feet"),
  38976. default: true
  38977. },
  38978. {
  38979. name: "Macro+",
  38980. height: math.unit(250, "feet")
  38981. },
  38982. {
  38983. name: "Megamacro",
  38984. height: math.unit(1500, "feet")
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(7 + 5/12, "feet"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/zane/front.svg",
  38996. extra: 1260/1203,
  38997. bottom: 94/1354
  38998. }
  38999. },
  39000. back: {
  39001. height: math.unit(5.05, "feet"),
  39002. name: "Back",
  39003. image: {
  39004. source: "./media/characters/zane/back.svg",
  39005. extra: 893/829,
  39006. bottom: 30/923
  39007. }
  39008. },
  39009. werewolf: {
  39010. height: math.unit(11, "feet"),
  39011. name: "Werewolf",
  39012. image: {
  39013. source: "./media/characters/zane/werewolf.svg",
  39014. extra: 1383/1323,
  39015. bottom: 89/1472
  39016. }
  39017. },
  39018. foot: {
  39019. height: math.unit(1.46, "feet"),
  39020. name: "Foot",
  39021. image: {
  39022. source: "./media/characters/zane/foot.svg"
  39023. }
  39024. },
  39025. footFront: {
  39026. height: math.unit(0.784, "feet"),
  39027. name: "Foot (Front)",
  39028. image: {
  39029. source: "./media/characters/zane/foot-front.svg"
  39030. }
  39031. },
  39032. dick: {
  39033. height: math.unit(1.95, "feet"),
  39034. name: "Dick",
  39035. image: {
  39036. source: "./media/characters/zane/dick.svg"
  39037. }
  39038. },
  39039. dickWerewolf: {
  39040. height: math.unit(3.77, "feet"),
  39041. name: "Dick (Werewolf)",
  39042. image: {
  39043. source: "./media/characters/zane/dick.svg"
  39044. }
  39045. },
  39046. },
  39047. [
  39048. {
  39049. name: "Normal",
  39050. height: math.unit(7 + 5/12, "feet"),
  39051. default: true
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39057. {
  39058. front: {
  39059. height: math.unit(6 + 2/12, "feet"),
  39060. weight: math.unit(284, "lb"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/benni-desparque/front.svg",
  39064. extra: 1353/1126,
  39065. bottom: 69/1422
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Civilian",
  39072. height: math.unit(6 + 2/12, "feet")
  39073. },
  39074. {
  39075. name: "Normal",
  39076. height: math.unit(98, "feet"),
  39077. default: true
  39078. },
  39079. {
  39080. name: "Kaiju Fighter",
  39081. height: math.unit(268, "feet")
  39082. },
  39083. ]
  39084. ))
  39085. characterMakers.push(() => makeCharacter(
  39086. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39087. {
  39088. front: {
  39089. height: math.unit(5, "feet"),
  39090. weight: math.unit(105, "lb"),
  39091. name: "Front",
  39092. image: {
  39093. source: "./media/characters/maxine/front.svg",
  39094. extra: 1386/1250,
  39095. bottom: 71/1457
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Normal",
  39102. height: math.unit(5, "feet"),
  39103. default: true
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39109. {
  39110. front: {
  39111. height: math.unit(11 + 7/12, "feet"),
  39112. weight: math.unit(9576, "lb"),
  39113. name: "Front",
  39114. image: {
  39115. source: "./media/characters/scaly/front.svg",
  39116. extra: 888/867,
  39117. bottom: 36/924
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Normal",
  39124. height: math.unit(11 + 7/12, "feet"),
  39125. default: true
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39131. {
  39132. front: {
  39133. height: math.unit(9, "inches"),
  39134. name: "Front",
  39135. image: {
  39136. source: "./media/characters/saelria/front.svg",
  39137. extra: 662/621,
  39138. bottom: 12/674
  39139. }
  39140. },
  39141. },
  39142. [
  39143. {
  39144. name: "Tiny",
  39145. height: math.unit(9, "inches"),
  39146. default: true
  39147. },
  39148. ]
  39149. ))
  39150. characterMakers.push(() => makeCharacter(
  39151. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39152. {
  39153. front: {
  39154. height: math.unit(80, "meters"),
  39155. weight: math.unit(7000, "tonnes"),
  39156. name: "Front",
  39157. image: {
  39158. source: "./media/characters/tef/front.svg",
  39159. extra: 2036/1991,
  39160. bottom: 54/2090
  39161. }
  39162. },
  39163. back: {
  39164. height: math.unit(80, "meters"),
  39165. weight: math.unit(7000, "tonnes"),
  39166. name: "Back",
  39167. image: {
  39168. source: "./media/characters/tef/back.svg",
  39169. extra: 2036/1991,
  39170. bottom: 54/2090
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Macro",
  39177. height: math.unit(80, "meters"),
  39178. default: true
  39179. },
  39180. ]
  39181. ))
  39182. characterMakers.push(() => makeCharacter(
  39183. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39184. {
  39185. front: {
  39186. height: math.unit(13, "feet"),
  39187. weight: math.unit(6, "tons"),
  39188. name: "Front",
  39189. image: {
  39190. source: "./media/characters/rover/front.svg",
  39191. extra: 1233/1156,
  39192. bottom: 50/1283
  39193. }
  39194. },
  39195. back: {
  39196. height: math.unit(13, "feet"),
  39197. weight: math.unit(6, "tons"),
  39198. name: "Back",
  39199. image: {
  39200. source: "./media/characters/rover/back.svg",
  39201. extra: 1327/1258,
  39202. bottom: 39/1366
  39203. }
  39204. },
  39205. },
  39206. [
  39207. {
  39208. name: "Normal",
  39209. height: math.unit(13, "feet"),
  39210. default: true
  39211. },
  39212. {
  39213. name: "Macro",
  39214. height: math.unit(1300, "feet")
  39215. },
  39216. {
  39217. name: "Megamacro",
  39218. height: math.unit(1300, "miles")
  39219. },
  39220. {
  39221. name: "Gigamacro",
  39222. height: math.unit(1300000, "miles")
  39223. },
  39224. ]
  39225. ))
  39226. characterMakers.push(() => makeCharacter(
  39227. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39228. {
  39229. front: {
  39230. height: math.unit(6, "feet"),
  39231. weight: math.unit(150, "lb"),
  39232. name: "Front",
  39233. image: {
  39234. source: "./media/characters/ariz/front.svg",
  39235. extra: 1401/1346,
  39236. bottom: 5/1406
  39237. }
  39238. },
  39239. },
  39240. [
  39241. {
  39242. name: "Normal",
  39243. height: math.unit(10, "feet"),
  39244. default: true
  39245. },
  39246. ]
  39247. ))
  39248. characterMakers.push(() => makeCharacter(
  39249. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39250. {
  39251. front: {
  39252. height: math.unit(6, "feet"),
  39253. weight: math.unit(140, "lb"),
  39254. name: "Front",
  39255. image: {
  39256. source: "./media/characters/sigrun/front.svg",
  39257. extra: 1418/1359,
  39258. bottom: 27/1445
  39259. }
  39260. },
  39261. },
  39262. [
  39263. {
  39264. name: "Macro",
  39265. height: math.unit(35, "feet"),
  39266. default: true
  39267. },
  39268. ]
  39269. ))
  39270. characterMakers.push(() => makeCharacter(
  39271. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39272. {
  39273. front: {
  39274. height: math.unit(6, "feet"),
  39275. weight: math.unit(150, "lb"),
  39276. name: "Front",
  39277. image: {
  39278. source: "./media/characters/numin/front.svg",
  39279. extra: 1433/1388,
  39280. bottom: 12/1445
  39281. }
  39282. },
  39283. },
  39284. [
  39285. {
  39286. name: "Macro",
  39287. height: math.unit(21.5, "km"),
  39288. default: true
  39289. },
  39290. ]
  39291. ))
  39292. characterMakers.push(() => makeCharacter(
  39293. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39294. {
  39295. front: {
  39296. height: math.unit(6, "feet"),
  39297. weight: math.unit(463, "lb"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/melwa/front.svg",
  39301. extra: 1307/1248,
  39302. bottom: 93/1400
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Macro",
  39309. height: math.unit(50, "meters"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39316. {
  39317. front: {
  39318. height: math.unit(325, "feet"),
  39319. name: "Front",
  39320. image: {
  39321. source: "./media/characters/zorkaiju/front.svg",
  39322. extra: 1955/1814,
  39323. bottom: 40/1995
  39324. }
  39325. },
  39326. frontExtended: {
  39327. height: math.unit(325, "feet"),
  39328. name: "Front (Extended)",
  39329. image: {
  39330. source: "./media/characters/zorkaiju/front-extended.svg",
  39331. extra: 1955/1814,
  39332. bottom: 40/1995
  39333. }
  39334. },
  39335. side: {
  39336. height: math.unit(325, "feet"),
  39337. name: "Side",
  39338. image: {
  39339. source: "./media/characters/zorkaiju/side.svg",
  39340. extra: 1495/1396,
  39341. bottom: 17/1512
  39342. }
  39343. },
  39344. sideExtended: {
  39345. height: math.unit(325, "feet"),
  39346. name: "Side (Extended)",
  39347. image: {
  39348. source: "./media/characters/zorkaiju/side-extended.svg",
  39349. extra: 1495/1396,
  39350. bottom: 17/1512
  39351. }
  39352. },
  39353. back: {
  39354. height: math.unit(325, "feet"),
  39355. name: "Back",
  39356. image: {
  39357. source: "./media/characters/zorkaiju/back.svg",
  39358. extra: 1959/1821,
  39359. bottom: 31/1990
  39360. }
  39361. },
  39362. backExtended: {
  39363. height: math.unit(325, "feet"),
  39364. name: "Back (Extended)",
  39365. image: {
  39366. source: "./media/characters/zorkaiju/back-extended.svg",
  39367. extra: 1959/1821,
  39368. bottom: 31/1990
  39369. }
  39370. },
  39371. hand: {
  39372. height: math.unit(58.4, "feet"),
  39373. name: "Hand",
  39374. image: {
  39375. source: "./media/characters/zorkaiju/hand.svg"
  39376. }
  39377. },
  39378. handExtended: {
  39379. height: math.unit(61.4, "feet"),
  39380. name: "Hand (Extended)",
  39381. image: {
  39382. source: "./media/characters/zorkaiju/hand-extended.svg"
  39383. }
  39384. },
  39385. foot: {
  39386. height: math.unit(95, "feet"),
  39387. name: "Foot",
  39388. image: {
  39389. source: "./media/characters/zorkaiju/foot.svg"
  39390. }
  39391. },
  39392. leftArm: {
  39393. height: math.unit(59, "feet"),
  39394. name: "Left Arm",
  39395. image: {
  39396. source: "./media/characters/zorkaiju/left-arm.svg"
  39397. }
  39398. },
  39399. rightArm: {
  39400. height: math.unit(59, "feet"),
  39401. name: "Right Arm",
  39402. image: {
  39403. source: "./media/characters/zorkaiju/right-arm.svg"
  39404. }
  39405. },
  39406. tail: {
  39407. height: math.unit(104, "feet"),
  39408. name: "Tail",
  39409. image: {
  39410. source: "./media/characters/zorkaiju/tail.svg"
  39411. }
  39412. },
  39413. tailExtended: {
  39414. height: math.unit(104, "feet"),
  39415. name: "Tail (Extended)",
  39416. image: {
  39417. source: "./media/characters/zorkaiju/tail-extended.svg"
  39418. }
  39419. },
  39420. tailBottom: {
  39421. height: math.unit(104, "feet"),
  39422. name: "Tail Bottom",
  39423. image: {
  39424. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39425. }
  39426. },
  39427. crystal: {
  39428. height: math.unit(27.54, "feet"),
  39429. name: "Crystal",
  39430. image: {
  39431. source: "./media/characters/zorkaiju/crystal.svg"
  39432. }
  39433. },
  39434. },
  39435. [
  39436. {
  39437. name: "Kaiju",
  39438. height: math.unit(325, "feet"),
  39439. default: true
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(6 + 1/12, "feet"),
  39448. weight: math.unit(115, "lb"),
  39449. name: "Front",
  39450. image: {
  39451. source: "./media/characters/bailey-belfry/front.svg",
  39452. extra: 1240/1121,
  39453. bottom: 101/1341
  39454. }
  39455. },
  39456. },
  39457. [
  39458. {
  39459. name: "Normal",
  39460. height: math.unit(6 + 1/12, "feet"),
  39461. default: true
  39462. },
  39463. ]
  39464. ))
  39465. characterMakers.push(() => makeCharacter(
  39466. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39467. {
  39468. side: {
  39469. height: math.unit(4, "meters"),
  39470. weight: math.unit(250, "kg"),
  39471. name: "Side",
  39472. image: {
  39473. source: "./media/characters/blacky/side.svg",
  39474. extra: 1027/919,
  39475. bottom: 43/1070
  39476. }
  39477. },
  39478. maw: {
  39479. height: math.unit(1, "meters"),
  39480. name: "Maw",
  39481. image: {
  39482. source: "./media/characters/blacky/maw.svg"
  39483. }
  39484. },
  39485. paw: {
  39486. height: math.unit(1, "meters"),
  39487. name: "Paw",
  39488. image: {
  39489. source: "./media/characters/blacky/paw.svg"
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(4, "meters"),
  39497. default: true
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(170, "cm"),
  39506. weight: math.unit(66, "kg"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/thux-ei/front.svg",
  39510. extra: 1109/1011,
  39511. bottom: 8/1117
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Normal",
  39518. height: math.unit(170, "cm"),
  39519. default: true
  39520. },
  39521. ]
  39522. ))
  39523. characterMakers.push(() => makeCharacter(
  39524. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39525. {
  39526. front: {
  39527. height: math.unit(5, "feet"),
  39528. weight: math.unit(120, "lb"),
  39529. name: "Front",
  39530. image: {
  39531. source: "./media/characters/roxanne-voltaire/front.svg",
  39532. extra: 1901/1779,
  39533. bottom: 53/1954
  39534. }
  39535. },
  39536. },
  39537. [
  39538. {
  39539. name: "Normal",
  39540. height: math.unit(5, "feet"),
  39541. default: true
  39542. },
  39543. {
  39544. name: "Giant",
  39545. height: math.unit(50, "feet")
  39546. },
  39547. {
  39548. name: "Titan",
  39549. height: math.unit(500, "feet")
  39550. },
  39551. {
  39552. name: "Macro",
  39553. height: math.unit(5000, "feet")
  39554. },
  39555. {
  39556. name: "Megamacro",
  39557. height: math.unit(50000, "feet")
  39558. },
  39559. {
  39560. name: "Gigamacro",
  39561. height: math.unit(500000, "feet")
  39562. },
  39563. {
  39564. name: "Teramacro",
  39565. height: math.unit(5e6, "feet")
  39566. },
  39567. ]
  39568. ))
  39569. characterMakers.push(() => makeCharacter(
  39570. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39571. {
  39572. front: {
  39573. height: math.unit(6 + 2/12, "feet"),
  39574. name: "Front",
  39575. image: {
  39576. source: "./media/characters/squeaks/front.svg",
  39577. extra: 1823/1768,
  39578. bottom: 138/1961
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Micro",
  39585. height: math.unit(0.5, "inches")
  39586. },
  39587. {
  39588. name: "Normal",
  39589. height: math.unit(6 + 2/12, "feet"),
  39590. default: true
  39591. },
  39592. {
  39593. name: "Macro",
  39594. height: math.unit(600, "feet")
  39595. },
  39596. ]
  39597. ))
  39598. characterMakers.push(() => makeCharacter(
  39599. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39600. {
  39601. front: {
  39602. height: math.unit(1.72, "meters"),
  39603. name: "Front",
  39604. image: {
  39605. source: "./media/characters/archinger/front.svg",
  39606. extra: 1861/1675,
  39607. bottom: 125/1986
  39608. }
  39609. },
  39610. back: {
  39611. height: math.unit(1.72, "meters"),
  39612. name: "Back",
  39613. image: {
  39614. source: "./media/characters/archinger/back.svg",
  39615. extra: 1844/1701,
  39616. bottom: 104/1948
  39617. }
  39618. },
  39619. cock: {
  39620. height: math.unit(0.59, "feet"),
  39621. name: "Cock",
  39622. image: {
  39623. source: "./media/characters/archinger/cock.svg"
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Normal",
  39630. height: math.unit(1.72, "meters"),
  39631. default: true
  39632. },
  39633. {
  39634. name: "Macro",
  39635. height: math.unit(84, "meters")
  39636. },
  39637. {
  39638. name: "Macro+",
  39639. height: math.unit(112, "meters")
  39640. },
  39641. {
  39642. name: "Macro++",
  39643. height: math.unit(960, "meters")
  39644. },
  39645. {
  39646. name: "Macro+++",
  39647. height: math.unit(4, "km")
  39648. },
  39649. {
  39650. name: "Macro++++",
  39651. height: math.unit(48, "km")
  39652. },
  39653. {
  39654. name: "Macro+++++",
  39655. height: math.unit(4500, "km")
  39656. },
  39657. ]
  39658. ))
  39659. characterMakers.push(() => makeCharacter(
  39660. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39661. {
  39662. front: {
  39663. height: math.unit(5 + 5/12, "feet"),
  39664. name: "Front",
  39665. image: {
  39666. source: "./media/characters/alsnapz/front.svg",
  39667. extra: 1157/1065,
  39668. bottom: 42/1199
  39669. }
  39670. },
  39671. },
  39672. [
  39673. {
  39674. name: "Normal",
  39675. height: math.unit(5 + 5/12, "feet"),
  39676. default: true
  39677. },
  39678. ]
  39679. ))
  39680. characterMakers.push(() => makeCharacter(
  39681. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39682. {
  39683. side: {
  39684. height: math.unit(3.2, "earths"),
  39685. name: "Side",
  39686. image: {
  39687. source: "./media/characters/mag/side.svg",
  39688. extra: 1331/1008,
  39689. bottom: 52/1383
  39690. }
  39691. },
  39692. wing: {
  39693. height: math.unit(1.94, "earths"),
  39694. name: "Wing",
  39695. image: {
  39696. source: "./media/characters/mag/wing.svg"
  39697. }
  39698. },
  39699. dick: {
  39700. height: math.unit(1.8, "earths"),
  39701. name: "Dick",
  39702. image: {
  39703. source: "./media/characters/mag/dick.svg"
  39704. }
  39705. },
  39706. ass: {
  39707. height: math.unit(1.33, "earths"),
  39708. name: "Ass",
  39709. image: {
  39710. source: "./media/characters/mag/ass.svg"
  39711. }
  39712. },
  39713. head: {
  39714. height: math.unit(1.1, "earths"),
  39715. name: "Head",
  39716. image: {
  39717. source: "./media/characters/mag/head.svg"
  39718. }
  39719. },
  39720. maw: {
  39721. height: math.unit(1.62, "earths"),
  39722. name: "Maw",
  39723. image: {
  39724. source: "./media/characters/mag/maw.svg"
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Small",
  39731. height: math.unit(162, "feet")
  39732. },
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(3.2, "earths"),
  39736. default: true
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(512, "feet"),
  39745. weight: math.unit(63509, "tonnes"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/vorrel-harroc/front.svg",
  39749. extra: 1075/1063,
  39750. bottom: 62/1137
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(10, "feet")
  39758. },
  39759. {
  39760. name: "Macro",
  39761. height: math.unit(512, "feet"),
  39762. default: true
  39763. },
  39764. {
  39765. name: "Megamacro",
  39766. height: math.unit(256, "miles")
  39767. },
  39768. {
  39769. name: "Gigamacro",
  39770. height: math.unit(4096, "miles")
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39776. {
  39777. side: {
  39778. height: math.unit(50, "feet"),
  39779. name: "Side",
  39780. image: {
  39781. source: "./media/characters/froimar/side.svg",
  39782. extra: 855/638,
  39783. bottom: 99/954
  39784. }
  39785. },
  39786. },
  39787. [
  39788. {
  39789. name: "Macro",
  39790. height: math.unit(50, "feet"),
  39791. default: true
  39792. },
  39793. ]
  39794. ))
  39795. characterMakers.push(() => makeCharacter(
  39796. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39797. {
  39798. front: {
  39799. height: math.unit(210, "miles"),
  39800. name: "Front",
  39801. image: {
  39802. source: "./media/characters/timothy/front.svg",
  39803. extra: 1007/943,
  39804. bottom: 62/1069
  39805. }
  39806. },
  39807. frontSkirt: {
  39808. height: math.unit(210, "miles"),
  39809. name: "Front (Skirt)",
  39810. image: {
  39811. source: "./media/characters/timothy/front-skirt.svg",
  39812. extra: 1007/943,
  39813. bottom: 62/1069
  39814. }
  39815. },
  39816. frontCoat: {
  39817. height: math.unit(210, "miles"),
  39818. name: "Front (Coat)",
  39819. image: {
  39820. source: "./media/characters/timothy/front-coat.svg",
  39821. extra: 1007/943,
  39822. bottom: 62/1069
  39823. }
  39824. },
  39825. },
  39826. [
  39827. {
  39828. name: "Macro",
  39829. height: math.unit(210, "miles"),
  39830. default: true
  39831. },
  39832. {
  39833. name: "Megamacro",
  39834. height: math.unit(210000, "miles")
  39835. },
  39836. ]
  39837. ))
  39838. characterMakers.push(() => makeCharacter(
  39839. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39840. {
  39841. front: {
  39842. height: math.unit(188, "feet"),
  39843. name: "Front",
  39844. image: {
  39845. source: "./media/characters/pyotr/front.svg",
  39846. extra: 1912/1826,
  39847. bottom: 18/1930
  39848. }
  39849. },
  39850. },
  39851. [
  39852. {
  39853. name: "Macro",
  39854. height: math.unit(188, "feet"),
  39855. default: true
  39856. },
  39857. {
  39858. name: "Megamacro",
  39859. height: math.unit(8, "miles")
  39860. },
  39861. ]
  39862. ))
  39863. characterMakers.push(() => makeCharacter(
  39864. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39865. {
  39866. side: {
  39867. height: math.unit(10, "feet"),
  39868. weight: math.unit(4500, "lb"),
  39869. name: "Side",
  39870. image: {
  39871. source: "./media/characters/ackart/side.svg",
  39872. extra: 1776/1668,
  39873. bottom: 116/1892
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Normal",
  39880. height: math.unit(10, "feet"),
  39881. default: true
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39887. {
  39888. side: {
  39889. height: math.unit(21, "feet"),
  39890. name: "Side",
  39891. image: {
  39892. source: "./media/characters/nolow/side.svg",
  39893. extra: 1484/1434,
  39894. bottom: 85/1569
  39895. }
  39896. },
  39897. sideErect: {
  39898. height: math.unit(21, "feet"),
  39899. name: "Side-erect",
  39900. image: {
  39901. source: "./media/characters/nolow/side-erect.svg",
  39902. extra: 1484/1434,
  39903. bottom: 85/1569
  39904. }
  39905. },
  39906. },
  39907. [
  39908. {
  39909. name: "Regular",
  39910. height: math.unit(12, "feet")
  39911. },
  39912. {
  39913. name: "Big Chee",
  39914. height: math.unit(21, "feet"),
  39915. default: true
  39916. },
  39917. ]
  39918. ))
  39919. characterMakers.push(() => makeCharacter(
  39920. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39921. {
  39922. front: {
  39923. height: math.unit(7, "feet"),
  39924. weight: math.unit(250, "lb"),
  39925. name: "Front",
  39926. image: {
  39927. source: "./media/characters/nines/front.svg",
  39928. extra: 1741/1607,
  39929. bottom: 41/1782
  39930. }
  39931. },
  39932. side: {
  39933. height: math.unit(7, "feet"),
  39934. weight: math.unit(250, "lb"),
  39935. name: "Side",
  39936. image: {
  39937. source: "./media/characters/nines/side.svg",
  39938. extra: 1854/1735,
  39939. bottom: 93/1947
  39940. }
  39941. },
  39942. back: {
  39943. height: math.unit(7, "feet"),
  39944. weight: math.unit(250, "lb"),
  39945. name: "Back",
  39946. image: {
  39947. source: "./media/characters/nines/back.svg",
  39948. extra: 1748/1615,
  39949. bottom: 20/1768
  39950. }
  39951. },
  39952. },
  39953. [
  39954. {
  39955. name: "Megamacro",
  39956. height: math.unit(99, "km"),
  39957. default: true
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39963. {
  39964. front: {
  39965. height: math.unit(5 + 10/12, "feet"),
  39966. weight: math.unit(210, "lb"),
  39967. name: "Front",
  39968. image: {
  39969. source: "./media/characters/zenith/front.svg",
  39970. extra: 1531/1452,
  39971. bottom: 198/1729
  39972. }
  39973. },
  39974. back: {
  39975. height: math.unit(5 + 10/12, "feet"),
  39976. weight: math.unit(210, "lb"),
  39977. name: "Back",
  39978. image: {
  39979. source: "./media/characters/zenith/back.svg",
  39980. extra: 1571/1487,
  39981. bottom: 75/1646
  39982. }
  39983. },
  39984. },
  39985. [
  39986. {
  39987. name: "Normal",
  39988. height: math.unit(5 + 10/12, "feet"),
  39989. default: true
  39990. }
  39991. ]
  39992. ))
  39993. characterMakers.push(() => makeCharacter(
  39994. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39995. {
  39996. front: {
  39997. height: math.unit(4, "feet"),
  39998. weight: math.unit(60, "lb"),
  39999. name: "Front",
  40000. image: {
  40001. source: "./media/characters/jasper/front.svg",
  40002. extra: 1450/1379,
  40003. bottom: 19/1469
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Normal",
  40010. height: math.unit(4, "feet"),
  40011. default: true
  40012. },
  40013. ]
  40014. ))
  40015. characterMakers.push(() => makeCharacter(
  40016. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40017. {
  40018. front: {
  40019. height: math.unit(6 + 5/12, "feet"),
  40020. weight: math.unit(290, "lb"),
  40021. name: "Front",
  40022. image: {
  40023. source: "./media/characters/tiberius-thyben/front.svg",
  40024. extra: 757/739,
  40025. bottom: 39/796
  40026. }
  40027. },
  40028. },
  40029. [
  40030. {
  40031. name: "Micro",
  40032. height: math.unit(1.5, "inches")
  40033. },
  40034. {
  40035. name: "Normal",
  40036. height: math.unit(6 + 5/12, "feet"),
  40037. default: true
  40038. },
  40039. {
  40040. name: "Macro",
  40041. height: math.unit(300, "feet")
  40042. },
  40043. ]
  40044. ))
  40045. characterMakers.push(() => makeCharacter(
  40046. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40047. {
  40048. front: {
  40049. height: math.unit(5 + 6/12, "feet"),
  40050. weight: math.unit(60, "kg"),
  40051. name: "Front",
  40052. image: {
  40053. source: "./media/characters/sabre/front.svg",
  40054. extra: 738/671,
  40055. bottom: 27/765
  40056. }
  40057. },
  40058. },
  40059. [
  40060. {
  40061. name: "Teeny",
  40062. height: math.unit(2, "inches")
  40063. },
  40064. {
  40065. name: "Smol",
  40066. height: math.unit(8, "inches")
  40067. },
  40068. {
  40069. name: "Normal",
  40070. height: math.unit(5 + 6/12, "feet"),
  40071. default: true
  40072. },
  40073. {
  40074. name: "Mini-Macro",
  40075. height: math.unit(15, "feet")
  40076. },
  40077. {
  40078. name: "Macro",
  40079. height: math.unit(50, "feet")
  40080. },
  40081. ]
  40082. ))
  40083. characterMakers.push(() => makeCharacter(
  40084. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40085. {
  40086. front: {
  40087. height: math.unit(6 + 4/12, "feet"),
  40088. weight: math.unit(170, "lb"),
  40089. name: "Front",
  40090. image: {
  40091. source: "./media/characters/charlie/front.svg",
  40092. extra: 1348/1228,
  40093. bottom: 15/1363
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Macro",
  40100. height: math.unit(1700, "meters"),
  40101. default: true
  40102. },
  40103. {
  40104. name: "MegaMacro",
  40105. height: math.unit(20400, "meters")
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40111. {
  40112. front: {
  40113. height: math.unit(6 + 3/12, "feet"),
  40114. weight: math.unit(185, "lb"),
  40115. name: "Front",
  40116. image: {
  40117. source: "./media/characters/susan-grant/front.svg",
  40118. extra: 1351/1327,
  40119. bottom: 26/1377
  40120. }
  40121. },
  40122. },
  40123. [
  40124. {
  40125. name: "Normal",
  40126. height: math.unit(6 + 3/12, "feet"),
  40127. default: true
  40128. },
  40129. {
  40130. name: "Macro",
  40131. height: math.unit(225, "feet")
  40132. },
  40133. {
  40134. name: "Macro+",
  40135. height: math.unit(900, "feet")
  40136. },
  40137. {
  40138. name: "MegaMacro",
  40139. height: math.unit(14400, "feet")
  40140. },
  40141. ]
  40142. ))
  40143. characterMakers.push(() => makeCharacter(
  40144. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40145. {
  40146. front: {
  40147. height: math.unit(5 + 4/12, "feet"),
  40148. weight: math.unit(110, "lb"),
  40149. name: "Front",
  40150. image: {
  40151. source: "./media/characters/axel-isanov/front.svg",
  40152. extra: 1096/1065,
  40153. bottom: 13/1109
  40154. }
  40155. },
  40156. },
  40157. [
  40158. {
  40159. name: "Normal",
  40160. height: math.unit(5 + 4/12, "feet"),
  40161. default: true
  40162. },
  40163. ]
  40164. ))
  40165. characterMakers.push(() => makeCharacter(
  40166. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40167. {
  40168. front: {
  40169. height: math.unit(9, "feet"),
  40170. weight: math.unit(467, "lb"),
  40171. name: "Front",
  40172. image: {
  40173. source: "./media/characters/necahual/front.svg",
  40174. extra: 920/873,
  40175. bottom: 26/946
  40176. }
  40177. },
  40178. back: {
  40179. height: math.unit(9, "feet"),
  40180. weight: math.unit(467, "lb"),
  40181. name: "Back",
  40182. image: {
  40183. source: "./media/characters/necahual/back.svg",
  40184. extra: 930/884,
  40185. bottom: 16/946
  40186. }
  40187. },
  40188. frontUnderwear: {
  40189. height: math.unit(9, "feet"),
  40190. weight: math.unit(467, "lb"),
  40191. name: "Front (Underwear)",
  40192. image: {
  40193. source: "./media/characters/necahual/front-underwear.svg",
  40194. extra: 920/873,
  40195. bottom: 26/946
  40196. }
  40197. },
  40198. frontDressed: {
  40199. height: math.unit(9, "feet"),
  40200. weight: math.unit(467, "lb"),
  40201. name: "Front (Dressed)",
  40202. image: {
  40203. source: "./media/characters/necahual/front-dressed.svg",
  40204. extra: 920/873,
  40205. bottom: 26/946
  40206. }
  40207. },
  40208. },
  40209. [
  40210. {
  40211. name: "Comprsesed",
  40212. height: math.unit(9, "feet")
  40213. },
  40214. {
  40215. name: "Natural",
  40216. height: math.unit(15, "feet"),
  40217. default: true
  40218. },
  40219. {
  40220. name: "Boosted",
  40221. height: math.unit(50, "feet")
  40222. },
  40223. {
  40224. name: "Boosted+",
  40225. height: math.unit(150, "feet")
  40226. },
  40227. {
  40228. name: "Max",
  40229. height: math.unit(500, "feet")
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40235. {
  40236. front: {
  40237. height: math.unit(22 + 1/12, "feet"),
  40238. weight: math.unit(3200, "lb"),
  40239. name: "Front",
  40240. image: {
  40241. source: "./media/characters/theo-acacia/front.svg",
  40242. extra: 1796/1741,
  40243. bottom: 83/1879
  40244. }
  40245. },
  40246. frontUnderwear: {
  40247. height: math.unit(22 + 1/12, "feet"),
  40248. weight: math.unit(3200, "lb"),
  40249. name: "Front (Underwear)",
  40250. image: {
  40251. source: "./media/characters/theo-acacia/front-underwear.svg",
  40252. extra: 1796/1741,
  40253. bottom: 83/1879
  40254. }
  40255. },
  40256. frontNude: {
  40257. height: math.unit(22 + 1/12, "feet"),
  40258. weight: math.unit(3200, "lb"),
  40259. name: "Front (Nude)",
  40260. image: {
  40261. source: "./media/characters/theo-acacia/front-nude.svg",
  40262. extra: 1796/1741,
  40263. bottom: 83/1879
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Normal",
  40270. height: math.unit(22 + 1/12, "feet"),
  40271. default: true
  40272. },
  40273. ]
  40274. ))
  40275. characterMakers.push(() => makeCharacter(
  40276. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40277. {
  40278. front: {
  40279. height: math.unit(20, "feet"),
  40280. name: "Front",
  40281. image: {
  40282. source: "./media/characters/astra/front.svg",
  40283. extra: 1850/1714,
  40284. bottom: 106/1956
  40285. }
  40286. },
  40287. frontUndressed: {
  40288. height: math.unit(20, "feet"),
  40289. name: "Front (Undressed)",
  40290. image: {
  40291. source: "./media/characters/astra/front-undressed.svg",
  40292. extra: 1926/1749,
  40293. bottom: 0/1926
  40294. }
  40295. },
  40296. hand: {
  40297. height: math.unit(1.53, "feet"),
  40298. name: "Hand",
  40299. image: {
  40300. source: "./media/characters/astra/hand.svg"
  40301. }
  40302. },
  40303. paw: {
  40304. height: math.unit(1.53, "feet"),
  40305. name: "Paw",
  40306. image: {
  40307. source: "./media/characters/astra/paw.svg"
  40308. }
  40309. },
  40310. },
  40311. [
  40312. {
  40313. name: "Smallest",
  40314. height: math.unit(20, "feet")
  40315. },
  40316. {
  40317. name: "Normal",
  40318. height: math.unit(1e9, "miles"),
  40319. default: true
  40320. },
  40321. {
  40322. name: "Larger",
  40323. height: math.unit(5, "multiverses")
  40324. },
  40325. {
  40326. name: "Largest",
  40327. height: math.unit(1e9, "multiverses")
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40333. {
  40334. front: {
  40335. height: math.unit(8, "feet"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/breanna/front.svg",
  40339. extra: 1912/1632,
  40340. bottom: 33/1945
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Smallest",
  40347. height: math.unit(8, "feet")
  40348. },
  40349. {
  40350. name: "Normal",
  40351. height: math.unit(1, "mile"),
  40352. default: true
  40353. },
  40354. {
  40355. name: "Maximum",
  40356. height: math.unit(1500000000000, "lightyears")
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(5 + 11/12, "feet"),
  40365. weight: math.unit(155, "lb"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/cai/front.svg",
  40369. extra: 1823/1702,
  40370. bottom: 32/1855
  40371. }
  40372. },
  40373. back: {
  40374. height: math.unit(5 + 11/12, "feet"),
  40375. weight: math.unit(155, "lb"),
  40376. name: "Back",
  40377. image: {
  40378. source: "./media/characters/cai/back.svg",
  40379. extra: 1809/1708,
  40380. bottom: 31/1840
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Normal",
  40387. height: math.unit(5 + 11/12, "feet"),
  40388. default: true
  40389. },
  40390. {
  40391. name: "Big",
  40392. height: math.unit(15, "feet")
  40393. },
  40394. {
  40395. name: "Macro",
  40396. height: math.unit(200, "feet")
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(5 + 6/12, "feet"),
  40405. weight: math.unit(160, "lb"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40409. extra: 1227/1174,
  40410. bottom: 37/1264
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Macro",
  40417. height: math.unit(444, "meters"),
  40418. default: true
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40424. {
  40425. front: {
  40426. height: math.unit(18 + 7/12, "feet"),
  40427. name: "Front",
  40428. image: {
  40429. source: "./media/characters/rex/front.svg",
  40430. extra: 1941/1807,
  40431. bottom: 66/2007
  40432. }
  40433. },
  40434. back: {
  40435. height: math.unit(18 + 7/12, "feet"),
  40436. name: "Back",
  40437. image: {
  40438. source: "./media/characters/rex/back.svg",
  40439. extra: 1937/1822,
  40440. bottom: 42/1979
  40441. }
  40442. },
  40443. boot: {
  40444. height: math.unit(3.45, "feet"),
  40445. name: "Boot",
  40446. image: {
  40447. source: "./media/characters/rex/boot.svg"
  40448. }
  40449. },
  40450. paw: {
  40451. height: math.unit(4.17, "feet"),
  40452. name: "Paw",
  40453. image: {
  40454. source: "./media/characters/rex/paw.svg"
  40455. }
  40456. },
  40457. head: {
  40458. height: math.unit(6.728, "feet"),
  40459. name: "Head",
  40460. image: {
  40461. source: "./media/characters/rex/head.svg"
  40462. }
  40463. },
  40464. },
  40465. [
  40466. {
  40467. name: "Nano",
  40468. height: math.unit(18 + 7/12, "feet")
  40469. },
  40470. {
  40471. name: "Micro",
  40472. height: math.unit(1.5, "megameters")
  40473. },
  40474. {
  40475. name: "Normal",
  40476. height: math.unit(440, "megameters"),
  40477. default: true
  40478. },
  40479. {
  40480. name: "Macro",
  40481. height: math.unit(2.5, "gigameters")
  40482. },
  40483. {
  40484. name: "Gigamacro",
  40485. height: math.unit(2, "galaxies")
  40486. },
  40487. ]
  40488. ))
  40489. characterMakers.push(() => makeCharacter(
  40490. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40491. {
  40492. side: {
  40493. height: math.unit(32, "feet"),
  40494. weight: math.unit(250000, "lb"),
  40495. name: "Side",
  40496. image: {
  40497. source: "./media/characters/silverwing/side.svg",
  40498. extra: 1100/1019,
  40499. bottom: 204/1304
  40500. }
  40501. },
  40502. },
  40503. [
  40504. {
  40505. name: "Normal",
  40506. height: math.unit(32, "feet"),
  40507. default: true
  40508. },
  40509. ]
  40510. ))
  40511. characterMakers.push(() => makeCharacter(
  40512. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40513. {
  40514. front: {
  40515. height: math.unit(6 + 6/12, "feet"),
  40516. weight: math.unit(350, "lb"),
  40517. name: "Front",
  40518. image: {
  40519. source: "./media/characters/tristan-hawthorne/front.svg",
  40520. extra: 1159/1124,
  40521. bottom: 37/1196
  40522. }
  40523. },
  40524. },
  40525. [
  40526. {
  40527. name: "Normal",
  40528. height: math.unit(6 + 6/12, "feet"),
  40529. default: true
  40530. },
  40531. ]
  40532. ))
  40533. characterMakers.push(() => makeCharacter(
  40534. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40535. {
  40536. front: {
  40537. height: math.unit(5 + 11/12, "feet"),
  40538. weight: math.unit(190, "lb"),
  40539. name: "Front",
  40540. image: {
  40541. source: "./media/characters/mizu/front.svg",
  40542. extra: 1988/1788,
  40543. bottom: 14/2002
  40544. }
  40545. },
  40546. },
  40547. [
  40548. {
  40549. name: "Normal",
  40550. height: math.unit(5 + 11/12, "feet"),
  40551. default: true
  40552. },
  40553. ]
  40554. ))
  40555. characterMakers.push(() => makeCharacter(
  40556. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40557. {
  40558. front: {
  40559. height: math.unit(6, "feet"),
  40560. name: "Front",
  40561. image: {
  40562. source: "./media/characters/moonlight-rose-terra/front.svg",
  40563. extra: 1434/1252,
  40564. bottom: 48/1482
  40565. }
  40566. },
  40567. },
  40568. [
  40569. {
  40570. name: "TRAPPIST-1D",
  40571. height: math.unit(4992*2, "km")
  40572. },
  40573. {
  40574. name: "Earth",
  40575. height: math.unit(6367*2, "km"),
  40576. default: true
  40577. },
  40578. {
  40579. name: "Kepler-22b",
  40580. height: math.unit(15282*2, "km")
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40586. {
  40587. front: {
  40588. height: math.unit(6, "feet"),
  40589. name: "Front",
  40590. image: {
  40591. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40592. extra: 1851/1712,
  40593. bottom: 0/1851
  40594. }
  40595. },
  40596. },
  40597. [
  40598. {
  40599. name: "Enceladus",
  40600. height: math.unit(513*2, "km")
  40601. },
  40602. {
  40603. name: "Europe",
  40604. height: math.unit(1560*2, "km")
  40605. },
  40606. {
  40607. name: "Neptune",
  40608. height: math.unit(24622*2, "km"),
  40609. default: true
  40610. },
  40611. {
  40612. name: "CoRoT-9b",
  40613. height: math.unit(75067*2, "km")
  40614. },
  40615. ]
  40616. ))
  40617. characterMakers.push(() => makeCharacter(
  40618. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40619. {
  40620. front: {
  40621. height: math.unit(6, "feet"),
  40622. name: "Front",
  40623. image: {
  40624. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40625. extra: 1367/1286,
  40626. bottom: 55/1422
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "Saturn",
  40633. height: math.unit(58232*2, "km")
  40634. },
  40635. {
  40636. name: "Jupiter",
  40637. height: math.unit(69911*2, "km"),
  40638. default: true
  40639. },
  40640. {
  40641. name: "HD 100546 b",
  40642. height: math.unit(482938, "km")
  40643. },
  40644. ]
  40645. ))
  40646. characterMakers.push(() => makeCharacter(
  40647. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40648. {
  40649. front: {
  40650. height: math.unit(1.7, "feet"),
  40651. weight: math.unit(50, "lb"),
  40652. name: "Front",
  40653. image: {
  40654. source: "./media/characters/dechroma/front.svg",
  40655. extra: 1095/859,
  40656. bottom: 64/1159
  40657. }
  40658. },
  40659. },
  40660. [
  40661. {
  40662. name: "Normal",
  40663. height: math.unit(1.7, "feet"),
  40664. default: true
  40665. },
  40666. ]
  40667. ))
  40668. characterMakers.push(() => makeCharacter(
  40669. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40670. {
  40671. side: {
  40672. height: math.unit(30, "feet"),
  40673. name: "Side",
  40674. image: {
  40675. source: "./media/characters/veluren-thanazel/side.svg",
  40676. extra: 1611/633,
  40677. bottom: 118/1729
  40678. }
  40679. },
  40680. front: {
  40681. height: math.unit(30, "feet"),
  40682. name: "Front",
  40683. image: {
  40684. source: "./media/characters/veluren-thanazel/front.svg",
  40685. extra: 1486/636,
  40686. bottom: 238/1724
  40687. }
  40688. },
  40689. head: {
  40690. height: math.unit(21.4, "feet"),
  40691. name: "Head",
  40692. image: {
  40693. source: "./media/characters/veluren-thanazel/head.svg"
  40694. }
  40695. },
  40696. genitals: {
  40697. height: math.unit(19.4, "feet"),
  40698. name: "Genitals",
  40699. image: {
  40700. source: "./media/characters/veluren-thanazel/genitals.svg"
  40701. }
  40702. },
  40703. },
  40704. [
  40705. {
  40706. name: "Social",
  40707. height: math.unit(6, "feet")
  40708. },
  40709. {
  40710. name: "Play",
  40711. height: math.unit(12, "feet")
  40712. },
  40713. {
  40714. name: "True",
  40715. height: math.unit(30, "feet"),
  40716. default: true
  40717. },
  40718. ]
  40719. ))
  40720. characterMakers.push(() => makeCharacter(
  40721. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40722. {
  40723. front: {
  40724. height: math.unit(7 + 6/12, "feet"),
  40725. weight: math.unit(500, "kg"),
  40726. name: "Front",
  40727. image: {
  40728. source: "./media/characters/arcturas/front.svg",
  40729. extra: 1700/1500,
  40730. bottom: 145/1845
  40731. }
  40732. },
  40733. },
  40734. [
  40735. {
  40736. name: "Normal",
  40737. height: math.unit(7 + 6/12, "feet"),
  40738. default: true
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40744. {
  40745. side: {
  40746. height: math.unit(6, "feet"),
  40747. weight: math.unit(2, "tons"),
  40748. name: "Side",
  40749. image: {
  40750. source: "./media/characters/vitaen/side.svg",
  40751. extra: 1157/617,
  40752. bottom: 122/1279
  40753. }
  40754. },
  40755. },
  40756. [
  40757. {
  40758. name: "Normal",
  40759. height: math.unit(6, "feet"),
  40760. default: true
  40761. },
  40762. ]
  40763. ))
  40764. characterMakers.push(() => makeCharacter(
  40765. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40766. {
  40767. front: {
  40768. height: math.unit(19, "feet"),
  40769. name: "Front",
  40770. image: {
  40771. source: "./media/characters/fia-dreamweaver/front.svg",
  40772. extra: 1630/1504,
  40773. bottom: 25/1655
  40774. }
  40775. },
  40776. },
  40777. [
  40778. {
  40779. name: "Normal",
  40780. height: math.unit(19, "feet"),
  40781. default: true
  40782. },
  40783. ]
  40784. ))
  40785. //characters
  40786. function makeCharacters() {
  40787. const results = [];
  40788. characterMakers.forEach(character => {
  40789. results.push(character());
  40790. });
  40791. return results;
  40792. }