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

41484 строки
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. }
  1699. //species
  1700. function getSpeciesInfo(speciesList) {
  1701. let result = new Set();
  1702. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1703. result.add(entry)
  1704. });
  1705. return Array.from(result);
  1706. };
  1707. function getSpeciesInfoHelper(species) {
  1708. if (!speciesData[species]) {
  1709. console.warn(species + " doesn't exist");
  1710. return [];
  1711. }
  1712. if (speciesData[species].parents) {
  1713. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1714. } else {
  1715. return [species];
  1716. }
  1717. }
  1718. characterMakers.push(() => makeCharacter(
  1719. {
  1720. name: "Fen",
  1721. species: ["crux"],
  1722. description: {
  1723. title: "Bio",
  1724. text: "Very furry. Sheds on everything."
  1725. },
  1726. tags: [
  1727. "anthro",
  1728. "goo"
  1729. ]
  1730. },
  1731. {
  1732. back: {
  1733. height: math.unit(2.2428, "meter"),
  1734. weight: math.unit(124.738, "kg"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/fen/back.svg",
  1738. },
  1739. info: {
  1740. description: {
  1741. mode: "append",
  1742. text: "\n\nHe is not currently looking at you."
  1743. }
  1744. }
  1745. },
  1746. full: {
  1747. height: math.unit(1.34, "meter"),
  1748. weight: math.unit(225, "kg"),
  1749. name: "Full",
  1750. image: {
  1751. source: "./media/characters/fen/full.svg"
  1752. },
  1753. info: {
  1754. description: {
  1755. mode: "append",
  1756. text: "\n\nMunch."
  1757. }
  1758. }
  1759. },
  1760. kneeling: {
  1761. height: math.unit(5.4, "feet"),
  1762. weight: math.unit(124.738, "kg"),
  1763. name: "Kneeling",
  1764. image: {
  1765. source: "./media/characters/fen/kneeling.svg",
  1766. extra: 563 / 507
  1767. }
  1768. },
  1769. goo: {
  1770. height: math.unit(2.8, "feet"),
  1771. weight: math.unit(125, "kg"),
  1772. capacity: math.unit(1, "people"),
  1773. name: "Goo",
  1774. image: {
  1775. source: "./media/characters/fen/goo.svg",
  1776. bottom: 116 / 613
  1777. }
  1778. },
  1779. lounging: {
  1780. height: math.unit(6.5, "feet"),
  1781. weight: math.unit(125, "kg"),
  1782. name: "Lounging",
  1783. image: {
  1784. source: "./media/characters/fen/lounging.svg"
  1785. }
  1786. },
  1787. },
  1788. [
  1789. {
  1790. name: "Normal",
  1791. height: math.unit(2.2428, "meter")
  1792. },
  1793. {
  1794. name: "Big",
  1795. height: math.unit(12, "feet")
  1796. },
  1797. {
  1798. name: "Minimacro",
  1799. height: math.unit(40, "feet"),
  1800. default: true,
  1801. info: {
  1802. description: {
  1803. mode: "append",
  1804. text: "\n\nTOO DAMN BIG"
  1805. }
  1806. }
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(100, "feet"),
  1811. info: {
  1812. description: {
  1813. mode: "append",
  1814. text: "\n\nTOO DAMN BIG"
  1815. }
  1816. }
  1817. },
  1818. {
  1819. name: "Macro+",
  1820. height: math.unit(300, "feet")
  1821. },
  1822. {
  1823. name: "Megamacro",
  1824. height: math.unit(2, "miles")
  1825. }
  1826. ]
  1827. ))
  1828. characterMakers.push(() => makeCharacter(
  1829. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1830. {
  1831. front: {
  1832. height: math.unit(183, "cm"),
  1833. weight: math.unit(80, "kg"),
  1834. name: "Front",
  1835. image: {
  1836. source: "./media/characters/sofia-fluttertail/front.svg",
  1837. bottom: 0.01,
  1838. extra: 2154 / 2081
  1839. }
  1840. },
  1841. frontAlt: {
  1842. height: math.unit(183, "cm"),
  1843. weight: math.unit(80, "kg"),
  1844. name: "Front (alt)",
  1845. image: {
  1846. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1847. }
  1848. },
  1849. back: {
  1850. height: math.unit(183, "cm"),
  1851. weight: math.unit(80, "kg"),
  1852. name: "Back",
  1853. image: {
  1854. source: "./media/characters/sofia-fluttertail/back.svg"
  1855. }
  1856. },
  1857. kneeling: {
  1858. height: math.unit(125, "cm"),
  1859. weight: math.unit(80, "kg"),
  1860. name: "Kneeling",
  1861. image: {
  1862. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1863. extra: 1033 / 977,
  1864. bottom: 23.7 / 1057
  1865. }
  1866. },
  1867. maw: {
  1868. height: math.unit(183 / 5, "cm"),
  1869. name: "Maw",
  1870. image: {
  1871. source: "./media/characters/sofia-fluttertail/maw.svg"
  1872. }
  1873. },
  1874. mawcloseup: {
  1875. height: math.unit(183 / 5 * 0.41, "cm"),
  1876. name: "Maw (Closeup)",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1879. }
  1880. },
  1881. paws: {
  1882. height: math.unit(1.17, "feet"),
  1883. name: "Paws",
  1884. image: {
  1885. source: "./media/characters/sofia-fluttertail/paws.svg",
  1886. extra: 851 / 851,
  1887. bottom: 17 / 868
  1888. }
  1889. },
  1890. },
  1891. [
  1892. {
  1893. name: "Normal",
  1894. height: math.unit(1.83, "meter")
  1895. },
  1896. {
  1897. name: "Size Thief",
  1898. height: math.unit(18, "feet")
  1899. },
  1900. {
  1901. name: "50 Foot Collie",
  1902. height: math.unit(50, "feet")
  1903. },
  1904. {
  1905. name: "Macro",
  1906. height: math.unit(96, "feet"),
  1907. default: true
  1908. },
  1909. {
  1910. name: "Megamerger",
  1911. height: math.unit(650, "feet")
  1912. },
  1913. ]
  1914. ))
  1915. characterMakers.push(() => makeCharacter(
  1916. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1917. {
  1918. front: {
  1919. height: math.unit(7, "feet"),
  1920. weight: math.unit(100, "kg"),
  1921. name: "Front",
  1922. image: {
  1923. source: "./media/characters/march/front.svg",
  1924. extra: 1992/1851,
  1925. bottom: 39/2031
  1926. }
  1927. },
  1928. foot: {
  1929. height: math.unit(0.9, "feet"),
  1930. name: "Foot",
  1931. image: {
  1932. source: "./media/characters/march/foot.svg"
  1933. }
  1934. },
  1935. },
  1936. [
  1937. {
  1938. name: "Normal",
  1939. height: math.unit(7.9, "feet")
  1940. },
  1941. {
  1942. name: "Macro",
  1943. height: math.unit(220, "meters")
  1944. },
  1945. {
  1946. name: "Megamacro",
  1947. height: math.unit(2.98, "km"),
  1948. default: true
  1949. },
  1950. {
  1951. name: "Gigamacro",
  1952. height: math.unit(15963, "km")
  1953. },
  1954. {
  1955. name: "Teramacro",
  1956. height: math.unit(2980000000, "km")
  1957. },
  1958. {
  1959. name: "Examacro",
  1960. height: math.unit(250, "parsecs")
  1961. },
  1962. ]
  1963. ))
  1964. characterMakers.push(() => makeCharacter(
  1965. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1966. {
  1967. front: {
  1968. height: math.unit(6, "feet"),
  1969. weight: math.unit(60, "kg"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/noir/front.svg",
  1973. extra: 1,
  1974. bottom: 0.032
  1975. }
  1976. },
  1977. },
  1978. [
  1979. {
  1980. name: "Normal",
  1981. height: math.unit(6.6, "feet")
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(500, "feet")
  1986. },
  1987. {
  1988. name: "Megamacro",
  1989. height: math.unit(2.5, "km"),
  1990. default: true
  1991. },
  1992. {
  1993. name: "Gigamacro",
  1994. height: math.unit(22500, "km")
  1995. },
  1996. {
  1997. name: "Teramacro",
  1998. height: math.unit(2500000000, "km")
  1999. },
  2000. {
  2001. name: "Examacro",
  2002. height: math.unit(200, "parsecs")
  2003. },
  2004. ]
  2005. ))
  2006. characterMakers.push(() => makeCharacter(
  2007. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2008. {
  2009. front: {
  2010. height: math.unit(7, "feet"),
  2011. weight: math.unit(100, "kg"),
  2012. name: "Front",
  2013. image: {
  2014. source: "./media/characters/okuri/front.svg",
  2015. extra: 1,
  2016. bottom: 0.037
  2017. }
  2018. },
  2019. back: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(100, "kg"),
  2022. name: "Back",
  2023. image: {
  2024. source: "./media/characters/okuri/back.svg",
  2025. extra: 1,
  2026. bottom: 0.007
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Megamacro",
  2033. height: math.unit(100, "miles"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/manny/front.svg",
  2047. extra: 1,
  2048. bottom: 0.06
  2049. }
  2050. },
  2051. back: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(100, "kg"),
  2054. name: "Back",
  2055. image: {
  2056. source: "./media/characters/manny/back.svg",
  2057. extra: 1,
  2058. bottom: 0.014
  2059. }
  2060. },
  2061. },
  2062. [
  2063. {
  2064. name: "Normal",
  2065. height: math.unit(7, "feet"),
  2066. },
  2067. {
  2068. name: "Macro",
  2069. height: math.unit(78, "feet"),
  2070. default: true
  2071. },
  2072. {
  2073. name: "Macro+",
  2074. height: math.unit(300, "meters")
  2075. },
  2076. {
  2077. name: "Macro++",
  2078. height: math.unit(2400, "meters")
  2079. },
  2080. {
  2081. name: "Megamacro",
  2082. height: math.unit(5167, "meters")
  2083. },
  2084. {
  2085. name: "Gigamacro",
  2086. height: math.unit(41769, "miles")
  2087. },
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2092. {
  2093. front: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/adake/front-1.svg"
  2099. }
  2100. },
  2101. frontAlt: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Front (Alt)",
  2105. image: {
  2106. source: "./media/characters/adake/front-2.svg",
  2107. extra: 1,
  2108. bottom: 0.01
  2109. }
  2110. },
  2111. back: {
  2112. height: math.unit(7, "feet"),
  2113. weight: math.unit(100, "kg"),
  2114. name: "Back",
  2115. image: {
  2116. source: "./media/characters/adake/back.svg",
  2117. }
  2118. },
  2119. kneel: {
  2120. height: math.unit(5.385, "feet"),
  2121. weight: math.unit(100, "kg"),
  2122. name: "Kneeling",
  2123. image: {
  2124. source: "./media/characters/adake/kneel.svg",
  2125. bottom: 0.052
  2126. }
  2127. },
  2128. },
  2129. [
  2130. {
  2131. name: "Normal",
  2132. height: math.unit(7, "feet"),
  2133. },
  2134. {
  2135. name: "Macro",
  2136. height: math.unit(78, "feet"),
  2137. default: true
  2138. },
  2139. {
  2140. name: "Macro+",
  2141. height: math.unit(300, "meters")
  2142. },
  2143. {
  2144. name: "Macro++",
  2145. height: math.unit(2400, "meters")
  2146. },
  2147. {
  2148. name: "Megamacro",
  2149. height: math.unit(5167, "meters")
  2150. },
  2151. {
  2152. name: "Gigamacro",
  2153. height: math.unit(41769, "miles")
  2154. },
  2155. ]
  2156. ))
  2157. characterMakers.push(() => makeCharacter(
  2158. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2159. {
  2160. front: {
  2161. height: math.unit(1.65, "meters"),
  2162. weight: math.unit(50, "kg"),
  2163. name: "Front",
  2164. image: {
  2165. source: "./media/characters/elijah/front.svg",
  2166. extra: 858 / 830,
  2167. bottom: 95.5 / 953.8559
  2168. }
  2169. },
  2170. back: {
  2171. height: math.unit(1.65, "meters"),
  2172. weight: math.unit(50, "kg"),
  2173. name: "Back",
  2174. image: {
  2175. source: "./media/characters/elijah/back.svg",
  2176. extra: 895 / 850,
  2177. bottom: 5.3 / 897.956
  2178. }
  2179. },
  2180. frontNsfw: {
  2181. height: math.unit(1.65, "meters"),
  2182. weight: math.unit(50, "kg"),
  2183. name: "Front (NSFW)",
  2184. image: {
  2185. source: "./media/characters/elijah/front-nsfw.svg",
  2186. extra: 858 / 830,
  2187. bottom: 95.5 / 953.8559
  2188. }
  2189. },
  2190. backNsfw: {
  2191. height: math.unit(1.65, "meters"),
  2192. weight: math.unit(50, "kg"),
  2193. name: "Back (NSFW)",
  2194. image: {
  2195. source: "./media/characters/elijah/back-nsfw.svg",
  2196. extra: 895 / 850,
  2197. bottom: 5.3 / 897.956
  2198. }
  2199. },
  2200. dick: {
  2201. height: math.unit(1, "feet"),
  2202. name: "Dick",
  2203. image: {
  2204. source: "./media/characters/elijah/dick.svg"
  2205. }
  2206. },
  2207. beakOpen: {
  2208. height: math.unit(1.25, "feet"),
  2209. name: "Beak (Open)",
  2210. image: {
  2211. source: "./media/characters/elijah/beak-open.svg"
  2212. }
  2213. },
  2214. beakShut: {
  2215. height: math.unit(1.25, "feet"),
  2216. name: "Beak (Shut)",
  2217. image: {
  2218. source: "./media/characters/elijah/beak-shut.svg"
  2219. }
  2220. },
  2221. footFlexing: {
  2222. height: math.unit(1.61, "feet"),
  2223. name: "Foot (Flexing)",
  2224. image: {
  2225. source: "./media/characters/elijah/foot-flexing.svg"
  2226. }
  2227. },
  2228. footStepping: {
  2229. height: math.unit(1.44, "feet"),
  2230. name: "Foot (Stepping)",
  2231. image: {
  2232. source: "./media/characters/elijah/foot-stepping.svg"
  2233. }
  2234. },
  2235. plantigradeLeg: {
  2236. height: math.unit(2.34, "feet"),
  2237. name: "Plantigrade Leg",
  2238. image: {
  2239. source: "./media/characters/elijah/plantigrade-leg.svg"
  2240. }
  2241. },
  2242. plantigradeFootLeft: {
  2243. height: math.unit(0.9, "feet"),
  2244. name: "Plantigrade Foot (Left)",
  2245. image: {
  2246. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2247. }
  2248. },
  2249. plantigradeFootRight: {
  2250. height: math.unit(0.9, "feet"),
  2251. name: "Plantigrade Foot (Right)",
  2252. image: {
  2253. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Normal",
  2260. height: math.unit(1.65, "meters")
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(55, "meters"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Macro+",
  2269. height: math.unit(105, "meters")
  2270. },
  2271. ]
  2272. ))
  2273. characterMakers.push(() => makeCharacter(
  2274. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2275. {
  2276. front: {
  2277. height: math.unit(11, "feet"),
  2278. weight: math.unit(320, "kg"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/rai/front.svg",
  2282. extra: 1802/1696,
  2283. bottom: 68/1870
  2284. }
  2285. },
  2286. frontDressed: {
  2287. height: math.unit(11, "feet"),
  2288. weight: math.unit(320, "kg"),
  2289. name: "Front (Dressed)",
  2290. image: {
  2291. source: "./media/characters/rai/front-dressed.svg",
  2292. extra: 1802/1696,
  2293. bottom: 68/1870
  2294. }
  2295. },
  2296. side: {
  2297. height: math.unit(11, "feet"),
  2298. weight: math.unit(320, "kg"),
  2299. name: "Side",
  2300. image: {
  2301. source: "./media/characters/rai/side.svg",
  2302. extra: 1789/1710,
  2303. bottom: 115/1904
  2304. }
  2305. },
  2306. back: {
  2307. height: math.unit(11, "feet"),
  2308. weight: math.unit(320, "kg"),
  2309. name: "Back",
  2310. image: {
  2311. source: "./media/characters/rai/back.svg",
  2312. extra: 1770/1707,
  2313. bottom: 28/1798
  2314. }
  2315. },
  2316. feral: {
  2317. height: math.unit(11, "feet"),
  2318. weight: math.unit(640, "kg"),
  2319. name: "Feral",
  2320. image: {
  2321. source: "./media/characters/rai/feral.svg",
  2322. extra: 1035/642,
  2323. bottom: 86/1121
  2324. }
  2325. },
  2326. dragon: {
  2327. height: math.unit(23, "feet"),
  2328. weight: math.unit(50000, "lb"),
  2329. name: "Dragon",
  2330. image: {
  2331. source: "./media/characters/rai/dragon.svg",
  2332. extra: 2498 / 2030,
  2333. bottom: 85.2 / 2584
  2334. }
  2335. },
  2336. maw: {
  2337. height: math.unit(6 / 3.81416, "feet"),
  2338. name: "Maw",
  2339. image: {
  2340. source: "./media/characters/rai/maw.svg"
  2341. }
  2342. },
  2343. },
  2344. [
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(11, "feet")
  2348. },
  2349. {
  2350. name: "Macro",
  2351. height: math.unit(302, "feet"),
  2352. default: true
  2353. },
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2358. {
  2359. frontDressed: {
  2360. height: math.unit(216, "feet"),
  2361. weight: math.unit(7000000, "lb"),
  2362. name: "Front (Dressed)",
  2363. image: {
  2364. source: "./media/characters/jazzy/front-dressed.svg",
  2365. extra: 2738 / 2651,
  2366. bottom: 41.8 / 2786
  2367. }
  2368. },
  2369. backDressed: {
  2370. height: math.unit(216, "feet"),
  2371. weight: math.unit(7000000, "lb"),
  2372. name: "Back (Dressed)",
  2373. image: {
  2374. source: "./media/characters/jazzy/back-dressed.svg",
  2375. extra: 2775 / 2673,
  2376. bottom: 36.8 / 2817
  2377. }
  2378. },
  2379. front: {
  2380. height: math.unit(216, "feet"),
  2381. weight: math.unit(7000000, "lb"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/jazzy/front.svg",
  2385. extra: 2738 / 2651,
  2386. bottom: 41.8 / 2786
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(216, "feet"),
  2391. weight: math.unit(7000000, "lb"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/jazzy/back.svg",
  2395. extra: 2775 / 2673,
  2396. bottom: 36.8 / 2817
  2397. }
  2398. },
  2399. maw: {
  2400. height: math.unit(20, "feet"),
  2401. name: "Maw",
  2402. image: {
  2403. source: "./media/characters/jazzy/maw.svg"
  2404. }
  2405. },
  2406. paws: {
  2407. height: math.unit(27.5, "feet"),
  2408. name: "Paws",
  2409. image: {
  2410. source: "./media/characters/jazzy/paws.svg"
  2411. }
  2412. },
  2413. eye: {
  2414. height: math.unit(4.4, "feet"),
  2415. name: "Eye",
  2416. image: {
  2417. source: "./media/characters/jazzy/eye.svg"
  2418. }
  2419. },
  2420. droneOffense: {
  2421. height: math.unit(9.5, "inches"),
  2422. name: "Drone (Offense)",
  2423. image: {
  2424. source: "./media/characters/jazzy/drone-offense.svg"
  2425. }
  2426. },
  2427. droneRecon: {
  2428. height: math.unit(9.5, "inches"),
  2429. name: "Drone (Recon)",
  2430. image: {
  2431. source: "./media/characters/jazzy/drone-recon.svg"
  2432. }
  2433. },
  2434. droneDefense: {
  2435. height: math.unit(9.5, "inches"),
  2436. name: "Drone (Defense)",
  2437. image: {
  2438. source: "./media/characters/jazzy/drone-defense.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Macro",
  2445. height: math.unit(216, "feet"),
  2446. default: true
  2447. },
  2448. ]
  2449. ))
  2450. characterMakers.push(() => makeCharacter(
  2451. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2452. {
  2453. front: {
  2454. height: math.unit(9 + 6/12, "feet"),
  2455. weight: math.unit(700, "lb"),
  2456. name: "Front",
  2457. image: {
  2458. source: "./media/characters/flamm/front.svg",
  2459. extra: 1751/1632,
  2460. bottom: 46/1797
  2461. }
  2462. },
  2463. buff: {
  2464. height: math.unit(9 + 6/12, "feet"),
  2465. weight: math.unit(950, "lb"),
  2466. name: "Buff",
  2467. image: {
  2468. source: "./media/characters/flamm/buff.svg",
  2469. extra: 3018/2874,
  2470. bottom: 221/3239
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Normal",
  2477. height: math.unit(9.5, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(200, "feet"),
  2482. default: true
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(5 + 3/12, "feet"),
  2491. weight: math.unit(60, "kg"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/zephiro/front.svg",
  2495. extra: 2309 / 2162,
  2496. bottom: 0.069
  2497. }
  2498. },
  2499. side: {
  2500. height: math.unit(5 + 3/12, "feet"),
  2501. weight: math.unit(60, "kg"),
  2502. name: "Side",
  2503. image: {
  2504. source: "./media/characters/zephiro/side.svg",
  2505. extra: 2403 / 2279,
  2506. bottom: 0.015
  2507. }
  2508. },
  2509. back: {
  2510. height: math.unit(5 + 3/12, "feet"),
  2511. weight: math.unit(60, "kg"),
  2512. name: "Back",
  2513. image: {
  2514. source: "./media/characters/zephiro/back.svg",
  2515. extra: 2373 / 2244,
  2516. bottom: 0.013
  2517. }
  2518. },
  2519. hand: {
  2520. height: math.unit(0.68, "feet"),
  2521. name: "Hand",
  2522. image: {
  2523. source: "./media/characters/zephiro/hand.svg"
  2524. }
  2525. },
  2526. paw: {
  2527. height: math.unit(1, "feet"),
  2528. name: "Paw",
  2529. image: {
  2530. source: "./media/characters/zephiro/paw.svg"
  2531. }
  2532. },
  2533. beans: {
  2534. height: math.unit(0.93, "feet"),
  2535. name: "Beans",
  2536. image: {
  2537. source: "./media/characters/zephiro/beans.svg"
  2538. }
  2539. },
  2540. },
  2541. [
  2542. {
  2543. name: "Micro",
  2544. height: math.unit(3, "inches")
  2545. },
  2546. {
  2547. name: "Normal",
  2548. height: math.unit(5 + 3 / 12, "feet"),
  2549. default: true
  2550. },
  2551. {
  2552. name: "Macro",
  2553. height: math.unit(118, "feet")
  2554. },
  2555. ]
  2556. ))
  2557. characterMakers.push(() => makeCharacter(
  2558. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2559. {
  2560. front: {
  2561. height: math.unit(5, "feet"),
  2562. weight: math.unit(90, "kg"),
  2563. name: "Front",
  2564. image: {
  2565. source: "./media/characters/fory/front.svg",
  2566. extra: 2862 / 2674,
  2567. bottom: 180 / 3043.8
  2568. }
  2569. },
  2570. back: {
  2571. height: math.unit(5, "feet"),
  2572. weight: math.unit(90, "kg"),
  2573. name: "Back",
  2574. image: {
  2575. source: "./media/characters/fory/back.svg",
  2576. extra: 2962 / 2791,
  2577. bottom: 106 / 3071.8
  2578. }
  2579. },
  2580. foot: {
  2581. height: math.unit(2.14, "feet"),
  2582. name: "Foot",
  2583. image: {
  2584. source: "./media/characters/fory/foot.svg"
  2585. }
  2586. },
  2587. },
  2588. [
  2589. {
  2590. name: "Normal",
  2591. height: math.unit(5, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(50, "feet"),
  2596. default: true
  2597. },
  2598. {
  2599. name: "Megamacro",
  2600. height: math.unit(10, "miles")
  2601. },
  2602. {
  2603. name: "Gigamacro",
  2604. height: math.unit(5, "earths")
  2605. },
  2606. ]
  2607. ))
  2608. characterMakers.push(() => makeCharacter(
  2609. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2610. {
  2611. front: {
  2612. height: math.unit(7, "feet"),
  2613. weight: math.unit(90, "kg"),
  2614. name: "Front",
  2615. image: {
  2616. source: "./media/characters/kurrikage/front.svg",
  2617. extra: 1,
  2618. bottom: 0.035
  2619. }
  2620. },
  2621. back: {
  2622. height: math.unit(7, "feet"),
  2623. weight: math.unit(90, "lb"),
  2624. name: "Back",
  2625. image: {
  2626. source: "./media/characters/kurrikage/back.svg"
  2627. }
  2628. },
  2629. paw: {
  2630. height: math.unit(1.5, "feet"),
  2631. name: "Paw",
  2632. image: {
  2633. source: "./media/characters/kurrikage/paw.svg"
  2634. }
  2635. },
  2636. staff: {
  2637. height: math.unit(6.7, "feet"),
  2638. name: "Staff",
  2639. image: {
  2640. source: "./media/characters/kurrikage/staff.svg"
  2641. }
  2642. },
  2643. peek: {
  2644. height: math.unit(1.05, "feet"),
  2645. name: "Peeking",
  2646. image: {
  2647. source: "./media/characters/kurrikage/peek.svg",
  2648. bottom: 0.08
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(12, "feet"),
  2656. default: true
  2657. },
  2658. {
  2659. name: "Big",
  2660. height: math.unit(20, "feet")
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(500, "feet")
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(20, "miles")
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(6, "feet"),
  2677. weight: math.unit(75, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/shingo/front.svg",
  2681. extra: 706/681,
  2682. bottom: 11/717
  2683. }
  2684. },
  2685. frontAlt: {
  2686. height: math.unit(6, "feet"),
  2687. weight: math.unit(75, "kg"),
  2688. name: "Front (Alt)",
  2689. image: {
  2690. source: "./media/characters/shingo/front-alt.svg",
  2691. extra: 3511 / 3338,
  2692. bottom: 0.005
  2693. }
  2694. },
  2695. paw: {
  2696. height: math.unit(1, "feet"),
  2697. name: "Paw",
  2698. image: {
  2699. source: "./media/characters/shingo/paw.svg"
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Micro",
  2706. height: math.unit(4, "inches")
  2707. },
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(6, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro",
  2715. height: math.unit(108, "feet")
  2716. },
  2717. {
  2718. name: "Macro+",
  2719. height: math.unit(1500, "feet")
  2720. },
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2725. {
  2726. side: {
  2727. height: math.unit(6, "feet"),
  2728. weight: math.unit(75, "kg"),
  2729. name: "Side",
  2730. image: {
  2731. source: "./media/characters/aigey/side.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(200, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(100, "miles")
  2744. },
  2745. ]
  2746. )
  2747. )
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(5 + 5 / 12, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/natasha/front.svg",
  2757. extra: 859 / 824,
  2758. bottom: 23 / 879.6
  2759. }
  2760. },
  2761. frontNsfw: {
  2762. height: math.unit(5 + 5 / 12, "feet"),
  2763. weight: math.unit(75, "kg"),
  2764. name: "Front (NSFW)",
  2765. image: {
  2766. source: "./media/characters/natasha/front-nsfw.svg",
  2767. extra: 859 / 824,
  2768. bottom: 23 / 879.6
  2769. }
  2770. },
  2771. frontErect: {
  2772. height: math.unit(5 + 5 / 12, "feet"),
  2773. weight: math.unit(75, "kg"),
  2774. name: "Front (Erect)",
  2775. image: {
  2776. source: "./media/characters/natasha/front-erect.svg",
  2777. extra: 859 / 824,
  2778. bottom: 23 / 879.6
  2779. }
  2780. },
  2781. back: {
  2782. height: math.unit(5 + 5 / 12, "feet"),
  2783. weight: math.unit(75, "kg"),
  2784. name: "Back",
  2785. image: {
  2786. source: "./media/characters/natasha/back.svg",
  2787. extra: 887.9 / 852.6,
  2788. bottom: 9.7 / 896.4
  2789. }
  2790. },
  2791. backAlt: {
  2792. height: math.unit(5 + 5 / 12, "feet"),
  2793. weight: math.unit(75, "kg"),
  2794. name: "Back (Alt)",
  2795. image: {
  2796. source: "./media/characters/natasha/back-alt.svg",
  2797. extra: 1236.7 / 1192,
  2798. bottom: 22.3 / 1258.2
  2799. }
  2800. },
  2801. dick: {
  2802. height: math.unit(1.772, "feet"),
  2803. name: "Dick",
  2804. image: {
  2805. source: "./media/characters/natasha/dick.svg"
  2806. }
  2807. },
  2808. paw: {
  2809. height: math.unit(0.250, "meters"),
  2810. name: "Paw",
  2811. image: {
  2812. source: "./media/characters/natasha/paw.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(5 + 5 / 12, "feet")
  2820. },
  2821. {
  2822. name: "Large",
  2823. height: math.unit(12, "feet")
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(100, "feet"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Macro+",
  2832. height: math.unit(260, "feet")
  2833. },
  2834. {
  2835. name: "Macro++",
  2836. height: math.unit(1, "mile")
  2837. },
  2838. ]
  2839. ))
  2840. characterMakers.push(() => makeCharacter(
  2841. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2842. {
  2843. front: {
  2844. height: math.unit(6, "feet"),
  2845. weight: math.unit(75, "kg"),
  2846. name: "Front",
  2847. image: {
  2848. source: "./media/characters/malik/front.svg"
  2849. }
  2850. },
  2851. side: {
  2852. height: math.unit(6, "feet"),
  2853. weight: math.unit(75, "kg"),
  2854. name: "Side",
  2855. image: {
  2856. source: "./media/characters/malik/side.svg",
  2857. extra: 1.1539
  2858. }
  2859. },
  2860. back: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(75, "kg"),
  2863. name: "Back",
  2864. image: {
  2865. source: "./media/characters/malik/back.svg"
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Macro",
  2872. height: math.unit(156, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Macro+",
  2877. height: math.unit(1188, "feet")
  2878. },
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/sefer/front.svg",
  2890. extra: 848 / 659,
  2891. bottom: 28.3 / 876.442
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/sefer/back.svg",
  2900. extra: 864 / 695,
  2901. bottom: 10 / 871
  2902. }
  2903. },
  2904. frontDressed: {
  2905. height: math.unit(6, "feet"),
  2906. weight: math.unit(75, "kg"),
  2907. name: "Front (Dressed)",
  2908. image: {
  2909. source: "./media/characters/sefer/front-dressed.svg",
  2910. extra: 839 / 653,
  2911. bottom: 37.6 / 878
  2912. }
  2913. },
  2914. },
  2915. [
  2916. {
  2917. name: "Normal",
  2918. height: math.unit(6, "feet"),
  2919. default: true
  2920. },
  2921. ]
  2922. ))
  2923. characterMakers.push(() => makeCharacter(
  2924. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2925. {
  2926. body: {
  2927. height: math.unit(2.2428, "meter"),
  2928. weight: math.unit(124.738, "kg"),
  2929. name: "Body",
  2930. image: {
  2931. extra: 1225 / 1050,
  2932. source: "./media/characters/north/front.svg"
  2933. }
  2934. }
  2935. },
  2936. [
  2937. {
  2938. name: "Micro",
  2939. height: math.unit(4, "inches")
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(63, "meters")
  2944. },
  2945. {
  2946. name: "Megamacro",
  2947. height: math.unit(101, "miles"),
  2948. default: true
  2949. }
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2954. {
  2955. angled: {
  2956. height: math.unit(4, "meter"),
  2957. weight: math.unit(150, "kg"),
  2958. name: "Angled",
  2959. image: {
  2960. source: "./media/characters/talan/angled-sfw.svg",
  2961. bottom: 29 / 3734
  2962. }
  2963. },
  2964. angledNsfw: {
  2965. height: math.unit(4, "meter"),
  2966. weight: math.unit(150, "kg"),
  2967. name: "Angled (NSFW)",
  2968. image: {
  2969. source: "./media/characters/talan/angled-nsfw.svg",
  2970. bottom: 29 / 3734
  2971. }
  2972. },
  2973. frontNsfw: {
  2974. height: math.unit(4, "meter"),
  2975. weight: math.unit(150, "kg"),
  2976. name: "Front (NSFW)",
  2977. image: {
  2978. source: "./media/characters/talan/front-nsfw.svg",
  2979. bottom: 29 / 3734
  2980. }
  2981. },
  2982. sideNsfw: {
  2983. height: math.unit(4, "meter"),
  2984. weight: math.unit(150, "kg"),
  2985. name: "Side (NSFW)",
  2986. image: {
  2987. source: "./media/characters/talan/side-nsfw.svg",
  2988. bottom: 29 / 3734
  2989. }
  2990. },
  2991. back: {
  2992. height: math.unit(4, "meter"),
  2993. weight: math.unit(150, "kg"),
  2994. name: "Back",
  2995. image: {
  2996. source: "./media/characters/talan/back.svg"
  2997. }
  2998. },
  2999. dickBottom: {
  3000. height: math.unit(0.621, "meter"),
  3001. name: "Dick (Bottom)",
  3002. image: {
  3003. source: "./media/characters/talan/dick-bottom.svg"
  3004. }
  3005. },
  3006. dickTop: {
  3007. height: math.unit(0.621, "meter"),
  3008. name: "Dick (Top)",
  3009. image: {
  3010. source: "./media/characters/talan/dick-top.svg"
  3011. }
  3012. },
  3013. dickSide: {
  3014. height: math.unit(0.305, "meter"),
  3015. name: "Dick (Side)",
  3016. image: {
  3017. source: "./media/characters/talan/dick-side.svg"
  3018. }
  3019. },
  3020. dickFront: {
  3021. height: math.unit(0.305, "meter"),
  3022. name: "Dick (Front)",
  3023. image: {
  3024. source: "./media/characters/talan/dick-front.svg"
  3025. }
  3026. },
  3027. },
  3028. [
  3029. {
  3030. name: "Normal",
  3031. height: math.unit(4, "meters")
  3032. },
  3033. {
  3034. name: "Macro",
  3035. height: math.unit(100, "meters")
  3036. },
  3037. {
  3038. name: "Megamacro",
  3039. height: math.unit(2, "miles"),
  3040. default: true
  3041. },
  3042. {
  3043. name: "Gigamacro",
  3044. height: math.unit(5000, "miles")
  3045. },
  3046. {
  3047. name: "Teramacro",
  3048. height: math.unit(100, "parsecs")
  3049. }
  3050. ]
  3051. ))
  3052. characterMakers.push(() => makeCharacter(
  3053. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3054. {
  3055. front: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Front",
  3059. image: {
  3060. source: "./media/characters/gael'rathus/front.svg"
  3061. }
  3062. },
  3063. frontAlt: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(90, "kg"),
  3066. name: "Front (alt)",
  3067. image: {
  3068. source: "./media/characters/gael'rathus/front-alt.svg"
  3069. }
  3070. },
  3071. frontAlt2: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(90, "kg"),
  3074. name: "Front (alt 2)",
  3075. image: {
  3076. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3077. }
  3078. }
  3079. },
  3080. [
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(9, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Large",
  3088. height: math.unit(25, "feet")
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(0.25, "miles")
  3093. },
  3094. {
  3095. name: "Megamacro",
  3096. height: math.unit(10, "miles")
  3097. }
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3102. {
  3103. side: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(140, "kg"),
  3106. name: "Side",
  3107. image: {
  3108. source: "./media/characters/sosha/side.svg",
  3109. bottom: 0.042
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(12, "feet"),
  3117. default: true
  3118. }
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3123. {
  3124. side: {
  3125. height: math.unit(5 + 5 / 12, "feet"),
  3126. weight: math.unit(170, "kg"),
  3127. name: "Side",
  3128. image: {
  3129. source: "./media/characters/runnola/side.svg",
  3130. extra: 741 / 448,
  3131. bottom: 0.05
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Small",
  3138. height: math.unit(3, "feet")
  3139. },
  3140. {
  3141. name: "Normal",
  3142. height: math.unit(5 + 5 / 12, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Big",
  3147. height: math.unit(10, "feet")
  3148. },
  3149. ]
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3153. {
  3154. front: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(50, "kg"),
  3157. name: "Front",
  3158. image: {
  3159. source: "./media/characters/kurribird/front.svg",
  3160. bottom: 0.015
  3161. }
  3162. },
  3163. frontAlt: {
  3164. height: math.unit(1.5, "meter"),
  3165. weight: math.unit(50, "kg"),
  3166. name: "Front (Alt)",
  3167. image: {
  3168. source: "./media/characters/kurribird/front-alt.svg",
  3169. extra: 1.45
  3170. }
  3171. },
  3172. },
  3173. [
  3174. {
  3175. name: "Normal",
  3176. height: math.unit(7, "feet")
  3177. },
  3178. {
  3179. name: "Big",
  3180. height: math.unit(12, "feet"),
  3181. default: true
  3182. },
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(1500, "feet")
  3186. },
  3187. {
  3188. name: "Megamacro",
  3189. height: math.unit(2, "miles")
  3190. }
  3191. ]
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3195. {
  3196. front: {
  3197. height: math.unit(2, "meter"),
  3198. weight: math.unit(80, "kg"),
  3199. name: "Front",
  3200. image: {
  3201. source: "./media/characters/elbial/front.svg",
  3202. extra: 1643 / 1556,
  3203. bottom: 60.2 / 1696
  3204. }
  3205. },
  3206. side: {
  3207. height: math.unit(2, "meter"),
  3208. weight: math.unit(80, "kg"),
  3209. name: "Side",
  3210. image: {
  3211. source: "./media/characters/elbial/side.svg",
  3212. extra: 1630 / 1565,
  3213. bottom: 71.5 / 1697
  3214. }
  3215. },
  3216. back: {
  3217. height: math.unit(2, "meter"),
  3218. weight: math.unit(80, "kg"),
  3219. name: "Back",
  3220. image: {
  3221. source: "./media/characters/elbial/back.svg",
  3222. extra: 1668 / 1595,
  3223. bottom: 5.6 / 1672
  3224. }
  3225. },
  3226. frontDressed: {
  3227. height: math.unit(2, "meter"),
  3228. weight: math.unit(80, "kg"),
  3229. name: "Front (Dressed)",
  3230. image: {
  3231. source: "./media/characters/elbial/front-dressed.svg",
  3232. extra: 1653 / 1584,
  3233. bottom: 57 / 1708
  3234. }
  3235. },
  3236. genitals: {
  3237. height: math.unit(2 / 3.367, "meter"),
  3238. name: "Genitals",
  3239. image: {
  3240. source: "./media/characters/elbial/genitals.svg"
  3241. }
  3242. },
  3243. },
  3244. [
  3245. {
  3246. name: "Large",
  3247. height: math.unit(100, "feet")
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(500, "feet"),
  3252. default: true
  3253. },
  3254. {
  3255. name: "Megamacro",
  3256. height: math.unit(10, "miles")
  3257. },
  3258. {
  3259. name: "Gigamacro",
  3260. height: math.unit(25000, "miles")
  3261. },
  3262. {
  3263. name: "Full-Size",
  3264. height: math.unit(8000000, "gigaparsecs")
  3265. }
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3270. {
  3271. front: {
  3272. height: math.unit(2, "meter"),
  3273. weight: math.unit(60, "kg"),
  3274. name: "Front",
  3275. image: {
  3276. source: "./media/characters/noah/front.svg"
  3277. }
  3278. },
  3279. talons: {
  3280. height: math.unit(0.315, "meter"),
  3281. name: "Talons",
  3282. image: {
  3283. source: "./media/characters/noah/talons.svg"
  3284. }
  3285. }
  3286. },
  3287. [
  3288. {
  3289. name: "Large",
  3290. height: math.unit(50, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(750, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Megamacro",
  3299. height: math.unit(50, "miles")
  3300. },
  3301. {
  3302. name: "Gigamacro",
  3303. height: math.unit(100000, "miles")
  3304. },
  3305. {
  3306. name: "Full-Size",
  3307. height: math.unit(3000000000, "miles")
  3308. }
  3309. ]
  3310. ))
  3311. characterMakers.push(() => makeCharacter(
  3312. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3313. {
  3314. front: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(80, "kg"),
  3317. name: "Front",
  3318. image: {
  3319. source: "./media/characters/natalya/front.svg"
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(80, "kg"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/natalya/back.svg"
  3328. }
  3329. }
  3330. },
  3331. [
  3332. {
  3333. name: "Normal",
  3334. height: math.unit(150, "feet"),
  3335. default: true
  3336. },
  3337. {
  3338. name: "Megamacro",
  3339. height: math.unit(5, "miles")
  3340. },
  3341. {
  3342. name: "Full-Size",
  3343. height: math.unit(600, "kiloparsecs")
  3344. }
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(50, "kg"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/erestrebah/front.svg",
  3356. extra: 208 / 193,
  3357. bottom: 0.055
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(50, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/erestrebah/back.svg",
  3366. extra: 1.3
  3367. }
  3368. }
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(10, "feet")
  3374. },
  3375. {
  3376. name: "Large",
  3377. height: math.unit(50, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(300, "feet")
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(750, "feet")
  3387. },
  3388. {
  3389. name: "Megamacro",
  3390. height: math.unit(3, "miles")
  3391. }
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(2, "meter"),
  3399. weight: math.unit(80, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/jennifer/front.svg",
  3403. bottom: 0.11,
  3404. extra: 1.16
  3405. }
  3406. },
  3407. frontAlt: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(80, "kg"),
  3410. name: "Front (Alt)",
  3411. image: {
  3412. source: "./media/characters/jennifer/front-alt.svg"
  3413. }
  3414. }
  3415. },
  3416. [
  3417. {
  3418. name: "Canon Height",
  3419. height: math.unit(120, "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Macro+",
  3424. height: math.unit(300, "feet")
  3425. },
  3426. {
  3427. name: "Megamacro",
  3428. height: math.unit(20000, "feet")
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(50, "kg"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/kalista/front.svg",
  3441. extra: 1947 / 1700,
  3442. bottom: 76.6 / 1412.98
  3443. }
  3444. },
  3445. back: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(50, "kg"),
  3448. name: "Back",
  3449. image: {
  3450. source: "./media/characters/kalista/back.svg",
  3451. extra: 1366 / 1156,
  3452. bottom: 33.9 / 1362.78
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Uncomfortably Small",
  3459. height: math.unit(10, "feet")
  3460. },
  3461. {
  3462. name: "Small",
  3463. height: math.unit(30, "feet")
  3464. },
  3465. {
  3466. name: "Macro",
  3467. height: math.unit(100, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro+",
  3472. height: math.unit(2000, "feet")
  3473. },
  3474. {
  3475. name: "True Form",
  3476. height: math.unit(8924, "miles")
  3477. }
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(120, "kg"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/ggv/front.svg"
  3489. }
  3490. },
  3491. side: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(120, "kg"),
  3494. name: "Side",
  3495. image: {
  3496. source: "./media/characters/ggv/side.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Extremely Puny",
  3503. height: math.unit(9 + 5 / 12, "feet")
  3504. },
  3505. {
  3506. name: "Horribly Small",
  3507. height: math.unit(47.7, "miles"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Reasonably Sized",
  3512. height: math.unit(25000, "parsecs")
  3513. },
  3514. {
  3515. name: "Slightly Uncompressed",
  3516. height: math.unit(7.77e31, "parsecs")
  3517. },
  3518. {
  3519. name: "Omniversal",
  3520. height: math.unit(1e300, "meters")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(75, "lb"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/napalm/front.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(75, "lb"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/napalm/back.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Standard",
  3547. height: math.unit(55, "feet"),
  3548. default: true
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(7 + 5 / 6, "feet"),
  3557. weight: math.unit(325, "lb"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/asana/front.svg",
  3561. extra: 1133 / 1060,
  3562. bottom: 15.2 / 1148.6
  3563. }
  3564. },
  3565. back: {
  3566. height: math.unit(7 + 5 / 6, "feet"),
  3567. weight: math.unit(325, "lb"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/asana/back.svg",
  3571. extra: 1114 / 1043,
  3572. bottom: 5 / 1120
  3573. }
  3574. },
  3575. dressedDark: {
  3576. height: math.unit(7 + 5 / 6, "feet"),
  3577. weight: math.unit(325, "lb"),
  3578. name: "Dressed (Dark)",
  3579. image: {
  3580. source: "./media/characters/asana/dressed-dark.svg",
  3581. extra: 1133 / 1060,
  3582. bottom: 15.2 / 1148.6
  3583. }
  3584. },
  3585. dressedLight: {
  3586. height: math.unit(7 + 5 / 6, "feet"),
  3587. weight: math.unit(325, "lb"),
  3588. name: "Dressed (Light)",
  3589. image: {
  3590. source: "./media/characters/asana/dressed-light.svg",
  3591. extra: 1133 / 1060,
  3592. bottom: 15.2 / 1148.6
  3593. }
  3594. },
  3595. },
  3596. [
  3597. {
  3598. name: "Standard",
  3599. height: math.unit(7 + 5 / 6, "feet"),
  3600. default: true
  3601. },
  3602. {
  3603. name: "Large",
  3604. height: math.unit(10, "meters")
  3605. },
  3606. {
  3607. name: "Macro",
  3608. height: math.unit(2500, "meters")
  3609. },
  3610. {
  3611. name: "Megamacro",
  3612. height: math.unit(5e6, "meters")
  3613. },
  3614. {
  3615. name: "Examacro",
  3616. height: math.unit(5e12, "lightyears")
  3617. },
  3618. {
  3619. name: "Max Size",
  3620. height: math.unit(1e31, "lightyears")
  3621. }
  3622. ]
  3623. ))
  3624. characterMakers.push(() => makeCharacter(
  3625. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3626. {
  3627. front: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(60, "kg"),
  3630. name: "Front",
  3631. image: {
  3632. source: "./media/characters/ebony/front.svg",
  3633. bottom: 0.03,
  3634. extra: 1045 / 810 + 0.03
  3635. }
  3636. },
  3637. side: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(60, "kg"),
  3640. name: "Side",
  3641. image: {
  3642. source: "./media/characters/ebony/side.svg",
  3643. bottom: 0.03,
  3644. extra: 1045 / 810 + 0.03
  3645. }
  3646. },
  3647. back: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(60, "kg"),
  3650. name: "Back",
  3651. image: {
  3652. source: "./media/characters/ebony/back.svg",
  3653. bottom: 0.01,
  3654. extra: 1045 / 810 + 0.01
  3655. }
  3656. },
  3657. },
  3658. [
  3659. // TODO check why I did this lol
  3660. {
  3661. name: "Standard",
  3662. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3663. default: true
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(200, "feet")
  3668. },
  3669. {
  3670. name: "Gigamacro",
  3671. height: math.unit(13000, "km")
  3672. }
  3673. ]
  3674. ))
  3675. characterMakers.push(() => makeCharacter(
  3676. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3677. {
  3678. front: {
  3679. height: math.unit(6, "feet"),
  3680. weight: math.unit(175, "lb"),
  3681. name: "Front",
  3682. image: {
  3683. source: "./media/characters/mountain/front.svg",
  3684. extra: 972 / 955,
  3685. bottom: 64 / 1036.6
  3686. }
  3687. },
  3688. back: {
  3689. height: math.unit(6, "feet"),
  3690. weight: math.unit(175, "lb"),
  3691. name: "Back",
  3692. image: {
  3693. source: "./media/characters/mountain/back.svg",
  3694. extra: 970 / 950,
  3695. bottom: 28.25 / 999
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Large",
  3702. height: math.unit(20, "meters")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(300, "meters")
  3707. },
  3708. {
  3709. name: "Gigamacro",
  3710. height: math.unit(10000, "km"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Examacro",
  3715. height: math.unit(10e9, "lightyears")
  3716. }
  3717. ]
  3718. ))
  3719. characterMakers.push(() => makeCharacter(
  3720. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3721. {
  3722. front: {
  3723. height: math.unit(8, "feet"),
  3724. weight: math.unit(500, "lb"),
  3725. name: "Front",
  3726. image: {
  3727. source: "./media/characters/rick/front.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(8, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(5, "km")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(8, "feet"),
  3748. weight: math.unit(120, "lb"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/ona/front.svg"
  3752. }
  3753. },
  3754. frontAlt: {
  3755. height: math.unit(8, "feet"),
  3756. weight: math.unit(120, "lb"),
  3757. name: "Front (Alt)",
  3758. image: {
  3759. source: "./media/characters/ona/front-alt.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(8, "feet"),
  3764. weight: math.unit(120, "lb"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/ona/back.svg"
  3768. }
  3769. },
  3770. foot: {
  3771. height: math.unit(1.1, "feet"),
  3772. name: "Foot",
  3773. image: {
  3774. source: "./media/characters/ona/foot.svg"
  3775. }
  3776. }
  3777. },
  3778. [
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(70, "km"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Gigamacro",
  3786. height: math.unit(681818, "miles")
  3787. },
  3788. {
  3789. name: "Examacro",
  3790. height: math.unit(3800000, "lightyears")
  3791. },
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(12, "feet"),
  3799. weight: math.unit(3000, "lb"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/mech/front.svg",
  3803. extra: 2900 / 2770,
  3804. bottom: 110 / 3010
  3805. }
  3806. },
  3807. back: {
  3808. height: math.unit(12, "feet"),
  3809. weight: math.unit(3000, "lb"),
  3810. name: "Back",
  3811. image: {
  3812. source: "./media/characters/mech/back.svg",
  3813. extra: 3011 / 2890,
  3814. bottom: 94 / 3105
  3815. }
  3816. },
  3817. maw: {
  3818. height: math.unit(3.07, "feet"),
  3819. name: "Maw",
  3820. image: {
  3821. source: "./media/characters/mech/maw.svg"
  3822. }
  3823. },
  3824. head: {
  3825. height: math.unit(2.82, "feet"),
  3826. name: "Head",
  3827. image: {
  3828. source: "./media/characters/mech/head.svg"
  3829. }
  3830. },
  3831. dick: {
  3832. height: math.unit(1.43, "feet"),
  3833. name: "Dick",
  3834. image: {
  3835. source: "./media/characters/mech/dick.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Normal",
  3842. height: math.unit(12, "feet")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(300, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro+",
  3851. height: math.unit(1500, "feet")
  3852. },
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(1.3, "meter"),
  3860. weight: math.unit(30, "kg"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/gregory/front.svg",
  3864. }
  3865. }
  3866. },
  3867. [
  3868. {
  3869. name: "Normal",
  3870. height: math.unit(1.3, "meter"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Macro",
  3875. height: math.unit(20, "meter")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(2.8, "meter"),
  3884. weight: math.unit(200, "kg"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/elory/front.svg",
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Normal",
  3894. height: math.unit(2.8, "meter"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Macro",
  3899. height: math.unit(38, "meter")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3905. {
  3906. front: {
  3907. height: math.unit(470, "feet"),
  3908. weight: math.unit(924, "tons"),
  3909. name: "Front",
  3910. image: {
  3911. source: "./media/characters/angelpatamon/front.svg",
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(470, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Deity Size I",
  3923. height: math.unit(28651.2, "km")
  3924. },
  3925. {
  3926. name: "Deity Size II",
  3927. height: math.unit(171907.2, "km")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3933. {
  3934. side: {
  3935. height: math.unit(7.2, "meter"),
  3936. weight: math.unit(8.2, "tons"),
  3937. name: "Side",
  3938. image: {
  3939. source: "./media/characters/cryae/side.svg",
  3940. extra: 3500 / 1500
  3941. }
  3942. }
  3943. },
  3944. [
  3945. {
  3946. name: "Normal",
  3947. height: math.unit(7.2, "meter"),
  3948. default: true
  3949. }
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(175, "lb"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/xera/front.svg",
  3961. extra: 2377 / 1972,
  3962. bottom: 75.5 / 2452
  3963. }
  3964. },
  3965. side: {
  3966. height: math.unit(6, "feet"),
  3967. weight: math.unit(175, "lb"),
  3968. name: "Side",
  3969. image: {
  3970. source: "./media/characters/xera/side.svg",
  3971. extra: 2345 / 2019,
  3972. bottom: 39.7 / 2384
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(175, "lb"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/xera/back.svg",
  3981. extra: 2095 / 1984,
  3982. bottom: 67 / 2166
  3983. }
  3984. },
  3985. },
  3986. [
  3987. {
  3988. name: "Small",
  3989. height: math.unit(10, "feet")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(500, "meters"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Macro+",
  3998. height: math.unit(10, "km")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(25000, "km")
  4003. },
  4004. {
  4005. name: "Teramacro",
  4006. height: math.unit(3e6, "km")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(6, "feet"),
  4015. weight: math.unit(175, "lb"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/nebula/front.svg",
  4019. extra: 2566 / 2362,
  4020. bottom: 81 / 2644
  4021. }
  4022. }
  4023. },
  4024. [
  4025. {
  4026. name: "Small",
  4027. height: math.unit(4.5, "meters")
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(1500, "meters"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Megamacro",
  4036. height: math.unit(150, "km")
  4037. },
  4038. {
  4039. name: "Gigamacro",
  4040. height: math.unit(27000, "km")
  4041. }
  4042. ]
  4043. ))
  4044. characterMakers.push(() => makeCharacter(
  4045. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4046. {
  4047. front: {
  4048. height: math.unit(6, "feet"),
  4049. weight: math.unit(225, "lb"),
  4050. name: "Front",
  4051. image: {
  4052. source: "./media/characters/abysgar/front.svg"
  4053. }
  4054. }
  4055. },
  4056. [
  4057. {
  4058. name: "Small",
  4059. height: math.unit(4.5, "meters")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(1250, "meters"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "Megamacro",
  4068. height: math.unit(125, "km")
  4069. },
  4070. {
  4071. name: "Gigamacro",
  4072. height: math.unit(26000, "km")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4078. {
  4079. front: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(180, "lb"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/yakuz/front.svg"
  4085. }
  4086. }
  4087. },
  4088. [
  4089. {
  4090. name: "Small",
  4091. height: math.unit(5, "meters")
  4092. },
  4093. {
  4094. name: "Macro",
  4095. height: math.unit(1500, "meters"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Megamacro",
  4100. height: math.unit(200, "km")
  4101. },
  4102. {
  4103. name: "Gigamacro",
  4104. height: math.unit(100000, "km")
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/mirova/front.svg",
  4117. extra: 3334 / 3071,
  4118. bottom: 42 / 3375.6
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Small",
  4125. height: math.unit(5, "meters")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(900, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Megamacro",
  4134. height: math.unit(135, "km")
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(20000, "km")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4144. {
  4145. side: {
  4146. height: math.unit(28.35, "feet"),
  4147. weight: math.unit(99.75, "tons"),
  4148. name: "Side",
  4149. image: {
  4150. source: "./media/characters/asana-mech/side.svg",
  4151. extra: 923 / 699,
  4152. bottom: 50 / 975
  4153. }
  4154. },
  4155. chaingun: {
  4156. height: math.unit(7, "feet"),
  4157. weight: math.unit(2400, "lb"),
  4158. name: "Chaingun",
  4159. image: {
  4160. source: "./media/characters/asana-mech/chaingun.svg"
  4161. }
  4162. },
  4163. laser: {
  4164. height: math.unit(7.12, "feet"),
  4165. weight: math.unit(2000, "lb"),
  4166. name: "Laser",
  4167. image: {
  4168. source: "./media/characters/asana-mech/laser.svg"
  4169. }
  4170. },
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(28.35, "feet"),
  4176. default: true
  4177. },
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(2500, "feet")
  4181. },
  4182. {
  4183. name: "Megamacro",
  4184. height: math.unit(25, "miles")
  4185. },
  4186. {
  4187. name: "Examacro",
  4188. height: math.unit(6e8, "lightyears")
  4189. },
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4194. {
  4195. front: {
  4196. height: math.unit(5, "meters"),
  4197. weight: math.unit(1000, "kg"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/asche/front.svg",
  4201. extra: 1258 / 1190,
  4202. bottom: 47 / 1305
  4203. }
  4204. },
  4205. frontUnderwear: {
  4206. height: math.unit(5, "meters"),
  4207. weight: math.unit(1000, "kg"),
  4208. name: "Front (Underwear)",
  4209. image: {
  4210. source: "./media/characters/asche/front-underwear.svg",
  4211. extra: 1258 / 1190,
  4212. bottom: 47 / 1305
  4213. }
  4214. },
  4215. frontDressed: {
  4216. height: math.unit(5, "meters"),
  4217. weight: math.unit(1000, "kg"),
  4218. name: "Front (Dressed)",
  4219. image: {
  4220. source: "./media/characters/asche/front-dressed.svg",
  4221. extra: 1258 / 1190,
  4222. bottom: 47 / 1305
  4223. }
  4224. },
  4225. frontArmor: {
  4226. height: math.unit(5, "meters"),
  4227. weight: math.unit(1000, "kg"),
  4228. name: "Front (Armored)",
  4229. image: {
  4230. source: "./media/characters/asche/front-armored.svg",
  4231. extra: 1374 / 1308,
  4232. bottom: 23 / 1397
  4233. }
  4234. },
  4235. mp724: {
  4236. height: math.unit(0.96, "meters"),
  4237. weight: math.unit(38, "kg"),
  4238. name: "H&K MP724",
  4239. image: {
  4240. source: "./media/characters/asche/h&k-mp724.svg"
  4241. }
  4242. },
  4243. side: {
  4244. height: math.unit(5, "meters"),
  4245. weight: math.unit(1000, "kg"),
  4246. name: "Side",
  4247. image: {
  4248. source: "./media/characters/asche/side.svg",
  4249. extra: 1717 / 1609,
  4250. bottom: 0.005
  4251. }
  4252. },
  4253. back: {
  4254. height: math.unit(5, "meters"),
  4255. weight: math.unit(1000, "kg"),
  4256. name: "Back",
  4257. image: {
  4258. source: "./media/characters/asche/back.svg",
  4259. extra: 1570 / 1501
  4260. }
  4261. },
  4262. },
  4263. [
  4264. {
  4265. name: "DEFCON 5",
  4266. height: math.unit(5, "meters")
  4267. },
  4268. {
  4269. name: "DEFCON 4",
  4270. height: math.unit(500, "meters"),
  4271. default: true
  4272. },
  4273. {
  4274. name: "DEFCON 3",
  4275. height: math.unit(5, "km")
  4276. },
  4277. {
  4278. name: "DEFCON 2",
  4279. height: math.unit(500, "km")
  4280. },
  4281. {
  4282. name: "DEFCON 1",
  4283. height: math.unit(500000, "km")
  4284. },
  4285. {
  4286. name: "DEFCON 0",
  4287. height: math.unit(3, "gigaparsecs")
  4288. },
  4289. ]
  4290. ))
  4291. characterMakers.push(() => makeCharacter(
  4292. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4293. {
  4294. front: {
  4295. height: math.unit(2, "meters"),
  4296. weight: math.unit(76, "kg"),
  4297. name: "Front",
  4298. image: {
  4299. source: "./media/characters/gale/front.svg"
  4300. }
  4301. },
  4302. frontAlt1: {
  4303. height: math.unit(2, "meters"),
  4304. weight: math.unit(76, "kg"),
  4305. name: "Front (Alt 1)",
  4306. image: {
  4307. source: "./media/characters/gale/front-alt-1.svg"
  4308. }
  4309. },
  4310. frontAlt2: {
  4311. height: math.unit(2, "meters"),
  4312. weight: math.unit(76, "kg"),
  4313. name: "Front (Alt 2)",
  4314. image: {
  4315. source: "./media/characters/gale/front-alt-2.svg"
  4316. }
  4317. },
  4318. },
  4319. [
  4320. {
  4321. name: "Normal",
  4322. height: math.unit(7, "feet")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(150, "feet"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Macro+",
  4331. height: math.unit(300, "feet")
  4332. },
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(2, "meters"),
  4340. weight: math.unit(76, "kg"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/draylen/front.svg"
  4344. }
  4345. }
  4346. },
  4347. [
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(150, "feet"),
  4351. default: true
  4352. }
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4357. {
  4358. front: {
  4359. height: math.unit(7 + 9 / 12, "feet"),
  4360. weight: math.unit(379, "lbs"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/chez/front.svg"
  4364. }
  4365. },
  4366. side: {
  4367. height: math.unit(7 + 9 / 12, "feet"),
  4368. weight: math.unit(379, "lbs"),
  4369. name: "Side",
  4370. image: {
  4371. source: "./media/characters/chez/side.svg"
  4372. }
  4373. }
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(7 + 9 / 12, "feet"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "God King",
  4383. height: math.unit(9750000, "meters")
  4384. }
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4389. {
  4390. front: {
  4391. height: math.unit(6, "feet"),
  4392. weight: math.unit(275, "lbs"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/kaylum/front.svg",
  4396. bottom: 0.01,
  4397. extra: 1166 / 1031
  4398. }
  4399. },
  4400. frontWingless: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(275, "lbs"),
  4403. name: "Front (Wingless)",
  4404. image: {
  4405. source: "./media/characters/kaylum/front-wingless.svg",
  4406. bottom: 0.01,
  4407. extra: 1117 / 1031
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(3.05, "meters")
  4415. },
  4416. {
  4417. name: "Master",
  4418. height: math.unit(5.5, "meters")
  4419. },
  4420. {
  4421. name: "Rampage",
  4422. height: math.unit(19, "meters")
  4423. },
  4424. {
  4425. name: "Macro Lite",
  4426. height: math.unit(37, "meters")
  4427. },
  4428. {
  4429. name: "Hyper Predator",
  4430. height: math.unit(61, "meters")
  4431. },
  4432. {
  4433. name: "Macro",
  4434. height: math.unit(138, "meters"),
  4435. default: true
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(150, "lbs"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/geta/front.svg"
  4448. }
  4449. }
  4450. },
  4451. [
  4452. {
  4453. name: "Micro",
  4454. height: math.unit(3, "inches"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(5 + 5 / 12, "feet")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(300, "lbs"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/tyrnn/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Main Height",
  4478. height: math.unit(355, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Fave. Height",
  4483. height: math.unit(2400, "feet")
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Apple", species: ["elephant"], 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/appledectomy/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(2500, "feet")
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(50, "miles"),
  4507. default: true
  4508. },
  4509. {
  4510. name: "Gigamacro",
  4511. height: math.unit(5000, "miles")
  4512. },
  4513. {
  4514. name: "Teramacro",
  4515. height: math.unit(250000, "miles")
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(6, "feet"),
  4524. weight: math.unit(200, "lbs"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/vulpes/front.svg",
  4528. extra: 573 / 543,
  4529. bottom: 0.033
  4530. }
  4531. },
  4532. side: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(200, "lbs"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/vulpes/side.svg",
  4538. extra: 577 / 549,
  4539. bottom: 11 / 588
  4540. }
  4541. },
  4542. back: {
  4543. height: math.unit(6, "feet"),
  4544. weight: math.unit(200, "lbs"),
  4545. name: "Back",
  4546. image: {
  4547. source: "./media/characters/vulpes/back.svg",
  4548. extra: 573 / 549,
  4549. bottom: 20 / 593
  4550. }
  4551. },
  4552. feet: {
  4553. height: math.unit(1.276, "feet"),
  4554. name: "Feet",
  4555. image: {
  4556. source: "./media/characters/vulpes/feet.svg"
  4557. }
  4558. },
  4559. maw: {
  4560. height: math.unit(1.18, "feet"),
  4561. name: "Maw",
  4562. image: {
  4563. source: "./media/characters/vulpes/maw.svg"
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Micro",
  4570. height: math.unit(2, "inches")
  4571. },
  4572. {
  4573. name: "Normal",
  4574. height: math.unit(6.3, "feet")
  4575. },
  4576. {
  4577. name: "Macro",
  4578. height: math.unit(850, "feet")
  4579. },
  4580. {
  4581. name: "Megamacro",
  4582. height: math.unit(7500, "feet"),
  4583. default: true
  4584. },
  4585. {
  4586. name: "Gigamacro",
  4587. height: math.unit(570000, "miles")
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4593. {
  4594. front: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(210, "lbs"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/rain-fallen/front.svg"
  4600. }
  4601. },
  4602. side: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(210, "lbs"),
  4605. name: "Side",
  4606. image: {
  4607. source: "./media/characters/rain-fallen/side.svg"
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(210, "lbs"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/rain-fallen/back.svg"
  4616. }
  4617. },
  4618. feral: {
  4619. height: math.unit(9, "feet"),
  4620. weight: math.unit(700, "lbs"),
  4621. name: "Feral",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/feral.svg"
  4624. }
  4625. },
  4626. },
  4627. [
  4628. {
  4629. name: "Meddling with Mortals",
  4630. height: math.unit(8 + 8/12, "feet")
  4631. },
  4632. {
  4633. name: "Normal",
  4634. height: math.unit(5, "meter")
  4635. },
  4636. {
  4637. name: "Macro",
  4638. height: math.unit(150, "meter"),
  4639. default: true
  4640. },
  4641. {
  4642. name: "Megamacro",
  4643. height: math.unit(278e6, "meter")
  4644. },
  4645. {
  4646. name: "Gigamacro",
  4647. height: math.unit(2e9, "meter")
  4648. },
  4649. {
  4650. name: "Teramacro",
  4651. height: math.unit(8e12, "meter")
  4652. },
  4653. {
  4654. name: "Devourer",
  4655. height: math.unit(14, "zettameters")
  4656. },
  4657. {
  4658. name: "Scarlet King",
  4659. height: math.unit(18, "yottameters")
  4660. },
  4661. {
  4662. name: "Void",
  4663. height: math.unit(1e88, "yottameters")
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4669. {
  4670. standing: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(180, "lbs"),
  4673. name: "Standing",
  4674. image: {
  4675. source: "./media/characters/zaakira/standing.svg",
  4676. extra: 1599/1504,
  4677. bottom: 39/1638
  4678. }
  4679. },
  4680. laying: {
  4681. height: math.unit(3, "feet"),
  4682. weight: math.unit(180, "lbs"),
  4683. name: "Laying",
  4684. image: {
  4685. source: "./media/characters/zaakira/laying.svg"
  4686. }
  4687. },
  4688. },
  4689. [
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(12, "feet")
  4693. },
  4694. {
  4695. name: "Macro",
  4696. height: math.unit(279, "feet"),
  4697. default: true
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4703. {
  4704. femSfw: {
  4705. height: math.unit(8, "feet"),
  4706. weight: math.unit(350, "lb"),
  4707. name: "Fem",
  4708. image: {
  4709. source: "./media/characters/sigvald/fem-sfw.svg",
  4710. extra: 182 / 164,
  4711. bottom: 8.7 / 190.5
  4712. }
  4713. },
  4714. femNsfw: {
  4715. height: math.unit(8, "feet"),
  4716. weight: math.unit(350, "lb"),
  4717. name: "Fem (NSFW)",
  4718. image: {
  4719. source: "./media/characters/sigvald/fem-nsfw.svg",
  4720. extra: 182 / 164,
  4721. bottom: 8.7 / 190.5
  4722. }
  4723. },
  4724. maleNsfw: {
  4725. height: math.unit(8, "feet"),
  4726. weight: math.unit(350, "lb"),
  4727. name: "Male (NSFW)",
  4728. image: {
  4729. source: "./media/characters/sigvald/male-nsfw.svg",
  4730. extra: 182 / 164,
  4731. bottom: 8.7 / 190.5
  4732. }
  4733. },
  4734. hermNsfw: {
  4735. height: math.unit(8, "feet"),
  4736. weight: math.unit(350, "lb"),
  4737. name: "Herm (NSFW)",
  4738. image: {
  4739. source: "./media/characters/sigvald/herm-nsfw.svg",
  4740. extra: 182 / 164,
  4741. bottom: 8.7 / 190.5
  4742. }
  4743. },
  4744. dick: {
  4745. height: math.unit(2.36, "feet"),
  4746. name: "Dick",
  4747. image: {
  4748. source: "./media/characters/sigvald/dick.svg"
  4749. }
  4750. },
  4751. eye: {
  4752. height: math.unit(0.31, "feet"),
  4753. name: "Eye",
  4754. image: {
  4755. source: "./media/characters/sigvald/eye.svg"
  4756. }
  4757. },
  4758. mouth: {
  4759. height: math.unit(0.92, "feet"),
  4760. name: "Mouth",
  4761. image: {
  4762. source: "./media/characters/sigvald/mouth.svg"
  4763. }
  4764. },
  4765. paws: {
  4766. height: math.unit(2.2, "feet"),
  4767. name: "Paws",
  4768. image: {
  4769. source: "./media/characters/sigvald/paws.svg"
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(8, "feet")
  4777. },
  4778. {
  4779. name: "Large",
  4780. height: math.unit(12, "feet")
  4781. },
  4782. {
  4783. name: "Larger",
  4784. height: math.unit(20, "feet")
  4785. },
  4786. {
  4787. name: "Macro",
  4788. height: math.unit(150, "feet")
  4789. },
  4790. {
  4791. name: "Macro+",
  4792. height: math.unit(200, "feet"),
  4793. default: true
  4794. },
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4799. {
  4800. side: {
  4801. height: math.unit(12, "feet"),
  4802. weight: math.unit(2000, "kg"),
  4803. name: "Side",
  4804. image: {
  4805. source: "./media/characters/scott/side.svg",
  4806. extra: 754 / 724,
  4807. bottom: 0.069
  4808. }
  4809. },
  4810. upright: {
  4811. height: math.unit(12, "feet"),
  4812. weight: math.unit(2000, "kg"),
  4813. name: "Upright",
  4814. image: {
  4815. source: "./media/characters/scott/upright.svg",
  4816. extra: 3881 / 3722,
  4817. bottom: 0.05
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(12, "feet"),
  4825. default: true
  4826. },
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4831. {
  4832. side: {
  4833. height: math.unit(8, "meters"),
  4834. weight: math.unit(84755, "lbs"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/tobias/side.svg",
  4838. extra: 1474 / 1096,
  4839. bottom: 38.9 / 1513.1235
  4840. }
  4841. },
  4842. },
  4843. [
  4844. {
  4845. name: "Normal",
  4846. height: math.unit(8, "meters"),
  4847. default: true
  4848. },
  4849. ]
  4850. ))
  4851. characterMakers.push(() => makeCharacter(
  4852. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4853. {
  4854. front: {
  4855. height: math.unit(5.5, "feet"),
  4856. weight: math.unit(400, "lbs"),
  4857. name: "Front",
  4858. image: {
  4859. source: "./media/characters/kieran/front.svg",
  4860. extra: 2694 / 2364,
  4861. bottom: 217 / 2908
  4862. }
  4863. },
  4864. side: {
  4865. height: math.unit(5.5, "feet"),
  4866. weight: math.unit(400, "lbs"),
  4867. name: "Side",
  4868. image: {
  4869. source: "./media/characters/kieran/side.svg",
  4870. extra: 875 / 777,
  4871. bottom: 84.6 / 959
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(5.5, "feet"),
  4879. default: true
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4885. {
  4886. side: {
  4887. height: math.unit(2, "meters"),
  4888. weight: math.unit(70, "kg"),
  4889. name: "Side",
  4890. image: {
  4891. source: "./media/characters/sanya/side.svg",
  4892. bottom: 0.02,
  4893. extra: 1.02
  4894. }
  4895. },
  4896. },
  4897. [
  4898. {
  4899. name: "Small",
  4900. height: math.unit(2, "meters")
  4901. },
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(3, "meters")
  4905. },
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(16, "meters"),
  4909. default: true
  4910. },
  4911. ]
  4912. ))
  4913. characterMakers.push(() => makeCharacter(
  4914. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4915. {
  4916. front: {
  4917. height: math.unit(2, "meters"),
  4918. weight: math.unit(120, "kg"),
  4919. name: "Front",
  4920. image: {
  4921. source: "./media/characters/miranda/front.svg",
  4922. extra: 195 / 185,
  4923. bottom: 10.9 / 206.5
  4924. }
  4925. },
  4926. back: {
  4927. height: math.unit(2, "meters"),
  4928. weight: math.unit(120, "kg"),
  4929. name: "Back",
  4930. image: {
  4931. source: "./media/characters/miranda/back.svg",
  4932. extra: 201 / 193,
  4933. bottom: 2.3 / 203.7
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(10, "feet"),
  4941. default: true
  4942. }
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "James", species: ["deer"], tags: ["anthro"] },
  4947. {
  4948. side: {
  4949. height: math.unit(2, "meters"),
  4950. weight: math.unit(100, "kg"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/james/front.svg",
  4954. extra: 10 / 8.5
  4955. }
  4956. },
  4957. },
  4958. [
  4959. {
  4960. name: "Normal",
  4961. height: math.unit(8.5, "feet"),
  4962. default: true
  4963. }
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4968. {
  4969. side: {
  4970. height: math.unit(9.5, "feet"),
  4971. weight: math.unit(2500, "lbs"),
  4972. name: "Side",
  4973. image: {
  4974. source: "./media/characters/heather/side.svg"
  4975. }
  4976. },
  4977. },
  4978. [
  4979. {
  4980. name: "Normal",
  4981. height: math.unit(9.5, "feet"),
  4982. default: true
  4983. }
  4984. ]
  4985. ))
  4986. characterMakers.push(() => makeCharacter(
  4987. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4988. {
  4989. side: {
  4990. height: math.unit(6.5, "feet"),
  4991. weight: math.unit(400, "lbs"),
  4992. name: "Side",
  4993. image: {
  4994. source: "./media/characters/lukas/side.svg",
  4995. extra: 7.25 / 6.5
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(6.5, "feet"),
  5003. default: true
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5009. {
  5010. side: {
  5011. height: math.unit(5, "feet"),
  5012. weight: math.unit(3000, "lbs"),
  5013. name: "Side",
  5014. image: {
  5015. source: "./media/characters/louise/side.svg"
  5016. }
  5017. },
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(5, "feet"),
  5023. default: true
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5029. {
  5030. side: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(150, "lbs"),
  5033. name: "Side",
  5034. image: {
  5035. source: "./media/characters/ramona/side.svg"
  5036. }
  5037. },
  5038. },
  5039. [
  5040. {
  5041. name: "Normal",
  5042. height: math.unit(5.3, "meters"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(20, "stories")
  5048. },
  5049. {
  5050. name: "Macro+",
  5051. height: math.unit(50, "stories")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5057. {
  5058. standing: {
  5059. height: math.unit(5.75, "feet"),
  5060. weight: math.unit(160, "lbs"),
  5061. name: "Standing",
  5062. image: {
  5063. source: "./media/characters/deerpuff/standing.svg",
  5064. extra: 682 / 624
  5065. }
  5066. },
  5067. sitting: {
  5068. height: math.unit(5.75 / 1.79, "feet"),
  5069. weight: math.unit(160, "lbs"),
  5070. name: "Sitting",
  5071. image: {
  5072. source: "./media/characters/deerpuff/sitting.svg",
  5073. bottom: 44 / 400,
  5074. extra: 1
  5075. }
  5076. },
  5077. taurLaying: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(400, "lbs"),
  5080. name: "Taur (Laying)",
  5081. image: {
  5082. source: "./media/characters/deerpuff/taur-laying.svg"
  5083. }
  5084. },
  5085. },
  5086. [
  5087. {
  5088. name: "Puffball",
  5089. height: math.unit(6, "inches")
  5090. },
  5091. {
  5092. name: "Normalpuff",
  5093. height: math.unit(5.75, "feet")
  5094. },
  5095. {
  5096. name: "Macropuff",
  5097. height: math.unit(1500, "feet"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Megapuff",
  5102. height: math.unit(500, "miles")
  5103. },
  5104. {
  5105. name: "Gigapuff",
  5106. height: math.unit(250000, "miles")
  5107. },
  5108. {
  5109. name: "Omegapuff",
  5110. height: math.unit(1000, "lightyears")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5116. {
  5117. stomping: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(170, "lbs"),
  5120. name: "Stomping",
  5121. image: {
  5122. source: "./media/characters/vivian/stomping.svg"
  5123. }
  5124. },
  5125. sitting: {
  5126. height: math.unit(6 / 1.75, "feet"),
  5127. weight: math.unit(170, "lbs"),
  5128. name: "Sitting",
  5129. image: {
  5130. source: "./media/characters/vivian/sitting.svg",
  5131. bottom: 1 / 6.4,
  5132. extra: 1,
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(7, "feet"),
  5140. default: true
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(10, "stories")
  5145. },
  5146. {
  5147. name: "Macro+",
  5148. height: math.unit(30, "stories")
  5149. },
  5150. {
  5151. name: "Megamacro",
  5152. height: math.unit(10, "miles")
  5153. },
  5154. {
  5155. name: "Megamacro+",
  5156. height: math.unit(2750000, "meters")
  5157. },
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5162. {
  5163. front: {
  5164. height: math.unit(6, "feet"),
  5165. weight: math.unit(160, "lbs"),
  5166. name: "Front",
  5167. image: {
  5168. source: "./media/characters/prince/front.svg",
  5169. extra: 3400 / 3000
  5170. }
  5171. },
  5172. jumping: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(160, "lbs"),
  5175. name: "Jumping",
  5176. image: {
  5177. source: "./media/characters/prince/jump.svg",
  5178. extra: 2555 / 2134
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(7.75, "feet"),
  5186. default: true
  5187. },
  5188. {
  5189. name: "Not cute",
  5190. height: math.unit(17, "feet")
  5191. },
  5192. {
  5193. name: "I said NOT",
  5194. height: math.unit(91, "feet")
  5195. },
  5196. {
  5197. name: "Please stop",
  5198. height: math.unit(560, "feet")
  5199. },
  5200. {
  5201. name: "What have you done",
  5202. height: math.unit(2200, "feet")
  5203. },
  5204. {
  5205. name: "Deer God",
  5206. height: math.unit(3.6, "miles")
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5212. {
  5213. standing: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(300, "lbs"),
  5216. name: "Standing",
  5217. image: {
  5218. source: "./media/characters/psymon/standing.svg",
  5219. extra: 1888 / 1810,
  5220. bottom: 0.05
  5221. }
  5222. },
  5223. slithering: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(300, "lbs"),
  5226. name: "Slithering",
  5227. image: {
  5228. source: "./media/characters/psymon/slithering.svg",
  5229. extra: 1330 / 1224
  5230. }
  5231. },
  5232. slitheringAlt: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(300, "lbs"),
  5235. name: "Slithering (Alt)",
  5236. image: {
  5237. source: "./media/characters/psymon/slithering-alt.svg",
  5238. extra: 1330 / 1224
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(11.25, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Large",
  5250. height: math.unit(27, "feet")
  5251. },
  5252. {
  5253. name: "Giant",
  5254. height: math.unit(87, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(365, "feet")
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(3, "miles")
  5263. },
  5264. {
  5265. name: "World Serpent",
  5266. height: math.unit(8000, "miles")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(180, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/daimos/front.svg",
  5279. extra: 4160 / 3897,
  5280. bottom: 0.021
  5281. }
  5282. }
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(8, "feet"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Big Dog",
  5292. height: math.unit(22, "feet")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(127, "feet")
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(3600, "feet")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5306. {
  5307. side: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(180, "lbs"),
  5310. name: "Side",
  5311. image: {
  5312. source: "./media/characters/blake/side.svg",
  5313. extra: 1212 / 1120,
  5314. bottom: 0.05
  5315. }
  5316. },
  5317. crouched: {
  5318. height: math.unit(6 * 0.57, "feet"),
  5319. weight: math.unit(180, "lbs"),
  5320. name: "Crouched",
  5321. image: {
  5322. source: "./media/characters/blake/crouched.svg",
  5323. extra: 840 / 587,
  5324. bottom: 0.04
  5325. }
  5326. },
  5327. bent: {
  5328. height: math.unit(6 * 0.75, "feet"),
  5329. weight: math.unit(180, "lbs"),
  5330. name: "Bent",
  5331. image: {
  5332. source: "./media/characters/blake/bent.svg",
  5333. extra: 592 / 544,
  5334. bottom: 0.035
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(8 + 1 / 6, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Big Backside",
  5346. height: math.unit(37, "feet")
  5347. },
  5348. {
  5349. name: "Subway Shredder",
  5350. height: math.unit(72, "feet")
  5351. },
  5352. {
  5353. name: "City Carver",
  5354. height: math.unit(1675, "feet")
  5355. },
  5356. {
  5357. name: "Tectonic Tweaker",
  5358. height: math.unit(2300, "miles")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(180, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/guisetto/front.svg",
  5371. extra: 856 / 817,
  5372. bottom: 0.06
  5373. }
  5374. },
  5375. airborne: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(180, "lbs"),
  5378. name: "Airborne",
  5379. image: {
  5380. source: "./media/characters/guisetto/airborne.svg",
  5381. extra: 584 / 525
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(10 + 11 / 12, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Large",
  5393. height: math.unit(35, "feet")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(475, "feet")
  5398. },
  5399. ]
  5400. ))
  5401. characterMakers.push(() => makeCharacter(
  5402. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5403. {
  5404. front: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(180, "lbs"),
  5407. name: "Front",
  5408. image: {
  5409. source: "./media/characters/luxor/front.svg",
  5410. extra: 2940 / 2152
  5411. }
  5412. },
  5413. back: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(180, "lbs"),
  5416. name: "Back",
  5417. image: {
  5418. source: "./media/characters/luxor/back.svg",
  5419. extra: 1083 / 960
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(5 + 5 / 6, "feet"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Lamp",
  5431. height: math.unit(50, "feet")
  5432. },
  5433. {
  5434. name: "Lämp",
  5435. height: math.unit(300, "feet")
  5436. },
  5437. {
  5438. name: "The sun is a lamp",
  5439. height: math.unit(250000, "miles")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(50, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/huoyan/front.svg"
  5452. }
  5453. },
  5454. side: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(180, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/huoyan/side.svg"
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "Chef",
  5466. height: math.unit(9, "feet")
  5467. },
  5468. {
  5469. name: "Normal",
  5470. height: math.unit(65, "feet"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(780, "feet")
  5476. },
  5477. {
  5478. name: "Flaming Mountain",
  5479. height: math.unit(4.8, "miles")
  5480. },
  5481. {
  5482. name: "Celestial",
  5483. height: math.unit(765000, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(5 + 3 / 4, "feet"),
  5492. weight: math.unit(120, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/tails/front.svg"
  5496. }
  5497. }
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(5 + 3 / 4, "feet"),
  5503. default: true
  5504. }
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(4, "feet"),
  5512. weight: math.unit(50, "lbs"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/rainy/front.svg"
  5516. }
  5517. }
  5518. },
  5519. [
  5520. {
  5521. name: "Macro",
  5522. height: math.unit(800, "feet"),
  5523. default: true
  5524. }
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5529. {
  5530. front: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(150, "lbs"),
  5533. name: "Front",
  5534. image: {
  5535. source: "./media/characters/rainier/front.svg"
  5536. }
  5537. }
  5538. },
  5539. [
  5540. {
  5541. name: "Micro",
  5542. height: math.unit(2, "mm"),
  5543. default: true
  5544. }
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(8 + 4/12, "feet"),
  5552. name: "Front",
  5553. image: {
  5554. source: "./media/characters/andy-renard/front.svg",
  5555. extra: 1839/1726,
  5556. bottom: 134/1973
  5557. }
  5558. },
  5559. back: {
  5560. height: math.unit(8 + 4/12, "feet"),
  5561. name: "Back",
  5562. image: {
  5563. source: "./media/characters/andy-renard/back.svg",
  5564. extra: 1838/1710,
  5565. bottom: 105/1943
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Tall",
  5572. height: math.unit(8 + 4/12, "feet")
  5573. },
  5574. {
  5575. name: "Mini Macro",
  5576. height: math.unit(15, "feet"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(100, "feet")
  5582. },
  5583. {
  5584. name: "Mega Macro",
  5585. height: math.unit(1000, "feet")
  5586. },
  5587. {
  5588. name: "Giga Macro",
  5589. height: math.unit(10, "miles")
  5590. },
  5591. {
  5592. name: "God Macro",
  5593. height: math.unit(1, "multiverse")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(210, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/cimmaron/front-sfw.svg",
  5606. extra: 701 / 676,
  5607. bottom: 0.046
  5608. }
  5609. },
  5610. back: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(210, "lbs"),
  5613. name: "Back",
  5614. image: {
  5615. source: "./media/characters/cimmaron/back-sfw.svg",
  5616. extra: 701 / 676,
  5617. bottom: 0.046
  5618. }
  5619. },
  5620. frontNsfw: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(210, "lbs"),
  5623. name: "Front (NSFW)",
  5624. image: {
  5625. source: "./media/characters/cimmaron/front-nsfw.svg",
  5626. extra: 701 / 676,
  5627. bottom: 0.046
  5628. }
  5629. },
  5630. backNsfw: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(210, "lbs"),
  5633. name: "Back (NSFW)",
  5634. image: {
  5635. source: "./media/characters/cimmaron/back-nsfw.svg",
  5636. extra: 701 / 676,
  5637. bottom: 0.046
  5638. }
  5639. },
  5640. dick: {
  5641. height: math.unit(1.714, "feet"),
  5642. name: "Dick",
  5643. image: {
  5644. source: "./media/characters/cimmaron/dick.svg"
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(6, "feet"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Macro Mayor",
  5656. height: math.unit(350, "meters")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(200, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/akari/front.svg",
  5669. extra: 962 / 901,
  5670. bottom: 0.04
  5671. }
  5672. }
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(5, "inches"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(7, "feet")
  5683. },
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(140, "lbs"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/cynosura/front.svg",
  5695. extra: 896 / 847
  5696. }
  5697. },
  5698. back: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(140, "lbs"),
  5701. name: "Back",
  5702. image: {
  5703. source: "./media/characters/cynosura/back.svg",
  5704. extra: 1365 / 1250
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Micro",
  5711. height: math.unit(4, "inches")
  5712. },
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(5.75, "feet"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Tall",
  5720. height: math.unit(10, "feet")
  5721. },
  5722. {
  5723. name: "Big",
  5724. height: math.unit(20, "feet")
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(50, "feet")
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5734. {
  5735. front: {
  5736. height: math.unit(13 + 2/12, "feet"),
  5737. weight: math.unit(800, "kg"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/gin/front.svg",
  5741. extra: 1312/1191,
  5742. bottom: 45/1357
  5743. }
  5744. },
  5745. mouth: {
  5746. height: math.unit(2.39 * 1.8, "feet"),
  5747. name: "Mouth",
  5748. image: {
  5749. source: "./media/characters/gin/mouth.svg"
  5750. }
  5751. },
  5752. hand: {
  5753. height: math.unit(1.57 * 2.19, "feet"),
  5754. name: "Hand",
  5755. image: {
  5756. source: "./media/characters/gin/hand.svg"
  5757. }
  5758. },
  5759. foot: {
  5760. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5761. name: "Foot",
  5762. image: {
  5763. source: "./media/characters/gin/foot.svg"
  5764. }
  5765. },
  5766. sole: {
  5767. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5768. name: "Sole",
  5769. image: {
  5770. source: "./media/characters/gin/sole.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Very Small",
  5777. height: math.unit(13 + 2 / 12, "feet")
  5778. },
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(600, "miles")
  5782. },
  5783. {
  5784. name: "Regular",
  5785. height: math.unit(20, "earths"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(2.2, "solarradii")
  5791. },
  5792. {
  5793. name: "Teramacro",
  5794. height: math.unit(1.2, "galaxies")
  5795. },
  5796. {
  5797. name: "Omegamacro",
  5798. height: math.unit(200, "universes")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(6 + 1 / 6, "feet"),
  5807. weight: math.unit(178, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/guy/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(6 + 1 / 6, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Large",
  5822. height: math.unit(25 + 7 / 12, "feet")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(60 + 9 / 12, "feet")
  5827. },
  5828. {
  5829. name: "Macro+",
  5830. height: math.unit(246, "feet")
  5831. },
  5832. {
  5833. name: "Macro++",
  5834. height: math.unit(878, "feet")
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(9, "feet"),
  5843. weight: math.unit(800, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/tiberius/front.svg",
  5847. extra: 2295 / 2071
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(9, "feet"),
  5852. weight: math.unit(800, "lbs"),
  5853. name: "Back",
  5854. image: {
  5855. source: "./media/characters/tiberius/back.svg",
  5856. extra: 2373 / 2160
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(9, "feet"),
  5864. default: true
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(600, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/surgo/front.svg",
  5877. extra: 3591 / 2227
  5878. }
  5879. },
  5880. back: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(600, "lbs"),
  5883. name: "Back",
  5884. image: {
  5885. source: "./media/characters/surgo/back.svg",
  5886. extra: 3557 / 2228
  5887. }
  5888. },
  5889. laying: {
  5890. height: math.unit(6 * 0.85, "feet"),
  5891. weight: math.unit(600, "lbs"),
  5892. name: "Laying",
  5893. image: {
  5894. source: "./media/characters/surgo/laying.svg"
  5895. }
  5896. },
  5897. },
  5898. [
  5899. {
  5900. name: "Normal",
  5901. height: math.unit(6, "feet"),
  5902. default: true
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5908. {
  5909. side: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(150, "lbs"),
  5912. name: "Side",
  5913. image: {
  5914. source: "./media/characters/cibus/side.svg",
  5915. extra: 800 / 400
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(6, "feet"),
  5923. default: true
  5924. }
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5929. {
  5930. front: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(240, "lbs"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/nibbles/front.svg"
  5936. }
  5937. },
  5938. side: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(240, "lbs"),
  5941. name: "Side",
  5942. image: {
  5943. source: "./media/characters/nibbles/side.svg"
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(9, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5957. {
  5958. side: {
  5959. height: math.unit(5 + 1 / 6, "feet"),
  5960. weight: math.unit(130, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/rikky/side.svg",
  5964. extra: 851 / 801
  5965. }
  5966. },
  5967. },
  5968. [
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(5 + 1 / 6, "feet")
  5972. },
  5973. {
  5974. name: "Macro",
  5975. height: math.unit(152, "feet"),
  5976. default: true
  5977. },
  5978. {
  5979. name: "Megamacro",
  5980. height: math.unit(7, "miles")
  5981. }
  5982. ]
  5983. ))
  5984. characterMakers.push(() => makeCharacter(
  5985. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5986. {
  5987. side: {
  5988. height: math.unit(370, "cm"),
  5989. weight: math.unit(350, "lbs"),
  5990. name: "Side",
  5991. image: {
  5992. source: "./media/characters/malfressa/side.svg"
  5993. }
  5994. },
  5995. walking: {
  5996. height: math.unit(370, "cm"),
  5997. weight: math.unit(350, "lbs"),
  5998. name: "Walking",
  5999. image: {
  6000. source: "./media/characters/malfressa/walking.svg"
  6001. }
  6002. },
  6003. feral: {
  6004. height: math.unit(2500, "cm"),
  6005. weight: math.unit(100000, "lbs"),
  6006. name: "Feral",
  6007. image: {
  6008. source: "./media/characters/malfressa/feral.svg",
  6009. extra: 2108 / 837,
  6010. bottom: 0.02
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(370, "cm")
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(300, "meters"),
  6022. default: true
  6023. }
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6028. {
  6029. front: {
  6030. height: math.unit(6, "feet"),
  6031. weight: math.unit(60, "kg"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/jaro/front.svg"
  6035. }
  6036. },
  6037. back: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(60, "kg"),
  6040. name: "Back",
  6041. image: {
  6042. source: "./media/characters/jaro/back.svg"
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Micro",
  6049. height: math.unit(7, "inches")
  6050. },
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(5.5, "feet"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Minimacro",
  6058. height: math.unit(20, "feet")
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(200, "meters")
  6063. }
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(195, "lb"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/rogue/front.svg"
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(90, "feet"),
  6082. default: true
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(5 + 8 / 12, "feet"),
  6091. weight: math.unit(140, "lb"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/piper/front.svg",
  6095. extra: 3948/3655,
  6096. bottom: 0/3948
  6097. }
  6098. },
  6099. },
  6100. [
  6101. {
  6102. name: "Micro",
  6103. height: math.unit(2, "inches")
  6104. },
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(5 + 8 / 12, "feet")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(250, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Megamacro",
  6116. height: math.unit(7, "miles")
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6122. {
  6123. front: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(220, "lb"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/gemini/front.svg"
  6129. }
  6130. },
  6131. back: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(220, "lb"),
  6134. name: "Back",
  6135. image: {
  6136. source: "./media/characters/gemini/back.svg"
  6137. }
  6138. },
  6139. kneeling: {
  6140. height: math.unit(6 / 1.5, "feet"),
  6141. weight: math.unit(220, "lb"),
  6142. name: "Kneeling",
  6143. image: {
  6144. source: "./media/characters/gemini/kneeling.svg",
  6145. bottom: 0.02
  6146. }
  6147. },
  6148. },
  6149. [
  6150. {
  6151. name: "Macro",
  6152. height: math.unit(300, "meters"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Megamacro",
  6157. height: math.unit(6900, "meters")
  6158. },
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6163. {
  6164. anthro: {
  6165. height: math.unit(2.35, "meters"),
  6166. weight: math.unit(73, "kg"),
  6167. name: "Anthro",
  6168. image: {
  6169. source: "./media/characters/alicia/anthro.svg",
  6170. extra: 2571 / 2385,
  6171. bottom: 75 / 2648
  6172. }
  6173. },
  6174. paw: {
  6175. height: math.unit(1.32, "feet"),
  6176. name: "Paw",
  6177. image: {
  6178. source: "./media/characters/alicia/paw.svg"
  6179. }
  6180. },
  6181. feral: {
  6182. height: math.unit(1.69, "meters"),
  6183. weight: math.unit(73, "kg"),
  6184. name: "Feral",
  6185. image: {
  6186. source: "./media/characters/alicia/feral.svg",
  6187. extra: 2123 / 1715,
  6188. bottom: 222 / 2349
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(2.35, "meters")
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(60, "meters"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Megamacro",
  6204. height: math.unit(10000, "kilometers")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(7, "feet"),
  6213. weight: math.unit(250, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/archy/front.svg"
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Micro",
  6223. height: math.unit(1, "inch")
  6224. },
  6225. {
  6226. name: "Shorty",
  6227. height: math.unit(5, "feet")
  6228. },
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(7, "feet")
  6232. },
  6233. {
  6234. name: "Macro",
  6235. height: math.unit(600, "meters"),
  6236. default: true
  6237. },
  6238. {
  6239. name: "Megamacro",
  6240. height: math.unit(1, "mile")
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(1.65, "meters"),
  6249. weight: math.unit(74, "kg"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/berri/front.svg",
  6253. extra: 857 / 837,
  6254. bottom: 18 / 877
  6255. }
  6256. },
  6257. bum: {
  6258. height: math.unit(1.46, "feet"),
  6259. name: "Bum",
  6260. image: {
  6261. source: "./media/characters/berri/bum.svg"
  6262. }
  6263. },
  6264. mouth: {
  6265. height: math.unit(0.44, "feet"),
  6266. name: "Mouth",
  6267. image: {
  6268. source: "./media/characters/berri/mouth.svg"
  6269. }
  6270. },
  6271. paw: {
  6272. height: math.unit(0.826, "feet"),
  6273. name: "Paw",
  6274. image: {
  6275. source: "./media/characters/berri/paw.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(1.65, "meters")
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(60, "m"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Megamacro",
  6291. height: math.unit(9.213, "km")
  6292. },
  6293. {
  6294. name: "Planet Eater",
  6295. height: math.unit(489, "megameters")
  6296. },
  6297. {
  6298. name: "Teramacro",
  6299. height: math.unit(2471635000000, "meters")
  6300. },
  6301. {
  6302. name: "Examacro",
  6303. height: math.unit(8.0624e+26, "meters")
  6304. }
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6309. {
  6310. front: {
  6311. height: math.unit(1.72, "meters"),
  6312. weight: math.unit(68, "kg"),
  6313. name: "Front",
  6314. image: {
  6315. source: "./media/characters/lexi/front.svg"
  6316. }
  6317. }
  6318. },
  6319. [
  6320. {
  6321. name: "Very Smol",
  6322. height: math.unit(10, "mm")
  6323. },
  6324. {
  6325. name: "Micro",
  6326. height: math.unit(6.8, "cm"),
  6327. default: true
  6328. },
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(1.72, "m")
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(1.69, "meters"),
  6340. weight: math.unit(68, "kg"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/martin/front.svg",
  6344. extra: 596 / 581
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Micro",
  6351. height: math.unit(6.85, "cm"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(1.69, "m")
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(1.69, "meters"),
  6365. weight: math.unit(68, "kg"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/juno/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(7, "cm")
  6376. },
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(1.89, "m")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(353, "meters"),
  6384. default: true
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(1.93, "meters"),
  6393. weight: math.unit(83, "kg"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/samantha/front.svg"
  6397. }
  6398. },
  6399. frontClothed: {
  6400. height: math.unit(1.93, "meters"),
  6401. weight: math.unit(83, "kg"),
  6402. name: "Front (Clothed)",
  6403. image: {
  6404. source: "./media/characters/samantha/front-clothed.svg"
  6405. }
  6406. },
  6407. back: {
  6408. height: math.unit(1.93, "meters"),
  6409. weight: math.unit(83, "kg"),
  6410. name: "Back",
  6411. image: {
  6412. source: "./media/characters/samantha/back.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(1.93, "m")
  6420. },
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(74, "meters"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Macro+",
  6428. height: math.unit(223, "meters"),
  6429. },
  6430. {
  6431. name: "Megamacro",
  6432. height: math.unit(8381, "meters"),
  6433. },
  6434. {
  6435. name: "Megamacro+",
  6436. height: math.unit(12000, "kilometers")
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(1.92, "meters"),
  6445. weight: math.unit(80, "kg"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/dr-clay/front.svg"
  6449. }
  6450. },
  6451. frontClothed: {
  6452. height: math.unit(1.92, "meters"),
  6453. weight: math.unit(80, "kg"),
  6454. name: "Front (Clothed)",
  6455. image: {
  6456. source: "./media/characters/dr-clay/front-clothed.svg"
  6457. }
  6458. }
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(1.92, "m")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(214, "meters"),
  6468. default: true
  6469. },
  6470. {
  6471. name: "Macro+",
  6472. height: math.unit(12.237, "meters"),
  6473. },
  6474. {
  6475. name: "Megamacro",
  6476. height: math.unit(557, "megameters"),
  6477. },
  6478. {
  6479. name: "Unimaginable",
  6480. height: math.unit(120e9, "lightyears")
  6481. },
  6482. ]
  6483. ))
  6484. characterMakers.push(() => makeCharacter(
  6485. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6486. {
  6487. front: {
  6488. height: math.unit(2, "meters"),
  6489. weight: math.unit(80, "kg"),
  6490. name: "Front",
  6491. image: {
  6492. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Teramacro",
  6499. height: math.unit(500000, "lightyears"),
  6500. default: true
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(2, "meters"),
  6509. weight: math.unit(150, "kg"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/vemus/front.svg",
  6513. extra: 1074/936,
  6514. bottom: 23/1097
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(3.75, "meters"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Big",
  6526. height: math.unit(8, "meters")
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(100, "meters")
  6531. },
  6532. {
  6533. name: "Macro+",
  6534. height: math.unit(1500, "meters")
  6535. },
  6536. {
  6537. name: "Stellar",
  6538. height: math.unit(14e8, "meters")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(2, "meters"),
  6547. weight: math.unit(70, "kg"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/beherit/front.svg",
  6551. extra: 1408 / 1242
  6552. }
  6553. }
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(6, "feet")
  6559. },
  6560. {
  6561. name: "Lorg",
  6562. height: math.unit(25, "feet"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Lorger",
  6567. height: math.unit(75, "feet")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(200, "meters")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(2, "meters"),
  6580. weight: math.unit(150, "kg"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/everett/front.svg",
  6584. extra: 2038 / 1737,
  6585. bottom: 0.03
  6586. }
  6587. },
  6588. paw: {
  6589. height: math.unit(2 / 3.6, "meters"),
  6590. name: "Paw",
  6591. image: {
  6592. source: "./media/characters/everett/paw.svg"
  6593. }
  6594. },
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(15, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Lorg",
  6604. height: math.unit(70, "feet"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Lorger",
  6609. height: math.unit(250, "feet")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(500, "meters")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(2, "meters"),
  6622. weight: math.unit(86, "kg"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/rose/front.svg",
  6626. extra: 1785/1636,
  6627. bottom: 30/1815
  6628. }
  6629. },
  6630. frontSporty: {
  6631. height: math.unit(2, "meters"),
  6632. weight: math.unit(86, "kg"),
  6633. name: "Front (Sporty)",
  6634. image: {
  6635. source: "./media/characters/rose/front-sporty.svg",
  6636. extra: 350/335,
  6637. bottom: 10/360
  6638. }
  6639. },
  6640. frontAlt: {
  6641. height: math.unit(1.6, "meters"),
  6642. weight: math.unit(86, "kg"),
  6643. name: "Front (Alt)",
  6644. image: {
  6645. source: "./media/characters/rose/front-alt.svg",
  6646. extra: 299/283,
  6647. bottom: 3/302
  6648. }
  6649. },
  6650. plush: {
  6651. height: math.unit(2, "meters"),
  6652. weight: math.unit(86/3, "kg"),
  6653. name: "Plush",
  6654. image: {
  6655. source: "./media/characters/rose/plush.svg",
  6656. extra: 361/337,
  6657. bottom: 11/372
  6658. }
  6659. },
  6660. },
  6661. [
  6662. {
  6663. name: "True Micro",
  6664. height: math.unit(9, "cm")
  6665. },
  6666. {
  6667. name: "Micro",
  6668. height: math.unit(16, "cm")
  6669. },
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(1.85, "meters"),
  6673. default: true
  6674. },
  6675. {
  6676. name: "Mini-Macro",
  6677. height: math.unit(5, "meters")
  6678. },
  6679. {
  6680. name: "Macro",
  6681. height: math.unit(15, "meters")
  6682. },
  6683. {
  6684. name: "True Macro",
  6685. height: math.unit(40, "meters")
  6686. },
  6687. {
  6688. name: "City Scale",
  6689. height: math.unit(1, "km")
  6690. },
  6691. ]
  6692. ))
  6693. characterMakers.push(() => makeCharacter(
  6694. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6695. {
  6696. front: {
  6697. height: math.unit(2, "meters"),
  6698. weight: math.unit(350, "lbs"),
  6699. name: "Front",
  6700. image: {
  6701. source: "./media/characters/regal/front.svg"
  6702. }
  6703. },
  6704. back: {
  6705. height: math.unit(2, "meters"),
  6706. weight: math.unit(350, "lbs"),
  6707. name: "Back",
  6708. image: {
  6709. source: "./media/characters/regal/back.svg"
  6710. }
  6711. },
  6712. },
  6713. [
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(350, "feet"),
  6717. default: true
  6718. }
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6723. {
  6724. front: {
  6725. height: math.unit(4 + 11 / 12, "feet"),
  6726. weight: math.unit(100, "lbs"),
  6727. name: "Front",
  6728. image: {
  6729. source: "./media/characters/opal/front.svg"
  6730. }
  6731. },
  6732. frontAlt: {
  6733. height: math.unit(4 + 11 / 12, "feet"),
  6734. weight: math.unit(100, "lbs"),
  6735. name: "Front (Alt)",
  6736. image: {
  6737. source: "./media/characters/opal/front-alt.svg"
  6738. }
  6739. },
  6740. },
  6741. [
  6742. {
  6743. name: "Small",
  6744. height: math.unit(4 + 11 / 12, "feet")
  6745. },
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(20, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(120, "feet")
  6754. },
  6755. {
  6756. name: "Megamacro",
  6757. height: math.unit(80, "miles")
  6758. },
  6759. {
  6760. name: "True Size",
  6761. height: math.unit(100000, "lightyears")
  6762. },
  6763. ]
  6764. ))
  6765. characterMakers.push(() => makeCharacter(
  6766. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6767. {
  6768. front: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(200, "lbs"),
  6771. name: "Front",
  6772. image: {
  6773. source: "./media/characters/vector-wuff/front.svg"
  6774. }
  6775. }
  6776. },
  6777. [
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(2.8, "meters")
  6781. },
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(450, "meters"),
  6785. default: true
  6786. },
  6787. {
  6788. name: "Megamacro",
  6789. height: math.unit(15, "kilometers")
  6790. }
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(256, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/dannik/front.svg"
  6802. }
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Macro",
  6808. height: math.unit(69.57, "meters"),
  6809. default: true
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(120, "lbs"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/azura-saharah/front.svg"
  6822. }
  6823. },
  6824. back: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(120, "lbs"),
  6827. name: "Back",
  6828. image: {
  6829. source: "./media/characters/azura-saharah/back.svg"
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(100, "feet"),
  6837. default: true
  6838. },
  6839. ]
  6840. ))
  6841. characterMakers.push(() => makeCharacter(
  6842. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6843. {
  6844. side: {
  6845. height: math.unit(5 + 4 / 12, "feet"),
  6846. weight: math.unit(163, "lbs"),
  6847. name: "Side",
  6848. image: {
  6849. source: "./media/characters/kennedy/side.svg"
  6850. }
  6851. }
  6852. },
  6853. [
  6854. {
  6855. name: "Standard Doggo",
  6856. height: math.unit(5 + 4 / 12, "feet")
  6857. },
  6858. {
  6859. name: "Big Doggo",
  6860. height: math.unit(25 + 3 / 12, "feet"),
  6861. default: true
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(6, "feet"),
  6870. weight: math.unit(90, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/odi-lunar/front.svg"
  6874. }
  6875. }
  6876. },
  6877. [
  6878. {
  6879. name: "Micro",
  6880. height: math.unit(3, "inches"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(5.5, "feet")
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6891. {
  6892. back: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(220, "lbs"),
  6895. name: "Back",
  6896. image: {
  6897. source: "./media/characters/mandake/back.svg"
  6898. }
  6899. }
  6900. },
  6901. [
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(7, "feet"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(78, "feet")
  6910. },
  6911. {
  6912. name: "Macro+",
  6913. height: math.unit(300, "meters")
  6914. },
  6915. {
  6916. name: "Macro++",
  6917. height: math.unit(2400, "feet")
  6918. },
  6919. {
  6920. name: "Megamacro",
  6921. height: math.unit(5167, "meters")
  6922. },
  6923. {
  6924. name: "Gigamacro",
  6925. height: math.unit(41769, "miles")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(120, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/yozey/front.svg"
  6938. }
  6939. },
  6940. frontAlt: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(120, "lbs"),
  6943. name: "Front (Alt)",
  6944. image: {
  6945. source: "./media/characters/yozey/front-alt.svg"
  6946. }
  6947. },
  6948. side: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(120, "lbs"),
  6951. name: "Side",
  6952. image: {
  6953. source: "./media/characters/yozey/side.svg"
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Micro",
  6960. height: math.unit(3, "inches"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(6, "feet")
  6966. }
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(103, "lbs"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/valeska-voss/front.svg"
  6978. }
  6979. }
  6980. },
  6981. [
  6982. {
  6983. name: "Mini-Sized Sub",
  6984. height: math.unit(3.1, "inches")
  6985. },
  6986. {
  6987. name: "Mid-Sized Sub",
  6988. height: math.unit(6.2, "inches")
  6989. },
  6990. {
  6991. name: "Full-Sized Sub",
  6992. height: math.unit(9.3, "inches")
  6993. },
  6994. {
  6995. name: "Normal",
  6996. height: math.unit(5 + 2 / 12, "foot"),
  6997. default: true
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7003. {
  7004. front: {
  7005. height: math.unit(6, "feet"),
  7006. weight: math.unit(160, "lbs"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/gene-zeta/front.svg",
  7010. extra: 3006 / 2826,
  7011. bottom: 182 / 3188
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(6, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5 + 11 / 12, "foot"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(140, "feet")
  7028. },
  7029. {
  7030. name: "Supercharged",
  7031. height: math.unit(2500, "feet")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(350, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/razinox/front.svg",
  7044. extra: 1686 / 1548,
  7045. bottom: 28.2 / 1868
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(350, "lbs"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/razinox/back.svg",
  7054. extra: 1660 / 1590,
  7055. bottom: 15 / 1665
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(10 + 8 / 12, "foot")
  7063. },
  7064. {
  7065. name: "Minimacro",
  7066. height: math.unit(15, "foot")
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(60, "foot"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Megamacro",
  7075. height: math.unit(5, "miles")
  7076. },
  7077. {
  7078. name: "Gigamacro",
  7079. height: math.unit(6000, "miles")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(150, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/cobalt/front.svg"
  7092. }
  7093. }
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(8 + 1 / 12, "foot")
  7099. },
  7100. {
  7101. name: "Macro",
  7102. height: math.unit(111, "foot"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Supracosmic",
  7107. height: math.unit(1e42, "feet")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(140, "lbs"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/amanda/front.svg"
  7120. }
  7121. }
  7122. },
  7123. [
  7124. {
  7125. name: "Micro",
  7126. height: math.unit(5, "inches"),
  7127. default: true
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(2.75, "meters"),
  7136. weight: math.unit(1200, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/teal/front.svg",
  7140. extra: 2463 / 2320,
  7141. bottom: 166 / 2629
  7142. }
  7143. },
  7144. back: {
  7145. height: math.unit(2.75, "meters"),
  7146. weight: math.unit(1200, "lb"),
  7147. name: "Back",
  7148. image: {
  7149. source: "./media/characters/teal/back.svg",
  7150. extra: 2580 / 2489,
  7151. bottom: 151 / 2731
  7152. }
  7153. },
  7154. sitting: {
  7155. height: math.unit(1.9, "meters"),
  7156. weight: math.unit(1200, "lb"),
  7157. name: "Sitting",
  7158. image: {
  7159. source: "./media/characters/teal/sitting.svg",
  7160. extra: 623 / 590,
  7161. bottom: 121 / 744
  7162. }
  7163. },
  7164. standing: {
  7165. height: math.unit(2.75, "meters"),
  7166. weight: math.unit(1200, "lb"),
  7167. name: "Standing",
  7168. image: {
  7169. source: "./media/characters/teal/standing.svg",
  7170. extra: 923 / 893,
  7171. bottom: 60 / 983
  7172. }
  7173. },
  7174. stretching: {
  7175. height: math.unit(3.65, "meters"),
  7176. weight: math.unit(1200, "lb"),
  7177. name: "Stretching",
  7178. image: {
  7179. source: "./media/characters/teal/stretching.svg",
  7180. extra: 1276 / 1244,
  7181. bottom: 0 / 1276
  7182. }
  7183. },
  7184. legged: {
  7185. height: math.unit(1.3, "meters"),
  7186. weight: math.unit(100, "lb"),
  7187. name: "Legged",
  7188. image: {
  7189. source: "./media/characters/teal/legged.svg",
  7190. extra: 462 / 437,
  7191. bottom: 24 / 486
  7192. }
  7193. },
  7194. naga: {
  7195. height: math.unit(5.4, "meters"),
  7196. weight: math.unit(4000, "lb"),
  7197. name: "Naga",
  7198. image: {
  7199. source: "./media/characters/teal/naga.svg",
  7200. extra: 1902 / 1858,
  7201. bottom: 0 / 1902
  7202. }
  7203. },
  7204. hand: {
  7205. height: math.unit(0.52, "meters"),
  7206. name: "Hand",
  7207. image: {
  7208. source: "./media/characters/teal/hand.svg"
  7209. }
  7210. },
  7211. maw: {
  7212. height: math.unit(0.43, "meters"),
  7213. name: "Maw",
  7214. image: {
  7215. source: "./media/characters/teal/maw.svg"
  7216. }
  7217. },
  7218. slit: {
  7219. height: math.unit(0.25, "meters"),
  7220. name: "Slit",
  7221. image: {
  7222. source: "./media/characters/teal/slit.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(2.75, "meters"),
  7230. default: true
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(300, "feet")
  7235. },
  7236. {
  7237. name: "Macro+",
  7238. height: math.unit(2000, "feet")
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7244. {
  7245. frontCat: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(180, "lbs"),
  7248. name: "Front (Cat)",
  7249. image: {
  7250. source: "./media/characters/ravin-amulet/front-cat.svg"
  7251. }
  7252. },
  7253. frontCatAlt: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(180, "lbs"),
  7256. name: "Front (Alt, Cat)",
  7257. image: {
  7258. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7259. }
  7260. },
  7261. frontWerewolf: {
  7262. height: math.unit(6 * 1.2, "feet"),
  7263. weight: math.unit(225, "lbs"),
  7264. name: "Front (Werewolf)",
  7265. image: {
  7266. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7267. }
  7268. },
  7269. backWerewolf: {
  7270. height: math.unit(6 * 1.2, "feet"),
  7271. weight: math.unit(225, "lbs"),
  7272. name: "Back (Werewolf)",
  7273. image: {
  7274. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Nano",
  7281. height: math.unit(1, "micrometer")
  7282. },
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(1, "inch")
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(6, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(60, "feet")
  7295. }
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(165, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/fluoresce/front.svg"
  7307. }
  7308. }
  7309. },
  7310. [
  7311. {
  7312. name: "Micro",
  7313. height: math.unit(6, "cm")
  7314. },
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(5 + 7 / 12, "feet"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(56, "feet")
  7323. },
  7324. {
  7325. name: "Megamacro",
  7326. height: math.unit(1.9, "miles")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(9 + 6 / 12, "feet"),
  7335. weight: math.unit(523, "lbs"),
  7336. name: "Side",
  7337. image: {
  7338. source: "./media/characters/aurora/side.svg"
  7339. }
  7340. }
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(9 + 6 / 12, "feet")
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(96, "feet"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Macro+",
  7354. height: math.unit(243, "feet")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(194, "cm"),
  7363. weight: math.unit(90, "kg"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/ranek/front.svg"
  7367. }
  7368. },
  7369. side: {
  7370. height: math.unit(194, "cm"),
  7371. weight: math.unit(90, "kg"),
  7372. name: "Side",
  7373. image: {
  7374. source: "./media/characters/ranek/side.svg"
  7375. }
  7376. },
  7377. back: {
  7378. height: math.unit(194, "cm"),
  7379. weight: math.unit(90, "kg"),
  7380. name: "Back",
  7381. image: {
  7382. source: "./media/characters/ranek/back.svg"
  7383. }
  7384. },
  7385. feral: {
  7386. height: math.unit(30, "cm"),
  7387. weight: math.unit(1.6, "lbs"),
  7388. name: "Feral",
  7389. image: {
  7390. source: "./media/characters/ranek/feral.svg"
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(194, "cm"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Macro",
  7402. height: math.unit(100, "meters")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(5 + 6 / 12, "feet"),
  7411. weight: math.unit(153, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/andrew-cooper/front.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Nano",
  7421. height: math.unit(1, "mm")
  7422. },
  7423. {
  7424. name: "Micro",
  7425. height: math.unit(2, "inches")
  7426. },
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(5 + 6 / 12, "feet"),
  7430. default: true
  7431. }
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(180, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/akane-sato/front.svg",
  7443. extra: 1219 / 1140
  7444. }
  7445. },
  7446. back: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(180, "lbs"),
  7449. name: "Back",
  7450. image: {
  7451. source: "./media/characters/akane-sato/back.svg",
  7452. extra: 1219 / 1170
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(2.5, "meters")
  7460. },
  7461. {
  7462. name: "Macro",
  7463. height: math.unit(250, "meters"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Megamacro",
  7468. height: math.unit(25, "km")
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(65, "kg"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/rook/front.svg",
  7481. extra: 960 / 950
  7482. }
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Normal",
  7488. height: math.unit(8.8, "feet")
  7489. },
  7490. {
  7491. name: "Macro",
  7492. height: math.unit(88, "feet"),
  7493. default: true
  7494. },
  7495. {
  7496. name: "Megamacro",
  7497. height: math.unit(8, "miles")
  7498. },
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7503. {
  7504. front: {
  7505. height: math.unit(12 + 2 / 12, "feet"),
  7506. weight: math.unit(808, "lbs"),
  7507. name: "Front",
  7508. image: {
  7509. source: "./media/characters/prodigy/front.svg"
  7510. }
  7511. }
  7512. },
  7513. [
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(12 + 2 / 12, "feet"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(143, "feet")
  7522. },
  7523. {
  7524. name: "Macro+",
  7525. height: math.unit(400, "feet")
  7526. },
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(225, "lbs"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/daniel/front.svg"
  7538. }
  7539. },
  7540. leaning: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(225, "lbs"),
  7543. name: "Leaning",
  7544. image: {
  7545. source: "./media/characters/daniel/leaning.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(1000, "feet"),
  7553. default: true
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(88, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/chiros/front.svg",
  7566. extra: 306 / 226
  7567. }
  7568. },
  7569. side: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(88, "lbs"),
  7572. name: "Side",
  7573. image: {
  7574. source: "./media/characters/chiros/side.svg",
  7575. extra: 306 / 226
  7576. }
  7577. },
  7578. },
  7579. [
  7580. {
  7581. name: "Normal",
  7582. height: math.unit(6, "cm"),
  7583. default: true
  7584. },
  7585. ]
  7586. ))
  7587. characterMakers.push(() => makeCharacter(
  7588. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7589. {
  7590. front: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(100, "lbs"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/selka/front.svg",
  7596. extra: 947 / 887
  7597. }
  7598. }
  7599. },
  7600. [
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(5, "cm"),
  7604. default: true
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(8 + 3 / 12, "feet"),
  7613. weight: math.unit(424, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/verin/front.svg",
  7617. extra: 1845 / 1550
  7618. }
  7619. },
  7620. frontArmored: {
  7621. height: math.unit(8 + 3 / 12, "feet"),
  7622. weight: math.unit(424, "lbs"),
  7623. name: "Front (Armored)",
  7624. image: {
  7625. source: "./media/characters/verin/front-armor.svg",
  7626. extra: 1845 / 1550,
  7627. bottom: 0.01
  7628. }
  7629. },
  7630. back: {
  7631. height: math.unit(8 + 3 / 12, "feet"),
  7632. weight: math.unit(424, "lbs"),
  7633. name: "Back",
  7634. image: {
  7635. source: "./media/characters/verin/back.svg",
  7636. bottom: 0.1,
  7637. extra: 1
  7638. }
  7639. },
  7640. foot: {
  7641. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7642. name: "Foot",
  7643. image: {
  7644. source: "./media/characters/verin/foot.svg"
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(8 + 3 / 12, "feet")
  7652. },
  7653. {
  7654. name: "Minimacro",
  7655. height: math.unit(21, "feet"),
  7656. default: true
  7657. },
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(626, "feet")
  7661. },
  7662. ]
  7663. ))
  7664. characterMakers.push(() => makeCharacter(
  7665. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7666. {
  7667. front: {
  7668. height: math.unit(2.718, "meters"),
  7669. weight: math.unit(150, "lbs"),
  7670. name: "Front",
  7671. image: {
  7672. source: "./media/characters/sovrim-terraquian/front.svg"
  7673. }
  7674. },
  7675. back: {
  7676. height: math.unit(2.718, "meters"),
  7677. weight: math.unit(150, "lbs"),
  7678. name: "Back",
  7679. image: {
  7680. source: "./media/characters/sovrim-terraquian/back.svg"
  7681. }
  7682. }
  7683. },
  7684. [
  7685. {
  7686. name: "Micro",
  7687. height: math.unit(2, "inches")
  7688. },
  7689. {
  7690. name: "Small",
  7691. height: math.unit(1, "meter")
  7692. },
  7693. {
  7694. name: "Normal",
  7695. height: math.unit(Math.E, "meters"),
  7696. default: true
  7697. },
  7698. {
  7699. name: "Macro",
  7700. height: math.unit(20, "meters")
  7701. },
  7702. {
  7703. name: "Macro+",
  7704. height: math.unit(400, "meters")
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(7, "feet"),
  7713. weight: math.unit(489, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/reece-silvermane/front.svg",
  7717. bottom: 0.02,
  7718. extra: 1
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(1.5, "miles"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(6, "feet"),
  7735. weight: math.unit(78, "kg"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/kane/front.svg",
  7739. extra: 978 / 899
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(2.1, "m"),
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(1, "km"),
  7751. default: true
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(6, "feet"),
  7760. weight: math.unit(200, "kg"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/tegon/front.svg",
  7764. bottom: 0.01,
  7765. extra: 1
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Micro",
  7772. height: math.unit(1, "inch")
  7773. },
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(6 + 3 / 12, "feet"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Macro",
  7781. height: math.unit(300, "feet")
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(69, "miles")
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7791. {
  7792. side: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(2304, "lbs"),
  7795. name: "Side",
  7796. image: {
  7797. source: "./media/characters/arcturax/side.svg",
  7798. extra: 790 / 376,
  7799. bottom: 0.01
  7800. }
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "Micro",
  7806. height: math.unit(2, "inch")
  7807. },
  7808. {
  7809. name: "Normal",
  7810. height: math.unit(6, "feet")
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(39, "feet"),
  7815. default: true
  7816. },
  7817. {
  7818. name: "Megamacro",
  7819. height: math.unit(7, "miles")
  7820. },
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7825. {
  7826. front: {
  7827. height: math.unit(6, "feet"),
  7828. weight: math.unit(50, "lbs"),
  7829. name: "Front",
  7830. image: {
  7831. source: "./media/characters/sentri/front.svg",
  7832. extra: 1750 / 1570,
  7833. bottom: 0.025
  7834. }
  7835. },
  7836. frontAlt: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(50, "lbs"),
  7839. name: "Front (Alt)",
  7840. image: {
  7841. source: "./media/characters/sentri/front-alt.svg",
  7842. extra: 1750 / 1570,
  7843. bottom: 0.025
  7844. }
  7845. },
  7846. },
  7847. [
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(15, "feet"),
  7851. default: true
  7852. },
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(2500, "feet")
  7856. }
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7861. {
  7862. front: {
  7863. height: math.unit(5 + 8 / 12, "feet"),
  7864. weight: math.unit(130, "lbs"),
  7865. name: "Front",
  7866. image: {
  7867. source: "./media/characters/corvin/front.svg",
  7868. extra: 1803 / 1629
  7869. }
  7870. },
  7871. frontShirt: {
  7872. height: math.unit(5 + 8 / 12, "feet"),
  7873. weight: math.unit(130, "lbs"),
  7874. name: "Front (Shirt)",
  7875. image: {
  7876. source: "./media/characters/corvin/front-shirt.svg",
  7877. extra: 1803 / 1629
  7878. }
  7879. },
  7880. frontPoncho: {
  7881. height: math.unit(5 + 8 / 12, "feet"),
  7882. weight: math.unit(130, "lbs"),
  7883. name: "Front (Poncho)",
  7884. image: {
  7885. source: "./media/characters/corvin/front-poncho.svg",
  7886. extra: 1803 / 1629
  7887. }
  7888. },
  7889. side: {
  7890. height: math.unit(5 + 8 / 12, "feet"),
  7891. weight: math.unit(130, "lbs"),
  7892. name: "Side",
  7893. image: {
  7894. source: "./media/characters/corvin/side.svg",
  7895. extra: 1012 / 945
  7896. }
  7897. },
  7898. back: {
  7899. height: math.unit(5 + 8 / 12, "feet"),
  7900. weight: math.unit(130, "lbs"),
  7901. name: "Back",
  7902. image: {
  7903. source: "./media/characters/corvin/back.svg",
  7904. extra: 1803 / 1629
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Micro",
  7911. height: math.unit(3, "inches")
  7912. },
  7913. {
  7914. name: "Normal",
  7915. height: math.unit(5 + 8 / 12, "feet")
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(300, "feet"),
  7920. default: true
  7921. },
  7922. {
  7923. name: "Megamacro",
  7924. height: math.unit(500, "miles")
  7925. }
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(135, "lbs"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/q/front.svg",
  7937. extra: 854 / 752,
  7938. bottom: 0.005
  7939. }
  7940. },
  7941. back: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(130, "lbs"),
  7944. name: "Back",
  7945. image: {
  7946. source: "./media/characters/q/back.svg",
  7947. extra: 854 / 752
  7948. }
  7949. },
  7950. },
  7951. [
  7952. {
  7953. name: "Macro",
  7954. height: math.unit(90, "feet"),
  7955. default: true
  7956. },
  7957. {
  7958. name: "Extra Macro",
  7959. height: math.unit(300, "feet"),
  7960. },
  7961. {
  7962. name: "BIG WALF",
  7963. height: math.unit(750, "feet"),
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(150, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/carley/front.svg",
  7976. extra: 3927 / 3540,
  7977. bottom: 29.2 / 735
  7978. }
  7979. }
  7980. },
  7981. [
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(6 + 3 / 12, "feet")
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(185, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Megamacro",
  7993. height: math.unit(8, "miles"),
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(3, "feet"),
  8002. weight: math.unit(28, "lbs"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/citrine/front.svg"
  8006. }
  8007. }
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(3, "feet"),
  8013. default: true
  8014. }
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8019. {
  8020. front: {
  8021. height: math.unit(14, "feet"),
  8022. weight: math.unit(1450, "kg"),
  8023. capacity: math.unit(15, "people"),
  8024. name: "Front",
  8025. image: {
  8026. source: "./media/characters/aura-starwind/front.svg",
  8027. extra: 1455 / 1335
  8028. }
  8029. },
  8030. side: {
  8031. height: math.unit(14, "feet"),
  8032. weight: math.unit(1450, "kg"),
  8033. capacity: math.unit(15, "people"),
  8034. name: "Side",
  8035. image: {
  8036. source: "./media/characters/aura-starwind/side.svg",
  8037. extra: 1654 / 1497
  8038. }
  8039. },
  8040. taur: {
  8041. height: math.unit(18, "feet"),
  8042. weight: math.unit(5500, "kg"),
  8043. capacity: math.unit(50, "people"),
  8044. name: "Taur",
  8045. image: {
  8046. source: "./media/characters/aura-starwind/taur.svg",
  8047. extra: 1760 / 1650
  8048. }
  8049. },
  8050. feral: {
  8051. height: math.unit(46, "feet"),
  8052. weight: math.unit(25000, "kg"),
  8053. capacity: math.unit(120, "people"),
  8054. name: "Feral",
  8055. image: {
  8056. source: "./media/characters/aura-starwind/feral.svg"
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(14, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(50, "meters")
  8069. },
  8070. {
  8071. name: "Megamacro",
  8072. height: math.unit(5000, "meters")
  8073. },
  8074. {
  8075. name: "Gigamacro",
  8076. height: math.unit(100000, "kilometers")
  8077. },
  8078. ]
  8079. ))
  8080. characterMakers.push(() => makeCharacter(
  8081. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8082. {
  8083. front: {
  8084. height: math.unit(2 + 7 / 12, "feet"),
  8085. weight: math.unit(32, "lbs"),
  8086. name: "Front",
  8087. image: {
  8088. source: "./media/characters/rivet/front.svg",
  8089. extra: 1716 / 1658,
  8090. bottom: 0.03
  8091. }
  8092. },
  8093. foot: {
  8094. height: math.unit(0.551, "feet"),
  8095. name: "Rivet's Foot",
  8096. image: {
  8097. source: "./media/characters/rivet/foot.svg"
  8098. },
  8099. rename: true
  8100. }
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(1.5, "inches"),
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(2 + 7 / 12, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(85, "feet")
  8115. },
  8116. {
  8117. name: "Megamacro",
  8118. height: math.unit(2.2, "km")
  8119. }
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(5 + 9 / 12, "feet"),
  8127. weight: math.unit(150, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/coffee/front.svg",
  8131. extra: 3666 / 3032,
  8132. bottom: 0.04
  8133. }
  8134. },
  8135. foot: {
  8136. height: math.unit(1.29, "feet"),
  8137. name: "Foot",
  8138. image: {
  8139. source: "./media/characters/coffee/foot.svg"
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Micro",
  8146. height: math.unit(2, "inches"),
  8147. },
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(5 + 9 / 12, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(800, "feet")
  8156. },
  8157. {
  8158. name: "Megamacro",
  8159. height: math.unit(25, "miles")
  8160. }
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(200, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/chari-gal/front.svg",
  8172. extra: 1568 / 1385,
  8173. bottom: 0.047
  8174. }
  8175. },
  8176. gigantamax: {
  8177. height: math.unit(6 * 16, "feet"),
  8178. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8179. name: "Gigantamax",
  8180. image: {
  8181. source: "./media/characters/chari-gal/gigantamax.svg",
  8182. extra: 1124 / 888,
  8183. bottom: 0.03
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(5 + 7 / 12, "feet")
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(200, "feet"),
  8195. default: true
  8196. }
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(150, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/nova/front.svg",
  8208. extra: 5000 / 4722,
  8209. bottom: 0.02
  8210. }
  8211. }
  8212. },
  8213. [
  8214. {
  8215. name: "Micro-",
  8216. height: math.unit(0.8, "inches")
  8217. },
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(2, "inches"),
  8221. default: true
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(3 + 1 / 12, "feet"),
  8230. weight: math.unit(21.7, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/argent/front.svg",
  8234. extra: 1471 / 1331,
  8235. bottom: 100.8 / 1575.5
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(2, "inches")
  8243. },
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(3 + 1 / 12, "feet"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Macro",
  8251. height: math.unit(120, "feet")
  8252. },
  8253. ]
  8254. ))
  8255. characterMakers.push(() => makeCharacter(
  8256. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8257. {
  8258. lamp: {
  8259. height: math.unit(7 * 1559 / 989, "feet"),
  8260. name: "Magic Lamp",
  8261. image: {
  8262. source: "./media/characters/mira-al-cul/lamp.svg",
  8263. extra: 1617 / 1559
  8264. }
  8265. },
  8266. front: {
  8267. height: math.unit(7, "feet"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/mira-al-cul/front.svg",
  8271. extra: 1044 / 990
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Heavily Restricted",
  8278. height: math.unit(7 * 1559 / 989, "feet")
  8279. },
  8280. {
  8281. name: "Freshly Freed",
  8282. height: math.unit(50 * 1559 / 989, "feet")
  8283. },
  8284. {
  8285. name: "World Encompassing",
  8286. height: math.unit(10000 * 1559 / 989, "miles")
  8287. },
  8288. {
  8289. name: "Galactic",
  8290. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8291. },
  8292. {
  8293. name: "Palmed Universe",
  8294. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8295. default: true
  8296. },
  8297. {
  8298. name: "Multiversal Matriarch",
  8299. height: math.unit(8.87e10, "yottameters")
  8300. },
  8301. {
  8302. name: "Void Mother",
  8303. height: math.unit(3.14e110, "yottaparsecs")
  8304. },
  8305. {
  8306. name: "Toying with Transcendence",
  8307. height: math.unit(1e307, "meters")
  8308. },
  8309. ]
  8310. ))
  8311. characterMakers.push(() => makeCharacter(
  8312. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8313. {
  8314. front: {
  8315. height: math.unit(17 + 1 / 12, "feet"),
  8316. weight: math.unit(476.2 * 5, "lbs"),
  8317. name: "Front",
  8318. image: {
  8319. source: "./media/characters/kuro-shi-uchū/front.svg",
  8320. extra: 2329 / 1835,
  8321. bottom: 0.02
  8322. }
  8323. },
  8324. },
  8325. [
  8326. {
  8327. name: "Micro",
  8328. height: math.unit(2, "inches")
  8329. },
  8330. {
  8331. name: "Normal",
  8332. height: math.unit(12, "meters")
  8333. },
  8334. {
  8335. name: "Planetary",
  8336. height: math.unit(0.00929, "AU"),
  8337. default: true
  8338. },
  8339. {
  8340. name: "Universal",
  8341. height: math.unit(20, "gigaparsecs")
  8342. },
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8347. {
  8348. front: {
  8349. height: math.unit(5 + 2 / 12, "feet"),
  8350. weight: math.unit(120, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/katherine/front.svg",
  8354. extra: 2075 / 1969
  8355. }
  8356. },
  8357. dress: {
  8358. height: math.unit(5 + 2 / 12, "feet"),
  8359. weight: math.unit(120, "lbs"),
  8360. name: "Dress",
  8361. image: {
  8362. source: "./media/characters/katherine/dress.svg",
  8363. extra: 2258 / 2064
  8364. }
  8365. },
  8366. },
  8367. [
  8368. {
  8369. name: "Micro",
  8370. height: math.unit(1, "inches"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(5 + 2 / 12, "feet")
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(100, "meters")
  8380. },
  8381. {
  8382. name: "Megamacro",
  8383. height: math.unit(80, "miles")
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(7 + 8 / 12, "feet"),
  8392. weight: math.unit(250, "lbs"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/yevis/front.svg",
  8396. extra: 1938 / 1755
  8397. }
  8398. }
  8399. },
  8400. [
  8401. {
  8402. name: "Mortal",
  8403. height: math.unit(7 + 8 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Battle",
  8407. height: math.unit(25 + 11 / 12, "feet")
  8408. },
  8409. {
  8410. name: "Wrath",
  8411. height: math.unit(1654 + 11 / 12, "feet")
  8412. },
  8413. {
  8414. name: "Planet Destroyer",
  8415. height: math.unit(12000, "miles")
  8416. },
  8417. {
  8418. name: "Galaxy Conqueror",
  8419. height: math.unit(1.45, "zettameters"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Universal War",
  8424. height: math.unit(184, "gigaparsecs")
  8425. },
  8426. {
  8427. name: "Eternity War",
  8428. height: math.unit(1.98e55, "yottaparsecs")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(5 + 8 / 12, "feet"),
  8437. weight: math.unit(63, "kg"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/xavier/front.svg",
  8441. extra: 944 / 883
  8442. }
  8443. },
  8444. frontStretch: {
  8445. height: math.unit(5 + 8 / 12, "feet"),
  8446. weight: math.unit(63, "kg"),
  8447. name: "Stretching",
  8448. image: {
  8449. source: "./media/characters/xavier/front-stretch.svg",
  8450. extra: 962 / 820
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(5 + 8 / 12, "feet")
  8458. },
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(100, "meters"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "McLargeHuge",
  8466. height: math.unit(10, "miles")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(5 + 5 / 12, "feet"),
  8475. weight: math.unit(150, "lb"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/joshii/front.svg",
  8479. extra: 765 / 653,
  8480. bottom: 51 / 816
  8481. }
  8482. },
  8483. foot: {
  8484. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8485. name: "Foot",
  8486. image: {
  8487. source: "./media/characters/joshii/foot.svg"
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Micro",
  8494. height: math.unit(2, "inches"),
  8495. default: true
  8496. },
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(5 + 5 / 12, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(785, "feet")
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(24.5, "miles")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(6, "feet"),
  8516. weight: math.unit(150, "lb"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/goddess-elizabeth/front.svg",
  8520. extra: 1800 / 1525,
  8521. bottom: 0.005
  8522. }
  8523. },
  8524. foot: {
  8525. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8526. name: "Foot",
  8527. image: {
  8528. source: "./media/characters/goddess-elizabeth/foot.svg"
  8529. }
  8530. },
  8531. mouth: {
  8532. height: math.unit(6, "feet"),
  8533. name: "Mouth",
  8534. image: {
  8535. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8536. }
  8537. },
  8538. },
  8539. [
  8540. {
  8541. name: "Micro",
  8542. height: math.unit(12, "feet")
  8543. },
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(80, "miles"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(15000, "parsecs")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(5 + 9 / 12, "feet"),
  8560. weight: math.unit(144, "lb"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/kara/front.svg"
  8564. }
  8565. },
  8566. feet: {
  8567. height: math.unit(6 / 6.765, "feet"),
  8568. name: "Kara's Feet",
  8569. rename: true,
  8570. image: {
  8571. source: "./media/characters/kara/feet.svg"
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 9 / 12, "feet")
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(174, "feet"),
  8583. default: true
  8584. },
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(18, "feet"),
  8592. weight: math.unit(4050, "lb"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/tyrone/front.svg",
  8596. extra: 2405 / 2270,
  8597. bottom: 182 / 2587
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(18, "feet"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Macro",
  8609. height: math.unit(300, "feet")
  8610. },
  8611. {
  8612. name: "Megamacro",
  8613. height: math.unit(15, "km")
  8614. },
  8615. {
  8616. name: "Gigamacro",
  8617. height: math.unit(500, "km")
  8618. },
  8619. {
  8620. name: "Teramacro",
  8621. height: math.unit(0.5, "gigameters")
  8622. },
  8623. {
  8624. name: "Omnimacro",
  8625. height: math.unit(1e252, "yottauniverse")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(7 + 8 / 12, "feet"),
  8634. weight: math.unit(120, "lb"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/danny/front.svg",
  8638. extra: 1490 / 1350
  8639. }
  8640. },
  8641. back: {
  8642. height: math.unit(7 + 8 / 12, "feet"),
  8643. weight: math.unit(120, "lb"),
  8644. name: "Back",
  8645. image: {
  8646. source: "./media/characters/danny/back.svg",
  8647. extra: 1490 / 1350
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(7 + 8 / 12, "feet"),
  8655. default: true
  8656. },
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(3.5, "inches"),
  8664. weight: math.unit(19, "grams"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/mallow/front.svg",
  8668. extra: 471 / 431
  8669. }
  8670. },
  8671. back: {
  8672. height: math.unit(3.5, "inches"),
  8673. weight: math.unit(19, "grams"),
  8674. name: "Back",
  8675. image: {
  8676. source: "./media/characters/mallow/back.svg",
  8677. extra: 471 / 431
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(3.5, "inches"),
  8685. default: true
  8686. },
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8691. {
  8692. front: {
  8693. height: math.unit(9, "feet"),
  8694. weight: math.unit(230, "kg"),
  8695. name: "Front",
  8696. image: {
  8697. source: "./media/characters/starry-aqua/front.svg"
  8698. }
  8699. },
  8700. back: {
  8701. height: math.unit(9, "feet"),
  8702. weight: math.unit(230, "kg"),
  8703. name: "Back",
  8704. image: {
  8705. source: "./media/characters/starry-aqua/back.svg"
  8706. }
  8707. },
  8708. hand: {
  8709. height: math.unit(9 * 0.1168, "feet"),
  8710. name: "Hand",
  8711. image: {
  8712. source: "./media/characters/starry-aqua/hand.svg"
  8713. }
  8714. },
  8715. foot: {
  8716. height: math.unit(9 * 0.18, "feet"),
  8717. name: "Foot",
  8718. image: {
  8719. source: "./media/characters/starry-aqua/foot.svg"
  8720. }
  8721. }
  8722. },
  8723. [
  8724. {
  8725. name: "Micro",
  8726. height: math.unit(3, "inches")
  8727. },
  8728. {
  8729. name: "Normal",
  8730. height: math.unit(9, "feet")
  8731. },
  8732. {
  8733. name: "Macro",
  8734. height: math.unit(300, "feet"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "Megamacro",
  8739. height: math.unit(3200, "feet")
  8740. }
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(230, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/luka/front.svg",
  8752. extra: 1,
  8753. bottom: 0.025
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(12 + 8 / 12, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Minimacro",
  8765. height: math.unit(20, "feet")
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(250, "feet")
  8770. },
  8771. {
  8772. name: "Megamacro",
  8773. height: math.unit(5, "miles")
  8774. },
  8775. {
  8776. name: "Gigamacro",
  8777. height: math.unit(8000, "miles")
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(150, "lb"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/natalie-nightring/front.svg",
  8790. extra: 1,
  8791. bottom: 0.06
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Uh Oh",
  8798. height: math.unit(0.1, "mm")
  8799. },
  8800. {
  8801. name: "Small",
  8802. height: math.unit(3, "inches")
  8803. },
  8804. {
  8805. name: "Human Scale",
  8806. height: math.unit(6, "feet")
  8807. },
  8808. {
  8809. name: "Librarian",
  8810. height: math.unit(50, "feet"),
  8811. default: true
  8812. },
  8813. {
  8814. name: "Immense",
  8815. height: math.unit(200, "miles")
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(180, "lbs"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/danni-rosie/front.svg",
  8828. extra: 1260 / 1128,
  8829. bottom: 0.022
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Micro",
  8836. height: math.unit(2, "inches"),
  8837. default: true
  8838. },
  8839. ]
  8840. ))
  8841. characterMakers.push(() => makeCharacter(
  8842. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8843. {
  8844. front: {
  8845. height: math.unit(5 + 9 / 12, "feet"),
  8846. weight: math.unit(220, "lb"),
  8847. name: "Front",
  8848. image: {
  8849. source: "./media/characters/samantha-kruse/front.svg",
  8850. extra: (985 / 935),
  8851. bottom: 0.03
  8852. }
  8853. },
  8854. frontUndressed: {
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. weight: math.unit(220, "lb"),
  8857. name: "Front (Undressed)",
  8858. image: {
  8859. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8860. extra: (973 / 923),
  8861. bottom: 0.025
  8862. }
  8863. },
  8864. fat: {
  8865. height: math.unit(5 + 9 / 12, "feet"),
  8866. weight: math.unit(900, "lb"),
  8867. name: "Front (Fat)",
  8868. image: {
  8869. source: "./media/characters/samantha-kruse/fat.svg",
  8870. extra: 2688 / 2561
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(5 + 9 / 12, "feet"),
  8878. default: true
  8879. }
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8884. {
  8885. back: {
  8886. height: math.unit(5 + 4 / 12, "feet"),
  8887. weight: math.unit(4963, "lb"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/amelia-rosie/back.svg",
  8891. extra: 1113 / 963,
  8892. bottom: 0.01
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Level 0",
  8899. height: math.unit(5 + 4 / 12, "feet")
  8900. },
  8901. {
  8902. name: "Level 1",
  8903. height: math.unit(164597, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Level 2",
  8908. height: math.unit(956243, "miles")
  8909. },
  8910. {
  8911. name: "Level 3",
  8912. height: math.unit(29421709423, "miles")
  8913. },
  8914. {
  8915. name: "Level 4",
  8916. height: math.unit(154, "lightyears")
  8917. },
  8918. {
  8919. name: "Level 5",
  8920. height: math.unit(4738272, "lightyears")
  8921. },
  8922. {
  8923. name: "Level 6",
  8924. height: math.unit(145787152896, "lightyears")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(5 + 11 / 12, "feet"),
  8933. weight: math.unit(65, "kg"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/rook-kitara/front.svg",
  8937. extra: 1347 / 1274,
  8938. bottom: 0.005
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Totally Unfair",
  8945. height: math.unit(1.8, "mm")
  8946. },
  8947. {
  8948. name: "Lap Rookie",
  8949. height: math.unit(1.4, "feet")
  8950. },
  8951. {
  8952. name: "Normal",
  8953. height: math.unit(5 + 11 / 12, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "How Did This Happen",
  8958. height: math.unit(80, "miles")
  8959. }
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(7, "feet"),
  8967. weight: math.unit(300, "lb"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/pisces/front.svg",
  8971. extra: 2255 / 2115,
  8972. bottom: 0.03
  8973. }
  8974. },
  8975. back: {
  8976. height: math.unit(7, "feet"),
  8977. weight: math.unit(300, "lb"),
  8978. name: "Back",
  8979. image: {
  8980. source: "./media/characters/pisces/back.svg",
  8981. extra: 2146 / 2055,
  8982. bottom: 0.04
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(7, "feet"),
  8990. default: true
  8991. },
  8992. {
  8993. name: "Swimming Pool",
  8994. height: math.unit(12.2, "meters")
  8995. },
  8996. {
  8997. name: "Olympic Swimming Pool",
  8998. height: math.unit(56.3, "meters")
  8999. },
  9000. {
  9001. name: "Lake Superior",
  9002. height: math.unit(93900, "meters")
  9003. },
  9004. {
  9005. name: "Mediterranean Sea",
  9006. height: math.unit(644457, "meters")
  9007. },
  9008. {
  9009. name: "World's Oceans",
  9010. height: math.unit(4567491, "meters")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(2.3, "meters"),
  9019. weight: math.unit(120, "kg"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/zelas/front.svg"
  9023. }
  9024. },
  9025. side: {
  9026. height: math.unit(2.3, "meters"),
  9027. weight: math.unit(120, "kg"),
  9028. name: "Side",
  9029. image: {
  9030. source: "./media/characters/zelas/side.svg"
  9031. }
  9032. },
  9033. back: {
  9034. height: math.unit(2.3, "meters"),
  9035. weight: math.unit(120, "kg"),
  9036. name: "Back",
  9037. image: {
  9038. source: "./media/characters/zelas/back.svg"
  9039. }
  9040. },
  9041. foot: {
  9042. height: math.unit(1.116, "feet"),
  9043. name: "Foot",
  9044. image: {
  9045. source: "./media/characters/zelas/foot.svg"
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(2.3, "meters")
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(30, "meters"),
  9057. default: true
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(1, "inch"),
  9066. weight: math.unit(0.21, "grams"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/talbot/front.svg",
  9070. extra: 594 / 544
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Micro",
  9077. height: math.unit(1, "inch"),
  9078. default: true
  9079. },
  9080. ]
  9081. ))
  9082. characterMakers.push(() => makeCharacter(
  9083. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9084. {
  9085. front: {
  9086. height: math.unit(3 + 3 / 12, "feet"),
  9087. weight: math.unit(51.8, "lb"),
  9088. name: "Front",
  9089. image: {
  9090. source: "./media/characters/fliss/front.svg",
  9091. extra: 840 / 640
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Teeny Tiny",
  9098. height: math.unit(1, "mm")
  9099. },
  9100. {
  9101. name: "Small",
  9102. height: math.unit(1, "inch"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Standard Sylveon",
  9107. height: math.unit(3 + 3 / 12, "feet")
  9108. },
  9109. {
  9110. name: "Large Nuisance",
  9111. height: math.unit(33, "feet")
  9112. },
  9113. {
  9114. name: "City Filler",
  9115. height: math.unit(3000, "feet")
  9116. },
  9117. {
  9118. name: "New Horizon",
  9119. height: math.unit(6000, "miles")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(5, "cm"),
  9128. weight: math.unit(1.94, "g"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/fleta/front.svg",
  9132. extra: 835 / 803
  9133. }
  9134. },
  9135. back: {
  9136. height: math.unit(5, "cm"),
  9137. weight: math.unit(1.94, "g"),
  9138. name: "Back",
  9139. image: {
  9140. source: "./media/characters/fleta/back.svg",
  9141. extra: 835 / 803
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Micro",
  9148. height: math.unit(5, "cm"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(225, "lb"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/dominic/front.svg",
  9162. extra: 1770 / 1620,
  9163. bottom: 0.025
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(225, "lb"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/dominic/back.svg",
  9172. extra: 1745 / 1620,
  9173. bottom: 0.065
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Nano",
  9180. height: math.unit(0.1, "mm")
  9181. },
  9182. {
  9183. name: "Micro-",
  9184. height: math.unit(1, "mm")
  9185. },
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(4, "inches")
  9189. },
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(6 + 4 / 12, "feet"),
  9193. default: true
  9194. },
  9195. {
  9196. name: "Macro",
  9197. height: math.unit(115, "feet")
  9198. },
  9199. {
  9200. name: "Macro+",
  9201. height: math.unit(955, "feet")
  9202. },
  9203. {
  9204. name: "Megamacro",
  9205. height: math.unit(8990, "feet")
  9206. },
  9207. {
  9208. name: "Gigmacro",
  9209. height: math.unit(9310, "miles")
  9210. },
  9211. {
  9212. name: "Teramacro",
  9213. height: math.unit(1567005010, "miles")
  9214. },
  9215. {
  9216. name: "Examacro",
  9217. height: math.unit(1425, "parsecs")
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(400, "feet"),
  9226. weight: math.unit(44444444, "lb"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/major-colonel/front.svg"
  9230. }
  9231. },
  9232. back: {
  9233. height: math.unit(400, "feet"),
  9234. weight: math.unit(44444444, "lb"),
  9235. name: "Back",
  9236. image: {
  9237. source: "./media/characters/major-colonel/back.svg"
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Macro",
  9244. height: math.unit(400, "feet"),
  9245. default: true
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9251. {
  9252. catFront: {
  9253. height: math.unit(6, "feet"),
  9254. weight: math.unit(120, "lb"),
  9255. name: "Front (Cat Side)",
  9256. image: {
  9257. source: "./media/characters/axel-lycan/cat-front.svg",
  9258. extra: 430 / 402,
  9259. bottom: 43 / 472.35
  9260. }
  9261. },
  9262. catBack: {
  9263. height: math.unit(6, "feet"),
  9264. weight: math.unit(120, "lb"),
  9265. name: "Back (Cat Side)",
  9266. image: {
  9267. source: "./media/characters/axel-lycan/cat-back.svg",
  9268. extra: 447 / 419,
  9269. bottom: 23.3 / 469
  9270. }
  9271. },
  9272. wolfFront: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(120, "lb"),
  9275. name: "Front (Wolf Side)",
  9276. image: {
  9277. source: "./media/characters/axel-lycan/wolf-front.svg",
  9278. extra: 485 / 456,
  9279. bottom: 19 / 504
  9280. }
  9281. },
  9282. wolfBack: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(120, "lb"),
  9285. name: "Back (Wolf Side)",
  9286. image: {
  9287. source: "./media/characters/axel-lycan/wolf-back.svg",
  9288. extra: 475 / 438,
  9289. bottom: 39.2 / 514
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Macro",
  9296. height: math.unit(1, "km"),
  9297. default: true
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(5 + 9 / 12, "feet"),
  9306. weight: math.unit(175, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/vanrel-hyena/front.svg",
  9310. extra: 1086 / 1010,
  9311. bottom: 0.04
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(5 + 9 / 12, "feet"),
  9319. default: true
  9320. },
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(6, "feet"),
  9328. weight: math.unit(103, "lb"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/abbott-absol/front.svg",
  9332. extra: 2010 / 1842
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Megamicro",
  9339. height: math.unit(0.1, "mm")
  9340. },
  9341. {
  9342. name: "Micro",
  9343. height: math.unit(1, "inch")
  9344. },
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(6, "feet"),
  9348. default: true
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(264, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/hector/front.svg",
  9361. extra: 2280 / 2130,
  9362. bottom: 0.07
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(12.25, "foot"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(160, "feet")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(150, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/sal/front.svg",
  9387. extra: 1846 / 1699,
  9388. bottom: 0.04
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Megamacro",
  9395. height: math.unit(10, "miles"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9402. {
  9403. front: {
  9404. height: math.unit(3, "meters"),
  9405. weight: math.unit(450, "kg"),
  9406. name: "front",
  9407. image: {
  9408. source: "./media/characters/ranger/front.svg",
  9409. extra: 2401 / 2243,
  9410. bottom: 0.05
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(3, "meters"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(14, "feet"),
  9427. weight: math.unit(800, "kg"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/theresa/front.svg",
  9431. extra: 3575 / 3346,
  9432. bottom: 0.03
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(14, "feet"),
  9440. default: true
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9446. {
  9447. front: {
  9448. height: math.unit(6, "feet"),
  9449. weight: math.unit(3, "kg"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/ine/front.svg",
  9453. extra: 678 / 539,
  9454. bottom: 0.023
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(2.265, "feet"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(5, "feet"),
  9471. weight: math.unit(30, "kg"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/vial/front.svg",
  9475. extra: 1365 / 1277,
  9476. bottom: 0.04
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(5, "feet"),
  9484. default: true
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9490. {
  9491. side: {
  9492. height: math.unit(3.4, "meters"),
  9493. weight: math.unit(1000, "lb"),
  9494. name: "Side",
  9495. image: {
  9496. source: "./media/characters/rovoska/side.svg",
  9497. extra: 4403 / 1515
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(3.4, "meters"),
  9505. default: true
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9511. {
  9512. front: {
  9513. height: math.unit(8, "feet"),
  9514. weight: math.unit(315, "lb"),
  9515. name: "Front",
  9516. image: {
  9517. source: "./media/characters/gunner-rotthbauer/front.svg"
  9518. }
  9519. },
  9520. back: {
  9521. height: math.unit(8, "feet"),
  9522. weight: math.unit(315, "lb"),
  9523. name: "Back",
  9524. image: {
  9525. source: "./media/characters/gunner-rotthbauer/back.svg"
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Micro",
  9532. height: math.unit(3.5, "inches")
  9533. },
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(8, "feet"),
  9537. default: true
  9538. },
  9539. {
  9540. name: "Macro",
  9541. height: math.unit(250, "feet")
  9542. },
  9543. {
  9544. name: "Megamacro",
  9545. height: math.unit(1, "AU")
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(5 + 5 / 12, "feet"),
  9554. weight: math.unit(140, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/allatia/front.svg",
  9558. extra: 1227 / 1180,
  9559. bottom: 0.027
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 5 / 12, "feet")
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(250, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Megamacro",
  9575. height: math.unit(8, "miles")
  9576. }
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(120, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/tene/front.svg",
  9588. extra: 1728 / 1578,
  9589. bottom: 0.022
  9590. }
  9591. },
  9592. stomping: {
  9593. height: math.unit(2.025, "meters"),
  9594. weight: math.unit(120, "lb"),
  9595. name: "Stomping",
  9596. image: {
  9597. source: "./media/characters/tene/stomping.svg",
  9598. extra: 938 / 873,
  9599. bottom: 0.01
  9600. }
  9601. },
  9602. sitting: {
  9603. height: math.unit(1, "meter"),
  9604. weight: math.unit(120, "lb"),
  9605. name: "Sitting",
  9606. image: {
  9607. source: "./media/characters/tene/sitting.svg",
  9608. extra: 437 / 415,
  9609. bottom: 0.1
  9610. }
  9611. },
  9612. feral: {
  9613. height: math.unit(3.9, "feet"),
  9614. weight: math.unit(250, "lb"),
  9615. name: "Feral",
  9616. image: {
  9617. source: "./media/characters/tene/feral.svg",
  9618. extra: 717 / 458,
  9619. bottom: 0.179
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(6, "feet")
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(300, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Megamacro",
  9635. height: math.unit(5, "miles")
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9641. {
  9642. side: {
  9643. height: math.unit(6, "feet"),
  9644. name: "Side",
  9645. image: {
  9646. source: "./media/characters/evander/side.svg",
  9647. extra: 877 / 477
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(0.83, "meters"),
  9655. default: true
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9661. {
  9662. front: {
  9663. height: math.unit(12, "feet"),
  9664. weight: math.unit(1000, "lb"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9668. extra: 1762 / 1611
  9669. }
  9670. },
  9671. back: {
  9672. height: math.unit(12, "feet"),
  9673. weight: math.unit(1000, "lb"),
  9674. name: "Back",
  9675. image: {
  9676. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9677. extra: 1762 / 1611
  9678. }
  9679. },
  9680. },
  9681. [
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(12, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Kaiju",
  9689. height: math.unit(150, "feet")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(150, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/zero-alurus/front.svg"
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(150, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/zero-alurus/back.svg"
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Normal",
  9716. height: math.unit(5 + 10 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Macro",
  9720. height: math.unit(60, "feet"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Macro+",
  9725. height: math.unit(450, "feet")
  9726. },
  9727. ]
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9731. {
  9732. front: {
  9733. height: math.unit(6, "feet"),
  9734. weight: math.unit(200, "lb"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/mega-shi/front.svg",
  9738. extra: 1279 / 1250,
  9739. bottom: 0.02
  9740. }
  9741. },
  9742. back: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(200, "lb"),
  9745. name: "Back",
  9746. image: {
  9747. source: "./media/characters/mega-shi/back.svg",
  9748. extra: 1279 / 1250,
  9749. bottom: 0.02
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(16 + 6 / 12, "feet")
  9757. },
  9758. {
  9759. name: "Third Dimension",
  9760. height: math.unit(40, "meters")
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(660, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(10, "miles")
  9770. },
  9771. {
  9772. name: "Planetary Launch",
  9773. height: math.unit(500, "miles")
  9774. },
  9775. {
  9776. name: "Interstellar",
  9777. height: math.unit(1e9, "miles")
  9778. },
  9779. {
  9780. name: "Leaving the Universe",
  9781. height: math.unit(1, "gigaparsec")
  9782. },
  9783. {
  9784. name: "Travelling Universes",
  9785. height: math.unit(30e15, "parsecs")
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9791. {
  9792. front: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(150, "lb"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/odyssey/front.svg",
  9798. extra: 1782 / 1582,
  9799. bottom: 0.01
  9800. }
  9801. },
  9802. side: {
  9803. height: math.unit(5.7, "feet"),
  9804. weight: math.unit(140, "lb"),
  9805. name: "Side",
  9806. image: {
  9807. source: "./media/characters/odyssey/side.svg",
  9808. extra: 6462 / 5700
  9809. }
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(5 + 4 / 12, "feet")
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(1, "km")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(3000, "km")
  9824. },
  9825. {
  9826. name: "Gigamacro",
  9827. height: math.unit(1, "AU"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "Omniversal",
  9832. height: math.unit(100e14, "lightyears")
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(6, "feet"),
  9841. weight: math.unit(300, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/mekuto/front.svg",
  9845. extra: 921 / 832,
  9846. bottom: 0.03
  9847. }
  9848. },
  9849. hand: {
  9850. height: math.unit(6 / 10.24, "feet"),
  9851. name: "Hand",
  9852. image: {
  9853. source: "./media/characters/mekuto/hand.svg"
  9854. }
  9855. },
  9856. foot: {
  9857. height: math.unit(6 / 5.05, "feet"),
  9858. name: "Foot",
  9859. image: {
  9860. source: "./media/characters/mekuto/foot.svg"
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Minimicro",
  9867. height: math.unit(0.2, "inches")
  9868. },
  9869. {
  9870. name: "Micro",
  9871. height: math.unit(1.5, "inches")
  9872. },
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(5 + 11 / 12, "feet"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Minimacro",
  9880. height: math.unit(17 + 9 / 12, "feet")
  9881. },
  9882. {
  9883. name: "Macro",
  9884. height: math.unit(177.5, "feet")
  9885. },
  9886. {
  9887. name: "Megamacro",
  9888. height: math.unit(152, "miles")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(6.5, "inches"),
  9897. weight: math.unit(13, "oz"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/dafydd-tomos/front.svg",
  9901. extra: 2990 / 2603,
  9902. bottom: 0.03
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(6.5, "inches"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(6, "feet"),
  9919. weight: math.unit(150, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/splinter/front.svg",
  9923. extra: 2990 / 2882,
  9924. bottom: 0.04
  9925. }
  9926. },
  9927. back: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(150, "lb"),
  9930. name: "Back",
  9931. image: {
  9932. source: "./media/characters/splinter/back.svg",
  9933. extra: 2990 / 2882,
  9934. bottom: 0.04
  9935. }
  9936. },
  9937. },
  9938. [
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(6, "feet")
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(230, "meters"),
  9946. default: true
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9952. {
  9953. front: {
  9954. height: math.unit(4 + 10 / 12, "feet"),
  9955. weight: math.unit(480, "lb"),
  9956. name: "Front",
  9957. image: {
  9958. source: "./media/characters/snow-gabumon/front.svg",
  9959. extra: 1140 / 963,
  9960. bottom: 0.058
  9961. }
  9962. },
  9963. back: {
  9964. height: math.unit(4 + 10 / 12, "feet"),
  9965. weight: math.unit(480, "lb"),
  9966. name: "Back",
  9967. image: {
  9968. source: "./media/characters/snow-gabumon/back.svg",
  9969. extra: 1115 / 962,
  9970. bottom: 0.041
  9971. }
  9972. },
  9973. frontUndresed: {
  9974. height: math.unit(4 + 10 / 12, "feet"),
  9975. weight: math.unit(480, "lb"),
  9976. name: "Front (Undressed)",
  9977. image: {
  9978. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9979. extra: 1061 / 960,
  9980. bottom: 0.045
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Micro",
  9987. height: math.unit(1, "inch")
  9988. },
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(4 + 10 / 12, "feet"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(200, "feet")
  9997. },
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(120, "miles")
  10001. },
  10002. {
  10003. name: "Gigamacro",
  10004. height: math.unit(9800, "miles")
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(1.7, "meters"),
  10013. weight: math.unit(140, "lb"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/moody/front.svg",
  10017. extra: 3226 / 3007,
  10018. bottom: 0.087
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Micro",
  10025. height: math.unit(1, "mm")
  10026. },
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(1.7, "meters"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(80, "meters")
  10035. },
  10036. {
  10037. name: "Macro+",
  10038. height: math.unit(500, "meters")
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(150, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/zyas/front.svg",
  10051. extra: 1180 / 1120,
  10052. bottom: 0.045
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(10, "feet"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(500, "feet")
  10065. },
  10066. {
  10067. name: "Megamacro",
  10068. height: math.unit(5, "miles")
  10069. },
  10070. {
  10071. name: "Teramacro",
  10072. height: math.unit(150000, "miles")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Cuon", species: ["border-collie"], 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/cuon/front.svg",
  10085. extra: 1390 / 1320,
  10086. bottom: 0.008
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(3, "inches")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(18 + 9 / 12, "feet"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(360, "feet")
  10103. },
  10104. {
  10105. name: "Megamacro",
  10106. height: math.unit(360, "miles")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(2.4, "meters"),
  10115. weight: math.unit(70, "kg"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/nyanuxk/front.svg",
  10119. extra: 1172 / 1084,
  10120. bottom: 0.065
  10121. }
  10122. },
  10123. side: {
  10124. height: math.unit(2.4, "meters"),
  10125. weight: math.unit(70, "kg"),
  10126. name: "Side",
  10127. image: {
  10128. source: "./media/characters/nyanuxk/side.svg",
  10129. extra: 1190 / 1132,
  10130. bottom: 0.007
  10131. }
  10132. },
  10133. back: {
  10134. height: math.unit(2.4, "meters"),
  10135. weight: math.unit(70, "kg"),
  10136. name: "Back",
  10137. image: {
  10138. source: "./media/characters/nyanuxk/back.svg",
  10139. extra: 1200 / 1141,
  10140. bottom: 0.015
  10141. }
  10142. },
  10143. foot: {
  10144. height: math.unit(0.52, "meters"),
  10145. name: "Foot",
  10146. image: {
  10147. source: "./media/characters/nyanuxk/foot.svg"
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Micro",
  10154. height: math.unit(2, "cm")
  10155. },
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(2.4, "meters"),
  10159. default: true
  10160. },
  10161. {
  10162. name: "Smaller Macro",
  10163. height: math.unit(120, "meters")
  10164. },
  10165. {
  10166. name: "Bigger Macro",
  10167. height: math.unit(1.2, "km")
  10168. },
  10169. {
  10170. name: "Megamacro",
  10171. height: math.unit(15, "kilometers")
  10172. },
  10173. {
  10174. name: "Gigamacro",
  10175. height: math.unit(2000, "km")
  10176. },
  10177. {
  10178. name: "Teramacro",
  10179. height: math.unit(500000, "km")
  10180. },
  10181. ]
  10182. ))
  10183. characterMakers.push(() => makeCharacter(
  10184. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10185. {
  10186. side: {
  10187. height: math.unit(6, "feet"),
  10188. name: "Side",
  10189. image: {
  10190. source: "./media/characters/ailbhe/side.svg",
  10191. extra: 757 / 464,
  10192. bottom: 0.041
  10193. }
  10194. },
  10195. },
  10196. [
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(1.07, "meters"),
  10200. default: true
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(120, "kg"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/zevulfius/front.svg",
  10213. extra: 965 / 903
  10214. }
  10215. },
  10216. side: {
  10217. height: math.unit(6, "feet"),
  10218. weight: math.unit(120, "kg"),
  10219. name: "Side",
  10220. image: {
  10221. source: "./media/characters/zevulfius/side.svg",
  10222. extra: 939 / 900
  10223. }
  10224. },
  10225. back: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(120, "kg"),
  10228. name: "Back",
  10229. image: {
  10230. source: "./media/characters/zevulfius/back.svg",
  10231. extra: 918 / 854,
  10232. bottom: 0.005
  10233. }
  10234. },
  10235. foot: {
  10236. height: math.unit(6 / 3.72, "feet"),
  10237. name: "Foot",
  10238. image: {
  10239. source: "./media/characters/zevulfius/foot.svg"
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(750, "meters")
  10247. },
  10248. {
  10249. name: "Megamacro",
  10250. height: math.unit(20, "km"),
  10251. default: true
  10252. },
  10253. {
  10254. name: "Gigamacro",
  10255. height: math.unit(2000, "km")
  10256. },
  10257. {
  10258. name: "Teramacro",
  10259. height: math.unit(250000, "km")
  10260. },
  10261. ]
  10262. ))
  10263. characterMakers.push(() => makeCharacter(
  10264. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10265. {
  10266. front: {
  10267. height: math.unit(100, "feet"),
  10268. weight: math.unit(350, "kg"),
  10269. name: "Front",
  10270. image: {
  10271. source: "./media/characters/rikes/front.svg",
  10272. extra: 1565 / 1483,
  10273. bottom: 0.017
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(100, "feet"),
  10281. default: true
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10287. {
  10288. anthro: {
  10289. height: math.unit(8, "feet"),
  10290. weight: math.unit(120, "kg"),
  10291. name: "Anthro",
  10292. image: {
  10293. source: "./media/characters/adam-silver-mane/anthro.svg",
  10294. extra: 5743 / 5339,
  10295. bottom: 0.07
  10296. }
  10297. },
  10298. taur: {
  10299. height: math.unit(16, "feet"),
  10300. weight: math.unit(1500, "kg"),
  10301. name: "Taur",
  10302. image: {
  10303. source: "./media/characters/adam-silver-mane/taur.svg",
  10304. extra: 1713 / 1571,
  10305. bottom: 0.01
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Normal",
  10312. height: math.unit(8, "feet")
  10313. },
  10314. {
  10315. name: "Minimacro",
  10316. height: math.unit(80, "feet")
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(800, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Megamacro",
  10325. height: math.unit(8000, "feet")
  10326. },
  10327. {
  10328. name: "Gigamacro",
  10329. height: math.unit(800, "miles")
  10330. },
  10331. {
  10332. name: "Teramacro",
  10333. height: math.unit(80000, "miles")
  10334. },
  10335. {
  10336. name: "Celestial",
  10337. height: math.unit(8e6, "miles")
  10338. },
  10339. {
  10340. name: "Star Dragon",
  10341. height: math.unit(800000, "parsecs")
  10342. },
  10343. {
  10344. name: "Godly",
  10345. height: math.unit(800, "teraparsecs")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/ky'owin/front.svg",
  10358. extra: 3888 / 3068,
  10359. bottom: 0.015
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Normal",
  10366. height: math.unit(6 + 8 / 12, "feet")
  10367. },
  10368. {
  10369. name: "Large",
  10370. height: math.unit(68, "feet")
  10371. },
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(132, "feet")
  10375. },
  10376. {
  10377. name: "Macro+",
  10378. height: math.unit(340, "feet")
  10379. },
  10380. {
  10381. name: "Macro++",
  10382. height: math.unit(680, "feet"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Megamacro",
  10387. height: math.unit(1, "mile")
  10388. },
  10389. {
  10390. name: "Megamacro+",
  10391. height: math.unit(10, "miles")
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10397. {
  10398. front: {
  10399. height: math.unit(4, "feet"),
  10400. weight: math.unit(50, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/mal/front.svg",
  10404. extra: 785 / 724,
  10405. bottom: 0.07
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Micro",
  10412. height: math.unit(4, "inches")
  10413. },
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(4, "feet"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Macro",
  10421. height: math.unit(200, "feet")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(6, "feet"),
  10430. weight: math.unit(150, "lb"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/jordan-deware/front.svg",
  10434. extra: 1191 / 1012
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Nano",
  10441. height: math.unit(0.01, "mm")
  10442. },
  10443. {
  10444. name: "Minimicro",
  10445. height: math.unit(1, "mm")
  10446. },
  10447. {
  10448. name: "Micro",
  10449. height: math.unit(0.5, "inches")
  10450. },
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(4, "feet"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Minimacro",
  10458. height: math.unit(40, "meters")
  10459. },
  10460. {
  10461. name: "Small Macro",
  10462. height: math.unit(400, "meters")
  10463. },
  10464. {
  10465. name: "Macro",
  10466. height: math.unit(4, "miles")
  10467. },
  10468. {
  10469. name: "Megamacro",
  10470. height: math.unit(40, "miles")
  10471. },
  10472. {
  10473. name: "Megamacro+",
  10474. height: math.unit(400, "miles")
  10475. },
  10476. {
  10477. name: "Gigamacro",
  10478. height: math.unit(400000, "miles")
  10479. },
  10480. ]
  10481. ))
  10482. characterMakers.push(() => makeCharacter(
  10483. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10484. {
  10485. side: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(150, "lb"),
  10488. name: "Side",
  10489. image: {
  10490. source: "./media/characters/kimiko/side.svg",
  10491. extra: 600 / 358
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(15, "feet"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Macro",
  10503. height: math.unit(220, "feet")
  10504. },
  10505. {
  10506. name: "Macro+",
  10507. height: math.unit(1450, "feet")
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(11500, "feet")
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(9500, "miles")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(2208005005, "miles")
  10520. },
  10521. {
  10522. name: "Examacro",
  10523. height: math.unit(2750, "parsecs")
  10524. },
  10525. {
  10526. name: "Zettamacro",
  10527. height: math.unit(101500, "parsecs")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10533. {
  10534. front: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(70, "kg"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/andrew-sleepy/front.svg"
  10540. }
  10541. },
  10542. side: {
  10543. height: math.unit(6, "feet"),
  10544. weight: math.unit(70, "kg"),
  10545. name: "Side",
  10546. image: {
  10547. source: "./media/characters/andrew-sleepy/side.svg"
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Micro",
  10554. height: math.unit(1, "mm"),
  10555. default: true
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/judio/front.svg",
  10568. extra: 1258 / 1110
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(5 + 6 / 12, "feet")
  10576. },
  10577. {
  10578. name: "Macro",
  10579. height: math.unit(1000, "feet"),
  10580. default: true
  10581. },
  10582. {
  10583. name: "Megamacro",
  10584. height: math.unit(10, "miles")
  10585. },
  10586. ]
  10587. ))
  10588. characterMakers.push(() => makeCharacter(
  10589. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10590. {
  10591. front: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(68, "kg"),
  10594. name: "Front",
  10595. image: {
  10596. source: "./media/characters/nomaxice/front.svg",
  10597. extra: 1498 / 1073,
  10598. bottom: 0.075
  10599. }
  10600. },
  10601. foot: {
  10602. height: math.unit(1.1, "feet"),
  10603. name: "Foot",
  10604. image: {
  10605. source: "./media/characters/nomaxice/foot.svg"
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Micro",
  10612. height: math.unit(8, "cm")
  10613. },
  10614. {
  10615. name: "Norm",
  10616. height: math.unit(1.82, "m")
  10617. },
  10618. {
  10619. name: "Norm+",
  10620. height: math.unit(8.8, "feet")
  10621. },
  10622. {
  10623. name: "Big",
  10624. height: math.unit(8, "meters"),
  10625. default: true
  10626. },
  10627. {
  10628. name: "Macro",
  10629. height: math.unit(18, "meters")
  10630. },
  10631. {
  10632. name: "Macro+",
  10633. height: math.unit(88, "meters")
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10639. {
  10640. front: {
  10641. height: math.unit(12, "feet"),
  10642. weight: math.unit(1.5, "tons"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/dydros/front.svg",
  10646. extra: 863 / 800,
  10647. bottom: 0.015
  10648. }
  10649. },
  10650. back: {
  10651. height: math.unit(12, "feet"),
  10652. weight: math.unit(1.5, "tons"),
  10653. name: "Back",
  10654. image: {
  10655. source: "./media/characters/dydros/back.svg",
  10656. extra: 900 / 843,
  10657. bottom: 0.005
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(12, "feet"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(100, "kg"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/riggi/front.svg",
  10678. extra: 5787 / 5303
  10679. }
  10680. },
  10681. hyper: {
  10682. height: math.unit(6 * 5 / 3, "feet"),
  10683. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10684. name: "Hyper",
  10685. image: {
  10686. source: "./media/characters/riggi/hyper.svg",
  10687. extra: 3595 / 3485
  10688. }
  10689. },
  10690. },
  10691. [
  10692. {
  10693. name: "Small Macro",
  10694. height: math.unit(50, "feet")
  10695. },
  10696. {
  10697. name: "Default",
  10698. height: math.unit(200, "feet"),
  10699. default: true
  10700. },
  10701. {
  10702. name: "Loom",
  10703. height: math.unit(10000, "feet")
  10704. },
  10705. {
  10706. name: "Cruising Altitude",
  10707. height: math.unit(30000, "feet")
  10708. },
  10709. {
  10710. name: "Megamacro",
  10711. height: math.unit(100, "miles")
  10712. },
  10713. {
  10714. name: "Continent Sized",
  10715. height: math.unit(2800, "miles")
  10716. },
  10717. {
  10718. name: "Earth Sized",
  10719. height: math.unit(8000, "miles")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(250, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/alexi/front.svg",
  10732. extra: 3483 / 3291,
  10733. bottom: 0.04
  10734. }
  10735. },
  10736. back: {
  10737. height: math.unit(6, "feet"),
  10738. weight: math.unit(250, "lb"),
  10739. name: "Back",
  10740. image: {
  10741. source: "./media/characters/alexi/back.svg",
  10742. extra: 3533 / 3356,
  10743. bottom: 0.021
  10744. }
  10745. },
  10746. frontTransforming: {
  10747. height: math.unit(8.58, "feet"),
  10748. weight: math.unit(1300, "lb"),
  10749. name: "Transforming",
  10750. image: {
  10751. source: "./media/characters/alexi/front-transforming.svg",
  10752. extra: 437 / 409,
  10753. bottom: 19 / 458.66
  10754. }
  10755. },
  10756. frontTransformed: {
  10757. height: math.unit(12.5, "feet"),
  10758. weight: math.unit(4000, "lb"),
  10759. name: "Transformed",
  10760. image: {
  10761. source: "./media/characters/alexi/front-transformed.svg",
  10762. extra: 639 / 614,
  10763. bottom: 30.55 / 671
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(14, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Minimacro",
  10775. height: math.unit(30, "meters")
  10776. },
  10777. {
  10778. name: "Macro",
  10779. height: math.unit(500, "meters")
  10780. },
  10781. {
  10782. name: "Megamacro",
  10783. height: math.unit(9000, "km")
  10784. },
  10785. {
  10786. name: "Teramacro",
  10787. height: math.unit(384000, "km")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6, "feet"),
  10796. weight: math.unit(150, "lb"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/kayroo/front.svg",
  10800. extra: 1153 / 1038,
  10801. bottom: 0.06
  10802. }
  10803. },
  10804. foot: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(150, "lb"),
  10807. name: "Foot",
  10808. image: {
  10809. source: "./media/characters/kayroo/foot.svg"
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(8, "feet"),
  10817. default: true
  10818. },
  10819. {
  10820. name: "Minimacro",
  10821. height: math.unit(250, "feet")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(2800, "feet")
  10826. },
  10827. {
  10828. name: "Megamacro",
  10829. height: math.unit(5200, "feet")
  10830. },
  10831. {
  10832. name: "Gigamacro",
  10833. height: math.unit(27000, "feet")
  10834. },
  10835. {
  10836. name: "Omega",
  10837. height: math.unit(45000, "feet")
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(18, "feet"),
  10846. weight: math.unit(5800, "lb"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/rhys/front.svg",
  10850. extra: 3386 / 3090,
  10851. bottom: 0.07
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(18, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Working Size",
  10863. height: math.unit(200, "feet")
  10864. },
  10865. {
  10866. name: "Demolition Size",
  10867. height: math.unit(2000, "feet")
  10868. },
  10869. {
  10870. name: "Maximum Licensed Size",
  10871. height: math.unit(5, "miles")
  10872. },
  10873. {
  10874. name: "Maximum Observed Size",
  10875. height: math.unit(10, "yottameters")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(6, "feet"),
  10884. weight: math.unit(250, "lb"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/toto/front.svg",
  10888. extra: 527 / 479,
  10889. bottom: 0.05
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Micro",
  10896. height: math.unit(3, "feet")
  10897. },
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(10, "feet")
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(150, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Megamacro",
  10909. height: math.unit(1200, "feet")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "King", species: ["lion"], tags: ["anthro"] },
  10915. {
  10916. back: {
  10917. height: math.unit(6, "feet"),
  10918. weight: math.unit(150, "lb"),
  10919. name: "Back",
  10920. image: {
  10921. source: "./media/characters/king/back.svg"
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Micro",
  10928. height: math.unit(2, "inches")
  10929. },
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(8, "feet")
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(200, "feet"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Megamacro",
  10941. height: math.unit(50, "miles")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10947. {
  10948. anthro: {
  10949. height: math.unit(6 + 5 / 12, "feet"),
  10950. weight: math.unit(280, "lb"),
  10951. name: "Anthro",
  10952. image: {
  10953. source: "./media/characters/cordite/anthro.svg",
  10954. extra: 1986 / 1905,
  10955. bottom: 0.025
  10956. }
  10957. },
  10958. feral: {
  10959. height: math.unit(2, "feet"),
  10960. weight: math.unit(90, "lb"),
  10961. name: "Feral",
  10962. image: {
  10963. source: "./media/characters/cordite/feral.svg",
  10964. extra: 1260 / 755,
  10965. bottom: 0.05
  10966. }
  10967. },
  10968. },
  10969. [
  10970. {
  10971. name: "Normal",
  10972. height: math.unit(6 + 5 / 12, "feet"),
  10973. default: true
  10974. },
  10975. ]
  10976. ))
  10977. characterMakers.push(() => makeCharacter(
  10978. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10979. {
  10980. front: {
  10981. height: math.unit(6, "feet"),
  10982. weight: math.unit(150, "lb"),
  10983. name: "Front",
  10984. image: {
  10985. source: "./media/characters/pianostrong/front.svg",
  10986. extra: 6577 / 6254,
  10987. bottom: 0.02
  10988. }
  10989. },
  10990. side: {
  10991. height: math.unit(6, "feet"),
  10992. weight: math.unit(150, "lb"),
  10993. name: "Side",
  10994. image: {
  10995. source: "./media/characters/pianostrong/side.svg",
  10996. extra: 6106 / 5730
  10997. }
  10998. },
  10999. back: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Back",
  11003. image: {
  11004. source: "./media/characters/pianostrong/back.svg",
  11005. extra: 6085 / 5733,
  11006. bottom: 0.01
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Macro",
  11013. height: math.unit(100, "feet")
  11014. },
  11015. {
  11016. name: "Macro+",
  11017. height: math.unit(300, "feet"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Macro++",
  11022. height: math.unit(1000, "feet")
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(150, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/kona/front.svg",
  11035. extra: 2960 / 2629,
  11036. bottom: 0.005
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(11 + 8 / 12, "feet")
  11044. },
  11045. {
  11046. name: "Macro",
  11047. height: math.unit(850, "feet"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Macro+",
  11052. height: math.unit(1.5, "km"),
  11053. default: true
  11054. },
  11055. {
  11056. name: "Megamacro",
  11057. height: math.unit(80, "miles")
  11058. },
  11059. {
  11060. name: "Gigamacro",
  11061. height: math.unit(3500, "miles")
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11067. {
  11068. side: {
  11069. height: math.unit(1.9, "meters"),
  11070. weight: math.unit(326, "kg"),
  11071. name: "Side",
  11072. image: {
  11073. source: "./media/characters/levi/side.svg",
  11074. extra: 1704 / 1334,
  11075. bottom: 0.02
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(1.9, "meters"),
  11083. default: true
  11084. },
  11085. {
  11086. name: "Macro",
  11087. height: math.unit(20, "meters")
  11088. },
  11089. {
  11090. name: "Macro+",
  11091. height: math.unit(200, "meters")
  11092. },
  11093. {
  11094. name: "Megamacro",
  11095. height: math.unit(2, "km")
  11096. },
  11097. {
  11098. name: "Megamacro+",
  11099. height: math.unit(20, "km")
  11100. },
  11101. {
  11102. name: "Gigamacro",
  11103. height: math.unit(2500, "km")
  11104. },
  11105. {
  11106. name: "Gigamacro+",
  11107. height: math.unit(120000, "km")
  11108. },
  11109. {
  11110. name: "Teramacro",
  11111. height: math.unit(7.77e6, "km")
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(6 + 4 / 12, "feet"),
  11120. weight: math.unit(188, "lb"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/bmc/front.svg",
  11124. extra: 1067 / 1022,
  11125. bottom: 0.047
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Human-sized",
  11132. height: math.unit(6 + 4 / 12, "feet")
  11133. },
  11134. {
  11135. name: "Small",
  11136. height: math.unit(250, "feet")
  11137. },
  11138. {
  11139. name: "Normal",
  11140. height: math.unit(1250, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Good Day",
  11145. height: math.unit(88, "miles")
  11146. },
  11147. {
  11148. name: "Largest Measured Size",
  11149. height: math.unit(11.2e6, "lightyears")
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11155. {
  11156. front: {
  11157. height: math.unit(20, "feet"),
  11158. weight: math.unit(2016, "kg"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/sven-the-kaiju/front.svg",
  11162. extra: 1277/1250,
  11163. bottom: 35/1312
  11164. }
  11165. },
  11166. mouth: {
  11167. height: math.unit(1.85, "feet"),
  11168. name: "Mouth",
  11169. image: {
  11170. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Fairy",
  11177. height: math.unit(6, "inches")
  11178. },
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(20, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Rampage",
  11186. height: math.unit(200, "feet")
  11187. },
  11188. {
  11189. name: "Archfey Forest Guardian",
  11190. height: math.unit(1, "mile")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(4, "meters"),
  11199. weight: math.unit(2, "tons"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/marik/front.svg",
  11203. extra: 1057 / 1003,
  11204. bottom: 0.08
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(4, "meters"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Macro",
  11216. height: math.unit(20, "meters")
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(50, "km")
  11221. },
  11222. {
  11223. name: "Gigamacro",
  11224. height: math.unit(100, "km")
  11225. },
  11226. {
  11227. name: "Alpha Macro",
  11228. height: math.unit(7.88e7, "yottameters")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(6, "feet"),
  11237. weight: math.unit(110, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/mel/front.svg",
  11241. extra: 736 / 617,
  11242. bottom: 0.017
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Pico",
  11249. height: math.unit(3, "pm")
  11250. },
  11251. {
  11252. name: "Nano",
  11253. height: math.unit(3, "nm")
  11254. },
  11255. {
  11256. name: "Micro",
  11257. height: math.unit(0.3, "mm"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Micro+",
  11262. height: math.unit(3, "mm")
  11263. },
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(5 + 10.5 / 12, "feet")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11272. {
  11273. kaiju: {
  11274. height: math.unit(1.75, "meters"),
  11275. weight: math.unit(55, "kg"),
  11276. name: "Kaiju",
  11277. image: {
  11278. source: "./media/characters/lykonous/kaiju.svg",
  11279. extra: 1055 / 946,
  11280. bottom: 0.135
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Normal",
  11287. height: math.unit(2.5, "meters"),
  11288. default: true
  11289. },
  11290. {
  11291. name: "Kaiju Dragon",
  11292. height: math.unit(60, "meters")
  11293. },
  11294. {
  11295. name: "Mega Kaiju",
  11296. height: math.unit(120, "km")
  11297. },
  11298. {
  11299. name: "Giga Kaiju",
  11300. height: math.unit(200, "megameters")
  11301. },
  11302. {
  11303. name: "Terra Kaiju",
  11304. height: math.unit(400, "gigameters")
  11305. },
  11306. {
  11307. name: "Kaiju Dragon God",
  11308. height: math.unit(13000, "exaparsecs")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(6, "feet"),
  11317. weight: math.unit(150, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/blü/front.svg",
  11321. extra: 1883 / 1564,
  11322. bottom: 0.031
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(13, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Big Boi",
  11334. height: math.unit(150, "meters")
  11335. },
  11336. {
  11337. name: "Mini Stomper",
  11338. height: math.unit(300, "meters")
  11339. },
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(1000, "meters")
  11343. },
  11344. {
  11345. name: "Megamacro",
  11346. height: math.unit(11000, "meters")
  11347. },
  11348. {
  11349. name: "Gigamacro",
  11350. height: math.unit(11000, "km")
  11351. },
  11352. {
  11353. name: "Teramacro",
  11354. height: math.unit(420000, "km")
  11355. },
  11356. {
  11357. name: "Examacro",
  11358. height: math.unit(120, "parsecs")
  11359. },
  11360. {
  11361. name: "God Tho",
  11362. height: math.unit(98000000000, "parsecs")
  11363. },
  11364. ]
  11365. ))
  11366. characterMakers.push(() => makeCharacter(
  11367. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11368. {
  11369. taurFront: {
  11370. height: math.unit(6, "feet"),
  11371. weight: math.unit(200, "lb"),
  11372. name: "Taur (Front)",
  11373. image: {
  11374. source: "./media/characters/scales/taur-front.svg",
  11375. extra: 1,
  11376. bottom: 0.05
  11377. }
  11378. },
  11379. taurBack: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(200, "lb"),
  11382. name: "Taur (Back)",
  11383. image: {
  11384. source: "./media/characters/scales/taur-back.svg",
  11385. extra: 1,
  11386. bottom: 0.08
  11387. }
  11388. },
  11389. anthro: {
  11390. height: math.unit(6 * 7 / 12, "feet"),
  11391. weight: math.unit(100, "lb"),
  11392. name: "Anthro",
  11393. image: {
  11394. source: "./media/characters/scales/anthro.svg",
  11395. extra: 1,
  11396. bottom: 0.06
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(12, "feet"),
  11404. default: true
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(150, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/koragos/front.svg",
  11417. extra: 841 / 794,
  11418. bottom: 0.035
  11419. }
  11420. },
  11421. back: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(150, "lb"),
  11424. name: "Back",
  11425. image: {
  11426. source: "./media/characters/koragos/back.svg",
  11427. extra: 841 / 810,
  11428. bottom: 0.022
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(6 + 11 / 12, "feet"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(490, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(10, "miles")
  11445. },
  11446. {
  11447. name: "Gigamacro",
  11448. height: math.unit(50, "miles")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(250, "lb"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/xylrem/front.svg",
  11461. extra: 3323 / 3050,
  11462. bottom: 0.065
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Micro",
  11469. height: math.unit(4, "feet")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(16, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(2720, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(25000, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(8, "feet"),
  11491. weight: math.unit(250, "kg"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/ikideru/front.svg",
  11495. extra: 930 / 870,
  11496. bottom: 0.087
  11497. }
  11498. },
  11499. back: {
  11500. height: math.unit(8, "feet"),
  11501. weight: math.unit(250, "kg"),
  11502. name: "Back",
  11503. image: {
  11504. source: "./media/characters/ikideru/back.svg",
  11505. extra: 919 / 852,
  11506. bottom: 0.055
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Rare",
  11513. height: math.unit(8, "feet"),
  11514. default: true
  11515. },
  11516. {
  11517. name: "Playful Loom",
  11518. height: math.unit(80, "feet")
  11519. },
  11520. {
  11521. name: "City Leaner",
  11522. height: math.unit(230, "feet")
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(2500, "feet")
  11527. },
  11528. {
  11529. name: "Gigamacro",
  11530. height: math.unit(26400, "feet")
  11531. },
  11532. {
  11533. name: "Tectonic Shifter",
  11534. height: math.unit(1.7, "megameters")
  11535. },
  11536. {
  11537. name: "Planet Carer",
  11538. height: math.unit(21, "megameters")
  11539. },
  11540. {
  11541. name: "God",
  11542. height: math.unit(11157.22, "parsecs")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(120, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/neo/front.svg"
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Micro",
  11561. height: math.unit(2, "inches"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Human Size",
  11566. height: math.unit(5 + 8 / 12, "feet")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(13 + 10 / 12, "feet"),
  11575. weight: math.unit(5320, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/chauncey-chantz/front.svg",
  11579. extra: 1587 / 1435,
  11580. bottom: 0.02
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(13 + 10 / 12, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(45, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(250, "miles")
  11597. },
  11598. {
  11599. name: "Planetary",
  11600. height: math.unit(10000, "miles")
  11601. },
  11602. {
  11603. name: "Galactic",
  11604. height: math.unit(40000, "parsecs")
  11605. },
  11606. {
  11607. name: "Universal",
  11608. height: math.unit(1, "yottameter")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11614. {
  11615. front: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(150, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/epifox/front.svg",
  11621. extra: 1,
  11622. bottom: 0.075
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Micro",
  11629. height: math.unit(6, "inches")
  11630. },
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(12, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(3810, "feet")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(500, "miles")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(1.8796, "m"),
  11651. weight: math.unit(230, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/colin-t/front.svg",
  11655. extra: 1272 / 1193,
  11656. bottom: 0.07
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(0.571, "meters")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(1.8796, "meters"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Tall",
  11672. height: math.unit(4, "meters")
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(67.241, "meters")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(371.856, "meters")
  11681. },
  11682. {
  11683. name: "Planetary",
  11684. height: math.unit(12631.5689, "km")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(1.85, "meters"),
  11693. weight: math.unit(80, "kg"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/matvei/front.svg",
  11697. extra: 614 / 594,
  11698. bottom: 0.01
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(1.85, "meters"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(5 + 9 / 12, "feet"),
  11715. weight: math.unit(70, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/quincy/front.svg",
  11719. extra: 3041 / 2751
  11720. }
  11721. },
  11722. back: {
  11723. height: math.unit(5 + 9 / 12, "feet"),
  11724. weight: math.unit(70, "lb"),
  11725. name: "Back",
  11726. image: {
  11727. source: "./media/characters/quincy/back.svg",
  11728. extra: 3041 / 2751
  11729. }
  11730. },
  11731. flying: {
  11732. height: math.unit(5 + 4 / 12, "feet"),
  11733. weight: math.unit(70, "lb"),
  11734. name: "Flying",
  11735. image: {
  11736. source: "./media/characters/quincy/flying.svg",
  11737. extra: 1044 / 930
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Micro",
  11744. height: math.unit(3, "cm")
  11745. },
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(5 + 9 / 12, "feet")
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(200, "meters"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Megamacro",
  11757. height: math.unit(1000, "meters")
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(4 + 7 / 12, "feet"),
  11766. weight: math.unit(50, "lb"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/vanrel/front.svg",
  11770. extra: 1,
  11771. bottom: 0.02
  11772. }
  11773. },
  11774. frontAlt: {
  11775. height: math.unit(4 + 7 / 12, "feet"),
  11776. weight: math.unit(50, "lb"),
  11777. name: "Front-alt",
  11778. image: {
  11779. source: "./media/characters/vanrel/front-alt.svg",
  11780. extra: 1,
  11781. bottom: 15 / 1511
  11782. }
  11783. },
  11784. elemental: {
  11785. height: math.unit(3, "feet"),
  11786. weight: math.unit(50, "lb"),
  11787. name: "Elemental",
  11788. image: {
  11789. source: "./media/characters/vanrel/elemental.svg",
  11790. extra: 192.3 / 162.8,
  11791. bottom: 1.79 / 194.17
  11792. }
  11793. },
  11794. side: {
  11795. height: math.unit(4 + 7 / 12, "feet"),
  11796. weight: math.unit(50, "lb"),
  11797. name: "Side",
  11798. image: {
  11799. source: "./media/characters/vanrel/side.svg",
  11800. extra: 1,
  11801. bottom: 0.025
  11802. }
  11803. },
  11804. tome: {
  11805. height: math.unit(1.35, "feet"),
  11806. weight: math.unit(10, "lb"),
  11807. name: "Vanrel's Tome",
  11808. rename: true,
  11809. image: {
  11810. source: "./media/characters/vanrel/tome.svg"
  11811. }
  11812. },
  11813. beans: {
  11814. height: math.unit(0.89, "feet"),
  11815. name: "Beans",
  11816. image: {
  11817. source: "./media/characters/vanrel/beans.svg"
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(4 + 7 / 12, "feet"),
  11825. default: true
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(7 + 5 / 12, "feet"),
  11834. weight: math.unit(150, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/kuiper-vanrel/front.svg",
  11838. extra: 1118 / 1068,
  11839. bottom: 0.09
  11840. }
  11841. },
  11842. foot: {
  11843. height: math.unit(0.55, "meters"),
  11844. name: "Foot",
  11845. image: {
  11846. source: "./media/characters/kuiper-vanrel/foot.svg",
  11847. }
  11848. },
  11849. battle: {
  11850. height: math.unit(6.824, "feet"),
  11851. weight: math.unit(150, "lb"),
  11852. name: "Battle",
  11853. image: {
  11854. source: "./media/characters/kuiper-vanrel/battle.svg",
  11855. extra: 1466 / 1327,
  11856. bottom: 29 / 1492.5
  11857. }
  11858. },
  11859. battleAlt: {
  11860. height: math.unit(6.824, "feet"),
  11861. weight: math.unit(150, "lb"),
  11862. name: "Battle (Alt)",
  11863. image: {
  11864. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11865. extra: 2081 / 1965,
  11866. bottom: 40 / 2121
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Normal",
  11873. height: math.unit(7 + 5 / 12, "feet"),
  11874. default: true
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(8 + 5 / 12, "feet"),
  11883. weight: math.unit(150, "lb"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/keset-vanrel/front.svg",
  11887. extra: 1150 / 1084,
  11888. bottom: 0.05
  11889. }
  11890. },
  11891. hand: {
  11892. height: math.unit(0.6, "meters"),
  11893. name: "Hand",
  11894. image: {
  11895. source: "./media/characters/keset-vanrel/hand.svg"
  11896. }
  11897. },
  11898. foot: {
  11899. height: math.unit(0.94978, "meters"),
  11900. name: "Foot",
  11901. image: {
  11902. source: "./media/characters/keset-vanrel/foot.svg"
  11903. }
  11904. },
  11905. battle: {
  11906. height: math.unit(7.408, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Battle",
  11909. image: {
  11910. source: "./media/characters/keset-vanrel/battle.svg",
  11911. extra: 1890 / 1386,
  11912. bottom: 73.28 / 1970
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(8 + 5 / 12, "feet"),
  11920. default: true
  11921. },
  11922. ]
  11923. ))
  11924. characterMakers.push(() => makeCharacter(
  11925. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11926. {
  11927. front: {
  11928. height: math.unit(6, "feet"),
  11929. weight: math.unit(150, "lb"),
  11930. name: "Front",
  11931. image: {
  11932. source: "./media/characters/neos/front.svg",
  11933. extra: 1696 / 992,
  11934. bottom: 0.14
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(54, "cm"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(100, "m")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(10, "km")
  11951. },
  11952. {
  11953. name: "Megamacro+",
  11954. height: math.unit(100, "km")
  11955. },
  11956. {
  11957. name: "Gigamacro",
  11958. height: math.unit(100, "Mm")
  11959. },
  11960. {
  11961. name: "Teramacro",
  11962. height: math.unit(100, "Gm")
  11963. },
  11964. {
  11965. name: "Examacro",
  11966. height: math.unit(100, "Em")
  11967. },
  11968. {
  11969. name: "Godly",
  11970. height: math.unit(10000, "Ym")
  11971. },
  11972. {
  11973. name: "Beyond Godly",
  11974. height: math.unit(25, "multiverses")
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11980. {
  11981. feminine: {
  11982. height: math.unit(5, "feet"),
  11983. weight: math.unit(100, "lb"),
  11984. name: "Feminine",
  11985. image: {
  11986. source: "./media/characters/sammy-mouse/feminine.svg",
  11987. extra: 2526 / 2425,
  11988. bottom: 0.123
  11989. }
  11990. },
  11991. masculine: {
  11992. height: math.unit(5, "feet"),
  11993. weight: math.unit(100, "lb"),
  11994. name: "Masculine",
  11995. image: {
  11996. source: "./media/characters/sammy-mouse/masculine.svg",
  11997. extra: 2526 / 2425,
  11998. bottom: 0.123
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Micro",
  12005. height: math.unit(5, "inches")
  12006. },
  12007. {
  12008. name: "Normal",
  12009. height: math.unit(5, "feet"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(60, "feet")
  12015. },
  12016. ]
  12017. ))
  12018. characterMakers.push(() => makeCharacter(
  12019. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12020. {
  12021. front: {
  12022. height: math.unit(4, "feet"),
  12023. weight: math.unit(50, "lb"),
  12024. name: "Front",
  12025. image: {
  12026. source: "./media/characters/kole/front.svg",
  12027. extra: 1423 / 1303,
  12028. bottom: 0.025
  12029. }
  12030. },
  12031. back: {
  12032. height: math.unit(4, "feet"),
  12033. weight: math.unit(50, "lb"),
  12034. name: "Back",
  12035. image: {
  12036. source: "./media/characters/kole/back.svg",
  12037. extra: 1426 / 1280,
  12038. bottom: 0.02
  12039. }
  12040. },
  12041. },
  12042. [
  12043. {
  12044. name: "Normal",
  12045. height: math.unit(4, "feet"),
  12046. default: true
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12052. {
  12053. front: {
  12054. height: math.unit(2 + 6 / 12, "feet"),
  12055. weight: math.unit(20, "lb"),
  12056. name: "Front",
  12057. image: {
  12058. source: "./media/characters/rufran/front.svg",
  12059. extra: 2041 / 1839,
  12060. bottom: 0.055
  12061. }
  12062. },
  12063. back: {
  12064. height: math.unit(2 + 6 / 12, "feet"),
  12065. weight: math.unit(20, "lb"),
  12066. name: "Back",
  12067. image: {
  12068. source: "./media/characters/rufran/back.svg",
  12069. extra: 2054 / 1839,
  12070. bottom: 0.01
  12071. }
  12072. },
  12073. hand: {
  12074. height: math.unit(0.2166, "meters"),
  12075. name: "Hand",
  12076. image: {
  12077. source: "./media/characters/rufran/hand.svg"
  12078. }
  12079. },
  12080. foot: {
  12081. height: math.unit(0.185, "meters"),
  12082. name: "Foot",
  12083. image: {
  12084. source: "./media/characters/rufran/foot.svg"
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Micro",
  12091. height: math.unit(1, "inch")
  12092. },
  12093. {
  12094. name: "Normal",
  12095. height: math.unit(2 + 6 / 12, "feet"),
  12096. default: true
  12097. },
  12098. {
  12099. name: "Big",
  12100. height: math.unit(60, "feet")
  12101. },
  12102. {
  12103. name: "Macro",
  12104. height: math.unit(325, "feet")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12110. {
  12111. front: {
  12112. height: math.unit(0.3, "meters"),
  12113. weight: math.unit(3.5, "kg"),
  12114. name: "Front",
  12115. image: {
  12116. source: "./media/characters/chip/front.svg",
  12117. extra: 748 / 674
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Micro",
  12124. height: math.unit(1, "inch"),
  12125. default: true
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12131. {
  12132. side: {
  12133. height: math.unit(2.3, "meters"),
  12134. weight: math.unit(3500, "lb"),
  12135. name: "Side",
  12136. image: {
  12137. source: "./media/characters/torvid/side.svg",
  12138. extra: 1972 / 722,
  12139. bottom: 0.035
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Normal",
  12146. height: math.unit(2.3, "meters"),
  12147. default: true
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(2, "meters"),
  12156. weight: math.unit(150.5, "kg"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/susan/front.svg",
  12160. extra: 693 / 635,
  12161. bottom: 0.05
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(505, "miles"),
  12169. default: true
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(150, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/raindrops/front.svg",
  12182. extra: 2655 / 2461,
  12183. bottom: 49 / 2705
  12184. }
  12185. },
  12186. back: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(150, "lb"),
  12189. name: "Back",
  12190. image: {
  12191. source: "./media/characters/raindrops/back.svg",
  12192. extra: 2574 / 2400,
  12193. bottom: 65 / 2634
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Micro",
  12200. height: math.unit(6, "inches")
  12201. },
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(6 + 2 / 12, "feet")
  12205. },
  12206. {
  12207. name: "Macro",
  12208. height: math.unit(131, "feet"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Megamacro",
  12213. height: math.unit(15, "miles")
  12214. },
  12215. {
  12216. name: "Gigamacro",
  12217. height: math.unit(4000, "miles")
  12218. },
  12219. {
  12220. name: "Teramacro",
  12221. height: math.unit(315000, "miles")
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(2.794, "meters"),
  12230. weight: math.unit(325, "kg"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/tezwa/front.svg",
  12234. extra: 2083 / 1906,
  12235. bottom: 0.031
  12236. }
  12237. },
  12238. foot: {
  12239. height: math.unit(0.687, "meters"),
  12240. name: "Foot",
  12241. image: {
  12242. source: "./media/characters/tezwa/foot.svg"
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(9 + 2 / 12, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(58, "feet"),
  12259. weight: math.unit(89000, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/typhus/front.svg",
  12263. extra: 816 / 800,
  12264. bottom: 0.065
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Macro",
  12271. height: math.unit(58, "feet"),
  12272. default: true
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(12, "feet"),
  12281. weight: math.unit(6, "tonnes"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/lyra-von-wulf/front.svg",
  12285. extra: 1,
  12286. bottom: 0.10
  12287. }
  12288. },
  12289. frontMecha: {
  12290. height: math.unit(12, "feet"),
  12291. weight: math.unit(12, "tonnes"),
  12292. name: "Front (Mecha)",
  12293. image: {
  12294. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12295. extra: 1,
  12296. bottom: 0.042
  12297. }
  12298. },
  12299. maw: {
  12300. height: math.unit(2.2, "feet"),
  12301. name: "Maw",
  12302. image: {
  12303. source: "./media/characters/lyra-von-wulf/maw.svg"
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(12, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Classic",
  12315. height: math.unit(50, "feet")
  12316. },
  12317. {
  12318. name: "Macro",
  12319. height: math.unit(500, "feet")
  12320. },
  12321. {
  12322. name: "Megamacro",
  12323. height: math.unit(1, "mile")
  12324. },
  12325. {
  12326. name: "Gigamacro",
  12327. height: math.unit(400, "miles")
  12328. },
  12329. {
  12330. name: "Teramacro",
  12331. height: math.unit(22000, "miles")
  12332. },
  12333. {
  12334. name: "Solarmacro",
  12335. height: math.unit(8600000, "miles")
  12336. },
  12337. {
  12338. name: "Galactic",
  12339. height: math.unit(1057000, "lightyears")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(6 + 10 / 12, "feet"),
  12348. weight: math.unit(150, "lb"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/dixon/front.svg",
  12352. extra: 3361 / 3209,
  12353. bottom: 0.01
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Normal",
  12360. height: math.unit(6 + 10 / 12, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Big",
  12365. height: math.unit(12, "meters")
  12366. },
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(500, "meters")
  12370. },
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(2, "km")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(185, "cm"),
  12382. weight: math.unit(68, "kg"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/kauko/front.svg",
  12386. extra: 1455 / 1421,
  12387. bottom: 0.03
  12388. }
  12389. },
  12390. back: {
  12391. height: math.unit(185, "cm"),
  12392. weight: math.unit(68, "kg"),
  12393. name: "Back",
  12394. image: {
  12395. source: "./media/characters/kauko/back.svg",
  12396. extra: 1455 / 1421,
  12397. bottom: 0.004
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(185, "cm"),
  12405. default: true
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12411. {
  12412. front: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(150, "kg"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/varg/front.svg",
  12418. extra: 1108 / 1018,
  12419. bottom: 0.0375
  12420. }
  12421. },
  12422. },
  12423. [
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(5, "meters")
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(200, "meters")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(20, "kilometers")
  12435. },
  12436. {
  12437. name: "True Size",
  12438. height: math.unit(211, "km"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Gigamacro",
  12443. height: math.unit(1000, "km")
  12444. },
  12445. {
  12446. name: "Gigamacro+",
  12447. height: math.unit(8000, "km")
  12448. },
  12449. {
  12450. name: "Teramacro",
  12451. height: math.unit(1000000, "km")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12457. {
  12458. front: {
  12459. height: math.unit(7 + 7 / 12, "feet"),
  12460. weight: math.unit(267, "lb"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/dayza/front.svg",
  12464. extra: 1262 / 1200,
  12465. bottom: 0.035
  12466. }
  12467. },
  12468. side: {
  12469. height: math.unit(7 + 7 / 12, "feet"),
  12470. weight: math.unit(267, "lb"),
  12471. name: "Side",
  12472. image: {
  12473. source: "./media/characters/dayza/side.svg",
  12474. extra: 1295 / 1245,
  12475. bottom: 0.05
  12476. }
  12477. },
  12478. back: {
  12479. height: math.unit(7 + 7 / 12, "feet"),
  12480. weight: math.unit(267, "lb"),
  12481. name: "Back",
  12482. image: {
  12483. source: "./media/characters/dayza/back.svg",
  12484. extra: 1241 / 1170
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(7 + 7 / 12, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Macro",
  12496. height: math.unit(155, "feet")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(6 + 5 / 12, "feet"),
  12505. weight: math.unit(160, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/xanthos/front.svg",
  12509. extra: 1,
  12510. bottom: 0.04
  12511. }
  12512. },
  12513. back: {
  12514. height: math.unit(6 + 5 / 12, "feet"),
  12515. weight: math.unit(160, "lb"),
  12516. name: "Back",
  12517. image: {
  12518. source: "./media/characters/xanthos/back.svg",
  12519. extra: 1,
  12520. bottom: 0.03
  12521. }
  12522. },
  12523. hand: {
  12524. height: math.unit(0.928, "feet"),
  12525. name: "Hand",
  12526. image: {
  12527. source: "./media/characters/xanthos/hand.svg"
  12528. }
  12529. },
  12530. foot: {
  12531. height: math.unit(1.286, "feet"),
  12532. name: "Foot",
  12533. image: {
  12534. source: "./media/characters/xanthos/foot.svg"
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(6 + 5 / 12, "feet"),
  12542. default: true
  12543. },
  12544. {
  12545. name: "Normal+",
  12546. height: math.unit(6, "meters")
  12547. },
  12548. {
  12549. name: "Macro",
  12550. height: math.unit(40, "feet")
  12551. },
  12552. {
  12553. name: "Macro+",
  12554. height: math.unit(200, "meters")
  12555. },
  12556. {
  12557. name: "Megamacro",
  12558. height: math.unit(20, "km")
  12559. },
  12560. {
  12561. name: "Megamacro+",
  12562. height: math.unit(100, "km")
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(6 + 3 / 12, "feet"),
  12571. weight: math.unit(215, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/grynn/front.svg",
  12575. extra: 4627 / 4209,
  12576. bottom: 0.047
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Micro",
  12583. height: math.unit(6, "inches")
  12584. },
  12585. {
  12586. name: "Normal",
  12587. height: math.unit(6 + 3 / 12, "feet"),
  12588. default: true
  12589. },
  12590. {
  12591. name: "Big",
  12592. height: math.unit(104, "feet")
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(944, "feet")
  12597. },
  12598. {
  12599. name: "Macro+",
  12600. height: math.unit(9480, "feet")
  12601. },
  12602. {
  12603. name: "Megamacro",
  12604. height: math.unit(78752, "feet")
  12605. },
  12606. {
  12607. name: "Megamacro+",
  12608. height: math.unit(630128, "feet")
  12609. },
  12610. {
  12611. name: "Megamacro++",
  12612. height: math.unit(3150695, "feet")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(7 + 5 / 12, "feet"),
  12621. weight: math.unit(450, "lb"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/mocha-aura/front.svg",
  12625. extra: 1907 / 1817,
  12626. bottom: 0.04
  12627. }
  12628. },
  12629. back: {
  12630. height: math.unit(7 + 5 / 12, "feet"),
  12631. weight: math.unit(450, "lb"),
  12632. name: "Back",
  12633. image: {
  12634. source: "./media/characters/mocha-aura/back.svg",
  12635. extra: 1900 / 1825,
  12636. bottom: 0.045
  12637. }
  12638. },
  12639. },
  12640. [
  12641. {
  12642. name: "Nano",
  12643. height: math.unit(1, "nm")
  12644. },
  12645. {
  12646. name: "Megamicro",
  12647. height: math.unit(1, "mm")
  12648. },
  12649. {
  12650. name: "Micro",
  12651. height: math.unit(3, "inches")
  12652. },
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(7 + 5 / 12, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Macro",
  12660. height: math.unit(30, "feet")
  12661. },
  12662. {
  12663. name: "Megamacro",
  12664. height: math.unit(3500, "feet")
  12665. },
  12666. {
  12667. name: "Teramacro",
  12668. height: math.unit(500000, "miles")
  12669. },
  12670. {
  12671. name: "Petamacro",
  12672. height: math.unit(50000000000000000, "parsecs")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/ilisha-devya/front.svg",
  12685. extra: 1,
  12686. bottom: 0.175
  12687. }
  12688. },
  12689. back: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Back",
  12693. image: {
  12694. source: "./media/characters/ilisha-devya/back.svg",
  12695. extra: 1,
  12696. bottom: 0.015
  12697. }
  12698. },
  12699. },
  12700. [
  12701. {
  12702. name: "Macro",
  12703. height: math.unit(500, "feet"),
  12704. default: true
  12705. },
  12706. {
  12707. name: "Megamacro",
  12708. height: math.unit(10, "miles")
  12709. },
  12710. {
  12711. name: "Gigamacro",
  12712. height: math.unit(100000, "miles")
  12713. },
  12714. {
  12715. name: "Examacro",
  12716. height: math.unit(1e9, "lightyears")
  12717. },
  12718. {
  12719. name: "Omniversal",
  12720. height: math.unit(1e33, "lightyears")
  12721. },
  12722. {
  12723. name: "Beyond Infinite",
  12724. height: math.unit(1e100, "lightyears")
  12725. },
  12726. ]
  12727. ))
  12728. characterMakers.push(() => makeCharacter(
  12729. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12730. {
  12731. Side: {
  12732. height: math.unit(6, "feet"),
  12733. weight: math.unit(150, "lb"),
  12734. name: "Side",
  12735. image: {
  12736. source: "./media/characters/mira/side.svg",
  12737. extra: 900 / 799,
  12738. bottom: 0.02
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Human Size",
  12745. height: math.unit(6, "feet")
  12746. },
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(100, "feet"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(10, "miles")
  12755. },
  12756. {
  12757. name: "Gigamacro",
  12758. height: math.unit(25000, "miles")
  12759. },
  12760. {
  12761. name: "Teramacro",
  12762. height: math.unit(300, "AU")
  12763. },
  12764. {
  12765. name: "Full Size",
  12766. height: math.unit(4.5e10, "lightyears")
  12767. },
  12768. ]
  12769. ))
  12770. characterMakers.push(() => makeCharacter(
  12771. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12772. {
  12773. front: {
  12774. height: math.unit(6, "feet"),
  12775. weight: math.unit(150, "lb"),
  12776. name: "Front",
  12777. image: {
  12778. source: "./media/characters/holly/front.svg",
  12779. extra: 639 / 606
  12780. }
  12781. },
  12782. back: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Back",
  12786. image: {
  12787. source: "./media/characters/holly/back.svg",
  12788. extra: 623 / 598
  12789. }
  12790. },
  12791. frontWorking: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Front (Working)",
  12795. image: {
  12796. source: "./media/characters/holly/front-working.svg",
  12797. extra: 607 / 577,
  12798. bottom: 0.048
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Normal",
  12805. height: math.unit(12 + 3 / 12, "feet"),
  12806. default: true
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(6, "feet"),
  12815. weight: math.unit(150, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/porter/front.svg",
  12819. extra: 1,
  12820. bottom: 0.01
  12821. }
  12822. },
  12823. frontRobes: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(150, "lb"),
  12826. name: "Front (Robes)",
  12827. image: {
  12828. source: "./media/characters/porter/front-robes.svg",
  12829. extra: 1.01,
  12830. bottom: 0.01
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(11 + 9 / 12, "feet"),
  12838. default: true
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12844. {
  12845. legendary: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(150, "lb"),
  12848. name: "Legendary",
  12849. image: {
  12850. source: "./media/characters/lucy/legendary.svg",
  12851. extra: 1355 / 1100,
  12852. bottom: 0.045
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Legendary",
  12859. height: math.unit(86882 * 2, "miles"),
  12860. default: true
  12861. },
  12862. ]
  12863. ))
  12864. characterMakers.push(() => makeCharacter(
  12865. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12866. {
  12867. front: {
  12868. height: math.unit(6, "feet"),
  12869. weight: math.unit(150, "lb"),
  12870. name: "Front",
  12871. image: {
  12872. source: "./media/characters/drusilla/front.svg",
  12873. extra: 678 / 635,
  12874. bottom: 0.03
  12875. }
  12876. },
  12877. back: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(150, "lb"),
  12880. name: "Back",
  12881. image: {
  12882. source: "./media/characters/drusilla/back.svg",
  12883. extra: 678 / 635,
  12884. bottom: 0.005
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Macro",
  12891. height: math.unit(100, "feet")
  12892. },
  12893. {
  12894. name: "Canon Height",
  12895. height: math.unit(2000, "feet"),
  12896. default: true
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12902. {
  12903. front: {
  12904. height: math.unit(6, "feet"),
  12905. weight: math.unit(180, "lb"),
  12906. name: "Front",
  12907. image: {
  12908. source: "./media/characters/renard-thatch/front.svg",
  12909. extra: 2411 / 2275,
  12910. bottom: 0.01
  12911. }
  12912. },
  12913. frontPosing: {
  12914. height: math.unit(6, "feet"),
  12915. weight: math.unit(180, "lb"),
  12916. name: "Front (Posing)",
  12917. image: {
  12918. source: "./media/characters/renard-thatch/front-posing.svg",
  12919. extra: 2381 / 2261,
  12920. bottom: 0.01
  12921. }
  12922. },
  12923. back: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(180, "lb"),
  12926. name: "Back",
  12927. image: {
  12928. source: "./media/characters/renard-thatch/back.svg",
  12929. extra: 2428 / 2288
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Micro",
  12936. height: math.unit(3, "inches")
  12937. },
  12938. {
  12939. name: "Default",
  12940. height: math.unit(6, "feet"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Macro",
  12945. height: math.unit(75, "feet")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12951. {
  12952. front: {
  12953. height: math.unit(1450, "feet"),
  12954. weight: math.unit(1.21e6, "tons"),
  12955. name: "Front",
  12956. image: {
  12957. source: "./media/characters/sekvra/front.svg",
  12958. extra: 1,
  12959. bottom: 0.03
  12960. }
  12961. },
  12962. frontClothed: {
  12963. height: math.unit(1450, "feet"),
  12964. weight: math.unit(1.21e6, "tons"),
  12965. name: "Front (Clothed)",
  12966. image: {
  12967. source: "./media/characters/sekvra/front-clothed.svg",
  12968. extra: 1,
  12969. bottom: 0.03
  12970. }
  12971. },
  12972. side: {
  12973. height: math.unit(1450, "feet"),
  12974. weight: math.unit(1.21e6, "tons"),
  12975. name: "Side",
  12976. image: {
  12977. source: "./media/characters/sekvra/side.svg",
  12978. extra: 1,
  12979. bottom: 0.025
  12980. }
  12981. },
  12982. back: {
  12983. height: math.unit(1450, "feet"),
  12984. weight: math.unit(1.21e6, "tons"),
  12985. name: "Back",
  12986. image: {
  12987. source: "./media/characters/sekvra/back.svg",
  12988. extra: 1,
  12989. bottom: 0.005
  12990. }
  12991. },
  12992. },
  12993. [
  12994. {
  12995. name: "Macro",
  12996. height: math.unit(1450, "feet"),
  12997. default: true
  12998. },
  12999. {
  13000. name: "Megamacro",
  13001. height: math.unit(15000, "feet")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(150, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/carmine/front.svg",
  13014. extra: 1,
  13015. bottom: 0.035
  13016. }
  13017. },
  13018. frontArmor: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Front (Armor)",
  13022. image: {
  13023. source: "./media/characters/carmine/front-armor.svg",
  13024. extra: 1,
  13025. bottom: 0.035
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Large",
  13032. height: math.unit(1, "mile")
  13033. },
  13034. {
  13035. name: "Huge",
  13036. height: math.unit(40, "miles"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Colossal",
  13041. height: math.unit(2500, "miles")
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/elyssia/front.svg",
  13054. extra: 2201 / 2035,
  13055. bottom: 0.05
  13056. }
  13057. },
  13058. frontClothed: {
  13059. height: math.unit(6, "feet"),
  13060. weight: math.unit(150, "lb"),
  13061. name: "Front (Clothed)",
  13062. image: {
  13063. source: "./media/characters/elyssia/front-clothed.svg",
  13064. extra: 2201 / 2035,
  13065. bottom: 0.05
  13066. }
  13067. },
  13068. back: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(150, "lb"),
  13071. name: "Back",
  13072. image: {
  13073. source: "./media/characters/elyssia/back.svg",
  13074. extra: 2201 / 2035,
  13075. bottom: 0.013
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Smaller",
  13082. height: math.unit(150, "feet")
  13083. },
  13084. {
  13085. name: "Standard",
  13086. height: math.unit(1400, "feet"),
  13087. default: true
  13088. },
  13089. {
  13090. name: "Distracted",
  13091. height: math.unit(15000, "feet")
  13092. },
  13093. ]
  13094. ))
  13095. characterMakers.push(() => makeCharacter(
  13096. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13097. {
  13098. front: {
  13099. height: math.unit(7 + 4 / 12, "feet"),
  13100. weight: math.unit(500, "lb"),
  13101. name: "Front",
  13102. image: {
  13103. source: "./media/characters/geno-maxwell/front.svg",
  13104. extra: 2207 / 2040,
  13105. bottom: 0.015
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Micro",
  13112. height: math.unit(3, "inches")
  13113. },
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(7 + 4 / 12, "feet"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Macro",
  13121. height: math.unit(220, "feet")
  13122. },
  13123. {
  13124. name: "Megamacro",
  13125. height: math.unit(11, "miles")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(7 + 4 / 12, "feet"),
  13134. weight: math.unit(500, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/regena-maxwell/front.svg",
  13138. extra: 3115 / 2770,
  13139. bottom: 0.02
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(7 + 4 / 12, "feet"),
  13147. default: true
  13148. },
  13149. {
  13150. name: "Macro",
  13151. height: math.unit(220, "feet")
  13152. },
  13153. {
  13154. name: "Megamacro",
  13155. height: math.unit(11, "miles")
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(6, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13168. extra: 860 / 690,
  13169. bottom: 0.03
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Normal",
  13176. height: math.unit(1.7, "meters"),
  13177. default: true
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(6, "feet"),
  13186. weight: math.unit(150, "lb"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/quilly/front.svg",
  13190. extra: 890 / 776
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Gigamacro",
  13197. height: math.unit(404090, "miles"),
  13198. default: true
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(7 + 8 / 12, "feet"),
  13207. weight: math.unit(350, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/tempest/front.svg",
  13211. extra: 1175 / 1086,
  13212. bottom: 0.02
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(7 + 8 / 12, "feet"),
  13220. default: true
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13226. {
  13227. side: {
  13228. height: math.unit(4 + 5 / 12, "feet"),
  13229. weight: math.unit(80, "lb"),
  13230. name: "Side",
  13231. image: {
  13232. source: "./media/characters/rodger/side.svg",
  13233. extra: 1235 / 1118
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Micro",
  13240. height: math.unit(1, "inch")
  13241. },
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(4 + 5 / 12, "feet"),
  13245. default: true
  13246. },
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(120, "feet")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/danyel/front.svg",
  13262. extra: 1185 / 1123,
  13263. bottom: 0.05
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Shrunken",
  13270. height: math.unit(0.5, "mm")
  13271. },
  13272. {
  13273. name: "Micro",
  13274. height: math.unit(1, "mm"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Upsized",
  13279. height: math.unit(5 + 5 / 12, "feet")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(5 + 6 / 12, "feet"),
  13288. weight: math.unit(200, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/vivian-bijoux/front.svg",
  13292. extra: 1,
  13293. bottom: 0.072
  13294. }
  13295. },
  13296. },
  13297. [
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(5 + 6 / 12, "feet"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Bad Dream",
  13305. height: math.unit(500, "feet")
  13306. },
  13307. {
  13308. name: "Nightmare",
  13309. height: math.unit(500, "miles")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(6 + 1 / 12, "feet"),
  13318. weight: math.unit(260, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/zeta/front.svg",
  13322. extra: 1968 / 1889,
  13323. bottom: 0.06
  13324. }
  13325. },
  13326. back: {
  13327. height: math.unit(6 + 1 / 12, "feet"),
  13328. weight: math.unit(260, "lb"),
  13329. name: "Back",
  13330. image: {
  13331. source: "./media/characters/zeta/back.svg",
  13332. extra: 1944 / 1858,
  13333. bottom: 0.03
  13334. }
  13335. },
  13336. hand: {
  13337. height: math.unit(1.112, "feet"),
  13338. name: "Hand",
  13339. image: {
  13340. source: "./media/characters/zeta/hand.svg"
  13341. }
  13342. },
  13343. foot: {
  13344. height: math.unit(1.48, "feet"),
  13345. name: "Foot",
  13346. image: {
  13347. source: "./media/characters/zeta/foot.svg"
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Micro",
  13354. height: math.unit(6, "inches")
  13355. },
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(6 + 1 / 12, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(20, "feet")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6, "feet"),
  13372. weight: math.unit(150, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/jamie-larsen/front.svg",
  13376. extra: 962 / 933,
  13377. bottom: 0.02
  13378. }
  13379. },
  13380. back: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Back",
  13384. image: {
  13385. source: "./media/characters/jamie-larsen/back.svg",
  13386. extra: 997 / 946
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Macro",
  13393. height: math.unit(28 + 7 / 12, "feet"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Macro+",
  13398. height: math.unit(180, "feet")
  13399. },
  13400. {
  13401. name: "Megamacro",
  13402. height: math.unit(10, "miles")
  13403. },
  13404. {
  13405. name: "Gigamacro",
  13406. height: math.unit(200000, "miles")
  13407. },
  13408. ]
  13409. ))
  13410. characterMakers.push(() => makeCharacter(
  13411. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13412. {
  13413. front: {
  13414. height: math.unit(6, "feet"),
  13415. weight: math.unit(120, "lb"),
  13416. name: "Front",
  13417. image: {
  13418. source: "./media/characters/vance/front.svg",
  13419. extra: 1980 / 1890,
  13420. bottom: 0.09
  13421. }
  13422. },
  13423. back: {
  13424. height: math.unit(6, "feet"),
  13425. weight: math.unit(120, "lb"),
  13426. name: "Back",
  13427. image: {
  13428. source: "./media/characters/vance/back.svg",
  13429. extra: 2081 / 1994,
  13430. bottom: 0.014
  13431. }
  13432. },
  13433. hand: {
  13434. height: math.unit(0.88, "feet"),
  13435. name: "Hand",
  13436. image: {
  13437. source: "./media/characters/vance/hand.svg"
  13438. }
  13439. },
  13440. foot: {
  13441. height: math.unit(0.64, "feet"),
  13442. name: "Foot",
  13443. image: {
  13444. source: "./media/characters/vance/foot.svg"
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Small",
  13451. height: math.unit(90, "feet"),
  13452. default: true
  13453. },
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(100, "meters")
  13457. },
  13458. {
  13459. name: "Megamacro",
  13460. height: math.unit(15, "miles")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(180, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/xochitl/front.svg",
  13473. extra: 2297 / 2261,
  13474. bottom: 0.065
  13475. }
  13476. },
  13477. back: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(180, "lb"),
  13480. name: "Back",
  13481. image: {
  13482. source: "./media/characters/xochitl/back.svg",
  13483. extra: 2386 / 2354,
  13484. bottom: 0.01
  13485. }
  13486. },
  13487. foot: {
  13488. height: math.unit(6 / 5 * 1.15, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Foot",
  13491. image: {
  13492. source: "./media/characters/xochitl/foot.svg"
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Macro",
  13499. height: math.unit(80, "feet")
  13500. },
  13501. {
  13502. name: "Macro+",
  13503. height: math.unit(400, "feet"),
  13504. default: true
  13505. },
  13506. {
  13507. name: "Gigamacro",
  13508. height: math.unit(80000, "miles")
  13509. },
  13510. {
  13511. name: "Gigamacro+",
  13512. height: math.unit(400000, "miles")
  13513. },
  13514. {
  13515. name: "Teramacro",
  13516. height: math.unit(300, "AU")
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13522. {
  13523. front: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Front",
  13527. image: {
  13528. source: "./media/characters/vincent/front.svg",
  13529. extra: 1130 / 1080,
  13530. bottom: 0.055
  13531. }
  13532. },
  13533. beak: {
  13534. height: math.unit(6 * 0.1, "feet"),
  13535. name: "Beak",
  13536. image: {
  13537. source: "./media/characters/vincent/beak.svg"
  13538. }
  13539. },
  13540. hand: {
  13541. height: math.unit(6 * 0.85, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Hand",
  13544. image: {
  13545. source: "./media/characters/vincent/hand.svg"
  13546. }
  13547. },
  13548. foot: {
  13549. height: math.unit(6 * 0.19, "feet"),
  13550. weight: math.unit(150, "lb"),
  13551. name: "Foot",
  13552. image: {
  13553. source: "./media/characters/vincent/foot.svg"
  13554. }
  13555. },
  13556. },
  13557. [
  13558. {
  13559. name: "Base",
  13560. height: math.unit(6 + 5 / 12, "feet"),
  13561. default: true
  13562. },
  13563. {
  13564. name: "Macro",
  13565. height: math.unit(300, "feet")
  13566. },
  13567. {
  13568. name: "Megamacro",
  13569. height: math.unit(2, "miles")
  13570. },
  13571. {
  13572. name: "Gigamacro",
  13573. height: math.unit(1000, "miles")
  13574. },
  13575. ]
  13576. ))
  13577. characterMakers.push(() => makeCharacter(
  13578. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13579. {
  13580. front: {
  13581. height: math.unit(2, "meters"),
  13582. weight: math.unit(500, "kg"),
  13583. name: "Front",
  13584. image: {
  13585. source: "./media/characters/coatl/front.svg",
  13586. extra: 3948 / 3500,
  13587. bottom: 0.082
  13588. }
  13589. },
  13590. },
  13591. [
  13592. {
  13593. name: "Normal",
  13594. height: math.unit(4, "meters")
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(100, "meters"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Macro+",
  13603. height: math.unit(300, "meters")
  13604. },
  13605. {
  13606. name: "Megamacro",
  13607. height: math.unit(3, "gigameters")
  13608. },
  13609. {
  13610. name: "Megamacro+",
  13611. height: math.unit(300, "terameters")
  13612. },
  13613. {
  13614. name: "Megamacro++",
  13615. height: math.unit(3, "lightyears")
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13621. {
  13622. front: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(50, "kg"),
  13625. name: "front",
  13626. image: {
  13627. source: "./media/characters/shiroryu/front.svg",
  13628. extra: 1990 / 1935
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Mortal Mingling",
  13635. height: math.unit(3, "meters")
  13636. },
  13637. {
  13638. name: "Kaiju-ish",
  13639. height: math.unit(250, "meters")
  13640. },
  13641. {
  13642. name: "Somewhat Godly",
  13643. height: math.unit(400, "km"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Planetary",
  13648. height: math.unit(300, "megameters")
  13649. },
  13650. {
  13651. name: "Galaxy-dwarfing",
  13652. height: math.unit(450, "kiloparsecs")
  13653. },
  13654. {
  13655. name: "Universe Eater",
  13656. height: math.unit(150, "gigaparsecs")
  13657. },
  13658. {
  13659. name: "Almost Immeasurable",
  13660. height: math.unit(1.3e266, "yottaparsecs")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13666. {
  13667. front: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/umeko/front.svg",
  13673. extra: 1,
  13674. bottom: 0.019
  13675. }
  13676. },
  13677. frontArmored: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Front (Armored)",
  13681. image: {
  13682. source: "./media/characters/umeko/front-armored.svg",
  13683. extra: 1,
  13684. bottom: 0.021
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(220, "feet"),
  13692. default: true
  13693. },
  13694. {
  13695. name: "Guardian Dragon",
  13696. height: math.unit(50, "miles")
  13697. },
  13698. {
  13699. name: "Cosmic",
  13700. height: math.unit(800000, "miles")
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/cassidy/front.svg",
  13713. extra: 1,
  13714. bottom: 0.043
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Canon Height",
  13721. height: math.unit(120, "feet"),
  13722. default: true
  13723. },
  13724. {
  13725. name: "Macro+",
  13726. height: math.unit(400, "feet")
  13727. },
  13728. {
  13729. name: "Macro++",
  13730. height: math.unit(4000, "feet")
  13731. },
  13732. {
  13733. name: "Megamacro",
  13734. height: math.unit(3, "miles")
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13740. {
  13741. front: {
  13742. height: math.unit(6, "feet"),
  13743. weight: math.unit(150, "lb"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/isaac/front.svg",
  13747. extra: 896 / 815,
  13748. bottom: 0.11
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Human Size",
  13755. height: math.unit(8, "feet"),
  13756. default: true
  13757. },
  13758. {
  13759. name: "Macro",
  13760. height: math.unit(400, "feet")
  13761. },
  13762. {
  13763. name: "Megamacro",
  13764. height: math.unit(50, "miles")
  13765. },
  13766. {
  13767. name: "Canon Height",
  13768. height: math.unit(200, "AU")
  13769. },
  13770. ]
  13771. ))
  13772. characterMakers.push(() => makeCharacter(
  13773. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13774. {
  13775. front: {
  13776. height: math.unit(6, "feet"),
  13777. weight: math.unit(72, "kg"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/sleekit/front.svg",
  13781. extra: 4693 / 4487,
  13782. bottom: 0.012
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Minimum Height",
  13789. height: math.unit(10, "meters")
  13790. },
  13791. {
  13792. name: "Smaller",
  13793. height: math.unit(25, "meters")
  13794. },
  13795. {
  13796. name: "Larger",
  13797. height: math.unit(38, "meters"),
  13798. default: true
  13799. },
  13800. {
  13801. name: "Maximum height",
  13802. height: math.unit(100, "meters")
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13808. {
  13809. front: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(150, "lb"),
  13812. name: "Front",
  13813. image: {
  13814. source: "./media/characters/nillia/front.svg",
  13815. extra: 2195 / 2037,
  13816. bottom: 0.005
  13817. }
  13818. },
  13819. back: {
  13820. height: math.unit(6, "feet"),
  13821. weight: math.unit(150, "lb"),
  13822. name: "Back",
  13823. image: {
  13824. source: "./media/characters/nillia/back.svg",
  13825. extra: 2195 / 2037,
  13826. bottom: 0.005
  13827. }
  13828. },
  13829. },
  13830. [
  13831. {
  13832. name: "Canon Height",
  13833. height: math.unit(489, "feet"),
  13834. default: true
  13835. }
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/mesmyriza/front.svg",
  13847. extra: 2067 / 1784,
  13848. bottom: 0.035
  13849. }
  13850. },
  13851. foot: {
  13852. height: math.unit(6 / (250 / 35), "feet"),
  13853. name: "Foot",
  13854. image: {
  13855. source: "./media/characters/mesmyriza/foot.svg"
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Macro",
  13862. height: math.unit(457, "meters"),
  13863. default: true
  13864. },
  13865. {
  13866. name: "Megamacro",
  13867. height: math.unit(8, "megameters")
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13873. {
  13874. front: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(250, "lb"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/saudade/front.svg",
  13880. extra: 1172 / 1139,
  13881. bottom: 0.035
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Micro",
  13888. height: math.unit(3, "inches")
  13889. },
  13890. {
  13891. name: "Normal",
  13892. height: math.unit(6, "feet"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Macro",
  13897. height: math.unit(50, "feet")
  13898. },
  13899. {
  13900. name: "Megamacro",
  13901. height: math.unit(2800, "feet")
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13907. {
  13908. front: {
  13909. height: math.unit(5 + 4 / 12, "feet"),
  13910. weight: math.unit(100, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/keireer/front.svg",
  13914. extra: 716 / 666,
  13915. bottom: 0.05
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Normal",
  13922. height: math.unit(5 + 4 / 12, "feet"),
  13923. default: true
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(6, "feet"),
  13932. weight: math.unit(90, "kg"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/mirja/front.svg",
  13936. extra: 1789 / 1683,
  13937. bottom: 0.05
  13938. }
  13939. },
  13940. frontDressed: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(90, "lb"),
  13943. name: "Front (Dressed)",
  13944. image: {
  13945. source: "./media/characters/mirja/front-dressed.svg",
  13946. extra: 1789 / 1683,
  13947. bottom: 0.05
  13948. }
  13949. },
  13950. back: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(90, "lb"),
  13953. name: "Back",
  13954. image: {
  13955. source: "./media/characters/mirja/back.svg",
  13956. extra: 953 / 917,
  13957. bottom: 0.017
  13958. }
  13959. },
  13960. },
  13961. [
  13962. {
  13963. name: "\"Incognito\"",
  13964. height: math.unit(3, "meters")
  13965. },
  13966. {
  13967. name: "Strolling Size",
  13968. height: math.unit(15, "km")
  13969. },
  13970. {
  13971. name: "Larger Strolling Size",
  13972. height: math.unit(400, "km")
  13973. },
  13974. {
  13975. name: "Preferred Size",
  13976. height: math.unit(5000, "km")
  13977. },
  13978. {
  13979. name: "True Size",
  13980. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13981. default: true
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(15, "feet"),
  13990. weight: math.unit(880, "kg"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/nightraver/front.svg",
  13994. extra: 2444 / 2160,
  13995. bottom: 0.027
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(15, "feet"),
  14000. weight: math.unit(880, "kg"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/nightraver/back.svg",
  14004. extra: 2309 / 2180,
  14005. bottom: 0.005
  14006. }
  14007. },
  14008. sole: {
  14009. height: math.unit(2.878, "feet"),
  14010. name: "Sole",
  14011. image: {
  14012. source: "./media/characters/nightraver/sole.svg"
  14013. }
  14014. },
  14015. foot: {
  14016. height: math.unit(2.285, "feet"),
  14017. name: "Foot",
  14018. image: {
  14019. source: "./media/characters/nightraver/foot.svg"
  14020. }
  14021. },
  14022. maw: {
  14023. height: math.unit(2.67, "feet"),
  14024. name: "Maw",
  14025. image: {
  14026. source: "./media/characters/nightraver/maw.svg"
  14027. }
  14028. },
  14029. },
  14030. [
  14031. {
  14032. name: "Micro",
  14033. height: math.unit(1, "cm")
  14034. },
  14035. {
  14036. name: "Normal",
  14037. height: math.unit(15, "feet"),
  14038. default: true
  14039. },
  14040. {
  14041. name: "Macro",
  14042. height: math.unit(300, "feet")
  14043. },
  14044. {
  14045. name: "Megamacro",
  14046. height: math.unit(300, "miles")
  14047. },
  14048. {
  14049. name: "Gigamacro",
  14050. height: math.unit(10000, "miles")
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14056. {
  14057. side: {
  14058. height: math.unit(2, "inches"),
  14059. weight: math.unit(5, "grams"),
  14060. name: "Side",
  14061. image: {
  14062. source: "./media/characters/arc/side.svg"
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Micro",
  14069. height: math.unit(2, "inches"),
  14070. default: true
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(1.1938, "meters"),
  14079. weight: math.unit(54, "kg"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/nebula-shahar/front.svg",
  14083. extra: 1642 / 1436,
  14084. bottom: 0.06
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Megamicro",
  14091. height: math.unit(0.3, "mm")
  14092. },
  14093. {
  14094. name: "Micro",
  14095. height: math.unit(3, "cm")
  14096. },
  14097. {
  14098. name: "Normal",
  14099. height: math.unit(138, "cm"),
  14100. default: true
  14101. },
  14102. {
  14103. name: "Macro",
  14104. height: math.unit(30, "m")
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14110. {
  14111. front: {
  14112. height: math.unit(5.24, "feet"),
  14113. weight: math.unit(150, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/shayla/front.svg",
  14117. extra: 1512 / 1414,
  14118. bottom: 0.01
  14119. }
  14120. },
  14121. back: {
  14122. height: math.unit(5.24, "feet"),
  14123. weight: math.unit(150, "lb"),
  14124. name: "Back",
  14125. image: {
  14126. source: "./media/characters/shayla/back.svg",
  14127. extra: 1512 / 1414
  14128. }
  14129. },
  14130. hand: {
  14131. height: math.unit(0.7781496062992126, "feet"),
  14132. name: "Hand",
  14133. image: {
  14134. source: "./media/characters/shayla/hand.svg"
  14135. }
  14136. },
  14137. foot: {
  14138. height: math.unit(1.4206036745406823, "feet"),
  14139. name: "Foot",
  14140. image: {
  14141. source: "./media/characters/shayla/foot.svg"
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Micro",
  14148. height: math.unit(0.32, "feet")
  14149. },
  14150. {
  14151. name: "Normal",
  14152. height: math.unit(5.24, "feet"),
  14153. default: true
  14154. },
  14155. {
  14156. name: "Macro",
  14157. height: math.unit(492.12, "feet")
  14158. },
  14159. {
  14160. name: "Megamacro",
  14161. height: math.unit(186.41, "miles")
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14167. {
  14168. front: {
  14169. height: math.unit(2.2, "m"),
  14170. weight: math.unit(120, "kg"),
  14171. name: "Front",
  14172. image: {
  14173. source: "./media/characters/pia-jr/front.svg",
  14174. extra: 1000 / 970,
  14175. bottom: 0.035
  14176. }
  14177. },
  14178. hand: {
  14179. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14180. name: "Hand",
  14181. image: {
  14182. source: "./media/characters/pia-jr/hand.svg"
  14183. }
  14184. },
  14185. paw: {
  14186. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14187. name: "Paw",
  14188. image: {
  14189. source: "./media/characters/pia-jr/paw.svg"
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Micro",
  14196. height: math.unit(1.2, "cm")
  14197. },
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(2.2, "m"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(180, "m")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(420, "km")
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(2, "m"),
  14218. weight: math.unit(115, "kg"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/pia-sr/front.svg",
  14222. extra: 760 / 730,
  14223. bottom: 0.015
  14224. }
  14225. },
  14226. back: {
  14227. height: math.unit(2, "m"),
  14228. weight: math.unit(115, "kg"),
  14229. name: "Back",
  14230. image: {
  14231. source: "./media/characters/pia-sr/back.svg",
  14232. extra: 760 / 730,
  14233. bottom: 0.01
  14234. }
  14235. },
  14236. hand: {
  14237. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14238. name: "Hand",
  14239. image: {
  14240. source: "./media/characters/pia-sr/hand.svg"
  14241. }
  14242. },
  14243. foot: {
  14244. height: math.unit(1.83, "feet"),
  14245. name: "Foot",
  14246. image: {
  14247. source: "./media/characters/pia-sr/foot.svg"
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Micro",
  14254. height: math.unit(88, "mm")
  14255. },
  14256. {
  14257. name: "Normal",
  14258. height: math.unit(2, "m"),
  14259. default: true
  14260. },
  14261. {
  14262. name: "Macro",
  14263. height: math.unit(200, "m")
  14264. },
  14265. {
  14266. name: "Megamacro",
  14267. height: math.unit(420, "km")
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(8 + 2 / 12, "feet"),
  14276. weight: math.unit(300, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/kibibyte/front.svg",
  14280. extra: 2221 / 2098,
  14281. bottom: 0.04
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(8 + 2 / 12, "feet"),
  14289. default: true
  14290. },
  14291. {
  14292. name: "Socialable Macro",
  14293. height: math.unit(50, "feet")
  14294. },
  14295. {
  14296. name: "Macro",
  14297. height: math.unit(300, "feet")
  14298. },
  14299. {
  14300. name: "Megamacro",
  14301. height: math.unit(500, "miles")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/felix/front.svg",
  14314. extra: 762 / 722,
  14315. bottom: 0.02
  14316. }
  14317. },
  14318. frontClothed: {
  14319. height: math.unit(6, "feet"),
  14320. weight: math.unit(150, "lb"),
  14321. name: "Front (Clothed)",
  14322. image: {
  14323. source: "./media/characters/felix/front-clothed.svg",
  14324. extra: 762 / 722,
  14325. bottom: 0.02
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(6 + 8 / 12, "feet"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Macro",
  14337. height: math.unit(2600, "feet")
  14338. },
  14339. {
  14340. name: "Megamacro",
  14341. height: math.unit(450, "miles")
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(6 + 1 / 12, "feet"),
  14350. weight: math.unit(250, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/tobo/front.svg",
  14354. extra: 608 / 586,
  14355. bottom: 0.023
  14356. }
  14357. },
  14358. back: {
  14359. height: math.unit(6 + 1 / 12, "feet"),
  14360. weight: math.unit(250, "lb"),
  14361. name: "Back",
  14362. image: {
  14363. source: "./media/characters/tobo/back.svg",
  14364. extra: 608 / 586
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Nano",
  14371. height: math.unit(2, "nm")
  14372. },
  14373. {
  14374. name: "Megamicro",
  14375. height: math.unit(0.1, "mm")
  14376. },
  14377. {
  14378. name: "Micro",
  14379. height: math.unit(1, "inch"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Human-sized",
  14384. height: math.unit(6 + 1 / 12, "feet")
  14385. },
  14386. {
  14387. name: "Macro",
  14388. height: math.unit(250, "feet")
  14389. },
  14390. {
  14391. name: "Megamacro",
  14392. height: math.unit(75, "miles")
  14393. },
  14394. {
  14395. name: "Texas-sized",
  14396. height: math.unit(750, "miles")
  14397. },
  14398. {
  14399. name: "Teramacro",
  14400. height: math.unit(50000, "miles")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(269, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/danny-kapowsky/front.svg",
  14413. extra: 766 / 736,
  14414. bottom: 0.044
  14415. }
  14416. },
  14417. back: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(269, "lb"),
  14420. name: "Back",
  14421. image: {
  14422. source: "./media/characters/danny-kapowsky/back.svg",
  14423. extra: 797 / 760,
  14424. bottom: 0.025
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Macro",
  14431. height: math.unit(150, "feet"),
  14432. default: true
  14433. },
  14434. {
  14435. name: "Macro+",
  14436. height: math.unit(200, "feet")
  14437. },
  14438. {
  14439. name: "Macro++",
  14440. height: math.unit(300, "feet")
  14441. },
  14442. {
  14443. name: "Macro+++",
  14444. height: math.unit(400, "feet")
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14450. {
  14451. side: {
  14452. height: math.unit(6, "feet"),
  14453. weight: math.unit(170, "lb"),
  14454. name: "Side",
  14455. image: {
  14456. source: "./media/characters/finn/side.svg",
  14457. extra: 1953 / 1807,
  14458. bottom: 0.057
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Megamacro",
  14465. height: math.unit(14445, "feet"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(5 + 6 / 12, "feet"),
  14475. weight: math.unit(125, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/roy/front.svg",
  14479. extra: 1,
  14480. bottom: 0.11
  14481. }
  14482. },
  14483. },
  14484. [
  14485. {
  14486. name: "Micro",
  14487. height: math.unit(3, "inches"),
  14488. default: true
  14489. },
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(5 + 6 / 12, "feet")
  14493. },
  14494. {
  14495. name: "Lesser Macro",
  14496. height: math.unit(60, "feet")
  14497. },
  14498. {
  14499. name: "Greater Macro",
  14500. height: math.unit(120, "feet")
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(100, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/aevsivs/front.svg",
  14513. extra: 1,
  14514. bottom: 0.03
  14515. }
  14516. },
  14517. back: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(100, "lb"),
  14520. name: "Back",
  14521. image: {
  14522. source: "./media/characters/aevsivs/back.svg"
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Micro",
  14529. height: math.unit(2, "inches"),
  14530. default: true
  14531. },
  14532. {
  14533. name: "Normal",
  14534. height: math.unit(5, "feet")
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14540. {
  14541. front: {
  14542. height: math.unit(5 + 7 / 12, "feet"),
  14543. weight: math.unit(159, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/hildegard/front.svg",
  14547. extra: 289 / 269,
  14548. bottom: 7.63 / 297.8
  14549. }
  14550. },
  14551. back: {
  14552. height: math.unit(5 + 7 / 12, "feet"),
  14553. weight: math.unit(159, "lb"),
  14554. name: "Back",
  14555. image: {
  14556. source: "./media/characters/hildegard/back.svg",
  14557. extra: 280 / 260,
  14558. bottom: 2.3 / 282
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(5 + 7 / 12, "feet"),
  14566. default: true
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14572. {
  14573. bernard: {
  14574. height: math.unit(2 + 7 / 12, "feet"),
  14575. weight: math.unit(66, "lb"),
  14576. name: "Bernard",
  14577. rename: true,
  14578. image: {
  14579. source: "./media/characters/bernard-wilder/bernard.svg",
  14580. extra: 192 / 128,
  14581. bottom: 0.05
  14582. }
  14583. },
  14584. wilder: {
  14585. height: math.unit(5 + 8 / 12, "feet"),
  14586. weight: math.unit(143, "lb"),
  14587. name: "Wilder",
  14588. rename: true,
  14589. image: {
  14590. source: "./media/characters/bernard-wilder/wilder.svg",
  14591. extra: 361 / 312,
  14592. bottom: 0.02
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(2 + 7 / 12, "feet"),
  14600. default: true
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14606. {
  14607. anthro: {
  14608. height: math.unit(6 + 1 / 12, "feet"),
  14609. weight: math.unit(155, "lb"),
  14610. name: "Anthro",
  14611. image: {
  14612. source: "./media/characters/hearth/anthro.svg",
  14613. extra: 260 / 250,
  14614. bottom: 0.02
  14615. }
  14616. },
  14617. feral: {
  14618. height: math.unit(3.78, "feet"),
  14619. weight: math.unit(35, "kg"),
  14620. name: "Feral",
  14621. image: {
  14622. source: "./media/characters/hearth/feral.svg",
  14623. extra: 153 / 135,
  14624. bottom: 0.03
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(6 + 1 / 12, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6, "feet"),
  14641. weight: math.unit(182, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/ingrid/front.svg",
  14645. extra: 294 / 268,
  14646. bottom: 0.027
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(6, "feet"),
  14654. default: true
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14660. {
  14661. eevee: {
  14662. height: math.unit(2 + 10 / 12, "feet"),
  14663. weight: math.unit(86, "lb"),
  14664. name: "Malgam",
  14665. image: {
  14666. source: "./media/characters/malgam/eevee.svg",
  14667. extra: 218 / 180,
  14668. bottom: 0.2
  14669. }
  14670. },
  14671. sylveon: {
  14672. height: math.unit(4, "feet"),
  14673. weight: math.unit(101, "lb"),
  14674. name: "Future Malgam",
  14675. rename: true,
  14676. image: {
  14677. source: "./media/characters/malgam/sylveon.svg",
  14678. extra: 371 / 325,
  14679. bottom: 0.015
  14680. }
  14681. },
  14682. gigantamax: {
  14683. height: math.unit(50, "feet"),
  14684. name: "Gigantamax Malgam",
  14685. rename: true,
  14686. image: {
  14687. source: "./media/characters/malgam/gigantamax.svg"
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(2 + 10 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(5 + 11 / 12, "feet"),
  14704. weight: math.unit(188, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/fleur/front.svg",
  14708. extra: 309 / 283,
  14709. bottom: 0.007
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 11 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(5 + 4 / 12, "feet"),
  14726. weight: math.unit(122, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/jude/front.svg",
  14730. extra: 288 / 273,
  14731. bottom: 0.03
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(5 + 4 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(5 + 11 / 12, "feet"),
  14748. weight: math.unit(190, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/seara/front.svg",
  14752. extra: 1,
  14753. bottom: 0.05
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(5 + 11 / 12, "feet"),
  14761. default: true
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(16 + 5 / 12, "feet"),
  14770. weight: math.unit(524, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/caspian/front.svg",
  14774. extra: 1,
  14775. bottom: 0.04
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(16 + 5 / 12, "feet"),
  14783. default: true
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(5 + 7 / 12, "feet"),
  14792. weight: math.unit(170, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/mika/front.svg",
  14796. extra: 1,
  14797. bottom: 0.016
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(5 + 7 / 12, "feet"),
  14805. default: true
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(6 + 2 / 12, "feet"),
  14814. weight: math.unit(268, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/sol/front.svg",
  14818. extra: 247 / 231,
  14819. bottom: 0.05
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(6 + 2 / 12, "feet"),
  14827. default: true
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14833. {
  14834. buizel: {
  14835. height: math.unit(2 + 5 / 12, "feet"),
  14836. weight: math.unit(87, "lb"),
  14837. name: "Buizel",
  14838. image: {
  14839. source: "./media/characters/umiko/buizel.svg",
  14840. extra: 172 / 157,
  14841. bottom: 0.01
  14842. }
  14843. },
  14844. floatzel: {
  14845. height: math.unit(5 + 9 / 12, "feet"),
  14846. weight: math.unit(250, "lb"),
  14847. name: "Floatzel",
  14848. image: {
  14849. source: "./media/characters/umiko/floatzel.svg",
  14850. extra: 262 / 248
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(2 + 5 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(6 + 2 / 12, "feet"),
  14867. weight: math.unit(146, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/iliac/front.svg",
  14871. extra: 389 / 365,
  14872. bottom: 0.035
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(6 + 2 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(170, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/topaz/front.svg",
  14893. extra: 317 / 303,
  14894. bottom: 0.055
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(6, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(5 + 11 / 12, "feet"),
  14911. weight: math.unit(144, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/gabriel/front.svg",
  14915. extra: 285 / 262,
  14916. bottom: 0.004
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(5 + 11 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14930. {
  14931. side: {
  14932. height: math.unit(6 + 5 / 12, "feet"),
  14933. weight: math.unit(300, "lb"),
  14934. name: "Side",
  14935. image: {
  14936. source: "./media/characters/tempest-suicune/side.svg",
  14937. extra: 195 / 154,
  14938. bottom: 0.04
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(6 + 5 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(7 + 2 / 12, "feet"),
  14955. weight: math.unit(322, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/vulcan/front.svg",
  14959. extra: 154 / 147,
  14960. bottom: 0.04
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(7 + 2 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 10 / 12, "feet"),
  14977. weight: math.unit(264, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/gault/front.svg",
  14981. extra: 161 / 140,
  14982. bottom: 0.028
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(5 + 10 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(6, "feet"),
  14999. weight: math.unit(150, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/shard/front.svg",
  15003. extra: 273 / 238,
  15004. bottom: 0.02
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(3 + 6 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(5 + 11 / 12, "feet"),
  15021. weight: math.unit(146, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/ashe/front.svg",
  15025. extra: 400 / 373,
  15026. bottom: 0.01
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(5 + 11 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(5 + 5 / 12, "feet"),
  15043. weight: math.unit(135, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/beatrix/front.svg",
  15047. extra: 392 / 379,
  15048. bottom: 0.01
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(6, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(6, "feet"),
  15065. weight: math.unit(150, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/ignatius/front.svg",
  15069. extra: 245 / 222,
  15070. bottom: 0.01
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(5 + 5 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(6 + 2 / 12, "feet"),
  15087. weight: math.unit(138, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/mei-li/front.svg",
  15091. extra: 237 / 229,
  15092. bottom: 0.03
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(6 + 2 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(2 + 4 / 12, "feet"),
  15109. weight: math.unit(62, "lb"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/puru/front.svg",
  15113. extra: 206 / 149,
  15114. bottom: 0.06
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(2 + 4 / 12, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15128. {
  15129. anthro: {
  15130. height: math.unit(5 + 8/12, "feet"),
  15131. weight: math.unit(200, "lb"),
  15132. energyNeed: math.unit(2000, "kcal"),
  15133. name: "Anthro",
  15134. image: {
  15135. source: "./media/characters/kee/anthro.svg",
  15136. extra: 3251/3184,
  15137. bottom: 250/3501
  15138. }
  15139. },
  15140. taur: {
  15141. height: math.unit(11, "feet"),
  15142. weight: math.unit(500, "lb"),
  15143. energyNeed: math.unit(5000, "kcal"),
  15144. name: "Taur",
  15145. image: {
  15146. source: "./media/characters/kee/taur.svg",
  15147. extra: 1362/1320,
  15148. bottom: 83/1445
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(5 + 8/12, "feet"),
  15156. default: true
  15157. },
  15158. {
  15159. name: "Macro",
  15160. height: math.unit(35, "feet")
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15166. {
  15167. anthro: {
  15168. height: math.unit(7, "feet"),
  15169. weight: math.unit(190, "lb"),
  15170. name: "Anthro",
  15171. image: {
  15172. source: "./media/characters/cobalt-dracha/anthro.svg",
  15173. extra: 231 / 225,
  15174. bottom: 0.04
  15175. }
  15176. },
  15177. feral: {
  15178. height: math.unit(9 + 7 / 12, "feet"),
  15179. weight: math.unit(294, "lb"),
  15180. name: "Feral",
  15181. image: {
  15182. source: "./media/characters/cobalt-dracha/feral.svg",
  15183. extra: 692 / 633,
  15184. bottom: 0.05
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(7, "feet"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15198. {
  15199. fallen: {
  15200. height: math.unit(11 + 8 / 12, "feet"),
  15201. weight: math.unit(485, "lb"),
  15202. name: "Java (Fallen)",
  15203. rename: true,
  15204. image: {
  15205. source: "./media/characters/java/fallen.svg",
  15206. extra: 226 / 208,
  15207. bottom: 0.005
  15208. }
  15209. },
  15210. godkin: {
  15211. height: math.unit(10 + 6 / 12, "feet"),
  15212. weight: math.unit(328, "lb"),
  15213. name: "Java (Godkin)",
  15214. rename: true,
  15215. image: {
  15216. source: "./media/characters/java/godkin.svg",
  15217. extra: 270 / 262,
  15218. bottom: 0.02
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(11 + 8 / 12, "feet"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(7 + 8 / 12, "feet"),
  15235. weight: math.unit(320, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/skoll/front.svg",
  15239. extra: 232 / 220,
  15240. bottom: 0.02
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(7 + 8 / 12, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(5 + 9 / 12, "feet"),
  15257. weight: math.unit(170, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/purna/front.svg",
  15261. extra: 239 / 229,
  15262. bottom: 0.01
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Normal",
  15269. height: math.unit(5 + 9 / 12, "feet"),
  15270. default: true
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15276. {
  15277. front: {
  15278. height: math.unit(5 + 9 / 12, "feet"),
  15279. weight: math.unit(142, "lb"),
  15280. name: "Front",
  15281. image: {
  15282. source: "./media/characters/kuva/front.svg",
  15283. extra: 281 / 271,
  15284. bottom: 0.006
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Normal",
  15291. height: math.unit(5 + 9 / 12, "feet"),
  15292. default: true
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15298. {
  15299. anthro: {
  15300. height: math.unit(9 + 2 / 12, "feet"),
  15301. weight: math.unit(270, "lb"),
  15302. name: "Anthro",
  15303. image: {
  15304. source: "./media/characters/embra/anthro.svg",
  15305. extra: 200 / 187,
  15306. bottom: 0.02
  15307. }
  15308. },
  15309. feral: {
  15310. height: math.unit(18 + 8 / 12, "feet"),
  15311. weight: math.unit(576, "lb"),
  15312. name: "Feral",
  15313. image: {
  15314. source: "./media/characters/embra/feral.svg",
  15315. extra: 152 / 137,
  15316. bottom: 0.037
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(9 + 2 / 12, "feet"),
  15324. default: true
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15330. {
  15331. anthro: {
  15332. height: math.unit(10 + 9 / 12, "feet"),
  15333. weight: math.unit(224, "lb"),
  15334. name: "Anthro",
  15335. image: {
  15336. source: "./media/characters/grottos/anthro.svg",
  15337. extra: 350 / 332,
  15338. bottom: 0.045
  15339. }
  15340. },
  15341. feral: {
  15342. height: math.unit(20 + 7 / 12, "feet"),
  15343. weight: math.unit(629, "lb"),
  15344. name: "Feral",
  15345. image: {
  15346. source: "./media/characters/grottos/feral.svg",
  15347. extra: 207 / 190,
  15348. bottom: 0.05
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(10 + 9 / 12, "feet"),
  15356. default: true
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15362. {
  15363. anthro: {
  15364. height: math.unit(9 + 6 / 12, "feet"),
  15365. weight: math.unit(298, "lb"),
  15366. name: "Anthro",
  15367. image: {
  15368. source: "./media/characters/frifna/anthro.svg",
  15369. extra: 282 / 269,
  15370. bottom: 0.015
  15371. }
  15372. },
  15373. feral: {
  15374. height: math.unit(16 + 2 / 12, "feet"),
  15375. weight: math.unit(624, "lb"),
  15376. name: "Feral",
  15377. image: {
  15378. source: "./media/characters/frifna/feral.svg"
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(9 + 6 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(6 + 2 / 12, "feet"),
  15395. weight: math.unit(168, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/elise/front.svg",
  15399. extra: 276 / 271
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(6 + 2 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(5 + 10 / 12, "feet"),
  15416. weight: math.unit(210, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/glade/front.svg",
  15420. extra: 258 / 247,
  15421. bottom: 0.008
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(5 + 10 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(5 + 10 / 12, "feet"),
  15438. weight: math.unit(129, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/rina/front.svg",
  15442. extra: 266 / 255,
  15443. bottom: 0.005
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(5 + 10 / 12, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(6 + 1 / 12, "feet"),
  15460. weight: math.unit(192, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/veronica/front.svg",
  15464. extra: 319 / 309,
  15465. bottom: 0.005
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(6 + 1 / 12, "feet"),
  15473. default: true
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15479. {
  15480. front: {
  15481. height: math.unit(9 + 3 / 12, "feet"),
  15482. weight: math.unit(1100, "lb"),
  15483. name: "Front",
  15484. image: {
  15485. source: "./media/characters/braxton/front.svg",
  15486. extra: 1057 / 984,
  15487. bottom: 0.05
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(9 + 3 / 12, "feet")
  15495. },
  15496. {
  15497. name: "Giant",
  15498. height: math.unit(300, "feet"),
  15499. default: true
  15500. },
  15501. {
  15502. name: "Macro",
  15503. height: math.unit(700, "feet")
  15504. },
  15505. {
  15506. name: "Megamacro",
  15507. height: math.unit(6000, "feet")
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15513. {
  15514. front: {
  15515. height: math.unit(6 + 7 / 12, "feet"),
  15516. weight: math.unit(150, "lb"),
  15517. name: "Front",
  15518. image: {
  15519. source: "./media/characters/blue-feyonics/front.svg",
  15520. extra: 1403 / 1306,
  15521. bottom: 0.047
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(6 + 7 / 12, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(1.8, "meters"),
  15538. weight: math.unit(60, "kg"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/maxwell/front.svg",
  15542. extra: 2060 / 1873
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Micro",
  15549. height: math.unit(1, "mm")
  15550. },
  15551. {
  15552. name: "Normal",
  15553. height: math.unit(1.8, "meter"),
  15554. default: true
  15555. },
  15556. {
  15557. name: "Macro",
  15558. height: math.unit(30, "meters")
  15559. },
  15560. {
  15561. name: "Megamacro",
  15562. height: math.unit(10, "km")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(150, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/jack/front.svg",
  15575. extra: 1754 / 1640,
  15576. bottom: 0.01
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(80000, "feet"),
  15584. default: true
  15585. },
  15586. {
  15587. name: "Max size",
  15588. height: math.unit(10, "lightyears")
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15594. {
  15595. urban: {
  15596. height: math.unit(5, "feet"),
  15597. weight: math.unit(240, "lb"),
  15598. name: "Urban",
  15599. image: {
  15600. source: "./media/characters/cafat/urban.svg",
  15601. extra: 1223/1126,
  15602. bottom: 205/1428
  15603. }
  15604. },
  15605. summer: {
  15606. height: math.unit(5, "feet"),
  15607. weight: math.unit(240, "lb"),
  15608. name: "Summer",
  15609. image: {
  15610. source: "./media/characters/cafat/summer.svg",
  15611. extra: 1223/1126,
  15612. bottom: 205/1428
  15613. }
  15614. },
  15615. winter: {
  15616. height: math.unit(5, "feet"),
  15617. weight: math.unit(240, "lb"),
  15618. name: "Winter",
  15619. image: {
  15620. source: "./media/characters/cafat/winter.svg",
  15621. extra: 1223/1126,
  15622. bottom: 205/1428
  15623. }
  15624. },
  15625. lingerie: {
  15626. height: math.unit(5, "feet"),
  15627. weight: math.unit(240, "lb"),
  15628. name: "Lingerie",
  15629. image: {
  15630. source: "./media/characters/cafat/lingerie.svg",
  15631. extra: 1223/1126,
  15632. bottom: 205/1428
  15633. }
  15634. },
  15635. upright: {
  15636. height: math.unit(6.3, "feet"),
  15637. weight: math.unit(240, "lb"),
  15638. name: "Upright",
  15639. image: {
  15640. source: "./media/characters/cafat/upright.svg",
  15641. bottom: 0.01
  15642. }
  15643. },
  15644. uprightFull: {
  15645. height: math.unit(6.3, "feet"),
  15646. weight: math.unit(240, "lb"),
  15647. name: "Upright (Full)",
  15648. image: {
  15649. source: "./media/characters/cafat/upright-full.svg",
  15650. bottom: 0.01
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Small",
  15657. height: math.unit(5, "feet"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Large",
  15662. height: math.unit(13, "feet")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(6, "feet"),
  15671. weight: math.unit(150, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/verin-raharra/front.svg",
  15675. extra: 5019 / 4835,
  15676. bottom: 0.023
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(7 + 5 / 12, "feet"),
  15684. default: true
  15685. },
  15686. {
  15687. name: "Upsized",
  15688. height: math.unit(20, "feet")
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(7, "feet"),
  15697. weight: math.unit(230, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/nakata/front.svg",
  15701. extra: 1.005,
  15702. bottom: 0.01
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(7, "feet"),
  15710. default: true
  15711. },
  15712. {
  15713. name: "Big",
  15714. height: math.unit(14, "feet")
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(400, "feet")
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(4.91, "feet"),
  15727. weight: math.unit(100, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/lily/front.svg",
  15731. extra: 1585 / 1415,
  15732. bottom: 0.02
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(4.91, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15746. {
  15747. laying: {
  15748. height: math.unit(4 + 4 / 12, "feet"),
  15749. weight: math.unit(600, "lb"),
  15750. name: "Laying",
  15751. image: {
  15752. source: "./media/characters/sheila/laying.svg",
  15753. extra: 1333 / 1265,
  15754. bottom: 0.16
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(4 + 4 / 12, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(190, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/sax/front.svg",
  15775. extra: 1187 / 973,
  15776. bottom: 0.042
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Micro",
  15783. height: math.unit(4, "inches"),
  15784. default: true
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15790. {
  15791. front: {
  15792. height: math.unit(6, "feet"),
  15793. weight: math.unit(150, "lb"),
  15794. name: "Front",
  15795. image: {
  15796. source: "./media/characters/pandora/front.svg",
  15797. extra: 2720 / 2556,
  15798. bottom: 0.015
  15799. }
  15800. },
  15801. back: {
  15802. height: math.unit(6, "feet"),
  15803. weight: math.unit(150, "lb"),
  15804. name: "Back",
  15805. image: {
  15806. source: "./media/characters/pandora/back.svg",
  15807. extra: 2720 / 2556,
  15808. bottom: 0.01
  15809. }
  15810. },
  15811. beans: {
  15812. height: math.unit(6 / 8, "feet"),
  15813. name: "Beans",
  15814. image: {
  15815. source: "./media/characters/pandora/beans.svg"
  15816. }
  15817. },
  15818. collar: {
  15819. height: math.unit(0.31, "feet"),
  15820. name: "Collar",
  15821. image: {
  15822. source: "./media/characters/pandora/collar.svg"
  15823. }
  15824. },
  15825. skirt: {
  15826. height: math.unit(6, "feet"),
  15827. weight: math.unit(150, "lb"),
  15828. name: "Skirt",
  15829. image: {
  15830. source: "./media/characters/pandora/skirt.svg",
  15831. extra: 1622 / 1525,
  15832. bottom: 0.015
  15833. }
  15834. },
  15835. hoodie: {
  15836. height: math.unit(6, "feet"),
  15837. weight: math.unit(150, "lb"),
  15838. name: "Hoodie",
  15839. image: {
  15840. source: "./media/characters/pandora/hoodie.svg",
  15841. extra: 1622 / 1525,
  15842. bottom: 0.015
  15843. }
  15844. },
  15845. casual: {
  15846. height: math.unit(6, "feet"),
  15847. weight: math.unit(150, "lb"),
  15848. name: "Casual",
  15849. image: {
  15850. source: "./media/characters/pandora/casual.svg",
  15851. extra: 1622 / 1525,
  15852. bottom: 0.015
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(6, "feet")
  15860. },
  15861. {
  15862. name: "Big Steppy",
  15863. height: math.unit(1, "km"),
  15864. default: true
  15865. },
  15866. {
  15867. name: "Galactic Steppy",
  15868. height: math.unit(2, "gigameters")
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15874. {
  15875. side: {
  15876. height: math.unit(10, "feet"),
  15877. weight: math.unit(800, "kg"),
  15878. name: "Side",
  15879. image: {
  15880. source: "./media/characters/venio-darcony/side.svg",
  15881. extra: 1373 / 1003,
  15882. bottom: 0.037
  15883. }
  15884. },
  15885. front: {
  15886. height: math.unit(19, "feet"),
  15887. weight: math.unit(800, "kg"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/venio-darcony/front.svg"
  15891. }
  15892. },
  15893. back: {
  15894. height: math.unit(19, "feet"),
  15895. weight: math.unit(800, "kg"),
  15896. name: "Back",
  15897. image: {
  15898. source: "./media/characters/venio-darcony/back.svg"
  15899. }
  15900. },
  15901. sideNsfw: {
  15902. height: math.unit(10, "feet"),
  15903. weight: math.unit(800, "kg"),
  15904. name: "Side (NSFW)",
  15905. image: {
  15906. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15907. extra: 1373 / 1003,
  15908. bottom: 0.037
  15909. }
  15910. },
  15911. frontNsfw: {
  15912. height: math.unit(19, "feet"),
  15913. weight: math.unit(800, "kg"),
  15914. name: "Front (NSFW)",
  15915. image: {
  15916. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15917. }
  15918. },
  15919. backNsfw: {
  15920. height: math.unit(19, "feet"),
  15921. weight: math.unit(800, "kg"),
  15922. name: "Back (NSFW)",
  15923. image: {
  15924. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15925. }
  15926. },
  15927. sideArmored: {
  15928. height: math.unit(10, "feet"),
  15929. weight: math.unit(800, "kg"),
  15930. name: "Side (Armored)",
  15931. image: {
  15932. source: "./media/characters/venio-darcony/side-armored.svg",
  15933. extra: 1373 / 1003,
  15934. bottom: 0.037
  15935. }
  15936. },
  15937. frontArmored: {
  15938. height: math.unit(19, "feet"),
  15939. weight: math.unit(900, "kg"),
  15940. name: "Front (Armored)",
  15941. image: {
  15942. source: "./media/characters/venio-darcony/front-armored.svg"
  15943. }
  15944. },
  15945. backArmored: {
  15946. height: math.unit(19, "feet"),
  15947. weight: math.unit(900, "kg"),
  15948. name: "Back (Armored)",
  15949. image: {
  15950. source: "./media/characters/venio-darcony/back-armored.svg"
  15951. }
  15952. },
  15953. sword: {
  15954. height: math.unit(10, "feet"),
  15955. weight: math.unit(50, "lb"),
  15956. name: "Sword",
  15957. image: {
  15958. source: "./media/characters/venio-darcony/sword.svg"
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(10, "feet")
  15966. },
  15967. {
  15968. name: "Macro",
  15969. height: math.unit(130, "feet"),
  15970. default: true
  15971. },
  15972. {
  15973. name: "Macro+",
  15974. height: math.unit(240, "feet")
  15975. },
  15976. ]
  15977. ))
  15978. characterMakers.push(() => makeCharacter(
  15979. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15980. {
  15981. front: {
  15982. height: math.unit(6, "feet"),
  15983. weight: math.unit(150, "lb"),
  15984. name: "Front",
  15985. image: {
  15986. source: "./media/characters/veski/front.svg",
  15987. extra: 1299 / 1225,
  15988. bottom: 0.04
  15989. }
  15990. },
  15991. back: {
  15992. height: math.unit(6, "feet"),
  15993. weight: math.unit(150, "lb"),
  15994. name: "Back",
  15995. image: {
  15996. source: "./media/characters/veski/back.svg",
  15997. extra: 1299 / 1225,
  15998. bottom: 0.008
  15999. }
  16000. },
  16001. maw: {
  16002. height: math.unit(1.5 * 1.21, "feet"),
  16003. name: "Maw",
  16004. image: {
  16005. source: "./media/characters/veski/maw.svg"
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Macro",
  16012. height: math.unit(2, "km"),
  16013. default: true
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16019. {
  16020. front: {
  16021. height: math.unit(5 + 7 / 12, "feet"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/isabelle/front.svg",
  16025. extra: 2130 / 1976,
  16026. bottom: 0.05
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Supermicro",
  16033. height: math.unit(10, "micrometers")
  16034. },
  16035. {
  16036. name: "Micro",
  16037. height: math.unit(1, "inch")
  16038. },
  16039. {
  16040. name: "Tiny",
  16041. height: math.unit(5, "inches")
  16042. },
  16043. {
  16044. name: "Standard",
  16045. height: math.unit(5 + 7 / 12, "inches")
  16046. },
  16047. {
  16048. name: "Macro",
  16049. height: math.unit(80, "meters"),
  16050. default: true
  16051. },
  16052. {
  16053. name: "Megamacro",
  16054. height: math.unit(250, "meters")
  16055. },
  16056. {
  16057. name: "Gigamacro",
  16058. height: math.unit(5, "km")
  16059. },
  16060. {
  16061. name: "Cosmic",
  16062. height: math.unit(2.5e6, "miles")
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(6, "feet"),
  16071. weight: math.unit(150, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/hanzo/front.svg",
  16075. extra: 374 / 344,
  16076. bottom: 0.02
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(8, "feet"),
  16084. default: true
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16090. {
  16091. front: {
  16092. height: math.unit(7, "feet"),
  16093. weight: math.unit(130, "lb"),
  16094. name: "Front",
  16095. image: {
  16096. source: "./media/characters/anna/front.svg",
  16097. extra: 169 / 145,
  16098. bottom: 0.06
  16099. }
  16100. },
  16101. full: {
  16102. height: math.unit(4.96, "feet"),
  16103. weight: math.unit(220, "lb"),
  16104. name: "Full",
  16105. image: {
  16106. source: "./media/characters/anna/full.svg",
  16107. extra: 138 / 114,
  16108. bottom: 0.15
  16109. }
  16110. },
  16111. tongue: {
  16112. height: math.unit(2.53, "feet"),
  16113. name: "Tongue",
  16114. image: {
  16115. source: "./media/characters/anna/tongue.svg"
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(7, "feet"),
  16123. default: true
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(7, "feet"),
  16132. weight: math.unit(150, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/ian-corvid/front.svg",
  16136. extra: 150 / 142,
  16137. bottom: 0.02
  16138. }
  16139. },
  16140. back: {
  16141. height: math.unit(7, "feet"),
  16142. weight: math.unit(150, "lb"),
  16143. name: "Back",
  16144. image: {
  16145. source: "./media/characters/ian-corvid/back.svg",
  16146. extra: 150 / 143,
  16147. bottom: 0.01
  16148. }
  16149. },
  16150. stomping: {
  16151. height: math.unit(7, "feet"),
  16152. weight: math.unit(150, "lb"),
  16153. name: "Stomping",
  16154. image: {
  16155. source: "./media/characters/ian-corvid/stomping.svg",
  16156. extra: 76 / 72
  16157. }
  16158. },
  16159. sitting: {
  16160. height: math.unit(7 / 1.8, "feet"),
  16161. weight: math.unit(150, "lb"),
  16162. name: "Sitting",
  16163. image: {
  16164. source: "./media/characters/ian-corvid/sitting.svg",
  16165. extra: 1400 / 1269,
  16166. bottom: 0.15
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Tiny Microw",
  16173. height: math.unit(1, "inch")
  16174. },
  16175. {
  16176. name: "Microw",
  16177. height: math.unit(6, "inches")
  16178. },
  16179. {
  16180. name: "Crow",
  16181. height: math.unit(7 + 1 / 12, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macrow",
  16186. height: math.unit(176, "feet")
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(5 + 7 / 12, "feet"),
  16195. weight: math.unit(147, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/natalie-kellon/front.svg",
  16199. extra: 1214 / 1141,
  16200. bottom: 0.02
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Micro",
  16207. height: math.unit(1 / 16, "inch")
  16208. },
  16209. {
  16210. name: "Tiny",
  16211. height: math.unit(4, "inches")
  16212. },
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(5 + 7 / 12, "feet"),
  16216. default: true
  16217. },
  16218. {
  16219. name: "Amazon",
  16220. height: math.unit(12, "feet")
  16221. },
  16222. {
  16223. name: "Giantess",
  16224. height: math.unit(160, "meters")
  16225. },
  16226. {
  16227. name: "Titaness",
  16228. height: math.unit(800, "meters")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(6, "feet"),
  16237. weight: math.unit(150, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/alluria/front.svg",
  16241. extra: 806 / 738,
  16242. bottom: 0.01
  16243. }
  16244. },
  16245. side: {
  16246. height: math.unit(6, "feet"),
  16247. weight: math.unit(150, "lb"),
  16248. name: "Side",
  16249. image: {
  16250. source: "./media/characters/alluria/side.svg",
  16251. extra: 800 / 750,
  16252. }
  16253. },
  16254. back: {
  16255. height: math.unit(6, "feet"),
  16256. weight: math.unit(150, "lb"),
  16257. name: "Back",
  16258. image: {
  16259. source: "./media/characters/alluria/back.svg",
  16260. extra: 806 / 738,
  16261. }
  16262. },
  16263. frontMaid: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(150, "lb"),
  16266. name: "Front (Maid)",
  16267. image: {
  16268. source: "./media/characters/alluria/front-maid.svg",
  16269. extra: 806 / 738,
  16270. bottom: 0.01
  16271. }
  16272. },
  16273. sideMaid: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(150, "lb"),
  16276. name: "Side (Maid)",
  16277. image: {
  16278. source: "./media/characters/alluria/side-maid.svg",
  16279. extra: 800 / 750,
  16280. bottom: 0.005
  16281. }
  16282. },
  16283. backMaid: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Back (Maid)",
  16287. image: {
  16288. source: "./media/characters/alluria/back-maid.svg",
  16289. extra: 806 / 738,
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Micro",
  16296. height: math.unit(6, "inches"),
  16297. default: true
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16303. {
  16304. front: {
  16305. height: math.unit(6, "feet"),
  16306. weight: math.unit(150, "lb"),
  16307. name: "Front",
  16308. image: {
  16309. source: "./media/characters/kyle/front.svg",
  16310. extra: 1069 / 962,
  16311. bottom: 77.228 / 1727.45
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Macro",
  16318. height: math.unit(150, "feet"),
  16319. default: true
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16325. {
  16326. front: {
  16327. height: math.unit(6, "feet"),
  16328. weight: math.unit(300, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/duncan/front.svg",
  16332. extra: 1650 / 1482,
  16333. bottom: 0.05
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Macro",
  16340. height: math.unit(100, "feet"),
  16341. default: true
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16347. {
  16348. front: {
  16349. height: math.unit(5 + 4 / 12, "feet"),
  16350. weight: math.unit(220, "lb"),
  16351. name: "Front",
  16352. image: {
  16353. source: "./media/characters/memory/front.svg",
  16354. extra: 3641 / 3545,
  16355. bottom: 0.03
  16356. }
  16357. },
  16358. back: {
  16359. height: math.unit(5 + 4 / 12, "feet"),
  16360. weight: math.unit(220, "lb"),
  16361. name: "Back",
  16362. image: {
  16363. source: "./media/characters/memory/back.svg",
  16364. extra: 3641 / 3545,
  16365. bottom: 0.025
  16366. }
  16367. },
  16368. frontSkirt: {
  16369. height: math.unit(5 + 4 / 12, "feet"),
  16370. weight: math.unit(220, "lb"),
  16371. name: "Front (Skirt)",
  16372. image: {
  16373. source: "./media/characters/memory/front-skirt.svg",
  16374. extra: 3641 / 3545,
  16375. bottom: 0.03
  16376. }
  16377. },
  16378. frontDress: {
  16379. height: math.unit(5 + 4 / 12, "feet"),
  16380. weight: math.unit(220, "lb"),
  16381. name: "Front (Dress)",
  16382. image: {
  16383. source: "./media/characters/memory/front-dress.svg",
  16384. extra: 3641 / 3545,
  16385. bottom: 0.03
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Micro",
  16392. height: math.unit(6, "inches"),
  16393. default: true
  16394. },
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(5 + 4 / 12, "feet")
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(4 + 11 / 12, "feet"),
  16406. weight: math.unit(100, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/luno/front.svg",
  16410. extra: 1535 / 1487,
  16411. bottom: 0.03
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Micro",
  16418. height: math.unit(3, "inches")
  16419. },
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(4 + 11 / 12, "feet"),
  16423. default: true
  16424. },
  16425. {
  16426. name: "Macro",
  16427. height: math.unit(300, "feet")
  16428. },
  16429. {
  16430. name: "Megamacro",
  16431. height: math.unit(700, "miles")
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16437. {
  16438. front: {
  16439. height: math.unit(6 + 2 / 12, "feet"),
  16440. weight: math.unit(170, "lb"),
  16441. name: "Front",
  16442. image: {
  16443. source: "./media/characters/jamesy/front.svg",
  16444. extra: 440 / 382,
  16445. bottom: 0.005
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Micro",
  16452. height: math.unit(3, "inches")
  16453. },
  16454. {
  16455. name: "Normal",
  16456. height: math.unit(6 + 2 / 12, "feet"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Macro",
  16461. height: math.unit(300, "feet")
  16462. },
  16463. {
  16464. name: "Megamacro",
  16465. height: math.unit(700, "miles")
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16471. {
  16472. front: {
  16473. height: math.unit(6, "feet"),
  16474. weight: math.unit(160, "lb"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/mark/front.svg",
  16478. extra: 3300 / 3100,
  16479. bottom: 136.42 / 3440.47
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Macro",
  16486. height: math.unit(120, "meters")
  16487. },
  16488. {
  16489. name: "Bigger Macro",
  16490. height: math.unit(350, "meters")
  16491. },
  16492. {
  16493. name: "Megamacro",
  16494. height: math.unit(8, "km"),
  16495. default: true
  16496. },
  16497. {
  16498. name: "Continental",
  16499. height: math.unit(4550, "km")
  16500. },
  16501. {
  16502. name: "Planetary",
  16503. height: math.unit(65000, "km")
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(6, "feet"),
  16512. weight: math.unit(400, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/mac/front.svg",
  16516. extra: 1048 / 987.7,
  16517. bottom: 60 / 1107.6,
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Macro",
  16524. height: math.unit(500, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(5 + 2 / 12, "feet"),
  16534. weight: math.unit(190, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/bari/front.svg",
  16538. extra: 3156 / 2880,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. back: {
  16543. height: math.unit(5 + 2 / 12, "feet"),
  16544. weight: math.unit(190, "lb"),
  16545. name: "Back",
  16546. image: {
  16547. source: "./media/characters/bari/back.svg",
  16548. extra: 3260 / 2834,
  16549. bottom: 0.025
  16550. }
  16551. },
  16552. frontPlush: {
  16553. height: math.unit(5 + 2 / 12, "feet"),
  16554. weight: math.unit(190, "lb"),
  16555. name: "Front (Plush)",
  16556. image: {
  16557. source: "./media/characters/bari/front-plush.svg",
  16558. extra: 1112 / 1061,
  16559. bottom: 0.002
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Micro",
  16566. height: math.unit(3, "inches")
  16567. },
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(5 + 2 / 12, "feet"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Macro",
  16575. height: math.unit(20, "feet")
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16581. {
  16582. front: {
  16583. height: math.unit(6 + 1 / 12, "feet"),
  16584. weight: math.unit(275, "lb"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/hunter-misha-raven/front.svg"
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Mortal",
  16594. height: math.unit(6 + 1 / 12, "feet")
  16595. },
  16596. {
  16597. name: "Divine",
  16598. height: math.unit(1.12134e34, "parsecs"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16605. {
  16606. front: {
  16607. height: math.unit(6 + 3 / 12, "feet"),
  16608. weight: math.unit(220, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/max-calore/front.svg",
  16612. extra: 1700 / 1648,
  16613. bottom: 0.01
  16614. }
  16615. },
  16616. back: {
  16617. height: math.unit(6 + 3 / 12, "feet"),
  16618. weight: math.unit(220, "lb"),
  16619. name: "Back",
  16620. image: {
  16621. source: "./media/characters/max-calore/back.svg",
  16622. extra: 1700 / 1648,
  16623. bottom: 0.01
  16624. }
  16625. },
  16626. },
  16627. [
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(6 + 3 / 12, "feet"),
  16631. default: true
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16637. {
  16638. side: {
  16639. height: math.unit(2 + 8 / 12, "feet"),
  16640. weight: math.unit(99, "lb"),
  16641. name: "Side",
  16642. image: {
  16643. source: "./media/characters/aspen/side.svg",
  16644. extra: 152 / 138,
  16645. bottom: 0.032
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(2 + 8 / 12, "feet"),
  16653. default: true
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16659. {
  16660. side: {
  16661. height: math.unit(3 + 2 / 12, "feet"),
  16662. weight: math.unit(224, "lb"),
  16663. name: "Side",
  16664. image: {
  16665. source: "./media/characters/sheila-feral-wolf/side.svg",
  16666. extra: 179 / 166,
  16667. bottom: 0.03
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(3 + 2 / 12, "feet"),
  16675. default: true
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16681. {
  16682. side: {
  16683. height: math.unit(1 + 9 / 12, "feet"),
  16684. weight: math.unit(38, "lb"),
  16685. name: "Side",
  16686. image: {
  16687. source: "./media/characters/michelle/side.svg",
  16688. extra: 147 / 136.7,
  16689. bottom: 0.03
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(1 + 9 / 12, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(1 + 1 / 12, "feet"),
  16706. weight: math.unit(18, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/nino/front.svg"
  16710. }
  16711. },
  16712. },
  16713. [
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(1 + 1 / 12, "feet"),
  16717. default: true
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16723. {
  16724. front: {
  16725. height: math.unit(1, "feet"),
  16726. weight: math.unit(16, "lb"),
  16727. name: "Front",
  16728. image: {
  16729. source: "./media/characters/viola/front.svg"
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(1, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(6 + 5 / 12, "feet"),
  16746. weight: math.unit(580, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/atlas/front.svg",
  16750. extra: 298.5 / 290,
  16751. bottom: 0.015
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(6 + 5 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16765. {
  16766. side: {
  16767. height: math.unit(1 + 10 / 12, "feet"),
  16768. weight: math.unit(25, "lb"),
  16769. name: "Side",
  16770. image: {
  16771. source: "./media/characters/davy/side.svg",
  16772. extra: 200 / 170,
  16773. bottom: 0.01
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(1 + 10 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16787. {
  16788. side: {
  16789. height: math.unit(4 + 8 / 12, "feet"),
  16790. weight: math.unit(166, "lb"),
  16791. name: "Side",
  16792. image: {
  16793. source: "./media/characters/fiona/side.svg",
  16794. extra: 232 / 220,
  16795. bottom: 0.03
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(4 + 8 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16809. {
  16810. front: {
  16811. height: math.unit(2, "feet"),
  16812. weight: math.unit(62, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/lyla/front.svg",
  16816. bottom: 0.1
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(2, "feet"),
  16824. default: true
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16830. {
  16831. side: {
  16832. height: math.unit(1.8, "feet"),
  16833. weight: math.unit(44, "lb"),
  16834. name: "Side",
  16835. image: {
  16836. source: "./media/characters/perseus/side.svg",
  16837. bottom: 0.21
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(1.8, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16851. {
  16852. side: {
  16853. height: math.unit(4 + 2 / 12, "feet"),
  16854. weight: math.unit(20, "lb"),
  16855. name: "Side",
  16856. image: {
  16857. source: "./media/characters/remus/side.svg"
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(4 + 2 / 12, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(4 + 11 / 12, "feet"),
  16874. weight: math.unit(114, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/raf/front.svg",
  16878. bottom: 20.5 / 1863
  16879. }
  16880. },
  16881. side: {
  16882. height: math.unit(4 + 11 / 12, "feet"),
  16883. weight: math.unit(114, "lb"),
  16884. name: "Side",
  16885. image: {
  16886. source: "./media/characters/raf/side.svg",
  16887. bottom: 22 / 1822
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Micro",
  16894. height: math.unit(2, "inches")
  16895. },
  16896. {
  16897. name: "Normal",
  16898. height: math.unit(4 + 11 / 12, "feet"),
  16899. default: true
  16900. },
  16901. {
  16902. name: "Macro",
  16903. height: math.unit(70, "feet")
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(1.5, "meters"),
  16912. weight: math.unit(68, "kg"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/liam-einarr/front.svg",
  16916. extra: 2822 / 2666
  16917. }
  16918. },
  16919. back: {
  16920. height: math.unit(1.5, "meters"),
  16921. weight: math.unit(68, "kg"),
  16922. name: "Back",
  16923. image: {
  16924. source: "./media/characters/liam-einarr/back.svg",
  16925. extra: 2822 / 2666,
  16926. bottom: 0.015
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(1.5, "meters"),
  16934. default: true
  16935. },
  16936. {
  16937. name: "Macro",
  16938. height: math.unit(150, "meters")
  16939. },
  16940. {
  16941. name: "Megamacro",
  16942. height: math.unit(35, "km")
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(6, "feet"),
  16951. weight: math.unit(75, "kg"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/linda/front.svg",
  16955. extra: 930 / 874,
  16956. bottom: 0.004
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(6, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(6 + 8 / 12, "feet"),
  16973. weight: math.unit(220, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/caylex/front.svg",
  16977. extra: 821 / 772,
  16978. bottom: 0.07
  16979. }
  16980. },
  16981. back: {
  16982. height: math.unit(6 + 8 / 12, "feet"),
  16983. weight: math.unit(220, "lb"),
  16984. name: "Back",
  16985. image: {
  16986. source: "./media/characters/caylex/back.svg",
  16987. extra: 821 / 772,
  16988. bottom: 0.022
  16989. }
  16990. },
  16991. hand: {
  16992. height: math.unit(1.25, "feet"),
  16993. name: "Hand",
  16994. image: {
  16995. source: "./media/characters/caylex/hand.svg"
  16996. }
  16997. },
  16998. foot: {
  16999. height: math.unit(1.6, "feet"),
  17000. name: "Foot",
  17001. image: {
  17002. source: "./media/characters/caylex/foot.svg"
  17003. }
  17004. },
  17005. armored: {
  17006. height: math.unit(6 + 8 / 12, "feet"),
  17007. weight: math.unit(250, "lb"),
  17008. name: "Armored",
  17009. image: {
  17010. source: "./media/characters/caylex/armored.svg",
  17011. extra: 1420 / 1310,
  17012. bottom: 0.045
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(6 + 8 / 12, "feet"),
  17020. default: true
  17021. },
  17022. {
  17023. name: "Normal+",
  17024. height: math.unit(12, "feet")
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(7 + 6 / 12, "feet"),
  17033. weight: math.unit(288, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/alana/front.svg",
  17037. extra: 679 / 653,
  17038. bottom: 22.5 / 701
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(7 + 6 / 12, "feet")
  17046. },
  17047. {
  17048. name: "Large",
  17049. height: math.unit(50, "feet")
  17050. },
  17051. {
  17052. name: "Macro",
  17053. height: math.unit(100, "feet"),
  17054. default: true
  17055. },
  17056. {
  17057. name: "Macro+",
  17058. height: math.unit(200, "feet")
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17064. {
  17065. front: {
  17066. height: math.unit(6 + 1 / 12, "feet"),
  17067. weight: math.unit(210, "lb"),
  17068. name: "Front",
  17069. image: {
  17070. source: "./media/characters/hasani/front.svg",
  17071. extra: 244 / 232,
  17072. bottom: 0.01
  17073. }
  17074. },
  17075. back: {
  17076. height: math.unit(6 + 1 / 12, "feet"),
  17077. weight: math.unit(210, "lb"),
  17078. name: "Back",
  17079. image: {
  17080. source: "./media/characters/hasani/back.svg",
  17081. extra: 244 / 232,
  17082. bottom: 0.01
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(6 + 1 / 12, "feet")
  17090. },
  17091. {
  17092. name: "Macro",
  17093. height: math.unit(175, "feet"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(1.82, "meters"),
  17103. weight: math.unit(140, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/nita/front.svg",
  17107. extra: 2473 / 2363,
  17108. bottom: 0.01
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(1.82, "m")
  17116. },
  17117. {
  17118. name: "Macro",
  17119. height: math.unit(300, "m")
  17120. },
  17121. {
  17122. name: "Mistake Canon",
  17123. height: math.unit(0.5, "miles"),
  17124. default: true
  17125. },
  17126. {
  17127. name: "Big Mistake",
  17128. height: math.unit(13, "miles")
  17129. },
  17130. {
  17131. name: "Playing God",
  17132. height: math.unit(2450, "miles")
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(4, "feet"),
  17141. weight: math.unit(120, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/shiriko/front.svg",
  17145. extra: 195 / 188
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(4, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(6, "feet"),
  17162. name: "front",
  17163. image: {
  17164. source: "./media/characters/deja/front.svg",
  17165. extra: 926 / 840,
  17166. bottom: 0.07
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Planck Length",
  17173. height: math.unit(1.6e-35, "meters")
  17174. },
  17175. {
  17176. name: "Normal",
  17177. height: math.unit(30.48, "meters"),
  17178. default: true
  17179. },
  17180. {
  17181. name: "Universal",
  17182. height: math.unit(8.8e26, "meters")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17188. {
  17189. side: {
  17190. height: math.unit(8, "feet"),
  17191. weight: math.unit(6300, "lb"),
  17192. name: "Side",
  17193. image: {
  17194. source: "./media/characters/anima/side.svg",
  17195. bottom: 0.035
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(8, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(8, "feet"),
  17212. weight: math.unit(350, "lb"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/bianca/front.svg",
  17216. extra: 234 / 225,
  17217. bottom: 0.03
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(8, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(6, "feet"),
  17234. weight: math.unit(150, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/adinia/front.svg",
  17238. extra: 1845 / 1672,
  17239. bottom: 0.02
  17240. }
  17241. },
  17242. back: {
  17243. height: math.unit(6, "feet"),
  17244. weight: math.unit(150, "lb"),
  17245. name: "Back",
  17246. image: {
  17247. source: "./media/characters/adinia/back.svg",
  17248. extra: 1845 / 1672,
  17249. bottom: 0.002
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(11 + 5 / 12, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(3, "meters"),
  17266. weight: math.unit(200, "kg"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/lykasa/front.svg",
  17270. extra: 1076 / 976,
  17271. bottom: 0.06
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(3, "meters")
  17279. },
  17280. {
  17281. name: "Kaiju",
  17282. height: math.unit(120, "meters"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Mega Kaiju",
  17287. height: math.unit(240, "km")
  17288. },
  17289. {
  17290. name: "Giga Kaiju",
  17291. height: math.unit(400, "megameters")
  17292. },
  17293. {
  17294. name: "Tera Kaiju",
  17295. height: math.unit(800, "gigameters")
  17296. },
  17297. {
  17298. name: "Kaiju Dragon Goddess",
  17299. height: math.unit(26, "zettaparsecs")
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17305. {
  17306. side: {
  17307. height: math.unit(283 / 124 * 6, "feet"),
  17308. weight: math.unit(35000, "lb"),
  17309. name: "Side",
  17310. image: {
  17311. source: "./media/characters/malfaren/side.svg",
  17312. extra: 2500 / 1010,
  17313. bottom: 0.01
  17314. }
  17315. },
  17316. front: {
  17317. height: math.unit(22.36, "feet"),
  17318. weight: math.unit(35000, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/malfaren/front.svg",
  17322. extra: 1631 / 1476,
  17323. bottom: 0.01
  17324. }
  17325. },
  17326. maw: {
  17327. height: math.unit(6.9, "feet"),
  17328. name: "Maw",
  17329. image: {
  17330. source: "./media/characters/malfaren/maw.svg"
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Big",
  17337. height: math.unit(283 / 162 * 6, "feet"),
  17338. },
  17339. {
  17340. name: "Bigger",
  17341. height: math.unit(283 / 124 * 6, "feet")
  17342. },
  17343. {
  17344. name: "Massive",
  17345. height: math.unit(283 / 92 * 6, "feet"),
  17346. default: true
  17347. },
  17348. {
  17349. name: "👀💦",
  17350. height: math.unit(283 / 73 * 6, "feet"),
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17356. {
  17357. front: {
  17358. height: math.unit(1.7, "m"),
  17359. weight: math.unit(70, "kg"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/kernel/front.svg",
  17363. extra: 222 / 210,
  17364. bottom: 0.007
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Nano",
  17371. height: math.unit(17, "micrometers")
  17372. },
  17373. {
  17374. name: "Micro",
  17375. height: math.unit(1.7, "mm")
  17376. },
  17377. {
  17378. name: "Small",
  17379. height: math.unit(1.7, "cm")
  17380. },
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(1.7, "m"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(1.75, "meters"),
  17393. weight: math.unit(65, "kg"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/jayne-folest/front.svg",
  17397. extra: 2115 / 2007,
  17398. bottom: 0.02
  17399. }
  17400. },
  17401. back: {
  17402. height: math.unit(1.75, "meters"),
  17403. weight: math.unit(65, "kg"),
  17404. name: "Back",
  17405. image: {
  17406. source: "./media/characters/jayne-folest/back.svg",
  17407. extra: 2115 / 2007,
  17408. bottom: 0.005
  17409. }
  17410. },
  17411. frontClothed: {
  17412. height: math.unit(1.75, "meters"),
  17413. weight: math.unit(65, "kg"),
  17414. name: "Front (Clothed)",
  17415. image: {
  17416. source: "./media/characters/jayne-folest/front-clothed.svg",
  17417. extra: 2115 / 2007,
  17418. bottom: 0.035
  17419. }
  17420. },
  17421. hand: {
  17422. height: math.unit(1 / 1.260, "feet"),
  17423. name: "Hand",
  17424. image: {
  17425. source: "./media/characters/jayne-folest/hand.svg"
  17426. }
  17427. },
  17428. foot: {
  17429. height: math.unit(1 / 0.918, "feet"),
  17430. name: "Foot",
  17431. image: {
  17432. source: "./media/characters/jayne-folest/foot.svg"
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Micro",
  17439. height: math.unit(4, "cm")
  17440. },
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(1.75, "meters")
  17444. },
  17445. {
  17446. name: "Macro",
  17447. height: math.unit(47.5, "meters"),
  17448. default: true
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(180, "cm"),
  17457. weight: math.unit(70, "kg"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/algier/front.svg",
  17461. extra: 596 / 572,
  17462. bottom: 0.04
  17463. }
  17464. },
  17465. back: {
  17466. height: math.unit(180, "cm"),
  17467. weight: math.unit(70, "kg"),
  17468. name: "Back",
  17469. image: {
  17470. source: "./media/characters/algier/back.svg",
  17471. extra: 596 / 572,
  17472. bottom: 0.025
  17473. }
  17474. },
  17475. frontdressed: {
  17476. height: math.unit(180, "cm"),
  17477. weight: math.unit(150, "kg"),
  17478. name: "Front-dressed",
  17479. image: {
  17480. source: "./media/characters/algier/front-dressed.svg",
  17481. extra: 596 / 572,
  17482. bottom: 0.038
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Micro",
  17489. height: math.unit(5, "cm")
  17490. },
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(180, "cm"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Macro",
  17498. height: math.unit(64, "m")
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17504. {
  17505. upright: {
  17506. height: math.unit(7, "feet"),
  17507. weight: math.unit(300, "lb"),
  17508. name: "Upright",
  17509. image: {
  17510. source: "./media/characters/pretzel/upright.svg",
  17511. extra: 534 / 522,
  17512. bottom: 0.065
  17513. }
  17514. },
  17515. sprawling: {
  17516. height: math.unit(3.75, "feet"),
  17517. weight: math.unit(300, "lb"),
  17518. name: "Sprawling",
  17519. image: {
  17520. source: "./media/characters/pretzel/sprawling.svg",
  17521. extra: 314 / 281,
  17522. bottom: 0.1
  17523. }
  17524. },
  17525. tongue: {
  17526. height: math.unit(2, "feet"),
  17527. name: "Tongue",
  17528. image: {
  17529. source: "./media/characters/pretzel/tongue.svg"
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(7, "feet"),
  17537. default: true
  17538. },
  17539. {
  17540. name: "Oversized",
  17541. height: math.unit(15, "feet")
  17542. },
  17543. {
  17544. name: "Huge",
  17545. height: math.unit(30, "feet")
  17546. },
  17547. {
  17548. name: "Macro",
  17549. height: math.unit(250, "feet")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17555. {
  17556. sideFront: {
  17557. height: math.unit(5 + 2 / 12, "feet"),
  17558. weight: math.unit(120, "lb"),
  17559. name: "Front Side",
  17560. image: {
  17561. source: "./media/characters/roxi/side-front.svg",
  17562. extra: 2924 / 2717,
  17563. bottom: 0.08
  17564. }
  17565. },
  17566. sideBack: {
  17567. height: math.unit(5 + 2 / 12, "feet"),
  17568. weight: math.unit(120, "lb"),
  17569. name: "Back Side",
  17570. image: {
  17571. source: "./media/characters/roxi/side-back.svg",
  17572. extra: 2904 / 2693,
  17573. bottom: 0.06
  17574. }
  17575. },
  17576. front: {
  17577. height: math.unit(5 + 2 / 12, "feet"),
  17578. weight: math.unit(120, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/roxi/front.svg",
  17582. extra: 2028 / 1907,
  17583. bottom: 0.01
  17584. }
  17585. },
  17586. frontAlt: {
  17587. height: math.unit(5 + 2 / 12, "feet"),
  17588. weight: math.unit(120, "lb"),
  17589. name: "Front (Alt)",
  17590. image: {
  17591. source: "./media/characters/roxi/front-alt.svg",
  17592. extra: 1828 / 1798,
  17593. bottom: 0.01
  17594. }
  17595. },
  17596. sitting: {
  17597. height: math.unit(2.8, "feet"),
  17598. weight: math.unit(120, "lb"),
  17599. name: "Sitting",
  17600. image: {
  17601. source: "./media/characters/roxi/sitting.svg",
  17602. extra: 2660 / 2462,
  17603. bottom: 0.1
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(5 + 2 / 12, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17617. {
  17618. side: {
  17619. height: math.unit(55, "feet"),
  17620. weight: math.unit(153, "tons"),
  17621. name: "Side",
  17622. image: {
  17623. source: "./media/characters/shadow/side.svg",
  17624. extra: 701 / 628,
  17625. bottom: 0.02
  17626. }
  17627. },
  17628. flying: {
  17629. height: math.unit(145, "feet"),
  17630. weight: math.unit(153, "tons"),
  17631. name: "Flying",
  17632. image: {
  17633. source: "./media/characters/shadow/flying.svg"
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(55, "feet"),
  17641. default: true
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17647. {
  17648. front: {
  17649. height: math.unit(6, "feet"),
  17650. weight: math.unit(200, "lb"),
  17651. name: "Front",
  17652. image: {
  17653. source: "./media/characters/marcie/front.svg",
  17654. extra: 960 / 876,
  17655. bottom: 58 / 1017.87
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Macro",
  17662. height: math.unit(1, "mile"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(7, "feet"),
  17672. weight: math.unit(200, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/kachina/front.svg",
  17676. extra: 1290.68 / 1119,
  17677. bottom: 36.5 / 1327.18
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(7, "feet"),
  17685. default: true
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17691. {
  17692. looking: {
  17693. height: math.unit(2, "meters"),
  17694. weight: math.unit(300, "kg"),
  17695. name: "Looking",
  17696. image: {
  17697. source: "./media/characters/kash/looking.svg",
  17698. extra: 474 / 344,
  17699. bottom: 0.03
  17700. }
  17701. },
  17702. side: {
  17703. height: math.unit(2, "meters"),
  17704. weight: math.unit(300, "kg"),
  17705. name: "Side",
  17706. image: {
  17707. source: "./media/characters/kash/side.svg",
  17708. extra: 302 / 251,
  17709. bottom: 0.03
  17710. }
  17711. },
  17712. front: {
  17713. height: math.unit(2, "meters"),
  17714. weight: math.unit(300, "kg"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/kash/front.svg",
  17718. extra: 495 / 360,
  17719. bottom: 0.015
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(2, "meters"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Big",
  17731. height: math.unit(3, "meters")
  17732. },
  17733. {
  17734. name: "Large",
  17735. height: math.unit(5, "meters")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17741. {
  17742. feeding: {
  17743. height: math.unit(6.7, "feet"),
  17744. weight: math.unit(350, "lb"),
  17745. name: "Feeding",
  17746. image: {
  17747. source: "./media/characters/lalim/feeding.svg",
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(6.7, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(9.5, "feet"),
  17764. weight: math.unit(600, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/de'vout/front.svg",
  17768. extra: 1443 / 1328,
  17769. bottom: 0.025
  17770. }
  17771. },
  17772. back: {
  17773. height: math.unit(9.5, "feet"),
  17774. weight: math.unit(600, "lb"),
  17775. name: "Back",
  17776. image: {
  17777. source: "./media/characters/de'vout/back.svg",
  17778. extra: 1443 / 1328
  17779. }
  17780. },
  17781. frontDressed: {
  17782. height: math.unit(9.5, "feet"),
  17783. weight: math.unit(600, "lb"),
  17784. name: "Front (Dressed",
  17785. image: {
  17786. source: "./media/characters/de'vout/front-dressed.svg",
  17787. extra: 1443 / 1328,
  17788. bottom: 0.025
  17789. }
  17790. },
  17791. backDressed: {
  17792. height: math.unit(9.5, "feet"),
  17793. weight: math.unit(600, "lb"),
  17794. name: "Back (Dressed",
  17795. image: {
  17796. source: "./media/characters/de'vout/back-dressed.svg",
  17797. extra: 1443 / 1328
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(9.5, "feet"),
  17805. default: true
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(8, "feet"),
  17814. weight: math.unit(225, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/talana/front.svg",
  17818. extra: 1410 / 1300,
  17819. bottom: 0.015
  17820. }
  17821. },
  17822. frontDressed: {
  17823. height: math.unit(8, "feet"),
  17824. weight: math.unit(225, "lb"),
  17825. name: "Front (Dressed",
  17826. image: {
  17827. source: "./media/characters/talana/front-dressed.svg",
  17828. extra: 1410 / 1300,
  17829. bottom: 0.015
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(8, "feet"),
  17837. default: true
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17843. {
  17844. side: {
  17845. height: math.unit(7.2, "feet"),
  17846. weight: math.unit(150, "lb"),
  17847. name: "Side",
  17848. image: {
  17849. source: "./media/characters/xeauvok/side.svg",
  17850. extra: 1975 / 1523,
  17851. bottom: 0.07
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(7.2, "feet"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17865. {
  17866. side: {
  17867. height: math.unit(10, "feet"),
  17868. weight: math.unit(900, "kg"),
  17869. name: "Side",
  17870. image: {
  17871. source: "./media/characters/zara/side.svg",
  17872. extra: 504 / 498
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(10, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17886. {
  17887. side: {
  17888. height: math.unit(6, "feet"),
  17889. weight: math.unit(150, "lb"),
  17890. name: "Side",
  17891. image: {
  17892. source: "./media/characters/richard-dragon/side.svg",
  17893. extra: 845 / 340,
  17894. bottom: 0.017
  17895. }
  17896. },
  17897. maw: {
  17898. height: math.unit(2.97, "feet"),
  17899. name: "Maw",
  17900. image: {
  17901. source: "./media/characters/richard-dragon/maw.svg"
  17902. }
  17903. },
  17904. },
  17905. [
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(4, "feet"),
  17913. weight: math.unit(100, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/richard-smeargle/front.svg",
  17917. extra: 2952 / 2820,
  17918. bottom: 0.028
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(4, "feet"),
  17926. default: true
  17927. },
  17928. {
  17929. name: "Dynamax",
  17930. height: math.unit(20, "meters")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(6, "feet"),
  17939. weight: math.unit(110, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/klay/front.svg",
  17943. extra: 962 / 883,
  17944. bottom: 0.04
  17945. }
  17946. },
  17947. back: {
  17948. height: math.unit(6, "feet"),
  17949. weight: math.unit(110, "lb"),
  17950. name: "Back",
  17951. image: {
  17952. source: "./media/characters/klay/back.svg",
  17953. extra: 962 / 883
  17954. }
  17955. },
  17956. beans: {
  17957. height: math.unit(1.15, "feet"),
  17958. name: "Beans",
  17959. image: {
  17960. source: "./media/characters/klay/beans.svg"
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Micro",
  17967. height: math.unit(6, "inches")
  17968. },
  17969. {
  17970. name: "Mini",
  17971. height: math.unit(3, "feet")
  17972. },
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(6, "feet"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "Big",
  17980. height: math.unit(25, "feet")
  17981. },
  17982. {
  17983. name: "Macro",
  17984. height: math.unit(100, "feet")
  17985. },
  17986. {
  17987. name: "Megamacro",
  17988. height: math.unit(400, "feet")
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17994. {
  17995. front: {
  17996. height: math.unit(6, "feet"),
  17997. weight: math.unit(160, "lb"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/marcus/front.svg",
  18001. extra: 734 / 676,
  18002. bottom: 0.03
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Little",
  18009. height: math.unit(6, "feet")
  18010. },
  18011. {
  18012. name: "Normal",
  18013. height: math.unit(110, "feet"),
  18014. default: true
  18015. },
  18016. {
  18017. name: "Macro",
  18018. height: math.unit(250, "feet")
  18019. },
  18020. {
  18021. name: "Megamacro",
  18022. height: math.unit(1000, "feet")
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(7, "feet"),
  18031. weight: math.unit(275, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/claude-delroute/front.svg",
  18035. extra: 230 / 214,
  18036. bottom: 0.007
  18037. }
  18038. },
  18039. side: {
  18040. height: math.unit(7, "feet"),
  18041. weight: math.unit(275, "lb"),
  18042. name: "Side",
  18043. image: {
  18044. source: "./media/characters/claude-delroute/side.svg",
  18045. extra: 222 / 214,
  18046. bottom: 0.01
  18047. }
  18048. },
  18049. back: {
  18050. height: math.unit(7, "feet"),
  18051. weight: math.unit(275, "lb"),
  18052. name: "Back",
  18053. image: {
  18054. source: "./media/characters/claude-delroute/back.svg",
  18055. extra: 230 / 214,
  18056. bottom: 0.015
  18057. }
  18058. },
  18059. maw: {
  18060. height: math.unit(0.6407, "meters"),
  18061. name: "Maw",
  18062. image: {
  18063. source: "./media/characters/claude-delroute/maw.svg"
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Normal",
  18070. height: math.unit(7, "feet"),
  18071. default: true
  18072. },
  18073. {
  18074. name: "Lorge",
  18075. height: math.unit(20, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(8 + 4 / 12, "feet"),
  18084. weight: math.unit(600, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/dragonien/front.svg",
  18088. extra: 100 / 94,
  18089. bottom: 3.3 / 103.3445
  18090. }
  18091. },
  18092. back: {
  18093. height: math.unit(8 + 4 / 12, "feet"),
  18094. weight: math.unit(600, "lb"),
  18095. name: "Back",
  18096. image: {
  18097. source: "./media/characters/dragonien/back.svg",
  18098. extra: 776 / 746,
  18099. bottom: 6.4 / 782.0616
  18100. }
  18101. },
  18102. foot: {
  18103. height: math.unit(1.54, "feet"),
  18104. name: "Foot",
  18105. image: {
  18106. source: "./media/characters/dragonien/foot.svg",
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(8 + 4 / 12, "feet"),
  18114. default: true
  18115. },
  18116. {
  18117. name: "Macro",
  18118. height: math.unit(200, "feet")
  18119. },
  18120. {
  18121. name: "Megamacro",
  18122. height: math.unit(1, "mile")
  18123. },
  18124. {
  18125. name: "Gigamacro",
  18126. height: math.unit(1000, "miles")
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(5 + 2 / 12, "feet"),
  18135. weight: math.unit(110, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/desta/front.svg",
  18139. extra: 767 / 726,
  18140. bottom: 11.7 / 779
  18141. }
  18142. },
  18143. back: {
  18144. height: math.unit(5 + 2 / 12, "feet"),
  18145. weight: math.unit(110, "lb"),
  18146. name: "Back",
  18147. image: {
  18148. source: "./media/characters/desta/back.svg",
  18149. extra: 777 / 728,
  18150. bottom: 6 / 784
  18151. }
  18152. },
  18153. frontAlt: {
  18154. height: math.unit(5 + 2 / 12, "feet"),
  18155. weight: math.unit(110, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/desta/front-alt.svg",
  18159. extra: 1482 / 1417
  18160. }
  18161. },
  18162. side: {
  18163. height: math.unit(5 + 2 / 12, "feet"),
  18164. weight: math.unit(110, "lb"),
  18165. name: "Side",
  18166. image: {
  18167. source: "./media/characters/desta/side.svg",
  18168. extra: 2579 / 2491,
  18169. bottom: 0.053
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Micro",
  18176. height: math.unit(6, "inches")
  18177. },
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(5 + 2 / 12, "feet"),
  18181. default: true
  18182. },
  18183. {
  18184. name: "Macro",
  18185. height: math.unit(62, "feet")
  18186. },
  18187. {
  18188. name: "Megamacro",
  18189. height: math.unit(1800, "feet")
  18190. },
  18191. ]
  18192. ))
  18193. characterMakers.push(() => makeCharacter(
  18194. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18195. {
  18196. front: {
  18197. height: math.unit(10, "feet"),
  18198. weight: math.unit(700, "lb"),
  18199. name: "Front",
  18200. image: {
  18201. source: "./media/characters/storm-alystar/front.svg",
  18202. extra: 2112 / 1898,
  18203. bottom: 0.034
  18204. }
  18205. },
  18206. },
  18207. [
  18208. {
  18209. name: "Micro",
  18210. height: math.unit(3.5, "inches")
  18211. },
  18212. {
  18213. name: "Normal",
  18214. height: math.unit(10, "feet"),
  18215. default: true
  18216. },
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(400, "feet")
  18220. },
  18221. {
  18222. name: "Deific",
  18223. height: math.unit(60, "miles")
  18224. },
  18225. ]
  18226. ))
  18227. characterMakers.push(() => makeCharacter(
  18228. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18229. {
  18230. front: {
  18231. height: math.unit(2.35, "meters"),
  18232. weight: math.unit(119, "kg"),
  18233. name: "Front",
  18234. image: {
  18235. source: "./media/characters/ilia/front.svg",
  18236. extra: 1285 / 1255,
  18237. bottom: 0.06
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(2.35, "meters")
  18245. },
  18246. {
  18247. name: "Macro",
  18248. height: math.unit(140, "meters"),
  18249. default: true
  18250. },
  18251. {
  18252. name: "Megamacro",
  18253. height: math.unit(100, "miles")
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18259. {
  18260. front: {
  18261. height: math.unit(6 + 5 / 12, "feet"),
  18262. weight: math.unit(190, "lb"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/kingdead/front.svg",
  18266. extra: 1228 / 1177
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Micro",
  18273. height: math.unit(7, "inches")
  18274. },
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(6 + 5 / 12, "feet")
  18278. },
  18279. {
  18280. name: "Macro",
  18281. height: math.unit(150, "feet"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Megamacro",
  18286. height: math.unit(200, "miles")
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(8, "feet"),
  18295. weight: math.unit(600, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/kyrehx/front.svg",
  18299. extra: 1195 / 1095,
  18300. bottom: 0.034
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Micro",
  18307. height: math.unit(2, "inches")
  18308. },
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(8, "feet"),
  18312. default: true
  18313. },
  18314. {
  18315. name: "Macro",
  18316. height: math.unit(255, "feet")
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18322. {
  18323. front: {
  18324. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18325. weight: math.unit(184, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/xang/front.svg",
  18329. extra: 845 / 755
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Normal",
  18336. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18337. default: true
  18338. },
  18339. {
  18340. name: "Macro",
  18341. height: math.unit(0.935 * 146, "feet")
  18342. },
  18343. {
  18344. name: "Megamacro",
  18345. height: math.unit(0.935 * 3, "miles")
  18346. },
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18351. {
  18352. frontDressed: {
  18353. height: math.unit(5 + 7 / 12, "feet"),
  18354. weight: math.unit(140, "lb"),
  18355. name: "Front (Dressed)",
  18356. image: {
  18357. source: "./media/characters/doc-weardno/front-dressed.svg",
  18358. extra: 263 / 234
  18359. }
  18360. },
  18361. backDressed: {
  18362. height: math.unit(5 + 7 / 12, "feet"),
  18363. weight: math.unit(140, "lb"),
  18364. name: "Back (Dressed)",
  18365. image: {
  18366. source: "./media/characters/doc-weardno/back-dressed.svg",
  18367. extra: 266 / 238
  18368. }
  18369. },
  18370. front: {
  18371. height: math.unit(5 + 7 / 12, "feet"),
  18372. weight: math.unit(140, "lb"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/doc-weardno/front.svg",
  18376. extra: 254 / 233
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Micro",
  18383. height: math.unit(3, "inches")
  18384. },
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(5 + 7 / 12, "feet"),
  18388. default: true
  18389. },
  18390. {
  18391. name: "Macro",
  18392. height: math.unit(25, "feet")
  18393. },
  18394. {
  18395. name: "Megamacro",
  18396. height: math.unit(2, "miles")
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(6 + 2 / 12, "feet"),
  18405. weight: math.unit(153, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/seth-whilst/front.svg",
  18409. bottom: 0.07
  18410. }
  18411. },
  18412. },
  18413. [
  18414. {
  18415. name: "Micro",
  18416. height: math.unit(5, "inches")
  18417. },
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(6 + 2 / 12, "feet"),
  18421. default: true
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(3, "inches"),
  18430. weight: math.unit(8, "grams"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/pocket-jabari/front.svg",
  18434. extra: 1024 / 974,
  18435. bottom: 0.039
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Minimicro",
  18442. height: math.unit(8, "mm")
  18443. },
  18444. {
  18445. name: "Micro",
  18446. height: math.unit(3, "inches"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(3, "feet")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(15, "feet"),
  18460. weight: math.unit(3280, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/sapphy/front.svg",
  18464. extra: 671 / 577,
  18465. bottom: 0.085
  18466. }
  18467. },
  18468. back: {
  18469. height: math.unit(15, "feet"),
  18470. weight: math.unit(3280, "lb"),
  18471. name: "Back",
  18472. image: {
  18473. source: "./media/characters/sapphy/back.svg",
  18474. extra: 631 / 607,
  18475. bottom: 0.045
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(15, "feet")
  18483. },
  18484. {
  18485. name: "Casual Macro",
  18486. height: math.unit(120, "feet")
  18487. },
  18488. {
  18489. name: "Macro",
  18490. height: math.unit(2150, "feet"),
  18491. default: true
  18492. },
  18493. {
  18494. name: "Megamacro",
  18495. height: math.unit(8, "miles")
  18496. },
  18497. {
  18498. name: "Galaxy Mom",
  18499. height: math.unit(6, "megalightyears")
  18500. },
  18501. ]
  18502. ))
  18503. characterMakers.push(() => makeCharacter(
  18504. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18505. {
  18506. front: {
  18507. height: math.unit(6, "feet"),
  18508. weight: math.unit(170, "lb"),
  18509. name: "Front",
  18510. image: {
  18511. source: "./media/characters/kiro/front.svg",
  18512. extra: 1064 / 1012,
  18513. bottom: 0.052
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Micro",
  18520. height: math.unit(6, "inches")
  18521. },
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(6, "feet"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "Macro",
  18529. height: math.unit(72, "feet")
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(5 + 9 / 12, "feet"),
  18538. weight: math.unit(175, "lb"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/irishfox/front.svg",
  18542. extra: 1912 / 1680,
  18543. bottom: 0.02
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Nano",
  18550. height: math.unit(1, "mm")
  18551. },
  18552. {
  18553. name: "Micro",
  18554. height: math.unit(2, "inches")
  18555. },
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(5 + 9 / 12, "feet"),
  18559. default: true
  18560. },
  18561. {
  18562. name: "Macro",
  18563. height: math.unit(45, "feet")
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(6 + 1 / 12, "feet"),
  18572. weight: math.unit(75, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/aronai-sieyes/front.svg",
  18576. extra: 1556 / 1480,
  18577. bottom: 0.015
  18578. }
  18579. },
  18580. side: {
  18581. height: math.unit(6 + 1 / 12, "feet"),
  18582. weight: math.unit(75, "lb"),
  18583. name: "Side",
  18584. image: {
  18585. source: "./media/characters/aronai-sieyes/side.svg",
  18586. extra: 1433 / 1390,
  18587. bottom: 0.0393
  18588. }
  18589. },
  18590. back: {
  18591. height: math.unit(6 + 1 / 12, "feet"),
  18592. weight: math.unit(75, "lb"),
  18593. name: "Back",
  18594. image: {
  18595. source: "./media/characters/aronai-sieyes/back.svg",
  18596. extra: 1544 / 1494,
  18597. bottom: 0.02
  18598. }
  18599. },
  18600. frontClothed: {
  18601. height: math.unit(6 + 1 / 12, "feet"),
  18602. weight: math.unit(75, "lb"),
  18603. name: "Front (Clothed)",
  18604. image: {
  18605. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18606. extra: 1582 / 1527
  18607. }
  18608. },
  18609. feral: {
  18610. height: math.unit(18, "feet"),
  18611. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18612. name: "Feral",
  18613. image: {
  18614. source: "./media/characters/aronai-sieyes/feral.svg",
  18615. extra: 1530 / 1240,
  18616. bottom: 0.035
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Micro",
  18623. height: math.unit(2, "inches")
  18624. },
  18625. {
  18626. name: "Normal",
  18627. height: math.unit(6 + 1 / 12, "feet"),
  18628. default: true
  18629. }
  18630. ]
  18631. ))
  18632. characterMakers.push(() => makeCharacter(
  18633. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18634. {
  18635. front: {
  18636. height: math.unit(12, "feet"),
  18637. weight: math.unit(410, "kg"),
  18638. name: "Front",
  18639. image: {
  18640. source: "./media/characters/xuna/front.svg",
  18641. extra: 2184 / 1980
  18642. }
  18643. },
  18644. side: {
  18645. height: math.unit(12, "feet"),
  18646. weight: math.unit(410, "kg"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/xuna/side.svg",
  18650. extra: 2184 / 1980
  18651. }
  18652. },
  18653. back: {
  18654. height: math.unit(12, "feet"),
  18655. weight: math.unit(410, "kg"),
  18656. name: "Back",
  18657. image: {
  18658. source: "./media/characters/xuna/back.svg",
  18659. extra: 2184 / 1980
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Nano glow",
  18666. height: math.unit(10, "nm")
  18667. },
  18668. {
  18669. name: "Micro floof",
  18670. height: math.unit(0.3, "m")
  18671. },
  18672. {
  18673. name: "Huggable softy boi",
  18674. height: math.unit(3.6576, "m"),
  18675. default: true
  18676. },
  18677. {
  18678. name: "Admirable floof",
  18679. height: math.unit(80, "meters")
  18680. },
  18681. {
  18682. name: "Gentle macro",
  18683. height: math.unit(300, "meters")
  18684. },
  18685. {
  18686. name: "Very careful floof",
  18687. height: math.unit(3200, "meters")
  18688. },
  18689. {
  18690. name: "The mega floof",
  18691. height: math.unit(36000, "meters")
  18692. },
  18693. {
  18694. name: "Giga-fur-Wicker",
  18695. height: math.unit(4800000, "meters")
  18696. },
  18697. {
  18698. name: "Licky world",
  18699. height: math.unit(20000000, "meters")
  18700. },
  18701. {
  18702. name: "Floofy cyan sun",
  18703. height: math.unit(1500000000, "meters")
  18704. },
  18705. {
  18706. name: "Milky Wicker",
  18707. height: math.unit(1000000000000000000000, "meters")
  18708. },
  18709. {
  18710. name: "The observing Wicker",
  18711. height: math.unit(999999999999999999999999999, "meters")
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18717. {
  18718. front: {
  18719. height: math.unit(5 + 9 / 12, "feet"),
  18720. weight: math.unit(150, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/arokha-sieyes/front.svg",
  18724. extra: 1425 / 1284,
  18725. bottom: 0.05
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Normal",
  18732. height: math.unit(5 + 9 / 12, "feet")
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(30, "meters"),
  18737. default: true
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(6, "feet"),
  18746. weight: math.unit(180, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/arokh-sieyes/front.svg",
  18750. extra: 1830 / 1769,
  18751. bottom: 0.01
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(6, "feet")
  18759. },
  18760. {
  18761. name: "Macro",
  18762. height: math.unit(30, "meters"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18769. {
  18770. side: {
  18771. height: math.unit(13 + 1 / 12, "feet"),
  18772. weight: math.unit(8.5, "tonnes"),
  18773. name: "Side",
  18774. image: {
  18775. source: "./media/characters/goldeneye/side.svg",
  18776. extra: 1182 / 778,
  18777. bottom: 0.067
  18778. }
  18779. },
  18780. paw: {
  18781. height: math.unit(3.4, "feet"),
  18782. name: "Paw",
  18783. image: {
  18784. source: "./media/characters/goldeneye/paw.svg"
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(13 + 1 / 12, "feet"),
  18792. default: true
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18798. {
  18799. front: {
  18800. height: math.unit(6 + 1 / 12, "feet"),
  18801. weight: math.unit(210, "lb"),
  18802. name: "Front",
  18803. image: {
  18804. source: "./media/characters/leonardo-lycheborne/front.svg",
  18805. extra: 390 / 365,
  18806. bottom: 0.032
  18807. }
  18808. },
  18809. side: {
  18810. height: math.unit(6 + 1 / 12, "feet"),
  18811. weight: math.unit(210, "lb"),
  18812. name: "Side",
  18813. image: {
  18814. source: "./media/characters/leonardo-lycheborne/side.svg",
  18815. extra: 390 / 365,
  18816. bottom: 0.005
  18817. }
  18818. },
  18819. back: {
  18820. height: math.unit(6 + 1 / 12, "feet"),
  18821. weight: math.unit(210, "lb"),
  18822. name: "Back",
  18823. image: {
  18824. source: "./media/characters/leonardo-lycheborne/back.svg",
  18825. extra: 392 / 366,
  18826. bottom: 0.01
  18827. }
  18828. },
  18829. hand: {
  18830. height: math.unit(1.08, "feet"),
  18831. name: "Hand",
  18832. image: {
  18833. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18834. }
  18835. },
  18836. foot: {
  18837. height: math.unit(1.32, "feet"),
  18838. name: "Foot",
  18839. image: {
  18840. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18841. }
  18842. },
  18843. were: {
  18844. height: math.unit(20, "feet"),
  18845. weight: math.unit(7800, "lb"),
  18846. name: "Were",
  18847. image: {
  18848. source: "./media/characters/leonardo-lycheborne/were.svg",
  18849. extra: 308 / 294,
  18850. bottom: 0.048
  18851. }
  18852. },
  18853. feral: {
  18854. height: math.unit(7.5, "feet"),
  18855. weight: math.unit(600, "lb"),
  18856. name: "Feral",
  18857. image: {
  18858. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18859. extra: 210 / 186,
  18860. bottom: 0.108
  18861. }
  18862. },
  18863. taur: {
  18864. height: math.unit(11, "feet"),
  18865. weight: math.unit(3300, "lb"),
  18866. name: "Taur",
  18867. image: {
  18868. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18869. extra: 320 / 303,
  18870. bottom: 0.025
  18871. }
  18872. },
  18873. barghest: {
  18874. height: math.unit(11, "feet"),
  18875. weight: math.unit(1300, "lb"),
  18876. name: "Barghest",
  18877. image: {
  18878. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18879. extra: 323 / 302,
  18880. bottom: 0.027
  18881. }
  18882. },
  18883. dick: {
  18884. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18885. name: "Dick",
  18886. image: {
  18887. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18888. }
  18889. },
  18890. dickWere: {
  18891. height: math.unit((20) / 3.8, "feet"),
  18892. name: "Dick (Were)",
  18893. image: {
  18894. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(6 + 1 / 12, "feet"),
  18902. default: true
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(10, "feet"),
  18911. weight: math.unit(350, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/jet/front.svg",
  18915. extra: 2050 / 1980,
  18916. bottom: 0.013
  18917. }
  18918. },
  18919. back: {
  18920. height: math.unit(10, "feet"),
  18921. weight: math.unit(350, "lb"),
  18922. name: "Back",
  18923. image: {
  18924. source: "./media/characters/jet/back.svg",
  18925. extra: 2050 / 1980,
  18926. bottom: 0.013
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Micro",
  18933. height: math.unit(6, "inches")
  18934. },
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(10, "feet"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Macro",
  18942. height: math.unit(100, "feet")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(15, "feet"),
  18951. weight: math.unit(2800, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/tanarath/front.svg",
  18955. extra: 2392 / 2220,
  18956. bottom: 0.03
  18957. }
  18958. },
  18959. back: {
  18960. height: math.unit(15, "feet"),
  18961. weight: math.unit(2800, "lb"),
  18962. name: "Back",
  18963. image: {
  18964. source: "./media/characters/tanarath/back.svg",
  18965. extra: 2392 / 2220,
  18966. bottom: 0.03
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Normal",
  18973. height: math.unit(15, "feet"),
  18974. default: true
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(7 + 1 / 12, "feet"),
  18983. weight: math.unit(175, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/patty-cattybatty/front.svg",
  18987. extra: 908 / 874,
  18988. bottom: 0.025
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Micro",
  18995. height: math.unit(1, "inch")
  18996. },
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(7 + 1 / 12, "feet")
  19000. },
  19001. {
  19002. name: "Mini Macro",
  19003. height: math.unit(155, "feet")
  19004. },
  19005. {
  19006. name: "Macro",
  19007. height: math.unit(1077, "feet")
  19008. },
  19009. {
  19010. name: "Mega Macro",
  19011. height: math.unit(47650, "feet"),
  19012. default: true
  19013. },
  19014. {
  19015. name: "Giga Macro",
  19016. height: math.unit(440, "miles")
  19017. },
  19018. {
  19019. name: "Tera Macro",
  19020. height: math.unit(8700, "miles")
  19021. },
  19022. {
  19023. name: "Planetary Macro",
  19024. height: math.unit(32700, "miles")
  19025. },
  19026. {
  19027. name: "Solar Macro",
  19028. height: math.unit(550000, "miles")
  19029. },
  19030. {
  19031. name: "Celestial Macro",
  19032. height: math.unit(2.5, "AU")
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(4 + 5 / 12, "feet"),
  19041. weight: math.unit(90, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/cappu/front.svg",
  19045. extra: 1247 / 1152,
  19046. bottom: 0.012
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(4 + 5 / 12, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19060. {
  19061. frontDressed: {
  19062. height: math.unit(70, "cm"),
  19063. weight: math.unit(6, "kg"),
  19064. name: "Front (Dressed)",
  19065. image: {
  19066. source: "./media/characters/sebi/front-dressed.svg",
  19067. extra: 713.5 / 686.5,
  19068. bottom: 0.003
  19069. }
  19070. },
  19071. front: {
  19072. height: math.unit(70, "cm"),
  19073. weight: math.unit(5, "kg"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/sebi/front.svg",
  19077. extra: 713.5 / 686.5,
  19078. bottom: 0.003
  19079. }
  19080. }
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(70, "cm"),
  19086. default: true
  19087. },
  19088. {
  19089. name: "Macro",
  19090. height: math.unit(8, "meters")
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(6, "feet"),
  19099. weight: math.unit(150, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/typhek/front.svg",
  19103. extra: 1948 / 1929,
  19104. bottom: 0.025
  19105. }
  19106. },
  19107. side: {
  19108. height: math.unit(6, "feet"),
  19109. weight: math.unit(150, "lb"),
  19110. name: "Side",
  19111. image: {
  19112. source: "./media/characters/typhek/side.svg",
  19113. extra: 2034 / 2010,
  19114. bottom: 0.003
  19115. }
  19116. },
  19117. back: {
  19118. height: math.unit(6, "feet"),
  19119. weight: math.unit(150, "lb"),
  19120. name: "Back",
  19121. image: {
  19122. source: "./media/characters/typhek/back.svg",
  19123. extra: 2005 / 1978,
  19124. bottom: 0.004
  19125. }
  19126. },
  19127. palm: {
  19128. height: math.unit(1.2, "feet"),
  19129. name: "Palm",
  19130. image: {
  19131. source: "./media/characters/typhek/palm.svg"
  19132. }
  19133. },
  19134. fist: {
  19135. height: math.unit(1.1, "feet"),
  19136. name: "Fist",
  19137. image: {
  19138. source: "./media/characters/typhek/fist.svg"
  19139. }
  19140. },
  19141. foot: {
  19142. height: math.unit(1.57, "feet"),
  19143. name: "Foot",
  19144. image: {
  19145. source: "./media/characters/typhek/foot.svg"
  19146. }
  19147. },
  19148. sole: {
  19149. height: math.unit(2.05, "feet"),
  19150. name: "Sole",
  19151. image: {
  19152. source: "./media/characters/typhek/sole.svg"
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Macro",
  19159. height: math.unit(40, "stories"),
  19160. default: true
  19161. },
  19162. {
  19163. name: "Megamacro",
  19164. height: math.unit(1, "mile")
  19165. },
  19166. {
  19167. name: "Gigamacro",
  19168. height: math.unit(4000, "solarradii")
  19169. },
  19170. {
  19171. name: "Universal",
  19172. height: math.unit(1.1, "universes")
  19173. }
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19178. {
  19179. side: {
  19180. height: math.unit(5 + 7 / 12, "feet"),
  19181. weight: math.unit(150, "lb"),
  19182. name: "Side",
  19183. image: {
  19184. source: "./media/characters/kassy/side.svg",
  19185. extra: 1280 / 1225,
  19186. bottom: 0.002
  19187. }
  19188. },
  19189. front: {
  19190. height: math.unit(5 + 7 / 12, "feet"),
  19191. weight: math.unit(150, "lb"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/kassy/front.svg",
  19195. extra: 1280 / 1225,
  19196. bottom: 0.025
  19197. }
  19198. },
  19199. back: {
  19200. height: math.unit(5 + 7 / 12, "feet"),
  19201. weight: math.unit(150, "lb"),
  19202. name: "Back",
  19203. image: {
  19204. source: "./media/characters/kassy/back.svg",
  19205. extra: 1280 / 1225,
  19206. bottom: 0.002
  19207. }
  19208. },
  19209. foot: {
  19210. height: math.unit(1.266, "feet"),
  19211. name: "Foot",
  19212. image: {
  19213. source: "./media/characters/kassy/foot.svg"
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(5 + 7 / 12, "feet")
  19221. },
  19222. {
  19223. name: "Macro",
  19224. height: math.unit(137, "feet"),
  19225. default: true
  19226. },
  19227. {
  19228. name: "Megamacro",
  19229. height: math.unit(1, "mile")
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(6 + 1 / 12, "feet"),
  19238. weight: math.unit(200, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/neil/front.svg",
  19242. extra: 1326 / 1250,
  19243. bottom: 0.023
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(6 + 1 / 12, "feet"),
  19251. default: true
  19252. },
  19253. {
  19254. name: "Macro",
  19255. height: math.unit(200, "feet")
  19256. },
  19257. ]
  19258. ))
  19259. characterMakers.push(() => makeCharacter(
  19260. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19261. {
  19262. front: {
  19263. height: math.unit(5 + 9 / 12, "feet"),
  19264. weight: math.unit(190, "lb"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/atticus/front.svg",
  19268. extra: 2934 / 2785,
  19269. bottom: 0.025
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Normal",
  19276. height: math.unit(5 + 9 / 12, "feet"),
  19277. default: true
  19278. },
  19279. {
  19280. name: "Macro",
  19281. height: math.unit(180, "feet")
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19287. {
  19288. side: {
  19289. height: math.unit(9, "feet"),
  19290. weight: math.unit(650, "lb"),
  19291. name: "Side",
  19292. image: {
  19293. source: "./media/characters/milo/side.svg",
  19294. extra: 2644 / 2310,
  19295. bottom: 0.032
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(9, "feet"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "Macro",
  19307. height: math.unit(300, "feet")
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19313. {
  19314. side: {
  19315. height: math.unit(8, "meters"),
  19316. weight: math.unit(90000, "kg"),
  19317. name: "Side",
  19318. image: {
  19319. source: "./media/characters/ijzer/side.svg",
  19320. extra: 2756 / 1600,
  19321. bottom: 0.01
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Small",
  19328. height: math.unit(3, "meters")
  19329. },
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(8, "meters"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Normal+",
  19337. height: math.unit(10, "meters")
  19338. },
  19339. {
  19340. name: "Bigger",
  19341. height: math.unit(24, "meters")
  19342. },
  19343. {
  19344. name: "Huge",
  19345. height: math.unit(80, "meters")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(6 + 2 / 12, "feet"),
  19354. weight: math.unit(153, "lb"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/luca-cervicum/front.svg",
  19358. extra: 370 / 327,
  19359. bottom: 0.015
  19360. }
  19361. },
  19362. back: {
  19363. height: math.unit(6 + 2 / 12, "feet"),
  19364. weight: math.unit(153, "lb"),
  19365. name: "Back",
  19366. image: {
  19367. source: "./media/characters/luca-cervicum/back.svg",
  19368. extra: 367 / 333,
  19369. bottom: 0.005
  19370. }
  19371. },
  19372. frontGear: {
  19373. height: math.unit(6 + 2 / 12, "feet"),
  19374. weight: math.unit(173, "lb"),
  19375. name: "Front (Gear)",
  19376. image: {
  19377. source: "./media/characters/luca-cervicum/front-gear.svg",
  19378. extra: 377 / 333,
  19379. bottom: 0.006
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(6 + 2 / 12, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19393. {
  19394. front: {
  19395. height: math.unit(6 + 1 / 12, "feet"),
  19396. weight: math.unit(304, "lb"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/oliver/front.svg",
  19400. extra: 157 / 143,
  19401. bottom: 0.08
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(6 + 1 / 12, "feet"),
  19409. default: true
  19410. },
  19411. ]
  19412. ))
  19413. characterMakers.push(() => makeCharacter(
  19414. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19415. {
  19416. front: {
  19417. height: math.unit(5 + 7 / 12, "feet"),
  19418. weight: math.unit(140, "lb"),
  19419. name: "Front",
  19420. image: {
  19421. source: "./media/characters/shane/front.svg",
  19422. extra: 304 / 289,
  19423. bottom: 0.005
  19424. }
  19425. },
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(5 + 7 / 12, "feet"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(5 + 9 / 12, "feet"),
  19440. weight: math.unit(178, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/shin/front.svg",
  19444. extra: 159 / 151,
  19445. bottom: 0.015
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(5 + 9 / 12, "feet"),
  19453. default: true
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(5 + 10 / 12, "feet"),
  19462. weight: math.unit(168, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/xerxes/front.svg",
  19466. extra: 282 / 260,
  19467. bottom: 0.045
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(5 + 10 / 12, "feet"),
  19475. default: true
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(6 + 7 / 12, "feet"),
  19484. weight: math.unit(208, "lb"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/chaska/front.svg",
  19488. extra: 332 / 319,
  19489. bottom: 0.015
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(6 + 7 / 12, "feet"),
  19497. default: true
  19498. },
  19499. ]
  19500. ))
  19501. characterMakers.push(() => makeCharacter(
  19502. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19503. {
  19504. front: {
  19505. height: math.unit(5 + 8 / 12, "feet"),
  19506. weight: math.unit(208, "lb"),
  19507. name: "Front",
  19508. image: {
  19509. source: "./media/characters/enuk/front.svg",
  19510. extra: 437 / 406,
  19511. bottom: 0.02
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(5 + 8 / 12, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(5 + 10 / 12, "feet"),
  19528. weight: math.unit(252, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/bruun/front.svg",
  19532. extra: 197 / 187,
  19533. bottom: 0.012
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(5 + 10 / 12, "feet"),
  19541. default: true
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(6 + 10 / 12, "feet"),
  19550. weight: math.unit(255, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/alexeev/front.svg",
  19554. extra: 213 / 200,
  19555. bottom: 0.05
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(6 + 10 / 12, "feet"),
  19563. default: true
  19564. },
  19565. ]
  19566. ))
  19567. characterMakers.push(() => makeCharacter(
  19568. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19569. {
  19570. front: {
  19571. height: math.unit(2 + 8 / 12, "feet"),
  19572. weight: math.unit(22, "lb"),
  19573. name: "Front",
  19574. image: {
  19575. source: "./media/characters/evelyn/front.svg",
  19576. extra: 208 / 180
  19577. }
  19578. },
  19579. },
  19580. [
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(2 + 8 / 12, "feet"),
  19584. default: true
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19590. {
  19591. front: {
  19592. height: math.unit(5 + 9 / 12, "feet"),
  19593. weight: math.unit(139, "lb"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/inca/front.svg",
  19597. extra: 294 / 291,
  19598. bottom: 0.03
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Normal",
  19605. height: math.unit(5 + 9 / 12, "feet"),
  19606. default: true
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19612. {
  19613. front: {
  19614. height: math.unit(5 + 1 / 12, "feet"),
  19615. weight: math.unit(84, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/magdalene/front.svg",
  19619. extra: 293 / 273
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(5 + 1 / 12, "feet"),
  19627. default: true
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(6 + 3 / 12, "feet"),
  19636. weight: math.unit(185, "lb"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/mera/front.svg",
  19640. extra: 291 / 277,
  19641. bottom: 0.03
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(6 + 3 / 12, "feet"),
  19649. default: true
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(6 + 7 / 12, "feet"),
  19658. weight: math.unit(160, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/ceres/front.svg",
  19662. extra: 1023 / 950,
  19663. bottom: 0.027
  19664. }
  19665. },
  19666. back: {
  19667. height: math.unit(6 + 7 / 12, "feet"),
  19668. weight: math.unit(160, "lb"),
  19669. name: "Back",
  19670. image: {
  19671. source: "./media/characters/ceres/back.svg",
  19672. extra: 1023 / 950
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(6 + 7 / 12, "feet"),
  19680. default: true
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(5 + 10 / 12, "feet"),
  19689. weight: math.unit(150, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/kris/front.svg",
  19693. extra: 885 / 803,
  19694. bottom: 0.03
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 10 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(7, "feet"),
  19711. weight: math.unit(120, "kg"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/taluthus/front.svg",
  19715. extra: 903 / 833,
  19716. bottom: 0.015
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(7, "feet"),
  19724. default: true
  19725. },
  19726. {
  19727. name: "Macro",
  19728. height: math.unit(300, "feet")
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19734. {
  19735. front: {
  19736. height: math.unit(5 + 9 / 12, "feet"),
  19737. weight: math.unit(145, "lb"),
  19738. name: "Front",
  19739. image: {
  19740. source: "./media/characters/dawn/front.svg",
  19741. extra: 2094 / 2016,
  19742. bottom: 0.025
  19743. }
  19744. },
  19745. back: {
  19746. height: math.unit(5 + 9 / 12, "feet"),
  19747. weight: math.unit(160, "lb"),
  19748. name: "Back",
  19749. image: {
  19750. source: "./media/characters/dawn/back.svg",
  19751. extra: 2112 / 2080,
  19752. bottom: 0.005
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(6 + 7 / 12, "feet"),
  19760. default: true
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19766. {
  19767. anthro: {
  19768. height: math.unit(8 + 3 / 12, "feet"),
  19769. weight: math.unit(450, "lb"),
  19770. name: "Anthro",
  19771. image: {
  19772. source: "./media/characters/arador/anthro.svg",
  19773. extra: 1835 / 1718,
  19774. bottom: 0.025
  19775. }
  19776. },
  19777. feral: {
  19778. height: math.unit(4, "feet"),
  19779. weight: math.unit(200, "lb"),
  19780. name: "Feral",
  19781. image: {
  19782. source: "./media/characters/arador/feral.svg",
  19783. extra: 1683 / 1514,
  19784. bottom: 0.07
  19785. }
  19786. },
  19787. },
  19788. [
  19789. {
  19790. name: "Normal",
  19791. height: math.unit(8 + 3 / 12, "feet")
  19792. },
  19793. {
  19794. name: "Macro",
  19795. height: math.unit(82.5, "feet"),
  19796. default: true
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(5 + 10 / 12, "feet"),
  19805. weight: math.unit(125, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/dharsi/front.svg",
  19809. extra: 716 / 630,
  19810. bottom: 0.035
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Nano",
  19817. height: math.unit(100, "nm")
  19818. },
  19819. {
  19820. name: "Micro",
  19821. height: math.unit(2, "inches")
  19822. },
  19823. {
  19824. name: "Normal",
  19825. height: math.unit(5 + 10 / 12, "feet"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Macro",
  19830. height: math.unit(1000, "feet")
  19831. },
  19832. {
  19833. name: "Megamacro",
  19834. height: math.unit(10, "miles")
  19835. },
  19836. {
  19837. name: "Gigamacro",
  19838. height: math.unit(3000, "miles")
  19839. },
  19840. {
  19841. name: "Teramacro",
  19842. height: math.unit(500000, "miles")
  19843. },
  19844. {
  19845. name: "Teramacro+",
  19846. height: math.unit(30, "galaxies")
  19847. },
  19848. ]
  19849. ))
  19850. characterMakers.push(() => makeCharacter(
  19851. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19852. {
  19853. front: {
  19854. height: math.unit(6, "feet"),
  19855. weight: math.unit(150, "lb"),
  19856. name: "Front",
  19857. image: {
  19858. source: "./media/characters/deathy/front.svg",
  19859. extra: 1552 / 1463,
  19860. bottom: 0.025
  19861. }
  19862. },
  19863. side: {
  19864. height: math.unit(6, "feet"),
  19865. weight: math.unit(150, "lb"),
  19866. name: "Side",
  19867. image: {
  19868. source: "./media/characters/deathy/side.svg",
  19869. extra: 1604 / 1455,
  19870. bottom: 0.025
  19871. }
  19872. },
  19873. back: {
  19874. height: math.unit(6, "feet"),
  19875. weight: math.unit(150, "lb"),
  19876. name: "Back",
  19877. image: {
  19878. source: "./media/characters/deathy/back.svg",
  19879. extra: 1580 / 1463,
  19880. bottom: 0.005
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Micro",
  19887. height: math.unit(5, "millimeters")
  19888. },
  19889. {
  19890. name: "Normal",
  19891. height: math.unit(6 + 5 / 12, "feet"),
  19892. default: true
  19893. },
  19894. ]
  19895. ))
  19896. characterMakers.push(() => makeCharacter(
  19897. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19898. {
  19899. front: {
  19900. height: math.unit(16, "feet"),
  19901. weight: math.unit(4000, "lb"),
  19902. name: "Front",
  19903. image: {
  19904. source: "./media/characters/juniper/front.svg",
  19905. bottom: 0.04
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(16, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(6, "feet"),
  19922. weight: math.unit(150, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/hipster/front.svg",
  19926. extra: 1312 / 1209,
  19927. bottom: 0.025
  19928. }
  19929. },
  19930. back: {
  19931. height: math.unit(6, "feet"),
  19932. weight: math.unit(150, "lb"),
  19933. name: "Back",
  19934. image: {
  19935. source: "./media/characters/hipster/back.svg",
  19936. extra: 1281 / 1196,
  19937. bottom: 0.01
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Micro",
  19944. height: math.unit(1, "mm")
  19945. },
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(4, "inches"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Macro",
  19953. height: math.unit(500, "feet")
  19954. },
  19955. {
  19956. name: "Megamacro",
  19957. height: math.unit(1000, "miles")
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(6, "feet"),
  19966. weight: math.unit(150, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/tendirmuldr/front.svg",
  19970. extra: 1878 / 1772,
  19971. bottom: 0.015
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Megamacro",
  19978. height: math.unit(1500, "miles"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19985. {
  19986. front: {
  19987. height: math.unit(14, "feet"),
  19988. weight: math.unit(12000, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/mort/front.svg",
  19992. extra: 365 / 318,
  19993. bottom: 0.01
  19994. }
  19995. },
  19996. side: {
  19997. height: math.unit(14, "feet"),
  19998. weight: math.unit(12000, "lb"),
  19999. name: "Side",
  20000. image: {
  20001. source: "./media/characters/mort/side.svg",
  20002. extra: 365 / 318,
  20003. bottom: 0.052
  20004. },
  20005. default: true
  20006. },
  20007. back: {
  20008. height: math.unit(14, "feet"),
  20009. weight: math.unit(12000, "lb"),
  20010. name: "Back",
  20011. image: {
  20012. source: "./media/characters/mort/back.svg",
  20013. extra: 371 / 332,
  20014. bottom: 0.18
  20015. }
  20016. },
  20017. },
  20018. [
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(14, "feet"),
  20022. default: true
  20023. },
  20024. ]
  20025. ))
  20026. characterMakers.push(() => makeCharacter(
  20027. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20028. {
  20029. front: {
  20030. height: math.unit(8, "feet"),
  20031. weight: math.unit(1, "ton"),
  20032. name: "Front",
  20033. image: {
  20034. source: "./media/characters/lycoa/front.svg",
  20035. extra: 1875 / 1789,
  20036. bottom: 0.022
  20037. }
  20038. },
  20039. back: {
  20040. height: math.unit(8, "feet"),
  20041. weight: math.unit(1, "ton"),
  20042. name: "Back",
  20043. image: {
  20044. source: "./media/characters/lycoa/back.svg",
  20045. extra: 1835 / 1781,
  20046. bottom: 0.03
  20047. }
  20048. },
  20049. head: {
  20050. height: math.unit(2.1, "feet"),
  20051. name: "Head",
  20052. image: {
  20053. source: "./media/characters/lycoa/head.svg"
  20054. }
  20055. },
  20056. tailmaw: {
  20057. height: math.unit(1.9, "feet"),
  20058. name: "Tailmaw",
  20059. image: {
  20060. source: "./media/characters/lycoa/tailmaw.svg"
  20061. }
  20062. },
  20063. tentacles: {
  20064. height: math.unit(2.1, "feet"),
  20065. name: "Tentacles",
  20066. image: {
  20067. source: "./media/characters/lycoa/tentacles.svg"
  20068. }
  20069. },
  20070. dick: {
  20071. height: math.unit(1.73, "feet"),
  20072. name: "Dick",
  20073. image: {
  20074. source: "./media/characters/lycoa/dick.svg"
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(8, "feet"),
  20082. default: true
  20083. },
  20084. {
  20085. name: "Macro",
  20086. height: math.unit(30, "feet")
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20092. {
  20093. front: {
  20094. height: math.unit(4 + 2 / 12, "feet"),
  20095. weight: math.unit(70, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/naldara/front.svg",
  20099. extra: 841 / 720,
  20100. bottom: 0.04
  20101. }
  20102. },
  20103. naga: {
  20104. height: math.unit(23, "feet"),
  20105. weight: math.unit(15000, "kg"),
  20106. name: "Naga",
  20107. image: {
  20108. source: "./media/characters/naldara/naga.svg",
  20109. extra: 3290 / 2959,
  20110. bottom: 124 / 3432
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Normal",
  20117. height: math.unit(4 + 2 / 12, "feet"),
  20118. default: true
  20119. },
  20120. ]
  20121. ))
  20122. characterMakers.push(() => makeCharacter(
  20123. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20124. {
  20125. front: {
  20126. height: math.unit(13 + 7 / 12, "feet"),
  20127. weight: math.unit(1500, "lb"),
  20128. name: "Front",
  20129. image: {
  20130. source: "./media/characters/briar/front.svg",
  20131. extra: 626 / 596,
  20132. bottom: 0.08
  20133. }
  20134. },
  20135. },
  20136. [
  20137. {
  20138. name: "Normal",
  20139. height: math.unit(13 + 7 / 12, "feet"),
  20140. default: true
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20146. {
  20147. side: {
  20148. height: math.unit(10, "feet"),
  20149. weight: math.unit(500, "lb"),
  20150. name: "Side",
  20151. image: {
  20152. source: "./media/characters/vanguard/side.svg",
  20153. extra: 502 / 425,
  20154. bottom: 0.087
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(10, "feet"),
  20162. default: true
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(7.5, "feet"),
  20171. weight: math.unit(2, "lb"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/artemis/front.svg",
  20175. extra: 1192 / 1075,
  20176. bottom: 0.07
  20177. }
  20178. },
  20179. frontNsfw: {
  20180. height: math.unit(7.5, "feet"),
  20181. weight: math.unit(2, "lb"),
  20182. name: "Front (NSFW)",
  20183. image: {
  20184. source: "./media/characters/artemis/front-nsfw.svg",
  20185. extra: 1192 / 1075,
  20186. bottom: 0.07
  20187. }
  20188. },
  20189. frontNsfwer: {
  20190. height: math.unit(7.5, "feet"),
  20191. weight: math.unit(2, "lb"),
  20192. name: "Front (NSFW-er)",
  20193. image: {
  20194. source: "./media/characters/artemis/front-nsfwer.svg",
  20195. extra: 1192 / 1075,
  20196. bottom: 0.07
  20197. }
  20198. },
  20199. side: {
  20200. height: math.unit(7.5, "feet"),
  20201. weight: math.unit(2, "lb"),
  20202. name: "Side",
  20203. image: {
  20204. source: "./media/characters/artemis/side.svg",
  20205. extra: 1192 / 1075,
  20206. bottom: 0.07
  20207. }
  20208. },
  20209. sideNsfw: {
  20210. height: math.unit(7.5, "feet"),
  20211. weight: math.unit(2, "lb"),
  20212. name: "Side (NSFW)",
  20213. image: {
  20214. source: "./media/characters/artemis/side-nsfw.svg",
  20215. extra: 1192 / 1075,
  20216. bottom: 0.07
  20217. }
  20218. },
  20219. sideNsfwer: {
  20220. height: math.unit(7.5, "feet"),
  20221. weight: math.unit(2, "lb"),
  20222. name: "Side (NSFW-er)",
  20223. image: {
  20224. source: "./media/characters/artemis/side-nsfwer.svg",
  20225. extra: 1192 / 1075,
  20226. bottom: 0.07
  20227. }
  20228. },
  20229. maw: {
  20230. height: math.unit(1.1, "feet"),
  20231. name: "Maw",
  20232. image: {
  20233. source: "./media/characters/artemis/maw.svg"
  20234. }
  20235. },
  20236. stomach: {
  20237. height: math.unit(0.95, "feet"),
  20238. name: "Stomach",
  20239. image: {
  20240. source: "./media/characters/artemis/stomach.svg"
  20241. }
  20242. },
  20243. dickCanine: {
  20244. height: math.unit(1, "feet"),
  20245. name: "Dick (Canine)",
  20246. image: {
  20247. source: "./media/characters/artemis/dick-canine.svg"
  20248. }
  20249. },
  20250. dickEquine: {
  20251. height: math.unit(0.85, "feet"),
  20252. name: "Dick (Equine)",
  20253. image: {
  20254. source: "./media/characters/artemis/dick-equine.svg"
  20255. }
  20256. },
  20257. dickExotic: {
  20258. height: math.unit(0.85, "feet"),
  20259. name: "Dick (Exotic)",
  20260. image: {
  20261. source: "./media/characters/artemis/dick-exotic.svg"
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(7.5, "feet"),
  20269. default: true
  20270. },
  20271. {
  20272. name: "Enlarged",
  20273. height: math.unit(12, "feet")
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20279. {
  20280. front: {
  20281. height: math.unit(5 + 3 / 12, "feet"),
  20282. weight: math.unit(160, "lb"),
  20283. name: "Front",
  20284. image: {
  20285. source: "./media/characters/kira/front.svg",
  20286. extra: 906 / 786,
  20287. bottom: 0.01
  20288. }
  20289. },
  20290. back: {
  20291. height: math.unit(5 + 3 / 12, "feet"),
  20292. weight: math.unit(160, "lb"),
  20293. name: "Back",
  20294. image: {
  20295. source: "./media/characters/kira/back.svg",
  20296. extra: 882 / 757,
  20297. bottom: 0.005
  20298. }
  20299. },
  20300. frontDressed: {
  20301. height: math.unit(5 + 3 / 12, "feet"),
  20302. weight: math.unit(160, "lb"),
  20303. name: "Front (Dressed)",
  20304. image: {
  20305. source: "./media/characters/kira/front-dressed.svg",
  20306. extra: 906 / 786,
  20307. bottom: 0.01
  20308. }
  20309. },
  20310. beans: {
  20311. height: math.unit(0.92, "feet"),
  20312. name: "Beans",
  20313. image: {
  20314. source: "./media/characters/kira/beans.svg"
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(5 + 3 / 12, "feet"),
  20322. default: true
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(5 + 4 / 12, "feet"),
  20331. weight: math.unit(145, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/scramble/front.svg",
  20335. extra: 763 / 727,
  20336. bottom: 0.05
  20337. }
  20338. },
  20339. back: {
  20340. height: math.unit(5 + 4 / 12, "feet"),
  20341. weight: math.unit(145, "lb"),
  20342. name: "Back",
  20343. image: {
  20344. source: "./media/characters/scramble/back.svg",
  20345. extra: 826 / 737,
  20346. bottom: 0.002
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(5 + 4 / 12, "feet"),
  20354. default: true
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20360. {
  20361. side: {
  20362. height: math.unit(6 + 2 / 12, "feet"),
  20363. weight: math.unit(190, "lb"),
  20364. name: "Side",
  20365. image: {
  20366. source: "./media/characters/biscuit/side.svg",
  20367. extra: 858 / 791,
  20368. bottom: 0.044
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(6 + 2 / 12, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(5 + 2 / 12, "feet"),
  20385. weight: math.unit(120, "lb"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/poffin/front.svg",
  20389. extra: 786 / 680,
  20390. bottom: 0.005
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(5 + 2 / 12, "feet"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(6 + 3 / 12, "feet"),
  20407. weight: math.unit(519, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/dhari/front.svg",
  20411. extra: 1048 / 946,
  20412. bottom: 0.015
  20413. }
  20414. },
  20415. back: {
  20416. height: math.unit(6 + 3 / 12, "feet"),
  20417. weight: math.unit(519, "lb"),
  20418. name: "Back",
  20419. image: {
  20420. source: "./media/characters/dhari/back.svg",
  20421. extra: 1048 / 931,
  20422. bottom: 0.005
  20423. }
  20424. },
  20425. frontDressed: {
  20426. height: math.unit(6 + 3 / 12, "feet"),
  20427. weight: math.unit(519, "lb"),
  20428. name: "Front (Dressed)",
  20429. image: {
  20430. source: "./media/characters/dhari/front-dressed.svg",
  20431. extra: 1713 / 1546,
  20432. bottom: 0.02
  20433. }
  20434. },
  20435. backDressed: {
  20436. height: math.unit(6 + 3 / 12, "feet"),
  20437. weight: math.unit(519, "lb"),
  20438. name: "Back (Dressed)",
  20439. image: {
  20440. source: "./media/characters/dhari/back-dressed.svg",
  20441. extra: 1699 / 1537,
  20442. bottom: 0.01
  20443. }
  20444. },
  20445. maw: {
  20446. height: math.unit(0.95, "feet"),
  20447. name: "Maw",
  20448. image: {
  20449. source: "./media/characters/dhari/maw.svg"
  20450. }
  20451. },
  20452. wereFront: {
  20453. height: math.unit(12 + 8 / 12, "feet"),
  20454. weight: math.unit(4000, "lb"),
  20455. name: "Front (Were)",
  20456. image: {
  20457. source: "./media/characters/dhari/were-front.svg",
  20458. extra: 1065 / 969,
  20459. bottom: 0.015
  20460. }
  20461. },
  20462. wereBack: {
  20463. height: math.unit(12 + 8 / 12, "feet"),
  20464. weight: math.unit(4000, "lb"),
  20465. name: "Back (Were)",
  20466. image: {
  20467. source: "./media/characters/dhari/were-back.svg",
  20468. extra: 1065 / 969,
  20469. bottom: 0.012
  20470. }
  20471. },
  20472. wereMaw: {
  20473. height: math.unit(0.625, "meters"),
  20474. name: "Maw (Were)",
  20475. image: {
  20476. source: "./media/characters/dhari/were-maw.svg"
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(6 + 3 / 12, "feet"),
  20484. default: true
  20485. },
  20486. ]
  20487. ))
  20488. characterMakers.push(() => makeCharacter(
  20489. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20490. {
  20491. anthro: {
  20492. height: math.unit(5 + 7 / 12, "feet"),
  20493. weight: math.unit(175, "lb"),
  20494. name: "Anthro",
  20495. image: {
  20496. source: "./media/characters/rena-dyne/anthro.svg",
  20497. extra: 1849 / 1785,
  20498. bottom: 0.005
  20499. }
  20500. },
  20501. taur: {
  20502. height: math.unit(15 + 6 / 12, "feet"),
  20503. weight: math.unit(8000, "lb"),
  20504. name: "Taur",
  20505. image: {
  20506. source: "./media/characters/rena-dyne/taur.svg",
  20507. extra: 2315 / 2234,
  20508. bottom: 0.033
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(5 + 7 / 12, "feet"),
  20516. default: true
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(8, "feet"),
  20525. weight: math.unit(600, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/weremeep/front.svg",
  20529. extra: 967 / 862,
  20530. bottom: 0.01
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(8, "feet"),
  20538. default: true
  20539. },
  20540. {
  20541. name: "Lorg",
  20542. height: math.unit(12, "feet")
  20543. },
  20544. {
  20545. name: "Oh Lawd She Comin'",
  20546. height: math.unit(20, "feet")
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20552. {
  20553. front: {
  20554. height: math.unit(4, "feet"),
  20555. weight: math.unit(90, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/reza/front.svg",
  20559. extra: 1183 / 1111,
  20560. bottom: 0.017
  20561. }
  20562. },
  20563. back: {
  20564. height: math.unit(4, "feet"),
  20565. weight: math.unit(90, "lb"),
  20566. name: "Back",
  20567. image: {
  20568. source: "./media/characters/reza/back.svg",
  20569. extra: 1183 / 1111,
  20570. bottom: 0.01
  20571. }
  20572. },
  20573. drake: {
  20574. height: math.unit(30, "feet"),
  20575. weight: math.unit(246960, "lb"),
  20576. name: "Drake",
  20577. image: {
  20578. source: "./media/characters/reza/drake.svg",
  20579. extra: 2350 / 2024,
  20580. bottom: 60.7 / 2403
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(4, "feet"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20594. {
  20595. side: {
  20596. height: math.unit(15, "feet"),
  20597. weight: math.unit(14, "tons"),
  20598. name: "Side",
  20599. image: {
  20600. source: "./media/characters/athea/side.svg",
  20601. extra: 960 / 540,
  20602. bottom: 0.003
  20603. }
  20604. },
  20605. sitting: {
  20606. height: math.unit(6 * 2.85, "feet"),
  20607. weight: math.unit(14, "tons"),
  20608. name: "Sitting",
  20609. image: {
  20610. source: "./media/characters/athea/sitting.svg",
  20611. extra: 621 / 581,
  20612. bottom: 0.075
  20613. }
  20614. },
  20615. maw: {
  20616. height: math.unit(7.59498031496063, "feet"),
  20617. name: "Maw",
  20618. image: {
  20619. source: "./media/characters/athea/maw.svg"
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Lap Cat",
  20626. height: math.unit(2.5, "feet")
  20627. },
  20628. {
  20629. name: "Minimacro",
  20630. height: math.unit(15, "feet"),
  20631. default: true
  20632. },
  20633. {
  20634. name: "Macro",
  20635. height: math.unit(120, "feet")
  20636. },
  20637. {
  20638. name: "Macro+",
  20639. height: math.unit(640, "feet")
  20640. },
  20641. {
  20642. name: "Colossus",
  20643. height: math.unit(2.2, "miles")
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(8 + 8 / 12, "feet"),
  20652. weight: math.unit(130, "kg"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/seroko/front.svg",
  20656. extra: 1385 / 1280,
  20657. bottom: 0.025
  20658. }
  20659. },
  20660. back: {
  20661. height: math.unit(8 + 8 / 12, "feet"),
  20662. weight: math.unit(130, "kg"),
  20663. name: "Back",
  20664. image: {
  20665. source: "./media/characters/seroko/back.svg",
  20666. extra: 1369 / 1238,
  20667. bottom: 0.018
  20668. }
  20669. },
  20670. frontDressed: {
  20671. height: math.unit(8 + 8 / 12, "feet"),
  20672. weight: math.unit(130, "kg"),
  20673. name: "Front (Dressed)",
  20674. image: {
  20675. source: "./media/characters/seroko/front-dressed.svg",
  20676. extra: 1366 / 1275,
  20677. bottom: 0.03
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(8 + 8 / 12, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(5.5, "feet"),
  20694. weight: math.unit(160, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/quatzi/front.svg",
  20698. extra: 2346 / 2242,
  20699. bottom: 0.015
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(5.5, "feet"),
  20707. default: true
  20708. },
  20709. {
  20710. name: "Big",
  20711. height: math.unit(7.7, "feet")
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20717. {
  20718. front: {
  20719. height: math.unit(5 + 11 / 12, "feet"),
  20720. weight: math.unit(180, "lb"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/sen/front.svg",
  20724. extra: 1321 / 1254,
  20725. bottom: 0.015
  20726. }
  20727. },
  20728. side: {
  20729. height: math.unit(5 + 11 / 12, "feet"),
  20730. weight: math.unit(180, "lb"),
  20731. name: "Side",
  20732. image: {
  20733. source: "./media/characters/sen/side.svg",
  20734. extra: 1321 / 1254,
  20735. bottom: 0.007
  20736. }
  20737. },
  20738. back: {
  20739. height: math.unit(5 + 11 / 12, "feet"),
  20740. weight: math.unit(180, "lb"),
  20741. name: "Back",
  20742. image: {
  20743. source: "./media/characters/sen/back.svg",
  20744. extra: 1321 / 1254
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(5 + 11 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(166.6, "cm"),
  20761. weight: math.unit(66.6, "kg"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/fruity/front.svg",
  20765. extra: 1510 / 1386,
  20766. bottom: 0.04
  20767. }
  20768. },
  20769. back: {
  20770. height: math.unit(166.6, "cm"),
  20771. weight: math.unit(66.6, "lb"),
  20772. name: "Back",
  20773. image: {
  20774. source: "./media/characters/fruity/back.svg",
  20775. extra: 1563 / 1435,
  20776. bottom: 0.005
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Normal",
  20783. height: math.unit(166.6, "cm"),
  20784. default: true
  20785. },
  20786. {
  20787. name: "Demonic",
  20788. height: math.unit(166.6, "feet")
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20794. {
  20795. side: {
  20796. height: math.unit(10, "feet"),
  20797. weight: math.unit(500, "lb"),
  20798. name: "Side",
  20799. image: {
  20800. source: "./media/characters/zost/side.svg",
  20801. extra: 966 / 880,
  20802. bottom: 0.075
  20803. }
  20804. },
  20805. mawFront: {
  20806. height: math.unit(1.08, "meters"),
  20807. name: "Maw (Front)",
  20808. image: {
  20809. source: "./media/characters/zost/maw-front.svg"
  20810. }
  20811. },
  20812. mawSide: {
  20813. height: math.unit(2.66, "feet"),
  20814. name: "Maw (Side)",
  20815. image: {
  20816. source: "./media/characters/zost/maw-side.svg"
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(10, "feet"),
  20824. default: true
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20830. {
  20831. front: {
  20832. height: math.unit(5 + 4 / 12, "feet"),
  20833. weight: math.unit(120, "lb"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/luci/front.svg",
  20837. extra: 1985 / 1884,
  20838. bottom: 0.04
  20839. }
  20840. },
  20841. back: {
  20842. height: math.unit(5 + 4 / 12, "feet"),
  20843. weight: math.unit(120, "lb"),
  20844. name: "Back",
  20845. image: {
  20846. source: "./media/characters/luci/back.svg",
  20847. extra: 1892 / 1791,
  20848. bottom: 0.002
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(5 + 4 / 12, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(1500, "feet"),
  20865. weight: math.unit(3.8e6, "tons"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/2th/front.svg",
  20869. extra: 3489 / 3350,
  20870. bottom: 0.1
  20871. }
  20872. },
  20873. foot: {
  20874. height: math.unit(461, "feet"),
  20875. name: "Foot",
  20876. image: {
  20877. source: "./media/characters/2th/foot.svg"
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "\"Micro\"",
  20884. height: math.unit(15 + 7 / 12, "feet")
  20885. },
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(1500, "feet"),
  20889. default: true
  20890. },
  20891. {
  20892. name: "Macro",
  20893. height: math.unit(5000, "feet")
  20894. },
  20895. {
  20896. name: "Megamacro",
  20897. height: math.unit(15, "miles")
  20898. },
  20899. {
  20900. name: "Gigamacro",
  20901. height: math.unit(4000, "miles")
  20902. },
  20903. {
  20904. name: "Galactic",
  20905. height: math.unit(50, "AU")
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20911. {
  20912. front: {
  20913. height: math.unit(5 + 6 / 12, "feet"),
  20914. weight: math.unit(220, "lb"),
  20915. name: "Front",
  20916. image: {
  20917. source: "./media/characters/amethyst/front.svg",
  20918. extra: 2078 / 2040,
  20919. bottom: 0.045
  20920. }
  20921. },
  20922. back: {
  20923. height: math.unit(5 + 6 / 12, "feet"),
  20924. weight: math.unit(220, "lb"),
  20925. name: "Back",
  20926. image: {
  20927. source: "./media/characters/amethyst/back.svg",
  20928. extra: 2021 / 1989,
  20929. bottom: 0.02
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(5 + 6 / 12, "feet"),
  20937. default: true
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(4 + 11 / 12, "feet"),
  20946. weight: math.unit(120, "lb"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/yumi-akiyama/front.svg",
  20950. extra: 1327 / 1235,
  20951. bottom: 0.02
  20952. }
  20953. },
  20954. back: {
  20955. height: math.unit(4 + 11 / 12, "feet"),
  20956. weight: math.unit(120, "lb"),
  20957. name: "Back",
  20958. image: {
  20959. source: "./media/characters/yumi-akiyama/back.svg",
  20960. extra: 1287 / 1245,
  20961. bottom: 0.002
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Galactic",
  20968. height: math.unit(50, "galaxies"),
  20969. default: true
  20970. },
  20971. {
  20972. name: "Universal",
  20973. height: math.unit(100, "universes")
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20979. {
  20980. front: {
  20981. height: math.unit(8, "feet"),
  20982. weight: math.unit(500, "lb"),
  20983. name: "Front",
  20984. image: {
  20985. source: "./media/characters/rifter-yrmori/front.svg",
  20986. extra: 1180 / 1125,
  20987. bottom: 0.02
  20988. }
  20989. },
  20990. back: {
  20991. height: math.unit(8, "feet"),
  20992. weight: math.unit(500, "lb"),
  20993. name: "Back",
  20994. image: {
  20995. source: "./media/characters/rifter-yrmori/back.svg",
  20996. extra: 1190 / 1145,
  20997. bottom: 0.001
  20998. }
  20999. },
  21000. wings: {
  21001. height: math.unit(7.75, "feet"),
  21002. weight: math.unit(500, "lb"),
  21003. name: "Wings",
  21004. image: {
  21005. source: "./media/characters/rifter-yrmori/wings.svg",
  21006. extra: 1357 / 1285
  21007. }
  21008. },
  21009. maw: {
  21010. height: math.unit(0.8, "feet"),
  21011. name: "Maw",
  21012. image: {
  21013. source: "./media/characters/rifter-yrmori/maw.svg"
  21014. }
  21015. },
  21016. mawfront: {
  21017. height: math.unit(1.45, "feet"),
  21018. name: "Maw (Front)",
  21019. image: {
  21020. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(8, "feet"),
  21028. default: true
  21029. },
  21030. {
  21031. name: "Macro",
  21032. height: math.unit(42, "meters")
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21038. {
  21039. were: {
  21040. height: math.unit(25 + 6 / 12, "feet"),
  21041. weight: math.unit(10000, "lb"),
  21042. name: "Were",
  21043. image: {
  21044. source: "./media/characters/tahajin/were.svg",
  21045. extra: 801 / 770,
  21046. bottom: 0.042
  21047. }
  21048. },
  21049. aquatic: {
  21050. height: math.unit(6 + 4 / 12, "feet"),
  21051. weight: math.unit(160, "lb"),
  21052. name: "Aquatic",
  21053. image: {
  21054. source: "./media/characters/tahajin/aquatic.svg",
  21055. extra: 572 / 542,
  21056. bottom: 0.04
  21057. }
  21058. },
  21059. chow: {
  21060. height: math.unit(8 + 11 / 12, "feet"),
  21061. weight: math.unit(450, "lb"),
  21062. name: "Chow",
  21063. image: {
  21064. source: "./media/characters/tahajin/chow.svg",
  21065. extra: 660 / 640,
  21066. bottom: 0.015
  21067. }
  21068. },
  21069. demiNaga: {
  21070. height: math.unit(6 + 8 / 12, "feet"),
  21071. weight: math.unit(300, "lb"),
  21072. name: "Demi Naga",
  21073. image: {
  21074. source: "./media/characters/tahajin/demi-naga.svg",
  21075. extra: 643 / 615,
  21076. bottom: 0.1
  21077. }
  21078. },
  21079. data: {
  21080. height: math.unit(5, "inches"),
  21081. weight: math.unit(0.1, "lb"),
  21082. name: "Data",
  21083. image: {
  21084. source: "./media/characters/tahajin/data.svg"
  21085. }
  21086. },
  21087. fluu: {
  21088. height: math.unit(5 + 7 / 12, "feet"),
  21089. weight: math.unit(140, "lb"),
  21090. name: "Fluu",
  21091. image: {
  21092. source: "./media/characters/tahajin/fluu.svg",
  21093. extra: 628 / 592,
  21094. bottom: 0.02
  21095. }
  21096. },
  21097. starWarrior: {
  21098. height: math.unit(4 + 5 / 12, "feet"),
  21099. weight: math.unit(50, "lb"),
  21100. name: "Star Warrior",
  21101. image: {
  21102. source: "./media/characters/tahajin/star-warrior.svg"
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(25 + 6 / 12, "feet"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(8, "feet"),
  21119. weight: math.unit(350, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/gabira/front.svg",
  21123. extra: 608 / 580,
  21124. bottom: 0.03
  21125. }
  21126. },
  21127. back: {
  21128. height: math.unit(8, "feet"),
  21129. weight: math.unit(350, "lb"),
  21130. name: "Back",
  21131. image: {
  21132. source: "./media/characters/gabira/back.svg",
  21133. extra: 608 / 580,
  21134. bottom: 0.03
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(8, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(5 + 3 / 12, "feet"),
  21151. weight: math.unit(137, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/sasha-katraine/front.svg",
  21155. bottom: 0.045
  21156. }
  21157. },
  21158. },
  21159. [
  21160. {
  21161. name: "Micro",
  21162. height: math.unit(5, "inches")
  21163. },
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(5 + 3 / 12, "feet"),
  21167. default: true
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21173. {
  21174. side: {
  21175. height: math.unit(4, "inches"),
  21176. weight: math.unit(200, "grams"),
  21177. name: "Side",
  21178. image: {
  21179. source: "./media/characters/der/side.svg",
  21180. extra: 719 / 400,
  21181. bottom: 30.6 / 749.9187
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Micro",
  21188. height: math.unit(4, "inches"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21195. {
  21196. side: {
  21197. height: math.unit(30, "meters"),
  21198. weight: math.unit(700, "tonnes"),
  21199. name: "Side",
  21200. image: {
  21201. source: "./media/characters/fixerdragon/side.svg",
  21202. extra: (1293.0514 - 116.03) / 1106.86,
  21203. bottom: 116.03 / 1293.0514
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Planck",
  21210. height: math.unit(1.6e-35, "meters")
  21211. },
  21212. {
  21213. name: "Micro",
  21214. height: math.unit(0.4, "meters")
  21215. },
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(30, "meters"),
  21219. default: true
  21220. },
  21221. {
  21222. name: "Megamacro",
  21223. height: math.unit(1.2, "megameters")
  21224. },
  21225. {
  21226. name: "Teramacro",
  21227. height: math.unit(130, "terameters")
  21228. },
  21229. {
  21230. name: "Yottamacro",
  21231. height: math.unit(6200, "yottameters")
  21232. },
  21233. ]
  21234. ));
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21237. {
  21238. front: {
  21239. height: math.unit(8, "feet"),
  21240. weight: math.unit(250, "lb"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/kite/front.svg",
  21244. extra: 2796 / 2659,
  21245. bottom: 0.002
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(8, "feet"),
  21253. default: true
  21254. },
  21255. {
  21256. name: "Macro",
  21257. height: math.unit(360, "feet")
  21258. },
  21259. {
  21260. name: "Megamacro",
  21261. height: math.unit(1500, "feet")
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(5 + 10 / 12, "feet"),
  21270. weight: math.unit(150, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/poojawa-vynar/front.svg",
  21274. extra: (1506.1547 - 55) / 1356.6,
  21275. bottom: 55 / 1506.1547
  21276. }
  21277. },
  21278. frontTailless: {
  21279. height: math.unit(5 + 10 / 12, "feet"),
  21280. weight: math.unit(150, "lb"),
  21281. name: "Front (Tailless)",
  21282. image: {
  21283. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21284. extra: (1506.1547 - 55) / 1356.6,
  21285. bottom: 55 / 1506.1547
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(5 + 10 / 12, "feet"),
  21293. default: true
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21299. {
  21300. front: {
  21301. height: math.unit(293, "meters"),
  21302. weight: math.unit(70400, "tons"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/violette/front.svg",
  21306. extra: 1227 / 1180,
  21307. bottom: 0.005
  21308. }
  21309. },
  21310. back: {
  21311. height: math.unit(293, "meters"),
  21312. weight: math.unit(70400, "tons"),
  21313. name: "Back",
  21314. image: {
  21315. source: "./media/characters/violette/back.svg",
  21316. extra: 1227 / 1180,
  21317. bottom: 0.005
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Macro",
  21324. height: math.unit(293, "meters"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(1050, "feet"),
  21334. weight: math.unit(200000, "tons"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/alessandra/front.svg",
  21338. extra: 960 / 912,
  21339. bottom: 0.06
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Macro",
  21346. height: math.unit(1050, "feet")
  21347. },
  21348. {
  21349. name: "Macro+",
  21350. height: math.unit(900, "meters"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(5, "feet"),
  21360. weight: math.unit(187, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/person/front.svg",
  21364. extra: 3087 / 2945,
  21365. bottom: 91 / 3181
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Micro",
  21372. height: math.unit(3, "inches")
  21373. },
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(5, "feet"),
  21377. default: true
  21378. },
  21379. {
  21380. name: "Macro",
  21381. height: math.unit(90, "feet")
  21382. },
  21383. {
  21384. name: "Max Size",
  21385. height: math.unit(280, "feet")
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(4.5, "meters"),
  21394. weight: math.unit(3200, "lb"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/ty/front.svg",
  21398. extra: 1038 / 960,
  21399. bottom: 31.156 / 1068
  21400. }
  21401. },
  21402. back: {
  21403. height: math.unit(4.5, "meters"),
  21404. weight: math.unit(3200, "lb"),
  21405. name: "Back",
  21406. image: {
  21407. source: "./media/characters/ty/back.svg",
  21408. extra: 1044 / 966,
  21409. bottom: 7.48 / 1049
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(4.5, "meters"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(5 + 4 / 12, "feet"),
  21426. weight: math.unit(115, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/rocky/front.svg",
  21430. extra: 1012 / 975,
  21431. bottom: 54 / 1066
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(5 + 4 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21445. {
  21446. upright: {
  21447. height: math.unit(6, "meters"),
  21448. weight: math.unit(4000, "kg"),
  21449. name: "Upright",
  21450. image: {
  21451. source: "./media/characters/ruin/upright.svg",
  21452. extra: 668 / 661,
  21453. bottom: 42 / 799.8396
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(6, "meters"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(5, "feet"),
  21470. weight: math.unit(106, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/robin/front.svg",
  21474. extra: 862 / 799,
  21475. bottom: 42.4 / 914.8856
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(5, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21489. {
  21490. side: {
  21491. height: math.unit(3, "feet"),
  21492. weight: math.unit(225, "lb"),
  21493. name: "Side",
  21494. image: {
  21495. source: "./media/characters/saian/side.svg",
  21496. extra: 566 / 356,
  21497. bottom: 79.7 / 643
  21498. }
  21499. },
  21500. maw: {
  21501. height: math.unit(2.85, "feet"),
  21502. name: "Maw",
  21503. image: {
  21504. source: "./media/characters/saian/maw.svg"
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(3, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21518. {
  21519. side: {
  21520. height: math.unit(8, "feet"),
  21521. weight: math.unit(300, "lb"),
  21522. name: "Side",
  21523. image: {
  21524. source: "./media/characters/equus-silvermane/side.svg",
  21525. extra: 2176 / 2050,
  21526. bottom: 65.7 / 2245
  21527. }
  21528. },
  21529. front: {
  21530. height: math.unit(8, "feet"),
  21531. weight: math.unit(300, "lb"),
  21532. name: "Front",
  21533. image: {
  21534. source: "./media/characters/equus-silvermane/front.svg",
  21535. extra: 4633 / 4400,
  21536. bottom: 71.3 / 4706.915
  21537. }
  21538. },
  21539. sideStepping: {
  21540. height: math.unit(8, "feet"),
  21541. weight: math.unit(300, "lb"),
  21542. name: "Side (Stepping)",
  21543. image: {
  21544. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21545. extra: 1968 / 1860,
  21546. bottom: 16.4 / 1989
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(8, "feet")
  21554. },
  21555. {
  21556. name: "Minimacro",
  21557. height: math.unit(75, "feet"),
  21558. default: true
  21559. },
  21560. {
  21561. name: "Macro",
  21562. height: math.unit(150, "feet")
  21563. },
  21564. {
  21565. name: "Macro+",
  21566. height: math.unit(1000, "feet")
  21567. },
  21568. {
  21569. name: "Megamacro",
  21570. height: math.unit(1, "mile")
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21576. {
  21577. side: {
  21578. height: math.unit(20, "feet"),
  21579. weight: math.unit(30000, "kg"),
  21580. name: "Side",
  21581. image: {
  21582. source: "./media/characters/windar/side.svg",
  21583. extra: 1491 / 1248,
  21584. bottom: 82.56 / 1568
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(20, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21598. {
  21599. side: {
  21600. height: math.unit(15.66, "feet"),
  21601. weight: math.unit(150, "lb"),
  21602. name: "Side",
  21603. image: {
  21604. source: "./media/characters/melody/side.svg",
  21605. extra: 1097 / 944,
  21606. bottom: 11.8 / 1109
  21607. }
  21608. },
  21609. sideOutfit: {
  21610. height: math.unit(15.66, "feet"),
  21611. weight: math.unit(150, "lb"),
  21612. name: "Side (Outfit)",
  21613. image: {
  21614. source: "./media/characters/melody/side-outfit.svg",
  21615. extra: 1097 / 944,
  21616. bottom: 11.8 / 1109
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(15.66, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(8, "feet"),
  21633. weight: math.unit(325, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/windera/front.svg",
  21637. extra: 3180 / 2845,
  21638. bottom: 178 / 3365
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(8, "feet"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21652. {
  21653. front: {
  21654. height: math.unit(28.75, "feet"),
  21655. weight: math.unit(2000, "kg"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/sonear/front.svg",
  21659. extra: 1041.1 / 964.9,
  21660. bottom: 53.7 / 1096.6
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(28.75, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21674. {
  21675. side: {
  21676. height: math.unit(25.5, "feet"),
  21677. weight: math.unit(23000, "kg"),
  21678. name: "Side",
  21679. image: {
  21680. source: "./media/characters/kanara/side.svg"
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(25.5, "feet"),
  21688. default: true
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21694. {
  21695. side: {
  21696. height: math.unit(10, "feet"),
  21697. weight: math.unit(1000, "kg"),
  21698. name: "Side",
  21699. image: {
  21700. source: "./media/characters/ereus/side.svg",
  21701. extra: 1157 / 959,
  21702. bottom: 153 / 1312.5
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(10, "feet"),
  21710. default: true
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21716. {
  21717. side: {
  21718. height: math.unit(4.5, "feet"),
  21719. weight: math.unit(500, "lb"),
  21720. name: "Side",
  21721. image: {
  21722. source: "./media/characters/e-ter/side.svg",
  21723. extra: 1550 / 1248,
  21724. bottom: 146 / 1694
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Normal",
  21731. height: math.unit(4.5, "feet"),
  21732. default: true
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21738. {
  21739. side: {
  21740. height: math.unit(9.7, "feet"),
  21741. weight: math.unit(4000, "kg"),
  21742. name: "Side",
  21743. image: {
  21744. source: "./media/characters/yamie/side.svg"
  21745. }
  21746. },
  21747. },
  21748. [
  21749. {
  21750. name: "Normal",
  21751. height: math.unit(9.7, "feet"),
  21752. default: true
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21758. {
  21759. front: {
  21760. height: math.unit(50, "feet"),
  21761. weight: math.unit(50000, "kg"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/anders/front.svg",
  21765. extra: 570 / 539,
  21766. bottom: 14.7 / 586.7
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Large",
  21773. height: math.unit(50, "feet")
  21774. },
  21775. {
  21776. name: "Macro",
  21777. height: math.unit(2000, "feet"),
  21778. default: true
  21779. },
  21780. {
  21781. name: "Megamacro",
  21782. height: math.unit(12, "miles")
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(7 + 2 / 12, "feet"),
  21791. weight: math.unit(300, "lb"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/reban/front.svg",
  21795. extra: 516 / 487,
  21796. bottom: 42.82 / 558.356
  21797. }
  21798. },
  21799. dick: {
  21800. height: math.unit(7 / 5, "feet"),
  21801. name: "Dick",
  21802. image: {
  21803. source: "./media/characters/reban/dick.svg"
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Natural Height",
  21810. height: math.unit(7 + 2 / 12, "feet")
  21811. },
  21812. {
  21813. name: "Macro",
  21814. height: math.unit(500, "feet"),
  21815. default: true
  21816. },
  21817. {
  21818. name: "Canon Height",
  21819. height: math.unit(50, "AU")
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21825. {
  21826. front: {
  21827. height: math.unit(6, "feet"),
  21828. weight: math.unit(150, "lb"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/terrance-keayes/front.svg",
  21832. extra: 1.005,
  21833. bottom: 151 / 1615
  21834. }
  21835. },
  21836. side: {
  21837. height: math.unit(6, "feet"),
  21838. weight: math.unit(150, "lb"),
  21839. name: "Side",
  21840. image: {
  21841. source: "./media/characters/terrance-keayes/side.svg",
  21842. extra: 1.005,
  21843. bottom: 129.4 / 1544
  21844. }
  21845. },
  21846. back: {
  21847. height: math.unit(6, "feet"),
  21848. weight: math.unit(150, "lb"),
  21849. name: "Back",
  21850. image: {
  21851. source: "./media/characters/terrance-keayes/back.svg",
  21852. extra: 1.005,
  21853. bottom: 58.4 / 1557.3
  21854. }
  21855. },
  21856. dick: {
  21857. height: math.unit(6 * 0.208, "feet"),
  21858. name: "Dick",
  21859. image: {
  21860. source: "./media/characters/terrance-keayes/dick.svg"
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Canon Height",
  21867. height: math.unit(35, "miles"),
  21868. default: true
  21869. },
  21870. ]
  21871. ))
  21872. characterMakers.push(() => makeCharacter(
  21873. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21874. {
  21875. front: {
  21876. height: math.unit(6, "feet"),
  21877. weight: math.unit(150, "lb"),
  21878. name: "Front",
  21879. image: {
  21880. source: "./media/characters/ofelia/front.svg",
  21881. extra: 546 / 541,
  21882. bottom: 39 / 583
  21883. }
  21884. },
  21885. back: {
  21886. height: math.unit(6, "feet"),
  21887. weight: math.unit(150, "lb"),
  21888. name: "Back",
  21889. image: {
  21890. source: "./media/characters/ofelia/back.svg",
  21891. extra: 564 / 559.5,
  21892. bottom: 8.69 / 573.02
  21893. }
  21894. },
  21895. maw: {
  21896. height: math.unit(1, "feet"),
  21897. name: "Maw",
  21898. image: {
  21899. source: "./media/characters/ofelia/maw.svg"
  21900. }
  21901. },
  21902. foot: {
  21903. height: math.unit(1.949, "feet"),
  21904. name: "Foot",
  21905. image: {
  21906. source: "./media/characters/ofelia/foot.svg"
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Canon Height",
  21913. height: math.unit(2000, "miles"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(6, "feet"),
  21923. weight: math.unit(150, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/samuel/front.svg",
  21927. extra: 265 / 258,
  21928. bottom: 2 / 266.1566
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Macro",
  21935. height: math.unit(100, "feet"),
  21936. default: true
  21937. },
  21938. {
  21939. name: "Full Size",
  21940. height: math.unit(1000, "miles")
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(6, "feet"),
  21949. weight: math.unit(300, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/beishir-kiel/front.svg",
  21953. extra: 569 / 547,
  21954. bottom: 41.9 / 609
  21955. }
  21956. },
  21957. maw: {
  21958. height: math.unit(6 * 0.202, "feet"),
  21959. name: "Maw",
  21960. image: {
  21961. source: "./media/characters/beishir-kiel/maw.svg"
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Macro",
  21968. height: math.unit(300, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(5 + 7/12, "feet"),
  21978. weight: math.unit(120, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/logan-grey/front.svg",
  21982. extra: 1836/1738,
  21983. bottom: 108/1944
  21984. }
  21985. },
  21986. back: {
  21987. height: math.unit(5 + 7/12, "feet"),
  21988. weight: math.unit(120, "lb"),
  21989. name: "Back",
  21990. image: {
  21991. source: "./media/characters/logan-grey/back.svg",
  21992. extra: 1880/1794,
  21993. bottom: 24/1904
  21994. }
  21995. },
  21996. frontSfw: {
  21997. height: math.unit(5 + 7/12, "feet"),
  21998. weight: math.unit(120, "lb"),
  21999. name: "Front (SFW)",
  22000. image: {
  22001. source: "./media/characters/logan-grey/front-sfw.svg",
  22002. extra: 1836/1738,
  22003. bottom: 108/1944
  22004. }
  22005. },
  22006. backSfw: {
  22007. height: math.unit(5 + 7/12, "feet"),
  22008. weight: math.unit(120, "lb"),
  22009. name: "Back (SFW)",
  22010. image: {
  22011. source: "./media/characters/logan-grey/back-sfw.svg",
  22012. extra: 1880/1794,
  22013. bottom: 24/1904
  22014. }
  22015. },
  22016. hands: {
  22017. height: math.unit(0.84, "feet"),
  22018. name: "Hands",
  22019. image: {
  22020. source: "./media/characters/logan-grey/hands.svg"
  22021. }
  22022. },
  22023. paws: {
  22024. height: math.unit(0.72, "feet"),
  22025. name: "Paws",
  22026. image: {
  22027. source: "./media/characters/logan-grey/paws.svg"
  22028. }
  22029. },
  22030. cock: {
  22031. height: math.unit(1.45, "feet"),
  22032. name: "Cock",
  22033. image: {
  22034. source: "./media/characters/logan-grey/cock.svg"
  22035. }
  22036. },
  22037. cockAlt: {
  22038. height: math.unit(1.437, "feet"),
  22039. name: "Cock (alt)",
  22040. image: {
  22041. source: "./media/characters/logan-grey/cock-alt.svg"
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(5 + 8 / 12, "feet")
  22049. },
  22050. {
  22051. name: "The 500 Foot Femboy",
  22052. height: math.unit(500, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Megmacro",
  22057. height: math.unit(20, "miles")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(8 + 2 / 12, "feet"),
  22066. weight: math.unit(275, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/draganta/front.svg",
  22070. extra: 1177 / 1135,
  22071. bottom: 33.46 / 1212.1
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(8 + 6 / 12, "feet"),
  22079. default: true
  22080. },
  22081. {
  22082. name: "Macro",
  22083. height: math.unit(150, "feet")
  22084. },
  22085. {
  22086. name: "Megamacro",
  22087. height: math.unit(1000, "miles")
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(1.72, "m"),
  22096. weight: math.unit(80, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/voski/front.svg",
  22100. extra: 2076.22 / 2022.4,
  22101. bottom: 102.7 / 2177.3866
  22102. }
  22103. },
  22104. frontNsfw: {
  22105. height: math.unit(1.72, "m"),
  22106. weight: math.unit(80, "lb"),
  22107. name: "Front (NSFW)",
  22108. image: {
  22109. source: "./media/characters/voski/front-nsfw.svg",
  22110. extra: 2076.22 / 2022.4,
  22111. bottom: 102.7 / 2177.3866
  22112. }
  22113. },
  22114. back: {
  22115. height: math.unit(1.72, "m"),
  22116. weight: math.unit(80, "lb"),
  22117. name: "Back",
  22118. image: {
  22119. source: "./media/characters/voski/back.svg",
  22120. extra: 2104 / 2051,
  22121. bottom: 10.45 / 2113.63
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(1.72, "m")
  22129. },
  22130. {
  22131. name: "Macro",
  22132. height: math.unit(55, "m"),
  22133. default: true
  22134. },
  22135. {
  22136. name: "Macro+",
  22137. height: math.unit(300, "m")
  22138. },
  22139. {
  22140. name: "Macro++",
  22141. height: math.unit(700, "m")
  22142. },
  22143. {
  22144. name: "Macro+++",
  22145. height: math.unit(4500, "m")
  22146. },
  22147. {
  22148. name: "Macro++++",
  22149. height: math.unit(45, "km")
  22150. },
  22151. {
  22152. name: "Macro+++++",
  22153. height: math.unit(1220, "km")
  22154. },
  22155. ]
  22156. ))
  22157. characterMakers.push(() => makeCharacter(
  22158. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22159. {
  22160. front: {
  22161. height: math.unit(2.3, "m"),
  22162. weight: math.unit(304, "kg"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/icowom-lee/front.svg",
  22166. extra: 985 / 955,
  22167. bottom: 25.4 / 1012
  22168. }
  22169. },
  22170. fronttentacles: {
  22171. height: math.unit(2.3, "m"),
  22172. weight: math.unit(304, "kg"),
  22173. name: "Front-tentacles",
  22174. image: {
  22175. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22176. extra: 985 / 955,
  22177. bottom: 25.4 / 1012
  22178. }
  22179. },
  22180. back: {
  22181. height: math.unit(2.3, "m"),
  22182. weight: math.unit(304, "kg"),
  22183. name: "Back",
  22184. image: {
  22185. source: "./media/characters/icowom-lee/back.svg",
  22186. extra: 975 / 954,
  22187. bottom: 9.5 / 985
  22188. }
  22189. },
  22190. backtentacles: {
  22191. height: math.unit(2.3, "m"),
  22192. weight: math.unit(304, "kg"),
  22193. name: "Back-tentacles",
  22194. image: {
  22195. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22196. extra: 975 / 954,
  22197. bottom: 9.5 / 985
  22198. }
  22199. },
  22200. frontDressed: {
  22201. height: math.unit(2.3, "m"),
  22202. weight: math.unit(304, "kg"),
  22203. name: "Front (Dressed)",
  22204. image: {
  22205. source: "./media/characters/icowom-lee/front-dressed.svg",
  22206. extra: 3076 / 2933,
  22207. bottom: 51.4 / 3125.1889
  22208. }
  22209. },
  22210. rump: {
  22211. height: math.unit(0.776, "meters"),
  22212. name: "Rump",
  22213. image: {
  22214. source: "./media/characters/icowom-lee/rump.svg"
  22215. }
  22216. },
  22217. genitals: {
  22218. height: math.unit(0.78, "meters"),
  22219. name: "Genitals",
  22220. image: {
  22221. source: "./media/characters/icowom-lee/genitals.svg"
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(2.3, "meters"),
  22229. default: true
  22230. },
  22231. {
  22232. name: "Macro",
  22233. height: math.unit(94, "meters"),
  22234. default: true
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(22, "meters"),
  22243. weight: math.unit(21000, "kg"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/shock-diamond/front.svg",
  22247. extra: 2204 / 2053,
  22248. bottom: 65 / 2239.47
  22249. }
  22250. },
  22251. frontNude: {
  22252. height: math.unit(22, "meters"),
  22253. weight: math.unit(21000, "kg"),
  22254. name: "Front (Nude)",
  22255. image: {
  22256. source: "./media/characters/shock-diamond/front-nude.svg",
  22257. extra: 2514 / 2285,
  22258. bottom: 13 / 2527.56
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(3, "meters")
  22266. },
  22267. {
  22268. name: "Macro",
  22269. height: math.unit(22, "meters"),
  22270. default: true
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(5 + 4 / 12, "feet"),
  22279. weight: math.unit(120, "lb"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/rory/front.svg",
  22283. extra: 1318/1241,
  22284. bottom: 42/1360
  22285. }
  22286. },
  22287. back: {
  22288. height: math.unit(5 + 4 / 12, "feet"),
  22289. weight: math.unit(120, "lb"),
  22290. name: "Back",
  22291. image: {
  22292. source: "./media/characters/rory/back.svg",
  22293. extra: 1318/1241,
  22294. bottom: 42/1360
  22295. }
  22296. },
  22297. butt: {
  22298. height: math.unit(1.74, "feet"),
  22299. name: "Butt",
  22300. image: {
  22301. source: "./media/characters/rory/butt.svg"
  22302. }
  22303. },
  22304. dick: {
  22305. height: math.unit(1.02, "feet"),
  22306. name: "Dick",
  22307. image: {
  22308. source: "./media/characters/rory/dick.svg"
  22309. }
  22310. },
  22311. paws: {
  22312. height: math.unit(1, "feet"),
  22313. name: "Paws",
  22314. image: {
  22315. source: "./media/characters/rory/paws.svg"
  22316. }
  22317. },
  22318. frontAlt: {
  22319. height: math.unit(5 + 4 / 12, "feet"),
  22320. weight: math.unit(120, "lb"),
  22321. name: "Front (Alt)",
  22322. image: {
  22323. source: "./media/characters/rory/front-alt.svg",
  22324. extra: 589 / 556,
  22325. bottom: 45.7 / 635.76
  22326. }
  22327. },
  22328. frontAltNude: {
  22329. height: math.unit(5 + 4 / 12, "feet"),
  22330. weight: math.unit(120, "lb"),
  22331. name: "Front (Alt, Nude)",
  22332. image: {
  22333. source: "./media/characters/rory/front-alt-nude.svg",
  22334. extra: 589 / 556,
  22335. bottom: 45.7 / 635.76
  22336. }
  22337. },
  22338. side: {
  22339. height: math.unit(5 + 4 / 12, "feet"),
  22340. weight: math.unit(120, "lb"),
  22341. name: "Side",
  22342. image: {
  22343. source: "./media/characters/rory/side.svg",
  22344. extra: 597 / 564,
  22345. bottom: 55 / 653
  22346. }
  22347. },
  22348. backAlt: {
  22349. height: math.unit(5 + 4 / 12, "feet"),
  22350. weight: math.unit(120, "lb"),
  22351. name: "Back (Alt)",
  22352. image: {
  22353. source: "./media/characters/rory/back-alt.svg",
  22354. extra: 620 / 585,
  22355. bottom: 8.86 / 630.43
  22356. }
  22357. },
  22358. dickAlt: {
  22359. height: math.unit(0.86, "feet"),
  22360. name: "Dick (Alt)",
  22361. image: {
  22362. source: "./media/characters/rory/dick-alt.svg"
  22363. }
  22364. },
  22365. },
  22366. [
  22367. {
  22368. name: "Normal",
  22369. height: math.unit(5 + 4 / 12, "feet"),
  22370. default: true
  22371. },
  22372. {
  22373. name: "Macro",
  22374. height: math.unit(100, "feet")
  22375. },
  22376. {
  22377. name: "Macro+",
  22378. height: math.unit(140, "feet")
  22379. },
  22380. {
  22381. name: "Macro++",
  22382. height: math.unit(300, "feet")
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22388. {
  22389. front: {
  22390. height: math.unit(5 + 9 / 12, "feet"),
  22391. weight: math.unit(190, "lb"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/sprisk/front.svg",
  22395. extra: 1225 / 1180,
  22396. bottom: 42.7 / 1266.4
  22397. }
  22398. },
  22399. frontNsfw: {
  22400. height: math.unit(5 + 9 / 12, "feet"),
  22401. weight: math.unit(190, "lb"),
  22402. name: "Front (NSFW)",
  22403. image: {
  22404. source: "./media/characters/sprisk/front-nsfw.svg",
  22405. extra: 1225 / 1180,
  22406. bottom: 42.7 / 1266.4
  22407. }
  22408. },
  22409. back: {
  22410. height: math.unit(5 + 9 / 12, "feet"),
  22411. weight: math.unit(190, "lb"),
  22412. name: "Back",
  22413. image: {
  22414. source: "./media/characters/sprisk/back.svg",
  22415. extra: 1247 / 1200,
  22416. bottom: 5.6 / 1253.04
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Tiny",
  22423. height: math.unit(2, "inches")
  22424. },
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(5 + 9 / 12, "feet"),
  22428. default: true
  22429. },
  22430. {
  22431. name: "Mini Macro",
  22432. height: math.unit(18, "feet")
  22433. },
  22434. {
  22435. name: "Macro",
  22436. height: math.unit(100, "feet")
  22437. },
  22438. {
  22439. name: "MACRO",
  22440. height: math.unit(50, "miles")
  22441. },
  22442. {
  22443. name: "M A C R O",
  22444. height: math.unit(300, "miles")
  22445. },
  22446. ]
  22447. ))
  22448. characterMakers.push(() => makeCharacter(
  22449. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22450. {
  22451. side: {
  22452. height: math.unit(15.6, "meters"),
  22453. weight: math.unit(700000, "kg"),
  22454. name: "Side",
  22455. image: {
  22456. source: "./media/characters/bunsen/side.svg",
  22457. extra: 1644 / 358
  22458. }
  22459. },
  22460. foot: {
  22461. height: math.unit(1.611 * 1644 / 358, "meter"),
  22462. name: "Foot",
  22463. image: {
  22464. source: "./media/characters/bunsen/foot.svg"
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Small",
  22471. height: math.unit(10, "feet")
  22472. },
  22473. {
  22474. name: "Normal",
  22475. height: math.unit(15.6, "meters"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(4 + 11 / 12, "feet"),
  22485. weight: math.unit(140, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/sesh/front.svg",
  22489. extra: 3420 / 3231,
  22490. bottom: 72 / 3949.5
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(4 + 11 / 12, "feet")
  22498. },
  22499. {
  22500. name: "Grown",
  22501. height: math.unit(15, "feet"),
  22502. default: true
  22503. },
  22504. {
  22505. name: "Macro",
  22506. height: math.unit(1500, "feet")
  22507. },
  22508. {
  22509. name: "Megamacro",
  22510. height: math.unit(30, "miles")
  22511. },
  22512. {
  22513. name: "Continental",
  22514. height: math.unit(3000, "miles")
  22515. },
  22516. {
  22517. name: "Gravity Mass",
  22518. height: math.unit(300000, "miles")
  22519. },
  22520. {
  22521. name: "Planet Buster",
  22522. height: math.unit(30000000, "miles")
  22523. },
  22524. {
  22525. name: "Big",
  22526. height: math.unit(3000000000, "miles")
  22527. },
  22528. ]
  22529. ))
  22530. characterMakers.push(() => makeCharacter(
  22531. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22532. {
  22533. front: {
  22534. height: math.unit(9, "feet"),
  22535. weight: math.unit(350, "lb"),
  22536. name: "Front",
  22537. image: {
  22538. source: "./media/characters/pepper/front.svg",
  22539. extra: 1448 / 1312,
  22540. bottom: 9.4 / 1457.88
  22541. }
  22542. },
  22543. back: {
  22544. height: math.unit(9, "feet"),
  22545. weight: math.unit(350, "lb"),
  22546. name: "Back",
  22547. image: {
  22548. source: "./media/characters/pepper/back.svg",
  22549. extra: 1423 / 1300,
  22550. bottom: 4.6 / 1429
  22551. }
  22552. },
  22553. maw: {
  22554. height: math.unit(0.932, "feet"),
  22555. name: "Maw",
  22556. image: {
  22557. source: "./media/characters/pepper/maw.svg"
  22558. }
  22559. },
  22560. },
  22561. [
  22562. {
  22563. name: "Normal",
  22564. height: math.unit(9, "feet"),
  22565. default: true
  22566. },
  22567. ]
  22568. ))
  22569. characterMakers.push(() => makeCharacter(
  22570. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22571. {
  22572. front: {
  22573. height: math.unit(6, "feet"),
  22574. weight: math.unit(150, "lb"),
  22575. name: "Front",
  22576. image: {
  22577. source: "./media/characters/maelstrom/front.svg",
  22578. extra: 2100 / 1883,
  22579. bottom: 94 / 2196.7
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Less Kaiju",
  22586. height: math.unit(200, "feet")
  22587. },
  22588. {
  22589. name: "Kaiju",
  22590. height: math.unit(400, "feet"),
  22591. default: true
  22592. },
  22593. {
  22594. name: "Kaiju-er",
  22595. height: math.unit(600, "feet")
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22601. {
  22602. front: {
  22603. height: math.unit(6 + 5 / 12, "feet"),
  22604. weight: math.unit(180, "lb"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/lexir/front.svg",
  22608. extra: 180 / 172,
  22609. bottom: 12 / 192
  22610. }
  22611. },
  22612. back: {
  22613. height: math.unit(6 + 5 / 12, "feet"),
  22614. weight: math.unit(180, "lb"),
  22615. name: "Back",
  22616. image: {
  22617. source: "./media/characters/lexir/back.svg",
  22618. extra: 183.84 / 175.5,
  22619. bottom: 3.1 / 187
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Very Smal",
  22626. height: math.unit(1, "nm")
  22627. },
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(6 + 5 / 12, "feet"),
  22631. default: true
  22632. },
  22633. {
  22634. name: "Macro",
  22635. height: math.unit(1, "mile")
  22636. },
  22637. {
  22638. name: "Megamacro",
  22639. height: math.unit(50, "miles")
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(1.5, "meters"),
  22648. weight: math.unit(100, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/maksio/front.svg",
  22652. extra: 1549 / 1531,
  22653. bottom: 123.7 / 1674.5429
  22654. }
  22655. },
  22656. back: {
  22657. height: math.unit(1.5, "meters"),
  22658. weight: math.unit(100, "lb"),
  22659. name: "Back",
  22660. image: {
  22661. source: "./media/characters/maksio/back.svg",
  22662. extra: 1541 / 1509,
  22663. bottom: 97 / 1639
  22664. }
  22665. },
  22666. hand: {
  22667. height: math.unit(0.621, "feet"),
  22668. name: "Hand",
  22669. image: {
  22670. source: "./media/characters/maksio/hand.svg"
  22671. }
  22672. },
  22673. foot: {
  22674. height: math.unit(1.611, "feet"),
  22675. name: "Foot",
  22676. image: {
  22677. source: "./media/characters/maksio/foot.svg"
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Shrunken",
  22684. height: math.unit(10, "cm")
  22685. },
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(150, "cm"),
  22689. default: true
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22695. {
  22696. front: {
  22697. height: math.unit(100, "feet"),
  22698. name: "Front",
  22699. image: {
  22700. source: "./media/characters/erza-bear/front.svg",
  22701. extra: 2449 / 2390,
  22702. bottom: 46 / 2494
  22703. }
  22704. },
  22705. back: {
  22706. height: math.unit(100, "feet"),
  22707. name: "Back",
  22708. image: {
  22709. source: "./media/characters/erza-bear/back.svg",
  22710. extra: 2489 / 2430,
  22711. bottom: 85.4 / 2480
  22712. }
  22713. },
  22714. tail: {
  22715. height: math.unit(42, "feet"),
  22716. name: "Tail",
  22717. image: {
  22718. source: "./media/characters/erza-bear/tail.svg"
  22719. }
  22720. },
  22721. tongue: {
  22722. height: math.unit(8, "feet"),
  22723. name: "Tongue",
  22724. image: {
  22725. source: "./media/characters/erza-bear/tongue.svg"
  22726. }
  22727. },
  22728. dick: {
  22729. height: math.unit(10.5, "feet"),
  22730. name: "Dick",
  22731. image: {
  22732. source: "./media/characters/erza-bear/dick.svg"
  22733. }
  22734. },
  22735. dickVertical: {
  22736. height: math.unit(16.9, "feet"),
  22737. name: "Dick (Vertical)",
  22738. image: {
  22739. source: "./media/characters/erza-bear/dick-vertical.svg"
  22740. }
  22741. },
  22742. },
  22743. [
  22744. {
  22745. name: "Macro",
  22746. height: math.unit(100, "feet"),
  22747. default: true
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(172, "cm"),
  22756. weight: math.unit(73, "kg"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/violet-flor/front.svg",
  22760. extra: 1530 / 1442,
  22761. bottom: 61.9 / 1588.8
  22762. }
  22763. },
  22764. back: {
  22765. height: math.unit(180, "cm"),
  22766. weight: math.unit(73, "kg"),
  22767. name: "Back",
  22768. image: {
  22769. source: "./media/characters/violet-flor/back.svg",
  22770. extra: 1692 / 1630,
  22771. bottom: 20 / 1712
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Normal",
  22778. height: math.unit(172, "cm"),
  22779. default: true
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22785. {
  22786. front: {
  22787. height: math.unit(6, "feet"),
  22788. weight: math.unit(220, "lb"),
  22789. name: "Front",
  22790. image: {
  22791. source: "./media/characters/lynn-rhea/front.svg",
  22792. extra: 310 / 273
  22793. }
  22794. },
  22795. back: {
  22796. height: math.unit(6, "feet"),
  22797. weight: math.unit(220, "lb"),
  22798. name: "Back",
  22799. image: {
  22800. source: "./media/characters/lynn-rhea/back.svg",
  22801. extra: 310 / 273
  22802. }
  22803. },
  22804. dicks: {
  22805. height: math.unit(0.9, "feet"),
  22806. name: "Dicks",
  22807. image: {
  22808. source: "./media/characters/lynn-rhea/dicks.svg"
  22809. }
  22810. },
  22811. slit: {
  22812. height: math.unit(0.4, "feet"),
  22813. name: "Slit",
  22814. image: {
  22815. source: "./media/characters/lynn-rhea/slit.svg"
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Micro",
  22822. height: math.unit(1, "inch")
  22823. },
  22824. {
  22825. name: "Macro",
  22826. height: math.unit(60, "feet"),
  22827. default: true
  22828. },
  22829. {
  22830. name: "Megamacro",
  22831. height: math.unit(2, "miles")
  22832. },
  22833. {
  22834. name: "Gigamacro",
  22835. height: math.unit(3, "earths")
  22836. },
  22837. {
  22838. name: "Galactic",
  22839. height: math.unit(0.8, "galaxies")
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22845. {
  22846. front: {
  22847. height: math.unit(1600, "feet"),
  22848. weight: math.unit(85758785169, "kg"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/valathos/front.svg",
  22852. extra: 1451 / 1339
  22853. }
  22854. },
  22855. },
  22856. [
  22857. {
  22858. name: "Macro",
  22859. height: math.unit(1600, "feet"),
  22860. default: true
  22861. },
  22862. ]
  22863. ))
  22864. characterMakers.push(() => makeCharacter(
  22865. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22866. {
  22867. front: {
  22868. height: math.unit(7 + 5 / 12, "feet"),
  22869. weight: math.unit(300, "lb"),
  22870. name: "Front",
  22871. image: {
  22872. source: "./media/characters/azula/front.svg",
  22873. extra: 3208 / 2880,
  22874. bottom: 80.2 / 3277
  22875. }
  22876. },
  22877. back: {
  22878. height: math.unit(7 + 5 / 12, "feet"),
  22879. weight: math.unit(300, "lb"),
  22880. name: "Back",
  22881. image: {
  22882. source: "./media/characters/azula/back.svg",
  22883. extra: 3169 / 2822,
  22884. bottom: 150.6 / 3321
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Normal",
  22891. height: math.unit(7 + 5 / 12, "feet"),
  22892. default: true
  22893. },
  22894. {
  22895. name: "Big",
  22896. height: math.unit(20, "feet")
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22902. {
  22903. front: {
  22904. height: math.unit(5 + 1 / 12, "feet"),
  22905. weight: math.unit(110, "lb"),
  22906. name: "Front",
  22907. image: {
  22908. source: "./media/characters/rupert/front.svg",
  22909. extra: 1549 / 1495,
  22910. bottom: 54.2 / 1604.4
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(5 + 1 / 12, "feet"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22924. {
  22925. front: {
  22926. height: math.unit(8 + 4 / 12, "feet"),
  22927. weight: math.unit(350, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/sheera-castellar/front.svg",
  22931. extra: 1957 / 1894,
  22932. bottom: 26.97 / 1975.017
  22933. }
  22934. },
  22935. side: {
  22936. height: math.unit(8 + 4 / 12, "feet"),
  22937. weight: math.unit(350, "lb"),
  22938. name: "Side",
  22939. image: {
  22940. source: "./media/characters/sheera-castellar/side.svg",
  22941. extra: 1957 / 1894
  22942. }
  22943. },
  22944. back: {
  22945. height: math.unit(8 + 4 / 12, "feet"),
  22946. weight: math.unit(350, "lb"),
  22947. name: "Back",
  22948. image: {
  22949. source: "./media/characters/sheera-castellar/back.svg",
  22950. extra: 1957 / 1894
  22951. }
  22952. },
  22953. angled: {
  22954. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22955. weight: math.unit(350, "lb"),
  22956. name: "Angled",
  22957. image: {
  22958. source: "./media/characters/sheera-castellar/angled.svg",
  22959. extra: 1807 / 1707,
  22960. bottom: 68 / 1875
  22961. }
  22962. },
  22963. genitals: {
  22964. height: math.unit(2.2, "feet"),
  22965. name: "Genitals",
  22966. image: {
  22967. source: "./media/characters/sheera-castellar/genitals.svg"
  22968. }
  22969. },
  22970. taur: {
  22971. height: math.unit(10 + 6/12, "feet"),
  22972. name: "Taur",
  22973. image: {
  22974. source: "./media/characters/sheera-castellar/taur.svg",
  22975. extra: 2017/1909,
  22976. bottom: 185/2202
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Normal",
  22983. height: math.unit(8 + 4 / 12, "feet")
  22984. },
  22985. {
  22986. name: "Macro",
  22987. height: math.unit(150, "feet"),
  22988. default: true
  22989. },
  22990. {
  22991. name: "Macro+",
  22992. height: math.unit(800, "feet")
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22998. {
  22999. front: {
  23000. height: math.unit(6, "feet"),
  23001. weight: math.unit(150, "lb"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/jaipur/front.svg",
  23005. extra: 3860 / 3731,
  23006. bottom: 287 / 4140
  23007. }
  23008. },
  23009. back: {
  23010. height: math.unit(6, "feet"),
  23011. weight: math.unit(150, "lb"),
  23012. name: "Back",
  23013. image: {
  23014. source: "./media/characters/jaipur/back.svg",
  23015. extra: 4060 / 3930,
  23016. bottom: 151 / 4200
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Normal",
  23023. height: math.unit(1.85, "meters"),
  23024. default: true
  23025. },
  23026. {
  23027. name: "Macro",
  23028. height: math.unit(150, "meters")
  23029. },
  23030. {
  23031. name: "Macro+",
  23032. height: math.unit(0.5, "miles")
  23033. },
  23034. {
  23035. name: "Macro++",
  23036. height: math.unit(2.5, "miles")
  23037. },
  23038. {
  23039. name: "Macro+++",
  23040. height: math.unit(12, "miles")
  23041. },
  23042. {
  23043. name: "Macro++++",
  23044. height: math.unit(120, "miles")
  23045. },
  23046. {
  23047. name: "Macro+++++",
  23048. height: math.unit(1200, "miles")
  23049. },
  23050. ]
  23051. ))
  23052. characterMakers.push(() => makeCharacter(
  23053. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23054. {
  23055. front: {
  23056. height: math.unit(6, "feet"),
  23057. weight: math.unit(150, "lb"),
  23058. name: "Front",
  23059. image: {
  23060. source: "./media/characters/sheila-wolf/front.svg",
  23061. extra: 1931 / 1808,
  23062. bottom: 29.5 / 1960
  23063. }
  23064. },
  23065. dick: {
  23066. height: math.unit(1.464, "feet"),
  23067. name: "Dick",
  23068. image: {
  23069. source: "./media/characters/sheila-wolf/dick.svg"
  23070. }
  23071. },
  23072. muzzle: {
  23073. height: math.unit(0.513, "feet"),
  23074. name: "Muzzle",
  23075. image: {
  23076. source: "./media/characters/sheila-wolf/muzzle.svg"
  23077. }
  23078. },
  23079. },
  23080. [
  23081. {
  23082. name: "Macro",
  23083. height: math.unit(70, "feet"),
  23084. default: true
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(32, "meters"),
  23093. weight: math.unit(300000, "kg"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/almor/front.svg",
  23097. extra: 1408 / 1322,
  23098. bottom: 94.6 / 1506.5
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Macro",
  23105. height: math.unit(32, "meters"),
  23106. default: true
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23112. {
  23113. front: {
  23114. height: math.unit(7, "feet"),
  23115. weight: math.unit(200, "lb"),
  23116. name: "Front",
  23117. image: {
  23118. source: "./media/characters/silver/front.svg",
  23119. extra: 472.1 / 450.5,
  23120. bottom: 26.5 / 499.424
  23121. }
  23122. },
  23123. },
  23124. [
  23125. {
  23126. name: "Normal",
  23127. height: math.unit(7, "feet"),
  23128. default: true
  23129. },
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(800, "feet")
  23133. },
  23134. {
  23135. name: "Megamacro",
  23136. height: math.unit(250, "miles")
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(6, "feet"),
  23145. weight: math.unit(150, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/pliskin/front.svg",
  23149. extra: 1469 / 1359,
  23150. bottom: 70 / 1540
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Micro",
  23157. height: math.unit(3, "inches")
  23158. },
  23159. {
  23160. name: "Normal",
  23161. height: math.unit(5 + 11 / 12, "feet"),
  23162. default: true
  23163. },
  23164. {
  23165. name: "Macro",
  23166. height: math.unit(120, "feet")
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(6, "feet"),
  23175. weight: math.unit(150, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/sammy/front.svg",
  23179. extra: 1193 / 1089,
  23180. bottom: 30.5 / 1226
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Macro",
  23187. height: math.unit(1700, "feet"),
  23188. default: true
  23189. },
  23190. {
  23191. name: "Examacro",
  23192. height: math.unit(2.5e9, "lightyears")
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23198. {
  23199. front: {
  23200. height: math.unit(21, "meters"),
  23201. weight: math.unit(12, "tonnes"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/kuru/front.svg",
  23205. extra: 4301 / 3785,
  23206. bottom: 371.3 / 4691
  23207. }
  23208. },
  23209. },
  23210. [
  23211. {
  23212. name: "Macro",
  23213. height: math.unit(21, "meters"),
  23214. default: true
  23215. },
  23216. ]
  23217. ))
  23218. characterMakers.push(() => makeCharacter(
  23219. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23220. {
  23221. front: {
  23222. height: math.unit(23, "meters"),
  23223. weight: math.unit(12.2, "tonnes"),
  23224. name: "Front",
  23225. image: {
  23226. source: "./media/characters/rakka/front.svg",
  23227. extra: 4670 / 4169,
  23228. bottom: 301 / 4968.7
  23229. }
  23230. },
  23231. },
  23232. [
  23233. {
  23234. name: "Macro",
  23235. height: math.unit(23, "meters"),
  23236. default: true
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23242. {
  23243. front: {
  23244. height: math.unit(6, "feet"),
  23245. weight: math.unit(150, "lb"),
  23246. name: "Front",
  23247. image: {
  23248. source: "./media/characters/rhys-feline/front.svg",
  23249. extra: 2488 / 2308,
  23250. bottom: 35.67 / 2519.19
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Really Small",
  23257. height: math.unit(1, "nm")
  23258. },
  23259. {
  23260. name: "Micro",
  23261. height: math.unit(4, "inches")
  23262. },
  23263. {
  23264. name: "Normal",
  23265. height: math.unit(4 + 10 / 12, "feet"),
  23266. default: true
  23267. },
  23268. {
  23269. name: "Macro",
  23270. height: math.unit(100, "feet")
  23271. },
  23272. {
  23273. name: "Megamacto",
  23274. height: math.unit(50, "miles")
  23275. },
  23276. ]
  23277. ))
  23278. characterMakers.push(() => makeCharacter(
  23279. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23280. {
  23281. side: {
  23282. height: math.unit(30, "feet"),
  23283. weight: math.unit(35000, "kg"),
  23284. name: "Side",
  23285. image: {
  23286. source: "./media/characters/alydar/side.svg",
  23287. extra: 234 / 222,
  23288. bottom: 6.5 / 241
  23289. }
  23290. },
  23291. front: {
  23292. height: math.unit(30, "feet"),
  23293. weight: math.unit(35000, "kg"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/alydar/front.svg",
  23297. extra: 223.37 / 210.2,
  23298. bottom: 22.3 / 246.76
  23299. }
  23300. },
  23301. top: {
  23302. height: math.unit(64.54, "feet"),
  23303. weight: math.unit(35000, "kg"),
  23304. name: "Top",
  23305. image: {
  23306. source: "./media/characters/alydar/top.svg"
  23307. }
  23308. },
  23309. anthro: {
  23310. height: math.unit(30, "feet"),
  23311. weight: math.unit(9000, "kg"),
  23312. name: "Anthro",
  23313. image: {
  23314. source: "./media/characters/alydar/anthro.svg",
  23315. extra: 432 / 421,
  23316. bottom: 7.18 / 440
  23317. }
  23318. },
  23319. maw: {
  23320. height: math.unit(11.693, "feet"),
  23321. name: "Maw",
  23322. image: {
  23323. source: "./media/characters/alydar/maw.svg"
  23324. }
  23325. },
  23326. head: {
  23327. height: math.unit(11.693, "feet"),
  23328. name: "Head",
  23329. image: {
  23330. source: "./media/characters/alydar/head.svg"
  23331. }
  23332. },
  23333. headAlt: {
  23334. height: math.unit(12.861, "feet"),
  23335. name: "Head (Alt)",
  23336. image: {
  23337. source: "./media/characters/alydar/head-alt.svg"
  23338. }
  23339. },
  23340. wing: {
  23341. height: math.unit(20.712, "feet"),
  23342. name: "Wing",
  23343. image: {
  23344. source: "./media/characters/alydar/wing.svg"
  23345. }
  23346. },
  23347. wingFeather: {
  23348. height: math.unit(9.662, "feet"),
  23349. name: "Wing Feather",
  23350. image: {
  23351. source: "./media/characters/alydar/wing-feather.svg"
  23352. }
  23353. },
  23354. countourFeather: {
  23355. height: math.unit(4.154, "feet"),
  23356. name: "Contour Feather",
  23357. image: {
  23358. source: "./media/characters/alydar/contour-feather.svg"
  23359. }
  23360. },
  23361. },
  23362. [
  23363. {
  23364. name: "Diplomatic",
  23365. height: math.unit(13, "feet"),
  23366. default: true
  23367. },
  23368. {
  23369. name: "Small",
  23370. height: math.unit(30, "feet")
  23371. },
  23372. {
  23373. name: "Normal",
  23374. height: math.unit(95, "feet"),
  23375. default: true
  23376. },
  23377. {
  23378. name: "Large",
  23379. height: math.unit(285, "feet")
  23380. },
  23381. {
  23382. name: "Incomprehensible",
  23383. height: math.unit(450, "megameters")
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23389. {
  23390. side: {
  23391. height: math.unit(11, "feet"),
  23392. weight: math.unit(1750, "kg"),
  23393. name: "Side",
  23394. image: {
  23395. source: "./media/characters/selicia/side.svg",
  23396. extra: 440 / 396,
  23397. bottom: 24.8 / 465.979
  23398. }
  23399. },
  23400. maw: {
  23401. height: math.unit(4.665, "feet"),
  23402. name: "Maw",
  23403. image: {
  23404. source: "./media/characters/selicia/maw.svg"
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Normal",
  23411. height: math.unit(11, "feet"),
  23412. default: true
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23418. {
  23419. side: {
  23420. height: math.unit(2 + 6 / 12, "feet"),
  23421. weight: math.unit(30, "lb"),
  23422. name: "Side",
  23423. image: {
  23424. source: "./media/characters/layla/side.svg",
  23425. extra: 244 / 188,
  23426. bottom: 18.2 / 262.1
  23427. }
  23428. },
  23429. back: {
  23430. height: math.unit(2 + 6 / 12, "feet"),
  23431. weight: math.unit(30, "lb"),
  23432. name: "Back",
  23433. image: {
  23434. source: "./media/characters/layla/back.svg",
  23435. extra: 308 / 241.5,
  23436. bottom: 8.9 / 316.8
  23437. }
  23438. },
  23439. cumming: {
  23440. height: math.unit(2 + 6 / 12, "feet"),
  23441. weight: math.unit(30, "lb"),
  23442. name: "Cumming",
  23443. image: {
  23444. source: "./media/characters/layla/cumming.svg",
  23445. extra: 342 / 279,
  23446. bottom: 595 / 938
  23447. }
  23448. },
  23449. dickFlaccid: {
  23450. height: math.unit(2.595, "feet"),
  23451. name: "Flaccid Genitals",
  23452. image: {
  23453. source: "./media/characters/layla/dick-flaccid.svg"
  23454. }
  23455. },
  23456. dickErect: {
  23457. height: math.unit(2.359, "feet"),
  23458. name: "Erect Genitals",
  23459. image: {
  23460. source: "./media/characters/layla/dick-erect.svg"
  23461. }
  23462. },
  23463. dragon: {
  23464. height: math.unit(40, "feet"),
  23465. name: "Dragon",
  23466. image: {
  23467. source: "./media/characters/layla/dragon.svg",
  23468. extra: 610/535,
  23469. bottom: 367/977
  23470. }
  23471. },
  23472. taur: {
  23473. height: math.unit(30, "feet"),
  23474. name: "Taur",
  23475. image: {
  23476. source: "./media/characters/layla/taur.svg",
  23477. extra: 1268/1199,
  23478. bottom: 112/1380
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Micro",
  23485. height: math.unit(1, "inch")
  23486. },
  23487. {
  23488. name: "Small",
  23489. height: math.unit(1, "foot")
  23490. },
  23491. {
  23492. name: "Normal",
  23493. height: math.unit(2 + 6 / 12, "feet"),
  23494. default: true
  23495. },
  23496. {
  23497. name: "Macro",
  23498. height: math.unit(200, "feet")
  23499. },
  23500. {
  23501. name: "Megamacro",
  23502. height: math.unit(1000, "miles")
  23503. },
  23504. {
  23505. name: "Planetary",
  23506. height: math.unit(8000, "miles")
  23507. },
  23508. {
  23509. name: "True Layla",
  23510. height: math.unit(200000 * 7, "multiverses")
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23516. {
  23517. back: {
  23518. height: math.unit(10.5, "feet"),
  23519. weight: math.unit(800, "lb"),
  23520. name: "Back",
  23521. image: {
  23522. source: "./media/characters/knox/back.svg",
  23523. extra: 1486 / 1089,
  23524. bottom: 107 / 1601.4
  23525. }
  23526. },
  23527. side: {
  23528. height: math.unit(10.5, "feet"),
  23529. weight: math.unit(800, "lb"),
  23530. name: "Side",
  23531. image: {
  23532. source: "./media/characters/knox/side.svg",
  23533. extra: 244 / 218,
  23534. bottom: 14 / 260
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Compact",
  23541. height: math.unit(10.5, "feet"),
  23542. default: true
  23543. },
  23544. {
  23545. name: "Dynamax",
  23546. height: math.unit(210, "feet")
  23547. },
  23548. {
  23549. name: "Full Macro",
  23550. height: math.unit(850, "feet")
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(6, "feet"),
  23559. weight: math.unit(152, "lb"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/shin-pikachu/front.svg",
  23563. extra: 1854/1602,
  23564. bottom: 166/2020
  23565. }
  23566. },
  23567. hand: {
  23568. height: math.unit(1.055, "feet"),
  23569. name: "Hand",
  23570. image: {
  23571. source: "./media/characters/shin-pikachu/hand.svg"
  23572. }
  23573. },
  23574. foot: {
  23575. height: math.unit(1.1, "feet"),
  23576. name: "Foot",
  23577. image: {
  23578. source: "./media/characters/shin-pikachu/foot.svg"
  23579. }
  23580. },
  23581. collar: {
  23582. height: math.unit(0.386, "feet"),
  23583. name: "Collar",
  23584. image: {
  23585. source: "./media/characters/shin-pikachu/collar.svg"
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Smallest",
  23592. height: math.unit(0.5, "inches")
  23593. },
  23594. {
  23595. name: "Micro",
  23596. height: math.unit(6, "inches")
  23597. },
  23598. {
  23599. name: "Normal",
  23600. height: math.unit(6, "feet"),
  23601. default: true
  23602. },
  23603. {
  23604. name: "Macro",
  23605. height: math.unit(150, "feet")
  23606. },
  23607. ]
  23608. ))
  23609. characterMakers.push(() => makeCharacter(
  23610. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23611. {
  23612. front: {
  23613. height: math.unit(28, "feet"),
  23614. weight: math.unit(10500, "lb"),
  23615. name: "Front",
  23616. image: {
  23617. source: "./media/characters/kayda/front.svg",
  23618. extra: 1536 / 1428,
  23619. bottom: 68.7 / 1603
  23620. }
  23621. },
  23622. back: {
  23623. height: math.unit(28, "feet"),
  23624. weight: math.unit(10500, "lb"),
  23625. name: "Back",
  23626. image: {
  23627. source: "./media/characters/kayda/back.svg",
  23628. extra: 1557 / 1464,
  23629. bottom: 39.5 / 1597.49
  23630. }
  23631. },
  23632. dick: {
  23633. height: math.unit(3.858, "feet"),
  23634. name: "Dick",
  23635. image: {
  23636. source: "./media/characters/kayda/dick.svg"
  23637. }
  23638. },
  23639. },
  23640. [
  23641. {
  23642. name: "Macro",
  23643. height: math.unit(28, "feet"),
  23644. default: true
  23645. },
  23646. ]
  23647. ))
  23648. characterMakers.push(() => makeCharacter(
  23649. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23650. {
  23651. front: {
  23652. height: math.unit(10 + 11 / 12, "feet"),
  23653. weight: math.unit(1400, "lb"),
  23654. name: "Front",
  23655. image: {
  23656. source: "./media/characters/brian/front.svg",
  23657. extra: 737 / 692,
  23658. bottom: 55.4 / 785
  23659. }
  23660. },
  23661. },
  23662. [
  23663. {
  23664. name: "Normal",
  23665. height: math.unit(10 + 11 / 12, "feet"),
  23666. default: true
  23667. },
  23668. ]
  23669. ))
  23670. characterMakers.push(() => makeCharacter(
  23671. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23672. {
  23673. front: {
  23674. height: math.unit(5 + 8 / 12, "feet"),
  23675. weight: math.unit(140, "lb"),
  23676. name: "Front",
  23677. image: {
  23678. source: "./media/characters/khemri/front.svg",
  23679. extra: 4780 / 4059,
  23680. bottom: 80.1 / 4859.25
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Micro",
  23687. height: math.unit(6, "inches")
  23688. },
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(5 + 8 / 12, "feet"),
  23692. default: true
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23698. {
  23699. front: {
  23700. height: math.unit(13, "feet"),
  23701. weight: math.unit(1700, "lb"),
  23702. name: "Front",
  23703. image: {
  23704. source: "./media/characters/felix-braveheart/front.svg",
  23705. extra: 1222 / 1157,
  23706. bottom: 53.2 / 1280
  23707. }
  23708. },
  23709. back: {
  23710. height: math.unit(13, "feet"),
  23711. weight: math.unit(1700, "lb"),
  23712. name: "Back",
  23713. image: {
  23714. source: "./media/characters/felix-braveheart/back.svg",
  23715. extra: 1277 / 1203,
  23716. bottom: 50.2 / 1327
  23717. }
  23718. },
  23719. feral: {
  23720. height: math.unit(6, "feet"),
  23721. weight: math.unit(400, "lb"),
  23722. name: "Feral",
  23723. image: {
  23724. source: "./media/characters/felix-braveheart/feral.svg",
  23725. extra: 682 / 625,
  23726. bottom: 6.9 / 688
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(13, "feet"),
  23734. default: true
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23740. {
  23741. side: {
  23742. height: math.unit(5 + 11 / 12, "feet"),
  23743. weight: math.unit(1400, "lb"),
  23744. name: "Side",
  23745. image: {
  23746. source: "./media/characters/shadow-blade/side.svg",
  23747. extra: 1726 / 1267,
  23748. bottom: 58.4 / 1785
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(5 + 11 / 12, "feet"),
  23756. default: true
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23762. {
  23763. front: {
  23764. height: math.unit(1 + 6 / 12, "feet"),
  23765. weight: math.unit(25, "lb"),
  23766. name: "Front",
  23767. image: {
  23768. source: "./media/characters/karla-halldor/front.svg",
  23769. extra: 1459 / 1383,
  23770. bottom: 12 / 1472
  23771. }
  23772. },
  23773. },
  23774. [
  23775. {
  23776. name: "Normal",
  23777. height: math.unit(1 + 6 / 12, "feet"),
  23778. default: true
  23779. },
  23780. ]
  23781. ))
  23782. characterMakers.push(() => makeCharacter(
  23783. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23784. {
  23785. front: {
  23786. height: math.unit(6 + 2 / 12, "feet"),
  23787. weight: math.unit(160, "lb"),
  23788. name: "Front",
  23789. image: {
  23790. source: "./media/characters/ariam/front.svg",
  23791. extra: 714 / 617,
  23792. bottom: 23.4 / 737,
  23793. }
  23794. },
  23795. squatting: {
  23796. height: math.unit(4.1, "feet"),
  23797. weight: math.unit(160, "lb"),
  23798. name: "Squatting",
  23799. image: {
  23800. source: "./media/characters/ariam/squatting.svg",
  23801. extra: 2617 / 2112,
  23802. bottom: 61.2 / 2681,
  23803. }
  23804. },
  23805. },
  23806. [
  23807. {
  23808. name: "Normal",
  23809. height: math.unit(6 + 2 / 12, "feet"),
  23810. default: true
  23811. },
  23812. {
  23813. name: "Normal+",
  23814. height: math.unit(4, "meters")
  23815. },
  23816. {
  23817. name: "Macro",
  23818. height: math.unit(50, "meters")
  23819. },
  23820. {
  23821. name: "Macro+",
  23822. height: math.unit(100, "meters")
  23823. },
  23824. {
  23825. name: "Megamacro",
  23826. height: math.unit(20, "km")
  23827. },
  23828. ]
  23829. ))
  23830. characterMakers.push(() => makeCharacter(
  23831. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23832. {
  23833. front: {
  23834. height: math.unit(1.67, "meters"),
  23835. weight: math.unit(140, "lb"),
  23836. name: "Front",
  23837. image: {
  23838. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23839. extra: 438 / 410,
  23840. bottom: 0.75 / 439
  23841. }
  23842. },
  23843. },
  23844. [
  23845. {
  23846. name: "Shrunken",
  23847. height: math.unit(7.6, "cm")
  23848. },
  23849. {
  23850. name: "Human Scale",
  23851. height: math.unit(1.67, "meters")
  23852. },
  23853. {
  23854. name: "Wolxi Scale",
  23855. height: math.unit(36.7, "meters"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(1.73, "meters"),
  23865. weight: math.unit(240, "lb"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/izue-two-mothers/front.svg",
  23869. extra: 469 / 437,
  23870. bottom: 1.24 / 470.6
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "Shrunken",
  23877. height: math.unit(7.86, "cm")
  23878. },
  23879. {
  23880. name: "Human Scale",
  23881. height: math.unit(1.73, "meters")
  23882. },
  23883. {
  23884. name: "Wolxi Scale",
  23885. height: math.unit(38, "meters"),
  23886. default: true
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(1.55, "meters"),
  23895. weight: math.unit(120, "lb"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/teeku-love-shack/front.svg",
  23899. extra: 387 / 362,
  23900. bottom: 1.51 / 388
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Shrunken",
  23907. height: math.unit(7, "cm")
  23908. },
  23909. {
  23910. name: "Human Scale",
  23911. height: math.unit(1.55, "meters")
  23912. },
  23913. {
  23914. name: "Wolxi Scale",
  23915. height: math.unit(34.1, "meters"),
  23916. default: true
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(1.83, "meters"),
  23925. weight: math.unit(135, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/dejma-the-red/front.svg",
  23929. extra: 480 / 458,
  23930. bottom: 1.8 / 482
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Shrunken",
  23937. height: math.unit(8.3, "cm")
  23938. },
  23939. {
  23940. name: "Human Scale",
  23941. height: math.unit(1.83, "meters")
  23942. },
  23943. {
  23944. name: "Wolxi Scale",
  23945. height: math.unit(40, "meters"),
  23946. default: true
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(1.78, "meters"),
  23955. weight: math.unit(65, "kg"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/aki/front.svg",
  23959. extra: 452 / 415
  23960. }
  23961. },
  23962. frontNsfw: {
  23963. height: math.unit(1.78, "meters"),
  23964. weight: math.unit(65, "kg"),
  23965. name: "Front (NSFW)",
  23966. image: {
  23967. source: "./media/characters/aki/front-nsfw.svg",
  23968. extra: 452 / 415
  23969. }
  23970. },
  23971. back: {
  23972. height: math.unit(1.78, "meters"),
  23973. weight: math.unit(65, "kg"),
  23974. name: "Back",
  23975. image: {
  23976. source: "./media/characters/aki/back.svg",
  23977. extra: 452 / 415
  23978. }
  23979. },
  23980. rump: {
  23981. height: math.unit(2.05, "feet"),
  23982. name: "Rump",
  23983. image: {
  23984. source: "./media/characters/aki/rump.svg"
  23985. }
  23986. },
  23987. dick: {
  23988. height: math.unit(0.95, "feet"),
  23989. name: "Dick",
  23990. image: {
  23991. source: "./media/characters/aki/dick.svg"
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Micro",
  23998. height: math.unit(15, "cm")
  23999. },
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(178, "cm"),
  24003. default: true
  24004. },
  24005. {
  24006. name: "Macro",
  24007. height: math.unit(214, "m")
  24008. },
  24009. {
  24010. name: "Macro+",
  24011. height: math.unit(534, "m")
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24017. {
  24018. front: {
  24019. height: math.unit(5 + 5 / 12, "feet"),
  24020. weight: math.unit(120, "lb"),
  24021. name: "Front",
  24022. image: {
  24023. source: "./media/characters/ari/front.svg",
  24024. extra: 714.5 / 682,
  24025. bottom: 8 / 722.5
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(5 + 5 / 12, "feet")
  24033. },
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(100, "feet"),
  24037. default: true
  24038. },
  24039. {
  24040. name: "Megamacro",
  24041. height: math.unit(100, "miles")
  24042. },
  24043. {
  24044. name: "Gigamacro",
  24045. height: math.unit(80000, "miles")
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24051. {
  24052. side: {
  24053. height: math.unit(9, "feet"),
  24054. weight: math.unit(400, "kg"),
  24055. name: "Side",
  24056. image: {
  24057. source: "./media/characters/bolt/side.svg",
  24058. extra: 1126 / 896,
  24059. bottom: 60 / 1187.3,
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Micro",
  24066. height: math.unit(5, "inches")
  24067. },
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(9, "feet"),
  24071. default: true
  24072. },
  24073. {
  24074. name: "Macro",
  24075. height: math.unit(700, "feet")
  24076. },
  24077. {
  24078. name: "Max Size",
  24079. height: math.unit(1.52e22, "yottameters")
  24080. },
  24081. ]
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24085. {
  24086. front: {
  24087. height: math.unit(4.53, "meters"),
  24088. weight: math.unit(3, "tons"),
  24089. name: "Front",
  24090. image: {
  24091. source: "./media/characters/draekon-sylviar/front.svg",
  24092. extra: 1228 / 1068,
  24093. bottom: 41 / 1270
  24094. }
  24095. },
  24096. tail: {
  24097. height: math.unit(1.772, "meter"),
  24098. name: "Tail",
  24099. image: {
  24100. source: "./media/characters/draekon-sylviar/tail.svg"
  24101. }
  24102. },
  24103. head: {
  24104. height: math.unit(1.331, "meter"),
  24105. name: "Head",
  24106. image: {
  24107. source: "./media/characters/draekon-sylviar/head.svg"
  24108. }
  24109. },
  24110. hand: {
  24111. height: math.unit(0.564, "meter"),
  24112. name: "Hand",
  24113. image: {
  24114. source: "./media/characters/draekon-sylviar/hand.svg"
  24115. }
  24116. },
  24117. foot: {
  24118. height: math.unit(0.621, "meter"),
  24119. name: "Foot",
  24120. image: {
  24121. source: "./media/characters/draekon-sylviar/foot.svg",
  24122. bottom: 32 / 324
  24123. }
  24124. },
  24125. dick: {
  24126. height: math.unit(61, "cm"),
  24127. name: "Dick",
  24128. image: {
  24129. source: "./media/characters/draekon-sylviar/dick.svg"
  24130. }
  24131. },
  24132. dickseparated: {
  24133. height: math.unit(61, "cm"),
  24134. name: "Dick-separated",
  24135. image: {
  24136. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Small",
  24143. height: math.unit(4.53 / 2, "meters"),
  24144. default: true
  24145. },
  24146. {
  24147. name: "Normal",
  24148. height: math.unit(4.53, "meters"),
  24149. default: true
  24150. },
  24151. {
  24152. name: "Large",
  24153. height: math.unit(4.53 * 2, "meters"),
  24154. },
  24155. ]
  24156. ))
  24157. characterMakers.push(() => makeCharacter(
  24158. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24159. {
  24160. front: {
  24161. height: math.unit(6 + 2 / 12, "feet"),
  24162. weight: math.unit(180, "lb"),
  24163. name: "Front",
  24164. image: {
  24165. source: "./media/characters/brawler/front.svg",
  24166. extra: 3301 / 3027,
  24167. bottom: 138 / 3439
  24168. }
  24169. },
  24170. },
  24171. [
  24172. {
  24173. name: "Normal",
  24174. height: math.unit(6 + 2 / 12, "feet"),
  24175. default: true
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24181. {
  24182. front: {
  24183. height: math.unit(11, "feet"),
  24184. weight: math.unit(1000, "lb"),
  24185. name: "Front",
  24186. image: {
  24187. source: "./media/characters/alex/front.svg",
  24188. bottom: 44.5 / 620
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Micro",
  24195. height: math.unit(5, "inches")
  24196. },
  24197. {
  24198. name: "Normal",
  24199. height: math.unit(11, "feet"),
  24200. default: true
  24201. },
  24202. {
  24203. name: "Macro",
  24204. height: math.unit(9.5e9, "feet")
  24205. },
  24206. {
  24207. name: "Max Size",
  24208. height: math.unit(1.4e283, "yottameters")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24214. {
  24215. female: {
  24216. height: math.unit(29.9, "m"),
  24217. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24218. name: "Female",
  24219. image: {
  24220. source: "./media/characters/zenari/female.svg",
  24221. extra: 3281.6 / 3217,
  24222. bottom: 72.2 / 3353
  24223. }
  24224. },
  24225. male: {
  24226. height: math.unit(27.7, "m"),
  24227. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24228. name: "Male",
  24229. image: {
  24230. source: "./media/characters/zenari/male.svg",
  24231. extra: 3008 / 2991,
  24232. bottom: 54.6 / 3069
  24233. }
  24234. },
  24235. },
  24236. [
  24237. {
  24238. name: "Macro",
  24239. height: math.unit(29.7, "meters"),
  24240. default: true
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24246. {
  24247. female: {
  24248. height: math.unit(23.8, "m"),
  24249. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24250. name: "Female",
  24251. image: {
  24252. source: "./media/characters/mactarian/female.svg",
  24253. extra: 2662 / 2569,
  24254. bottom: 73 / 2736
  24255. }
  24256. },
  24257. male: {
  24258. height: math.unit(23.8, "m"),
  24259. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24260. name: "Male",
  24261. image: {
  24262. source: "./media/characters/mactarian/male.svg",
  24263. extra: 2673 / 2600,
  24264. bottom: 76 / 2750
  24265. }
  24266. },
  24267. },
  24268. [
  24269. {
  24270. name: "Macro",
  24271. height: math.unit(23.8, "meters"),
  24272. default: true
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24278. {
  24279. female: {
  24280. height: math.unit(19.3, "m"),
  24281. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24282. name: "Female",
  24283. image: {
  24284. source: "./media/characters/umok/female.svg",
  24285. extra: 2186 / 2078,
  24286. bottom: 87 / 2277
  24287. }
  24288. },
  24289. male: {
  24290. height: math.unit(19.5, "m"),
  24291. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24292. name: "Male",
  24293. image: {
  24294. source: "./media/characters/umok/male.svg",
  24295. extra: 2233 / 2140,
  24296. bottom: 24.4 / 2258
  24297. }
  24298. },
  24299. },
  24300. [
  24301. {
  24302. name: "Macro",
  24303. height: math.unit(19.3, "meters"),
  24304. default: true
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24310. {
  24311. female: {
  24312. height: math.unit(26.15, "m"),
  24313. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24314. name: "Female",
  24315. image: {
  24316. source: "./media/characters/joraxian/female.svg",
  24317. extra: 2912 / 2824,
  24318. bottom: 36 / 2956
  24319. }
  24320. },
  24321. male: {
  24322. height: math.unit(25.4, "m"),
  24323. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24324. name: "Male",
  24325. image: {
  24326. source: "./media/characters/joraxian/male.svg",
  24327. extra: 2877 / 2721,
  24328. bottom: 82 / 2967
  24329. }
  24330. },
  24331. },
  24332. [
  24333. {
  24334. name: "Macro",
  24335. height: math.unit(26.15, "meters"),
  24336. default: true
  24337. },
  24338. ]
  24339. ))
  24340. characterMakers.push(() => makeCharacter(
  24341. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24342. {
  24343. female: {
  24344. height: math.unit(21.6, "m"),
  24345. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24346. name: "Female",
  24347. image: {
  24348. source: "./media/characters/sthara/female.svg",
  24349. extra: 2516 / 2347,
  24350. bottom: 21.5 / 2537
  24351. }
  24352. },
  24353. male: {
  24354. height: math.unit(24, "m"),
  24355. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24356. name: "Male",
  24357. image: {
  24358. source: "./media/characters/sthara/male.svg",
  24359. extra: 2732 / 2607,
  24360. bottom: 23 / 2732
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Macro",
  24367. height: math.unit(21.6, "meters"),
  24368. default: true
  24369. },
  24370. ]
  24371. ))
  24372. characterMakers.push(() => makeCharacter(
  24373. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24374. {
  24375. front: {
  24376. height: math.unit(6 + 4 / 12, "feet"),
  24377. weight: math.unit(175, "lb"),
  24378. name: "Front",
  24379. image: {
  24380. source: "./media/characters/luka-bryzant/front.svg",
  24381. extra: 311 / 289,
  24382. bottom: 4 / 315
  24383. }
  24384. },
  24385. back: {
  24386. height: math.unit(6 + 4 / 12, "feet"),
  24387. weight: math.unit(175, "lb"),
  24388. name: "Back",
  24389. image: {
  24390. source: "./media/characters/luka-bryzant/back.svg",
  24391. extra: 311 / 289,
  24392. bottom: 3.8 / 313.7
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Micro",
  24399. height: math.unit(10, "inches")
  24400. },
  24401. {
  24402. name: "Normal",
  24403. height: math.unit(6 + 4 / 12, "feet"),
  24404. default: true
  24405. },
  24406. {
  24407. name: "Large",
  24408. height: math.unit(12, "feet")
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24414. {
  24415. front: {
  24416. height: math.unit(5 + 7 / 12, "feet"),
  24417. weight: math.unit(185, "lb"),
  24418. name: "Front",
  24419. image: {
  24420. source: "./media/characters/aman-aquila/front.svg",
  24421. extra: 1013 / 976,
  24422. bottom: 45.6 / 1057
  24423. }
  24424. },
  24425. side: {
  24426. height: math.unit(5 + 7 / 12, "feet"),
  24427. weight: math.unit(185, "lb"),
  24428. name: "Side",
  24429. image: {
  24430. source: "./media/characters/aman-aquila/side.svg",
  24431. extra: 1054 / 1011,
  24432. bottom: 15 / 1070
  24433. }
  24434. },
  24435. back: {
  24436. height: math.unit(5 + 7 / 12, "feet"),
  24437. weight: math.unit(185, "lb"),
  24438. name: "Back",
  24439. image: {
  24440. source: "./media/characters/aman-aquila/back.svg",
  24441. extra: 1026 / 970,
  24442. bottom: 12 / 1039
  24443. }
  24444. },
  24445. head: {
  24446. height: math.unit(1.211, "feet"),
  24447. name: "Head",
  24448. image: {
  24449. source: "./media/characters/aman-aquila/head.svg",
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Minimicro",
  24456. height: math.unit(0.057, "inches")
  24457. },
  24458. {
  24459. name: "Micro",
  24460. height: math.unit(7, "inches")
  24461. },
  24462. {
  24463. name: "Mini",
  24464. height: math.unit(3 + 7 / 12, "feet")
  24465. },
  24466. {
  24467. name: "Normal",
  24468. height: math.unit(5 + 7 / 12, "feet"),
  24469. default: true
  24470. },
  24471. {
  24472. name: "Macro",
  24473. height: math.unit(157 + 7 / 12, "feet")
  24474. },
  24475. {
  24476. name: "Megamacro",
  24477. height: math.unit(1557 + 7 / 12, "feet")
  24478. },
  24479. {
  24480. name: "Gigamacro",
  24481. height: math.unit(15557 + 7 / 12, "feet")
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(3 + 2 / 12, "inches"),
  24490. weight: math.unit(0.3, "ounces"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/hiphae/front.svg",
  24494. extra: 1931 / 1683,
  24495. bottom: 24 / 1955
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(3 + 1 / 2, "inches"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24509. {
  24510. front: {
  24511. height: math.unit(5 + 10 / 12, "feet"),
  24512. weight: math.unit(165, "lb"),
  24513. name: "Front",
  24514. image: {
  24515. source: "./media/characters/nicky/front.svg",
  24516. extra: 3144 / 2886,
  24517. bottom: 45.6 / 3192
  24518. }
  24519. },
  24520. back: {
  24521. height: math.unit(5 + 10 / 12, "feet"),
  24522. weight: math.unit(165, "lb"),
  24523. name: "Back",
  24524. image: {
  24525. source: "./media/characters/nicky/back.svg",
  24526. extra: 3055 / 2804,
  24527. bottom: 28.4 / 3087
  24528. }
  24529. },
  24530. frontclothed: {
  24531. height: math.unit(5 + 10 / 12, "feet"),
  24532. weight: math.unit(165, "lb"),
  24533. name: "Front-clothed",
  24534. image: {
  24535. source: "./media/characters/nicky/front-clothed.svg",
  24536. extra: 3184.9 / 2926.9,
  24537. bottom: 86.5 / 3239.9
  24538. }
  24539. },
  24540. foot: {
  24541. height: math.unit(1.16, "feet"),
  24542. name: "Foot",
  24543. image: {
  24544. source: "./media/characters/nicky/foot.svg"
  24545. }
  24546. },
  24547. feet: {
  24548. height: math.unit(1.34, "feet"),
  24549. name: "Feet",
  24550. image: {
  24551. source: "./media/characters/nicky/feet.svg"
  24552. }
  24553. },
  24554. maw: {
  24555. height: math.unit(0.9, "feet"),
  24556. name: "Maw",
  24557. image: {
  24558. source: "./media/characters/nicky/maw.svg"
  24559. }
  24560. },
  24561. },
  24562. [
  24563. {
  24564. name: "Normal",
  24565. height: math.unit(5 + 10 / 12, "feet"),
  24566. default: true
  24567. },
  24568. {
  24569. name: "Macro",
  24570. height: math.unit(60, "feet")
  24571. },
  24572. {
  24573. name: "Megamacro",
  24574. height: math.unit(1, "mile")
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24580. {
  24581. side: {
  24582. height: math.unit(10, "feet"),
  24583. weight: math.unit(600, "lb"),
  24584. name: "Side",
  24585. image: {
  24586. source: "./media/characters/blair/side.svg",
  24587. bottom: 16.6 / 475,
  24588. extra: 458 / 431
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Micro",
  24595. height: math.unit(8, "inches")
  24596. },
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(10, "feet"),
  24600. default: true
  24601. },
  24602. {
  24603. name: "Macro",
  24604. height: math.unit(180, "feet")
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(5 + 4 / 12, "feet"),
  24613. weight: math.unit(125, "lb"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/fisher/front.svg",
  24617. extra: 444 / 390,
  24618. bottom: 2 / 444.8
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Micro",
  24625. height: math.unit(4, "inches")
  24626. },
  24627. {
  24628. name: "Normal",
  24629. height: math.unit(5 + 4 / 12, "feet"),
  24630. default: true
  24631. },
  24632. {
  24633. name: "Macro",
  24634. height: math.unit(100, "feet")
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24640. {
  24641. front: {
  24642. height: math.unit(6.71, "feet"),
  24643. weight: math.unit(200, "lb"),
  24644. capacity: math.unit(1000000, "people"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/gliss/front.svg",
  24648. extra: 2347 / 2231,
  24649. bottom: 113 / 2462
  24650. }
  24651. },
  24652. hammerspaceSize: {
  24653. height: math.unit(6.71 * 717, "feet"),
  24654. weight: math.unit(200, "lb"),
  24655. capacity: math.unit(1000000, "people"),
  24656. name: "Hammerspace Size",
  24657. image: {
  24658. source: "./media/characters/gliss/front.svg",
  24659. extra: 2347 / 2231,
  24660. bottom: 113 / 2462
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Normal",
  24667. height: math.unit(6.71, "feet"),
  24668. default: true
  24669. },
  24670. ]
  24671. ))
  24672. characterMakers.push(() => makeCharacter(
  24673. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24674. {
  24675. side: {
  24676. height: math.unit(1.44, "m"),
  24677. weight: math.unit(80, "kg"),
  24678. name: "Side",
  24679. image: {
  24680. source: "./media/characters/dune-anderson/side.svg",
  24681. bottom: 49 / 1426
  24682. }
  24683. },
  24684. },
  24685. [
  24686. {
  24687. name: "Wolf-sized",
  24688. height: math.unit(1.44, "meters")
  24689. },
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(5.05, "meters"),
  24693. default: true
  24694. },
  24695. {
  24696. name: "Big",
  24697. height: math.unit(14.4, "meters")
  24698. },
  24699. {
  24700. name: "Huge",
  24701. height: math.unit(144, "meters")
  24702. },
  24703. ]
  24704. ))
  24705. characterMakers.push(() => makeCharacter(
  24706. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24707. {
  24708. front: {
  24709. height: math.unit(7, "feet"),
  24710. weight: math.unit(425, "lb"),
  24711. name: "Front",
  24712. image: {
  24713. source: "./media/characters/hind/front.svg",
  24714. extra: 2091 / 1860,
  24715. bottom: 129 / 2220
  24716. }
  24717. },
  24718. back: {
  24719. height: math.unit(7, "feet"),
  24720. weight: math.unit(425, "lb"),
  24721. name: "Back",
  24722. image: {
  24723. source: "./media/characters/hind/back.svg",
  24724. extra: 2091 / 1860,
  24725. bottom: 24.6 / 2309
  24726. }
  24727. },
  24728. tail: {
  24729. height: math.unit(2.8, "feet"),
  24730. name: "Tail",
  24731. image: {
  24732. source: "./media/characters/hind/tail.svg"
  24733. }
  24734. },
  24735. head: {
  24736. height: math.unit(2.55, "feet"),
  24737. name: "Head",
  24738. image: {
  24739. source: "./media/characters/hind/head.svg"
  24740. }
  24741. },
  24742. },
  24743. [
  24744. {
  24745. name: "XS",
  24746. height: math.unit(0.7, "feet")
  24747. },
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(7, "feet"),
  24751. default: true
  24752. },
  24753. {
  24754. name: "XL",
  24755. height: math.unit(70, "feet")
  24756. },
  24757. ]
  24758. ))
  24759. characterMakers.push(() => makeCharacter(
  24760. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24761. {
  24762. front: {
  24763. height: math.unit(6, "feet"),
  24764. weight: math.unit(150, "lb"),
  24765. name: "Front",
  24766. image: {
  24767. source: "./media/characters/dylan-skaven/front.svg",
  24768. extra: 2318 / 2063,
  24769. bottom: 93.4 / 2410
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Nano",
  24776. height: math.unit(1, "mm")
  24777. },
  24778. {
  24779. name: "Micro",
  24780. height: math.unit(1, "cm")
  24781. },
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(2.1, "meters"),
  24785. default: true
  24786. },
  24787. ]
  24788. ))
  24789. characterMakers.push(() => makeCharacter(
  24790. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24791. {
  24792. front: {
  24793. height: math.unit(7 + 5 / 12, "feet"),
  24794. weight: math.unit(357, "lb"),
  24795. name: "Front",
  24796. image: {
  24797. source: "./media/characters/solex-draconov/front.svg",
  24798. extra: 1993 / 1865,
  24799. bottom: 117 / 2111
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Natural Height",
  24806. height: math.unit(7 + 5 / 12, "feet"),
  24807. default: true
  24808. },
  24809. {
  24810. name: "Macro",
  24811. height: math.unit(350, "feet")
  24812. },
  24813. {
  24814. name: "Macro+",
  24815. height: math.unit(1000, "feet")
  24816. },
  24817. {
  24818. name: "Megamacro",
  24819. height: math.unit(20, "km")
  24820. },
  24821. {
  24822. name: "Megamacro+",
  24823. height: math.unit(1000, "km")
  24824. },
  24825. {
  24826. name: "Gigamacro",
  24827. height: math.unit(2.5, "Gm")
  24828. },
  24829. {
  24830. name: "Teramacro",
  24831. height: math.unit(15, "Tm")
  24832. },
  24833. {
  24834. name: "Galactic",
  24835. height: math.unit(30, "Zm")
  24836. },
  24837. {
  24838. name: "Universal",
  24839. height: math.unit(21000, "Ym")
  24840. },
  24841. {
  24842. name: "Omniversal",
  24843. height: math.unit(9.861e50, "Ym")
  24844. },
  24845. {
  24846. name: "Existential",
  24847. height: math.unit(1e300, "meters")
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24853. {
  24854. side: {
  24855. height: math.unit(25, "feet"),
  24856. weight: math.unit(90000, "lb"),
  24857. name: "Side",
  24858. image: {
  24859. source: "./media/characters/mandarax/side.svg",
  24860. extra: 614 / 332,
  24861. bottom: 55 / 630
  24862. }
  24863. },
  24864. head: {
  24865. height: math.unit(11.4, "feet"),
  24866. name: "Head",
  24867. image: {
  24868. source: "./media/characters/mandarax/head.svg"
  24869. }
  24870. },
  24871. belly: {
  24872. height: math.unit(33, "feet"),
  24873. name: "Belly",
  24874. capacity: math.unit(500, "people"),
  24875. image: {
  24876. source: "./media/characters/mandarax/belly.svg"
  24877. }
  24878. },
  24879. dick: {
  24880. height: math.unit(8.46, "feet"),
  24881. name: "Dick",
  24882. image: {
  24883. source: "./media/characters/mandarax/dick.svg"
  24884. }
  24885. },
  24886. top: {
  24887. height: math.unit(28, "meters"),
  24888. name: "Top",
  24889. image: {
  24890. source: "./media/characters/mandarax/top.svg"
  24891. }
  24892. },
  24893. },
  24894. [
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(25, "feet"),
  24898. default: true
  24899. },
  24900. ]
  24901. ))
  24902. characterMakers.push(() => makeCharacter(
  24903. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24904. {
  24905. front: {
  24906. height: math.unit(5, "feet"),
  24907. weight: math.unit(90, "lb"),
  24908. name: "Front",
  24909. image: {
  24910. source: "./media/characters/pixil/front.svg",
  24911. extra: 2000 / 1618,
  24912. bottom: 12.3 / 2011
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Normal",
  24919. height: math.unit(5, "feet"),
  24920. default: true
  24921. },
  24922. {
  24923. name: "Megamacro",
  24924. height: math.unit(10, "miles"),
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(7 + 2 / 12, "feet"),
  24933. weight: math.unit(200, "lb"),
  24934. name: "Front",
  24935. image: {
  24936. source: "./media/characters/angel/front.svg",
  24937. extra: 1830 / 1737,
  24938. bottom: 22.6 / 1854,
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(7 + 2 / 12, "feet"),
  24946. default: true
  24947. },
  24948. {
  24949. name: "Macro",
  24950. height: math.unit(1000, "feet")
  24951. },
  24952. {
  24953. name: "Megamacro",
  24954. height: math.unit(2, "miles")
  24955. },
  24956. {
  24957. name: "Gigamacro",
  24958. height: math.unit(20, "earths")
  24959. },
  24960. ]
  24961. ))
  24962. characterMakers.push(() => makeCharacter(
  24963. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24964. {
  24965. front: {
  24966. height: math.unit(5, "feet"),
  24967. weight: math.unit(180, "lb"),
  24968. name: "Front",
  24969. image: {
  24970. source: "./media/characters/mekana/front.svg",
  24971. extra: 1671 / 1605,
  24972. bottom: 3.5 / 1691
  24973. }
  24974. },
  24975. side: {
  24976. height: math.unit(5, "feet"),
  24977. weight: math.unit(180, "lb"),
  24978. name: "Side",
  24979. image: {
  24980. source: "./media/characters/mekana/side.svg",
  24981. extra: 1671 / 1605,
  24982. bottom: 3.5 / 1691
  24983. }
  24984. },
  24985. back: {
  24986. height: math.unit(5, "feet"),
  24987. weight: math.unit(180, "lb"),
  24988. name: "Back",
  24989. image: {
  24990. source: "./media/characters/mekana/back.svg",
  24991. extra: 1671 / 1605,
  24992. bottom: 3.5 / 1691
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(5, "feet"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(4 + 6 / 12, "feet"),
  25009. weight: math.unit(80, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/pixie/front.svg",
  25013. extra: 1924 / 1825,
  25014. bottom: 22.4 / 1946
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(4 + 6 / 12, "feet"),
  25022. default: true
  25023. },
  25024. {
  25025. name: "Macro",
  25026. height: math.unit(40, "feet")
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25032. {
  25033. front: {
  25034. height: math.unit(2.1, "meters"),
  25035. weight: math.unit(200, "lb"),
  25036. name: "Front",
  25037. image: {
  25038. source: "./media/characters/the-lascivious/front.svg",
  25039. extra: 1 / 0.893,
  25040. bottom: 3.5 / 573.7
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Human Scale",
  25047. height: math.unit(2.1, "meters")
  25048. },
  25049. {
  25050. name: "Wolxi Scale",
  25051. height: math.unit(46.2, "m"),
  25052. default: true
  25053. },
  25054. {
  25055. name: "Boinker of Buildings",
  25056. height: math.unit(10, "km")
  25057. },
  25058. {
  25059. name: "Shagger of Skyscrapers",
  25060. height: math.unit(40, "km")
  25061. },
  25062. {
  25063. name: "Banger of Boroughs",
  25064. height: math.unit(4000, "km")
  25065. },
  25066. {
  25067. name: "Screwer of States",
  25068. height: math.unit(100000, "km")
  25069. },
  25070. {
  25071. name: "Pounder of Planets",
  25072. height: math.unit(2000000, "km")
  25073. },
  25074. ]
  25075. ))
  25076. characterMakers.push(() => makeCharacter(
  25077. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25078. {
  25079. front: {
  25080. height: math.unit(6, "feet"),
  25081. weight: math.unit(150, "lb"),
  25082. name: "Front",
  25083. image: {
  25084. source: "./media/characters/aj/front.svg",
  25085. extra: 2039 / 1562,
  25086. bottom: 40 / 2079
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(11 + 6 / 12, "feet"),
  25094. default: true
  25095. },
  25096. {
  25097. name: "Megamacro",
  25098. height: math.unit(60, "megameters")
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25104. {
  25105. side: {
  25106. height: math.unit(31 + 8 / 12, "feet"),
  25107. weight: math.unit(75000, "kg"),
  25108. name: "Side",
  25109. image: {
  25110. source: "./media/characters/koros/side.svg",
  25111. extra: 1442 / 1297,
  25112. bottom: 122.7 / 1562
  25113. }
  25114. },
  25115. dicksKingsCrown: {
  25116. height: math.unit(6, "feet"),
  25117. name: "Dicks (King's Crown)",
  25118. image: {
  25119. source: "./media/characters/koros/dicks-kings-crown.svg"
  25120. }
  25121. },
  25122. dicksTailSet: {
  25123. height: math.unit(3, "feet"),
  25124. name: "Dicks (Tail Set)",
  25125. image: {
  25126. source: "./media/characters/koros/dicks-tail-set.svg"
  25127. }
  25128. },
  25129. dickCumming: {
  25130. height: math.unit(7.98, "feet"),
  25131. name: "Dick (Cumming)",
  25132. image: {
  25133. source: "./media/characters/koros/dick-cumming.svg"
  25134. }
  25135. },
  25136. dicksBack: {
  25137. height: math.unit(5.9, "feet"),
  25138. name: "Dicks (Back)",
  25139. image: {
  25140. source: "./media/characters/koros/dicks-back.svg"
  25141. }
  25142. },
  25143. dicksFront: {
  25144. height: math.unit(3.72, "feet"),
  25145. name: "Dicks (Front)",
  25146. image: {
  25147. source: "./media/characters/koros/dicks-front.svg"
  25148. }
  25149. },
  25150. dicksPeeking: {
  25151. height: math.unit(3.0, "feet"),
  25152. name: "Dicks (Peeking)",
  25153. image: {
  25154. source: "./media/characters/koros/dicks-peeking.svg"
  25155. }
  25156. },
  25157. eye: {
  25158. height: math.unit(1.7, "feet"),
  25159. name: "Eye",
  25160. image: {
  25161. source: "./media/characters/koros/eye.svg"
  25162. }
  25163. },
  25164. headFront: {
  25165. height: math.unit(11.69, "feet"),
  25166. name: "Head (Front)",
  25167. image: {
  25168. source: "./media/characters/koros/head-front.svg"
  25169. }
  25170. },
  25171. headSide: {
  25172. height: math.unit(14, "feet"),
  25173. name: "Head (Side)",
  25174. image: {
  25175. source: "./media/characters/koros/head-side.svg"
  25176. }
  25177. },
  25178. leg: {
  25179. height: math.unit(17, "feet"),
  25180. name: "Leg",
  25181. image: {
  25182. source: "./media/characters/koros/leg.svg"
  25183. }
  25184. },
  25185. mawSide: {
  25186. height: math.unit(12.8, "feet"),
  25187. name: "Maw (Side)",
  25188. image: {
  25189. source: "./media/characters/koros/maw-side.svg"
  25190. }
  25191. },
  25192. mawSpitting: {
  25193. height: math.unit(17, "feet"),
  25194. name: "Maw (Spitting)",
  25195. image: {
  25196. source: "./media/characters/koros/maw-spitting.svg"
  25197. }
  25198. },
  25199. slit: {
  25200. height: math.unit(2.8, "feet"),
  25201. name: "Slit",
  25202. image: {
  25203. source: "./media/characters/koros/slit.svg"
  25204. }
  25205. },
  25206. stomach: {
  25207. height: math.unit(6.8, "feet"),
  25208. capacity: math.unit(20, "people"),
  25209. name: "Stomach",
  25210. image: {
  25211. source: "./media/characters/koros/stomach.svg"
  25212. }
  25213. },
  25214. wingspanBottom: {
  25215. height: math.unit(114, "feet"),
  25216. name: "Wingspan (Bottom)",
  25217. image: {
  25218. source: "./media/characters/koros/wingspan-bottom.svg"
  25219. }
  25220. },
  25221. wingspanTop: {
  25222. height: math.unit(104, "feet"),
  25223. name: "Wingspan (Top)",
  25224. image: {
  25225. source: "./media/characters/koros/wingspan-top.svg"
  25226. }
  25227. },
  25228. },
  25229. [
  25230. {
  25231. name: "Normal",
  25232. height: math.unit(31 + 8 / 12, "feet"),
  25233. default: true
  25234. },
  25235. ]
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25239. {
  25240. front: {
  25241. height: math.unit(18 + 5 / 12, "feet"),
  25242. weight: math.unit(3750, "kg"),
  25243. name: "Front",
  25244. image: {
  25245. source: "./media/characters/vexx/front.svg",
  25246. extra: 426 / 396,
  25247. bottom: 31.5 / 458
  25248. }
  25249. },
  25250. maw: {
  25251. height: math.unit(6, "feet"),
  25252. name: "Maw",
  25253. image: {
  25254. source: "./media/characters/vexx/maw.svg"
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(18 + 5 / 12, "feet"),
  25262. default: true
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(17 + 6 / 12, "feet"),
  25271. weight: math.unit(150, "lb"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/baadra/front.svg",
  25275. extra: 3137 / 2890,
  25276. bottom: 168.4 / 3305
  25277. }
  25278. },
  25279. back: {
  25280. height: math.unit(17 + 6 / 12, "feet"),
  25281. weight: math.unit(150, "lb"),
  25282. name: "Back",
  25283. image: {
  25284. source: "./media/characters/baadra/back.svg",
  25285. extra: 3142 / 2890,
  25286. bottom: 220 / 3371
  25287. }
  25288. },
  25289. head: {
  25290. height: math.unit(5.45, "feet"),
  25291. name: "Head",
  25292. image: {
  25293. source: "./media/characters/baadra/head.svg"
  25294. }
  25295. },
  25296. headAngry: {
  25297. height: math.unit(4.95, "feet"),
  25298. name: "Head (Angry)",
  25299. image: {
  25300. source: "./media/characters/baadra/head-angry.svg"
  25301. }
  25302. },
  25303. headOpen: {
  25304. height: math.unit(6, "feet"),
  25305. name: "Head (Open)",
  25306. image: {
  25307. source: "./media/characters/baadra/head-open.svg"
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Normal",
  25314. height: math.unit(17 + 6 / 12, "feet"),
  25315. default: true
  25316. },
  25317. ]
  25318. ))
  25319. characterMakers.push(() => makeCharacter(
  25320. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25321. {
  25322. front: {
  25323. height: math.unit(7 + 3 / 12, "feet"),
  25324. weight: math.unit(180, "lb"),
  25325. name: "Front",
  25326. image: {
  25327. source: "./media/characters/juri/front.svg",
  25328. extra: 1401 / 1237,
  25329. bottom: 18.5 / 1418
  25330. }
  25331. },
  25332. side: {
  25333. height: math.unit(7 + 3 / 12, "feet"),
  25334. weight: math.unit(180, "lb"),
  25335. name: "Side",
  25336. image: {
  25337. source: "./media/characters/juri/side.svg",
  25338. extra: 1424 / 1242,
  25339. bottom: 18.5 / 1447
  25340. }
  25341. },
  25342. sitting: {
  25343. height: math.unit(6, "feet"),
  25344. weight: math.unit(180, "lb"),
  25345. name: "Sitting",
  25346. image: {
  25347. source: "./media/characters/juri/sitting.svg",
  25348. extra: 1270 / 1143,
  25349. bottom: 100 / 1343
  25350. }
  25351. },
  25352. back: {
  25353. height: math.unit(7 + 3 / 12, "feet"),
  25354. weight: math.unit(180, "lb"),
  25355. name: "Back",
  25356. image: {
  25357. source: "./media/characters/juri/back.svg",
  25358. extra: 1377 / 1240,
  25359. bottom: 23.7 / 1405
  25360. }
  25361. },
  25362. maw: {
  25363. height: math.unit(2.8, "feet"),
  25364. name: "Maw",
  25365. image: {
  25366. source: "./media/characters/juri/maw.svg"
  25367. }
  25368. },
  25369. stomach: {
  25370. height: math.unit(0.89, "feet"),
  25371. capacity: math.unit(4, "liters"),
  25372. name: "Stomach",
  25373. image: {
  25374. source: "./media/characters/juri/stomach.svg"
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Normal",
  25381. height: math.unit(7 + 3 / 12, "feet"),
  25382. default: true
  25383. },
  25384. ]
  25385. ))
  25386. characterMakers.push(() => makeCharacter(
  25387. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25388. {
  25389. fox: {
  25390. height: math.unit(5 + 6 / 12, "feet"),
  25391. weight: math.unit(140, "lb"),
  25392. name: "Fox",
  25393. image: {
  25394. source: "./media/characters/maxene-sita/fox.svg",
  25395. extra: 146 / 138,
  25396. bottom: 2.1 / 148.19
  25397. }
  25398. },
  25399. foxLaying: {
  25400. height: math.unit(1.70, "feet"),
  25401. weight: math.unit(140, "lb"),
  25402. name: "Fox (Laying)",
  25403. image: {
  25404. source: "./media/characters/maxene-sita/fox-laying.svg",
  25405. extra: 910 / 572,
  25406. bottom: 71 / 981
  25407. }
  25408. },
  25409. kitsune: {
  25410. height: math.unit(10, "feet"),
  25411. weight: math.unit(800, "lb"),
  25412. name: "Kitsune",
  25413. image: {
  25414. source: "./media/characters/maxene-sita/kitsune.svg",
  25415. extra: 185 / 176,
  25416. bottom: 4.7 / 189.9
  25417. }
  25418. },
  25419. hellhound: {
  25420. height: math.unit(10, "feet"),
  25421. weight: math.unit(700, "lb"),
  25422. name: "Hellhound",
  25423. image: {
  25424. source: "./media/characters/maxene-sita/hellhound.svg",
  25425. extra: 1600 / 1545,
  25426. bottom: 81 / 1681
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Normal",
  25433. height: math.unit(5 + 6 / 12, "feet"),
  25434. default: true
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25440. {
  25441. front: {
  25442. height: math.unit(3 + 4 / 12, "feet"),
  25443. weight: math.unit(70, "lb"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/maia/front.svg",
  25447. extra: 227 / 219.5,
  25448. bottom: 40 / 267
  25449. }
  25450. },
  25451. back: {
  25452. height: math.unit(3 + 4 / 12, "feet"),
  25453. weight: math.unit(70, "lb"),
  25454. name: "Back",
  25455. image: {
  25456. source: "./media/characters/maia/back.svg",
  25457. extra: 237 / 225
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Normal",
  25464. height: math.unit(3 + 4 / 12, "feet"),
  25465. default: true
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25471. {
  25472. front: {
  25473. height: math.unit(5 + 10 / 12, "feet"),
  25474. weight: math.unit(197, "lb"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/jabaro/front.svg",
  25478. extra: 225 / 216,
  25479. bottom: 5.06 / 230
  25480. }
  25481. },
  25482. back: {
  25483. height: math.unit(5 + 10 / 12, "feet"),
  25484. weight: math.unit(197, "lb"),
  25485. name: "Back",
  25486. image: {
  25487. source: "./media/characters/jabaro/back.svg",
  25488. extra: 225 / 219,
  25489. bottom: 1.9 / 227
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(5 + 10 / 12, "feet"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(5 + 8 / 12, "feet"),
  25506. weight: math.unit(139, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/risa/front.svg",
  25510. extra: 270 / 260,
  25511. bottom: 11.2 / 282
  25512. }
  25513. },
  25514. back: {
  25515. height: math.unit(5 + 8 / 12, "feet"),
  25516. weight: math.unit(139, "lb"),
  25517. name: "Back",
  25518. image: {
  25519. source: "./media/characters/risa/back.svg",
  25520. extra: 264 / 255,
  25521. bottom: 4 / 268
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Normal",
  25528. height: math.unit(5 + 8 / 12, "feet"),
  25529. default: true
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(2 + 11 / 12, "feet"),
  25538. weight: math.unit(30, "lb"),
  25539. name: "Front",
  25540. image: {
  25541. source: "./media/characters/weatley/front.svg",
  25542. bottom: 10.7 / 414,
  25543. extra: 403.5 / 362
  25544. }
  25545. },
  25546. back: {
  25547. height: math.unit(2 + 11 / 12, "feet"),
  25548. weight: math.unit(30, "lb"),
  25549. name: "Back",
  25550. image: {
  25551. source: "./media/characters/weatley/back.svg",
  25552. bottom: 10.7 / 414,
  25553. extra: 403.5 / 362
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(2 + 11 / 12, "feet"),
  25561. default: true
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(5 + 2 / 12, "feet"),
  25570. weight: math.unit(50, "kg"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/mercury-crescent/front.svg",
  25574. extra: 1088 / 1033,
  25575. bottom: 18.9 / 1109
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(5 + 2 / 12, "feet"),
  25583. default: true
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25589. {
  25590. front: {
  25591. height: math.unit(2, "feet"),
  25592. weight: math.unit(15, "kg"),
  25593. name: "Front",
  25594. image: {
  25595. source: "./media/characters/diamond-jones/front.svg",
  25596. extra: 727/723,
  25597. bottom: 46/773
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Normal",
  25604. height: math.unit(2, "feet"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(3, "feet"),
  25614. weight: math.unit(30, "kg"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/sweet-bit/front.svg",
  25618. extra: 675 / 567,
  25619. bottom: 27.7 / 703
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(3, "feet"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25633. {
  25634. side: {
  25635. height: math.unit(9.178, "feet"),
  25636. weight: math.unit(500, "lb"),
  25637. name: "Side",
  25638. image: {
  25639. source: "./media/characters/umbrazen/side.svg",
  25640. extra: 1730 / 1473,
  25641. bottom: 34.6 / 1765
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(9.178, "feet"),
  25649. default: true
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(10, "feet"),
  25658. weight: math.unit(750, "lb"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/arlist/front.svg",
  25662. extra: 961 / 778,
  25663. bottom: 6.2 / 986
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Normal",
  25670. height: math.unit(10, "feet"),
  25671. default: true
  25672. },
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25677. {
  25678. front: {
  25679. height: math.unit(5 + 1 / 12, "feet"),
  25680. weight: math.unit(110, "lb"),
  25681. name: "Front",
  25682. image: {
  25683. source: "./media/characters/aradel/front.svg",
  25684. extra: 324 / 303,
  25685. bottom: 3.6 / 329.4
  25686. }
  25687. },
  25688. },
  25689. [
  25690. {
  25691. name: "Normal",
  25692. height: math.unit(5 + 1 / 12, "feet"),
  25693. default: true
  25694. },
  25695. ]
  25696. ))
  25697. characterMakers.push(() => makeCharacter(
  25698. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25699. {
  25700. front: {
  25701. height: math.unit(3 + 8 / 12, "feet"),
  25702. weight: math.unit(50, "lb"),
  25703. name: "Front",
  25704. image: {
  25705. source: "./media/characters/serryn/front.svg",
  25706. extra: 1792 / 1656,
  25707. bottom: 43.5 / 1840
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Normal",
  25714. height: math.unit(3 + 8 / 12, "feet"),
  25715. default: true
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(7 + 10 / 12, "feet"),
  25724. weight: math.unit(255, "lb"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/xavier-thyme/front.svg",
  25728. extra: 3733 / 3642,
  25729. bottom: 131 / 3869
  25730. }
  25731. },
  25732. frontRaven: {
  25733. height: math.unit(7 + 10 / 12, "feet"),
  25734. weight: math.unit(255, "lb"),
  25735. name: "Front (Raven)",
  25736. image: {
  25737. source: "./media/characters/xavier-thyme/front-raven.svg",
  25738. extra: 4385 / 3642,
  25739. bottom: 131 / 4517
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Normal",
  25746. height: math.unit(7 + 10 / 12, "feet"),
  25747. default: true
  25748. },
  25749. ]
  25750. ))
  25751. characterMakers.push(() => makeCharacter(
  25752. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25753. {
  25754. front: {
  25755. height: math.unit(1.6, "m"),
  25756. weight: math.unit(50, "kg"),
  25757. name: "Front",
  25758. image: {
  25759. source: "./media/characters/kiki/front.svg",
  25760. extra: 4682 / 3610,
  25761. bottom: 115 / 4777
  25762. }
  25763. },
  25764. },
  25765. [
  25766. {
  25767. name: "Normal",
  25768. height: math.unit(1.6, "meters"),
  25769. default: true
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25775. {
  25776. front: {
  25777. height: math.unit(50, "m"),
  25778. weight: math.unit(500, "tonnes"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/ryoko/front.svg",
  25782. extra: 4632 / 3926,
  25783. bottom: 193 / 4823
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Normal",
  25790. height: math.unit(50, "meters"),
  25791. default: true
  25792. },
  25793. ]
  25794. ))
  25795. characterMakers.push(() => makeCharacter(
  25796. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25797. {
  25798. front: {
  25799. height: math.unit(30, "m"),
  25800. weight: math.unit(22, "tonnes"),
  25801. name: "Front",
  25802. image: {
  25803. source: "./media/characters/elio/front.svg",
  25804. extra: 4582 / 3720,
  25805. bottom: 236 / 4828
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Normal",
  25812. height: math.unit(30, "meters"),
  25813. default: true
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25819. {
  25820. front: {
  25821. height: math.unit(6 + 3 / 12, "feet"),
  25822. weight: math.unit(120, "lb"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/azura/front.svg",
  25826. extra: 1149 / 1135,
  25827. bottom: 45 / 1194
  25828. }
  25829. },
  25830. frontClothed: {
  25831. height: math.unit(6 + 3 / 12, "feet"),
  25832. weight: math.unit(120, "lb"),
  25833. name: "Front (Clothed)",
  25834. image: {
  25835. source: "./media/characters/azura/front-clothed.svg",
  25836. extra: 1149 / 1135,
  25837. bottom: 45 / 1194
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(6 + 3 / 12, "feet"),
  25845. default: true
  25846. },
  25847. {
  25848. name: "Macro",
  25849. height: math.unit(20 + 6 / 12, "feet")
  25850. },
  25851. {
  25852. name: "Megamacro",
  25853. height: math.unit(12, "miles")
  25854. },
  25855. {
  25856. name: "Gigamacro",
  25857. height: math.unit(10000, "miles")
  25858. },
  25859. {
  25860. name: "Teramacro",
  25861. height: math.unit(900000, "miles")
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(12, "feet"),
  25870. weight: math.unit(1, "ton"),
  25871. capacity: math.unit(660000, "gallons"),
  25872. name: "Front",
  25873. image: {
  25874. source: "./media/characters/zeus/front.svg",
  25875. extra: 5005 / 4717,
  25876. bottom: 363 / 5388
  25877. }
  25878. },
  25879. },
  25880. [
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(12, "feet")
  25884. },
  25885. {
  25886. name: "Preferred Size",
  25887. height: math.unit(0.5, "miles"),
  25888. default: true
  25889. },
  25890. {
  25891. name: "Giga Horse",
  25892. height: math.unit(300, "miles")
  25893. },
  25894. {
  25895. name: "Riding Planets",
  25896. height: math.unit(30, "megameters")
  25897. },
  25898. {
  25899. name: "Cosmic Giant",
  25900. height: math.unit(3, "zettameters")
  25901. },
  25902. {
  25903. name: "Breeding God",
  25904. height: math.unit(9.92e22, "yottameters")
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25910. {
  25911. side: {
  25912. height: math.unit(9, "feet"),
  25913. weight: math.unit(1500, "kg"),
  25914. name: "Side",
  25915. image: {
  25916. source: "./media/characters/fang/side.svg",
  25917. extra: 924 / 866,
  25918. bottom: 47.5 / 972.3
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Normal",
  25925. height: math.unit(9, "feet"),
  25926. default: true
  25927. },
  25928. {
  25929. name: "Macro",
  25930. height: math.unit(75 + 6 / 12, "feet")
  25931. },
  25932. {
  25933. name: "Teramacro",
  25934. height: math.unit(50000, "miles")
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25940. {
  25941. front: {
  25942. height: math.unit(10, "feet"),
  25943. weight: math.unit(2, "tons"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/rekhit/front.svg",
  25947. extra: 2796 / 2590,
  25948. bottom: 225 / 3022
  25949. }
  25950. },
  25951. },
  25952. [
  25953. {
  25954. name: "Normal",
  25955. height: math.unit(10, "feet"),
  25956. default: true
  25957. },
  25958. {
  25959. name: "Macro",
  25960. height: math.unit(500, "feet")
  25961. },
  25962. ]
  25963. ))
  25964. characterMakers.push(() => makeCharacter(
  25965. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25966. {
  25967. front: {
  25968. height: math.unit(7 + 6.451 / 12, "feet"),
  25969. weight: math.unit(310, "lb"),
  25970. name: "Front",
  25971. image: {
  25972. source: "./media/characters/dahlia-verrick/front.svg",
  25973. extra: 1488 / 1365,
  25974. bottom: 6.2 / 1495
  25975. }
  25976. },
  25977. back: {
  25978. height: math.unit(7 + 6.451 / 12, "feet"),
  25979. weight: math.unit(310, "lb"),
  25980. name: "Back",
  25981. image: {
  25982. source: "./media/characters/dahlia-verrick/back.svg",
  25983. extra: 1472 / 1351,
  25984. bottom: 5.28 / 1477
  25985. }
  25986. },
  25987. frontBusiness: {
  25988. height: math.unit(7 + 6.451 / 12, "feet"),
  25989. weight: math.unit(200, "lb"),
  25990. name: "Front (Business)",
  25991. image: {
  25992. source: "./media/characters/dahlia-verrick/front-business.svg",
  25993. extra: 1478 / 1381,
  25994. bottom: 5.5 / 1484
  25995. }
  25996. },
  25997. frontCasual: {
  25998. height: math.unit(7 + 6.451 / 12, "feet"),
  25999. weight: math.unit(200, "lb"),
  26000. name: "Front (Casual)",
  26001. image: {
  26002. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26003. extra: 1478 / 1381,
  26004. bottom: 5.5 / 1484
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Travel-Sized",
  26011. height: math.unit(7.45, "inches")
  26012. },
  26013. {
  26014. name: "Normal",
  26015. height: math.unit(7 + 6.451 / 12, "feet"),
  26016. default: true
  26017. },
  26018. {
  26019. name: "Hitting the Town",
  26020. height: math.unit(37 + 8 / 12, "feet")
  26021. },
  26022. {
  26023. name: "Stomp in the Suburbs",
  26024. height: math.unit(964 + 9.728 / 12, "feet")
  26025. },
  26026. {
  26027. name: "Sit on the City",
  26028. height: math.unit(61747 + 10.592 / 12, "feet")
  26029. },
  26030. {
  26031. name: "Glomp the Globe",
  26032. height: math.unit(252919327 + 4.832 / 12, "feet")
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(6 + 4 / 12, "feet"),
  26041. weight: math.unit(320, "lb"),
  26042. name: "Front",
  26043. image: {
  26044. source: "./media/characters/balina-mahigan/front.svg",
  26045. extra: 447 / 428,
  26046. bottom: 18 / 466
  26047. }
  26048. },
  26049. back: {
  26050. height: math.unit(6 + 4 / 12, "feet"),
  26051. weight: math.unit(320, "lb"),
  26052. name: "Back",
  26053. image: {
  26054. source: "./media/characters/balina-mahigan/back.svg",
  26055. extra: 445 / 428,
  26056. bottom: 4.07 / 448
  26057. }
  26058. },
  26059. arm: {
  26060. height: math.unit(1.88, "feet"),
  26061. name: "Arm",
  26062. image: {
  26063. source: "./media/characters/balina-mahigan/arm.svg"
  26064. }
  26065. },
  26066. backPort: {
  26067. height: math.unit(0.685, "feet"),
  26068. name: "Back Port",
  26069. image: {
  26070. source: "./media/characters/balina-mahigan/back-port.svg"
  26071. }
  26072. },
  26073. hoofpaw: {
  26074. height: math.unit(1.41, "feet"),
  26075. name: "Hoofpaw",
  26076. image: {
  26077. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26078. }
  26079. },
  26080. leftHandBack: {
  26081. height: math.unit(0.938, "feet"),
  26082. name: "Left Hand (Back)",
  26083. image: {
  26084. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26085. }
  26086. },
  26087. leftHandFront: {
  26088. height: math.unit(0.938, "feet"),
  26089. name: "Left Hand (Front)",
  26090. image: {
  26091. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26092. }
  26093. },
  26094. rightHandBack: {
  26095. height: math.unit(0.95, "feet"),
  26096. name: "Right Hand (Back)",
  26097. image: {
  26098. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26099. }
  26100. },
  26101. rightHandFront: {
  26102. height: math.unit(0.95, "feet"),
  26103. name: "Right Hand (Front)",
  26104. image: {
  26105. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(6 + 4 / 12, "feet"),
  26113. default: true
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(6, "feet"),
  26122. weight: math.unit(320, "lb"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/balina-mejeri/front.svg",
  26126. extra: 517 / 488,
  26127. bottom: 44.2 / 561
  26128. }
  26129. },
  26130. },
  26131. [
  26132. {
  26133. name: "Normal",
  26134. height: math.unit(6 + 4 / 12, "feet")
  26135. },
  26136. {
  26137. name: "Business",
  26138. height: math.unit(155, "feet"),
  26139. default: true
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26145. {
  26146. kneeling: {
  26147. height: math.unit(6 + 4 / 12, "feet"),
  26148. weight: math.unit(300 * 20, "lb"),
  26149. name: "Kneeling",
  26150. image: {
  26151. source: "./media/characters/balbarian/kneeling.svg",
  26152. extra: 922 / 862,
  26153. bottom: 42.4 / 965
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(6 + 4 / 12, "feet")
  26161. },
  26162. {
  26163. name: "Treasured",
  26164. height: math.unit(18 + 9 / 12, "feet"),
  26165. default: true
  26166. },
  26167. {
  26168. name: "Macro",
  26169. height: math.unit(900, "feet")
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(6 + 4 / 12, "feet"),
  26178. weight: math.unit(325, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/balina-amarini/front.svg",
  26182. extra: 415 / 403,
  26183. bottom: 19 / 433.4
  26184. }
  26185. },
  26186. back: {
  26187. height: math.unit(6 + 4 / 12, "feet"),
  26188. weight: math.unit(325, "lb"),
  26189. name: "Back",
  26190. image: {
  26191. source: "./media/characters/balina-amarini/back.svg",
  26192. extra: 415 / 403,
  26193. bottom: 13.5 / 432
  26194. }
  26195. },
  26196. overdrive: {
  26197. height: math.unit(6 + 4 / 12, "feet"),
  26198. weight: math.unit(400, "lb"),
  26199. name: "Overdrive",
  26200. image: {
  26201. source: "./media/characters/balina-amarini/overdrive.svg",
  26202. extra: 269 / 259,
  26203. bottom: 12 / 282
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Boom",
  26210. height: math.unit(9 + 10 / 12, "feet"),
  26211. default: true
  26212. },
  26213. {
  26214. name: "Macro",
  26215. height: math.unit(280, "feet")
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26221. {
  26222. goddess: {
  26223. height: math.unit(600, "feet"),
  26224. weight: math.unit(2000000, "tons"),
  26225. name: "Goddess",
  26226. image: {
  26227. source: "./media/characters/lady-kubwa/goddess.svg",
  26228. extra: 1240.5 / 1223,
  26229. bottom: 22 / 1263
  26230. }
  26231. },
  26232. goddesser: {
  26233. height: math.unit(900, "feet"),
  26234. weight: math.unit(20000000, "lb"),
  26235. name: "Goddess-er",
  26236. image: {
  26237. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26238. extra: 899 / 888,
  26239. bottom: 12.6 / 912
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Macro",
  26246. height: math.unit(600, "feet"),
  26247. default: true
  26248. },
  26249. {
  26250. name: "Megamacro",
  26251. height: math.unit(250, "miles")
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26257. {
  26258. front: {
  26259. height: math.unit(7 + 7 / 12, "feet"),
  26260. weight: math.unit(250, "lb"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/tala-grovehorn/front.svg",
  26264. extra: 2636 / 2525,
  26265. bottom: 147 / 2781
  26266. }
  26267. },
  26268. back: {
  26269. height: math.unit(7 + 7 / 12, "feet"),
  26270. weight: math.unit(250, "lb"),
  26271. name: "Back",
  26272. image: {
  26273. source: "./media/characters/tala-grovehorn/back.svg",
  26274. extra: 2635 / 2539,
  26275. bottom: 100 / 2732.8
  26276. }
  26277. },
  26278. mouth: {
  26279. height: math.unit(1.15, "feet"),
  26280. name: "Mouth",
  26281. image: {
  26282. source: "./media/characters/tala-grovehorn/mouth.svg"
  26283. }
  26284. },
  26285. dick: {
  26286. height: math.unit(2.36, "feet"),
  26287. name: "Dick",
  26288. image: {
  26289. source: "./media/characters/tala-grovehorn/dick.svg"
  26290. }
  26291. },
  26292. slit: {
  26293. height: math.unit(0.61, "feet"),
  26294. name: "Slit",
  26295. image: {
  26296. source: "./media/characters/tala-grovehorn/slit.svg"
  26297. }
  26298. },
  26299. },
  26300. [
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26305. {
  26306. front: {
  26307. height: math.unit(7 + 7 / 12, "feet"),
  26308. weight: math.unit(225, "lb"),
  26309. name: "Front",
  26310. image: {
  26311. source: "./media/characters/epona/front.svg",
  26312. extra: 2445 / 2290,
  26313. bottom: 251 / 2696
  26314. }
  26315. },
  26316. back: {
  26317. height: math.unit(7 + 7 / 12, "feet"),
  26318. weight: math.unit(225, "lb"),
  26319. name: "Back",
  26320. image: {
  26321. source: "./media/characters/epona/back.svg",
  26322. extra: 2546 / 2408,
  26323. bottom: 44 / 2589
  26324. }
  26325. },
  26326. genitals: {
  26327. height: math.unit(1.5, "feet"),
  26328. name: "Genitals",
  26329. image: {
  26330. source: "./media/characters/epona/genitals.svg"
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(7 + 7 / 12, "feet"),
  26338. default: true
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(7, "feet"),
  26347. weight: math.unit(518, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/avia-bloodbourn/front.svg",
  26351. extra: 1466 / 1350,
  26352. bottom: 65 / 1527
  26353. }
  26354. },
  26355. },
  26356. [
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(9.35, "feet"),
  26364. weight: math.unit(600, "lb"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/amera/front.svg",
  26368. extra: 891 / 818,
  26369. bottom: 30 / 922.7
  26370. }
  26371. },
  26372. back: {
  26373. height: math.unit(9.35, "feet"),
  26374. weight: math.unit(600, "lb"),
  26375. name: "Back",
  26376. image: {
  26377. source: "./media/characters/amera/back.svg",
  26378. extra: 876 / 824,
  26379. bottom: 6.8 / 884
  26380. }
  26381. },
  26382. dick: {
  26383. height: math.unit(2.14, "feet"),
  26384. name: "Dick",
  26385. image: {
  26386. source: "./media/characters/amera/dick.svg"
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(9.35, "feet"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26400. {
  26401. kneeling: {
  26402. height: math.unit(3 + 4 / 12, "feet"),
  26403. weight: math.unit(90, "lb"),
  26404. name: "Kneeling",
  26405. image: {
  26406. source: "./media/characters/rosewen/kneeling.svg",
  26407. extra: 1835 / 1571,
  26408. bottom: 27.7 / 1862
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(3 + 4 / 12, "feet"),
  26416. default: true
  26417. },
  26418. ]
  26419. ))
  26420. characterMakers.push(() => makeCharacter(
  26421. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26422. {
  26423. front: {
  26424. height: math.unit(5 + 10 / 12, "feet"),
  26425. weight: math.unit(200, "lb"),
  26426. name: "Front",
  26427. image: {
  26428. source: "./media/characters/sabah/front.svg",
  26429. extra: 849 / 763,
  26430. bottom: 33.9 / 881
  26431. }
  26432. },
  26433. },
  26434. [
  26435. {
  26436. name: "Normal",
  26437. height: math.unit(5 + 10 / 12, "feet"),
  26438. default: true
  26439. },
  26440. ]
  26441. ))
  26442. characterMakers.push(() => makeCharacter(
  26443. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26444. {
  26445. front: {
  26446. height: math.unit(3 + 5 / 12, "feet"),
  26447. weight: math.unit(40, "kg"),
  26448. name: "Front",
  26449. image: {
  26450. source: "./media/characters/purple-flame/front.svg",
  26451. extra: 1577 / 1412,
  26452. bottom: 97 / 1694
  26453. }
  26454. },
  26455. frontDressed: {
  26456. height: math.unit(3 + 5 / 12, "feet"),
  26457. weight: math.unit(40, "kg"),
  26458. name: "Front (Dressed)",
  26459. image: {
  26460. source: "./media/characters/purple-flame/front-dressed.svg",
  26461. extra: 1577 / 1412,
  26462. bottom: 97 / 1694
  26463. }
  26464. },
  26465. headphones: {
  26466. height: math.unit(0.85, "feet"),
  26467. name: "Headphones",
  26468. image: {
  26469. source: "./media/characters/purple-flame/headphones.svg"
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Really Small",
  26476. height: math.unit(5, "cm")
  26477. },
  26478. {
  26479. name: "Micro",
  26480. height: math.unit(1 + 5 / 12, "feet")
  26481. },
  26482. {
  26483. name: "Normal",
  26484. height: math.unit(3 + 5 / 12, "feet"),
  26485. default: true
  26486. },
  26487. {
  26488. name: "Minimacro",
  26489. height: math.unit(125, "feet")
  26490. },
  26491. {
  26492. name: "Macro",
  26493. height: math.unit(0.5, "miles")
  26494. },
  26495. {
  26496. name: "Megamacro",
  26497. height: math.unit(50, "miles")
  26498. },
  26499. {
  26500. name: "Gigantic",
  26501. height: math.unit(750, "miles")
  26502. },
  26503. {
  26504. name: "Planetary",
  26505. height: math.unit(15000, "miles")
  26506. },
  26507. ]
  26508. ))
  26509. characterMakers.push(() => makeCharacter(
  26510. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26511. {
  26512. front: {
  26513. height: math.unit(14, "feet"),
  26514. weight: math.unit(959, "lb"),
  26515. name: "Front",
  26516. image: {
  26517. source: "./media/characters/arsenal/front.svg",
  26518. extra: 2357 / 2157,
  26519. bottom: 93 / 2458
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Normal",
  26526. height: math.unit(14, "feet"),
  26527. default: true
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26533. {
  26534. front: {
  26535. height: math.unit(6, "feet"),
  26536. weight: math.unit(150, "lb"),
  26537. name: "Front",
  26538. image: {
  26539. source: "./media/characters/adira/front.svg",
  26540. extra: 1078 / 1029,
  26541. bottom: 87 / 1166
  26542. }
  26543. },
  26544. },
  26545. [
  26546. {
  26547. name: "Micro",
  26548. height: math.unit(4, "inches"),
  26549. default: true
  26550. },
  26551. {
  26552. name: "Macro",
  26553. height: math.unit(50, "feet")
  26554. },
  26555. ]
  26556. ))
  26557. characterMakers.push(() => makeCharacter(
  26558. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26559. {
  26560. front: {
  26561. height: math.unit(16, "feet"),
  26562. weight: math.unit(1000, "lb"),
  26563. name: "Front",
  26564. image: {
  26565. source: "./media/characters/grim/front.svg",
  26566. extra: 622 / 614,
  26567. bottom: 18.1 / 642
  26568. }
  26569. },
  26570. back: {
  26571. height: math.unit(16, "feet"),
  26572. weight: math.unit(1000, "lb"),
  26573. name: "Back",
  26574. image: {
  26575. source: "./media/characters/grim/back.svg",
  26576. extra: 610.6 / 602,
  26577. bottom: 40.8 / 652
  26578. }
  26579. },
  26580. hunched: {
  26581. height: math.unit(9.75, "feet"),
  26582. weight: math.unit(1000, "lb"),
  26583. name: "Hunched",
  26584. image: {
  26585. source: "./media/characters/grim/hunched.svg",
  26586. extra: 304 / 297,
  26587. bottom: 35.4 / 394
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(16, "feet"),
  26595. default: true
  26596. },
  26597. ]
  26598. ))
  26599. characterMakers.push(() => makeCharacter(
  26600. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26601. {
  26602. front: {
  26603. height: math.unit(2.3, "meters"),
  26604. weight: math.unit(300, "lb"),
  26605. name: "Front",
  26606. image: {
  26607. source: "./media/characters/sinja/front-sfw.svg",
  26608. extra: 1393 / 1294,
  26609. bottom: 70 / 1463
  26610. }
  26611. },
  26612. frontNsfw: {
  26613. height: math.unit(2.3, "meters"),
  26614. weight: math.unit(300, "lb"),
  26615. name: "Front (NSFW)",
  26616. image: {
  26617. source: "./media/characters/sinja/front-nsfw.svg",
  26618. extra: 1393 / 1294,
  26619. bottom: 70 / 1463
  26620. }
  26621. },
  26622. back: {
  26623. height: math.unit(2.3, "meters"),
  26624. weight: math.unit(300, "lb"),
  26625. name: "Back",
  26626. image: {
  26627. source: "./media/characters/sinja/back.svg",
  26628. extra: 1393 / 1294,
  26629. bottom: 70 / 1463
  26630. }
  26631. },
  26632. head: {
  26633. height: math.unit(1.771, "feet"),
  26634. name: "Head",
  26635. image: {
  26636. source: "./media/characters/sinja/head.svg"
  26637. }
  26638. },
  26639. slit: {
  26640. height: math.unit(0.8, "feet"),
  26641. name: "Slit",
  26642. image: {
  26643. source: "./media/characters/sinja/slit.svg"
  26644. }
  26645. },
  26646. },
  26647. [
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(2.3, "meters")
  26651. },
  26652. {
  26653. name: "Macro",
  26654. height: math.unit(91, "meters"),
  26655. default: true
  26656. },
  26657. {
  26658. name: "Megamacro",
  26659. height: math.unit(91440, "meters")
  26660. },
  26661. {
  26662. name: "Gigamacro",
  26663. height: math.unit(60960000, "meters")
  26664. },
  26665. {
  26666. name: "Teramacro",
  26667. height: math.unit(9144000000, "meters")
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26673. {
  26674. front: {
  26675. height: math.unit(1.7, "meters"),
  26676. weight: math.unit(130, "lb"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/kyu/front.svg",
  26680. extra: 415 / 395,
  26681. bottom: 5 / 420
  26682. }
  26683. },
  26684. head: {
  26685. height: math.unit(1.75, "feet"),
  26686. name: "Head",
  26687. image: {
  26688. source: "./media/characters/kyu/head.svg"
  26689. }
  26690. },
  26691. foot: {
  26692. height: math.unit(0.81, "feet"),
  26693. name: "Foot",
  26694. image: {
  26695. source: "./media/characters/kyu/foot.svg"
  26696. }
  26697. },
  26698. },
  26699. [
  26700. {
  26701. name: "Normal",
  26702. height: math.unit(1.7, "meters")
  26703. },
  26704. {
  26705. name: "Macro",
  26706. height: math.unit(131, "feet"),
  26707. default: true
  26708. },
  26709. {
  26710. name: "Megamacro",
  26711. height: math.unit(91440, "meters")
  26712. },
  26713. {
  26714. name: "Gigamacro",
  26715. height: math.unit(60960000, "meters")
  26716. },
  26717. {
  26718. name: "Teramacro",
  26719. height: math.unit(9144000000, "meters")
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(7 + 1 / 12, "feet"),
  26728. weight: math.unit(250, "lb"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/joey/front.svg",
  26732. extra: 1791 / 1537,
  26733. bottom: 28 / 1816
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Micro",
  26740. height: math.unit(3, "inches")
  26741. },
  26742. {
  26743. name: "Normal",
  26744. height: math.unit(7 + 1 / 12, "feet"),
  26745. default: true
  26746. },
  26747. ]
  26748. ))
  26749. characterMakers.push(() => makeCharacter(
  26750. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26751. {
  26752. front: {
  26753. height: math.unit(165, "cm"),
  26754. weight: math.unit(140, "lb"),
  26755. name: "Front",
  26756. image: {
  26757. source: "./media/characters/sam-evans/front.svg",
  26758. extra: 3417 / 3230,
  26759. bottom: 41.3 / 3417
  26760. }
  26761. },
  26762. frontSixTails: {
  26763. height: math.unit(165, "cm"),
  26764. weight: math.unit(140, "lb"),
  26765. name: "Front-six-tails",
  26766. image: {
  26767. source: "./media/characters/sam-evans/front-six-tails.svg",
  26768. extra: 3417 / 3230,
  26769. bottom: 41.3 / 3417
  26770. }
  26771. },
  26772. back: {
  26773. height: math.unit(165, "cm"),
  26774. weight: math.unit(140, "lb"),
  26775. name: "Back",
  26776. image: {
  26777. source: "./media/characters/sam-evans/back.svg",
  26778. extra: 3227 / 3032,
  26779. bottom: 6.8 / 3234
  26780. }
  26781. },
  26782. face: {
  26783. height: math.unit(0.68, "feet"),
  26784. name: "Face",
  26785. image: {
  26786. source: "./media/characters/sam-evans/face.svg"
  26787. }
  26788. },
  26789. },
  26790. [
  26791. {
  26792. name: "Normal",
  26793. height: math.unit(165, "cm"),
  26794. default: true
  26795. },
  26796. {
  26797. name: "Macro",
  26798. height: math.unit(100, "meters")
  26799. },
  26800. {
  26801. name: "Macro+",
  26802. height: math.unit(800, "meters")
  26803. },
  26804. {
  26805. name: "Macro++",
  26806. height: math.unit(3, "km")
  26807. },
  26808. {
  26809. name: "Macro+++",
  26810. height: math.unit(30, "km")
  26811. },
  26812. ]
  26813. ))
  26814. characterMakers.push(() => makeCharacter(
  26815. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26816. {
  26817. front: {
  26818. height: math.unit(10, "feet"),
  26819. weight: math.unit(750, "lb"),
  26820. name: "Front",
  26821. image: {
  26822. source: "./media/characters/juliet-a/front.svg",
  26823. extra: 1766 / 1720,
  26824. bottom: 43 / 1809
  26825. }
  26826. },
  26827. back: {
  26828. height: math.unit(10, "feet"),
  26829. weight: math.unit(750, "lb"),
  26830. name: "Back",
  26831. image: {
  26832. source: "./media/characters/juliet-a/back.svg",
  26833. extra: 1781 / 1734,
  26834. bottom: 35 / 1810,
  26835. }
  26836. },
  26837. },
  26838. [
  26839. {
  26840. name: "Normal",
  26841. height: math.unit(10, "feet"),
  26842. default: true
  26843. },
  26844. {
  26845. name: "Dragon Form",
  26846. height: math.unit(250, "feet")
  26847. },
  26848. {
  26849. name: "Macro",
  26850. height: math.unit(1000, "feet")
  26851. },
  26852. {
  26853. name: "Megamacro",
  26854. height: math.unit(10000, "feet")
  26855. }
  26856. ]
  26857. ))
  26858. characterMakers.push(() => makeCharacter(
  26859. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26860. {
  26861. regular: {
  26862. height: math.unit(7 + 3 / 12, "feet"),
  26863. weight: math.unit(260, "lb"),
  26864. name: "Regular",
  26865. image: {
  26866. source: "./media/characters/wild/regular.svg",
  26867. extra: 97.45 / 92,
  26868. bottom: 6.8 / 104.3
  26869. }
  26870. },
  26871. biggums: {
  26872. height: math.unit(8 + 6 / 12, "feet"),
  26873. weight: math.unit(425, "lb"),
  26874. name: "Biggums",
  26875. image: {
  26876. source: "./media/characters/wild/biggums.svg",
  26877. extra: 97.45 / 92,
  26878. bottom: 7.5 / 132.34
  26879. }
  26880. },
  26881. mawRegular: {
  26882. height: math.unit(1.24, "feet"),
  26883. name: "Maw (Regular)",
  26884. image: {
  26885. source: "./media/characters/wild/maw.svg"
  26886. }
  26887. },
  26888. mawBiggums: {
  26889. height: math.unit(1.47, "feet"),
  26890. name: "Maw (Biggums)",
  26891. image: {
  26892. source: "./media/characters/wild/maw.svg"
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(7 + 3 / 12, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26906. {
  26907. front: {
  26908. height: math.unit(2.5, "meters"),
  26909. weight: math.unit(200, "kg"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/vidar/front.svg",
  26913. extra: 2994 / 2795,
  26914. bottom: 56 / 3061
  26915. }
  26916. },
  26917. back: {
  26918. height: math.unit(2.5, "meters"),
  26919. weight: math.unit(200, "kg"),
  26920. name: "Back",
  26921. image: {
  26922. source: "./media/characters/vidar/back.svg",
  26923. extra: 3131 / 2928,
  26924. bottom: 13.5 / 3141.5
  26925. }
  26926. },
  26927. feral: {
  26928. height: math.unit(2.5, "meters"),
  26929. weight: math.unit(2000, "kg"),
  26930. name: "Feral",
  26931. image: {
  26932. source: "./media/characters/vidar/feral.svg",
  26933. extra: 2790 / 1765,
  26934. bottom: 6 / 2796
  26935. }
  26936. },
  26937. },
  26938. [
  26939. {
  26940. name: "Normal",
  26941. height: math.unit(2.5, "meters"),
  26942. default: true
  26943. },
  26944. {
  26945. name: "Macro",
  26946. height: math.unit(100, "meters")
  26947. },
  26948. ]
  26949. ))
  26950. characterMakers.push(() => makeCharacter(
  26951. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26952. {
  26953. front: {
  26954. height: math.unit(5 + 9 / 12, "feet"),
  26955. weight: math.unit(120, "lb"),
  26956. name: "Front",
  26957. image: {
  26958. source: "./media/characters/ash/front.svg",
  26959. extra: 2189 / 1961,
  26960. bottom: 5.2 / 2194
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Normal",
  26967. height: math.unit(5 + 9 / 12, "feet"),
  26968. default: true
  26969. },
  26970. ]
  26971. ))
  26972. characterMakers.push(() => makeCharacter(
  26973. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26974. {
  26975. front: {
  26976. height: math.unit(9, "feet"),
  26977. weight: math.unit(10000, "lb"),
  26978. name: "Front",
  26979. image: {
  26980. source: "./media/characters/gygabite/front.svg",
  26981. bottom: 31.7 / 537.8,
  26982. extra: 505 / 370
  26983. }
  26984. },
  26985. },
  26986. [
  26987. {
  26988. name: "Normal",
  26989. height: math.unit(9, "feet"),
  26990. default: true
  26991. },
  26992. ]
  26993. ))
  26994. characterMakers.push(() => makeCharacter(
  26995. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26996. {
  26997. front: {
  26998. height: math.unit(12, "feet"),
  26999. weight: math.unit(35000, "lb"),
  27000. name: "Front",
  27001. image: {
  27002. source: "./media/characters/p0tat0/front.svg",
  27003. extra: 1065 / 921,
  27004. bottom: 55.7 / 1121.25
  27005. }
  27006. },
  27007. },
  27008. [
  27009. {
  27010. name: "Normal",
  27011. height: math.unit(12, "feet"),
  27012. default: true
  27013. },
  27014. ]
  27015. ))
  27016. characterMakers.push(() => makeCharacter(
  27017. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27018. {
  27019. side: {
  27020. height: math.unit(6.5, "feet"),
  27021. weight: math.unit(800, "lb"),
  27022. name: "Side",
  27023. image: {
  27024. source: "./media/characters/dusk/side.svg",
  27025. extra: 615 / 373,
  27026. bottom: 53 / 664
  27027. }
  27028. },
  27029. sitting: {
  27030. height: math.unit(7, "feet"),
  27031. weight: math.unit(800, "lb"),
  27032. name: "Sitting",
  27033. image: {
  27034. source: "./media/characters/dusk/sitting.svg",
  27035. extra: 753 / 425,
  27036. bottom: 33 / 774
  27037. }
  27038. },
  27039. head: {
  27040. height: math.unit(6.1, "feet"),
  27041. name: "Head",
  27042. image: {
  27043. source: "./media/characters/dusk/head.svg"
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(7, "feet"),
  27051. default: true
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(15, "feet"),
  27060. weight: math.unit(7000, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/jay-direwolf/front.svg",
  27064. extra: 1810 / 1732,
  27065. bottom: 66 / 1892
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(15, "feet"),
  27073. default: true
  27074. },
  27075. ]
  27076. ))
  27077. characterMakers.push(() => makeCharacter(
  27078. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27079. {
  27080. front: {
  27081. height: math.unit(4 + 9 / 12, "feet"),
  27082. weight: math.unit(130, "lb"),
  27083. name: "Front",
  27084. image: {
  27085. source: "./media/characters/anchovie/front.svg",
  27086. extra: 382 / 350,
  27087. bottom: 25 / 409
  27088. }
  27089. },
  27090. back: {
  27091. height: math.unit(4 + 9 / 12, "feet"),
  27092. weight: math.unit(130, "lb"),
  27093. name: "Back",
  27094. image: {
  27095. source: "./media/characters/anchovie/back.svg",
  27096. extra: 385 / 352,
  27097. bottom: 16.6 / 402
  27098. }
  27099. },
  27100. frontDressed: {
  27101. height: math.unit(4 + 9 / 12, "feet"),
  27102. weight: math.unit(130, "lb"),
  27103. name: "Front (Dressed)",
  27104. image: {
  27105. source: "./media/characters/anchovie/front-dressed.svg",
  27106. extra: 382 / 350,
  27107. bottom: 25 / 409
  27108. }
  27109. },
  27110. backDressed: {
  27111. height: math.unit(4 + 9 / 12, "feet"),
  27112. weight: math.unit(130, "lb"),
  27113. name: "Back (Dressed)",
  27114. image: {
  27115. source: "./media/characters/anchovie/back-dressed.svg",
  27116. extra: 385 / 352,
  27117. bottom: 16.6 / 402
  27118. }
  27119. },
  27120. },
  27121. [
  27122. {
  27123. name: "Micro",
  27124. height: math.unit(6.4, "inches")
  27125. },
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(4 + 9 / 12, "feet"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(2, "meters"),
  27138. weight: math.unit(180, "lb"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/acidrenamon/front.svg",
  27142. extra: 987 / 890,
  27143. bottom: 22.8 / 1009
  27144. }
  27145. },
  27146. back: {
  27147. height: math.unit(2, "meters"),
  27148. weight: math.unit(180, "lb"),
  27149. name: "Back",
  27150. image: {
  27151. source: "./media/characters/acidrenamon/back.svg",
  27152. extra: 983 / 891,
  27153. bottom: 8.4 / 992
  27154. }
  27155. },
  27156. head: {
  27157. height: math.unit(1.92, "feet"),
  27158. name: "Head",
  27159. image: {
  27160. source: "./media/characters/acidrenamon/head.svg"
  27161. }
  27162. },
  27163. rump: {
  27164. height: math.unit(1.72, "feet"),
  27165. name: "Rump",
  27166. image: {
  27167. source: "./media/characters/acidrenamon/rump.svg"
  27168. }
  27169. },
  27170. tail: {
  27171. height: math.unit(4.2, "feet"),
  27172. name: "Tail",
  27173. image: {
  27174. source: "./media/characters/acidrenamon/tail.svg"
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(2, "meters"),
  27182. default: true
  27183. },
  27184. {
  27185. name: "Minimacro",
  27186. height: math.unit(7, "meters")
  27187. },
  27188. {
  27189. name: "Macro",
  27190. height: math.unit(200, "meters")
  27191. },
  27192. {
  27193. name: "Gigamacro",
  27194. height: math.unit(0.2, "earths")
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(6, "feet"),
  27203. weight: math.unit(150, "lb"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/kenzie-lee/front.svg",
  27207. extra: 1525 / 1465,
  27208. bottom: 45 / 1570
  27209. }
  27210. },
  27211. side: {
  27212. height: math.unit(6, "feet"),
  27213. weight: math.unit(150, "lb"),
  27214. name: "Side",
  27215. image: {
  27216. source: "./media/characters/kenzie-lee/side.svg",
  27217. extra: 5505 / 5383,
  27218. bottom: 60 / 5573
  27219. }
  27220. },
  27221. paw: {
  27222. height: math.unit(0.57, "feet"),
  27223. name: "Paw",
  27224. image: {
  27225. source: "./media/characters/kenzie-lee/paw.svg"
  27226. }
  27227. },
  27228. },
  27229. [
  27230. {
  27231. name: "Normal",
  27232. height: math.unit(152, "feet"),
  27233. default: true
  27234. },
  27235. {
  27236. name: "Megamacro",
  27237. height: math.unit(7, "miles")
  27238. },
  27239. {
  27240. name: "Gigamacro",
  27241. height: math.unit(8000, "miles")
  27242. },
  27243. ]
  27244. ))
  27245. characterMakers.push(() => makeCharacter(
  27246. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27247. {
  27248. side: {
  27249. height: math.unit(6, "feet"),
  27250. weight: math.unit(150, "lb"),
  27251. name: "Side",
  27252. image: {
  27253. source: "./media/characters/withers/side.svg",
  27254. extra: 1830 / 1728,
  27255. bottom: 96 / 1927
  27256. }
  27257. },
  27258. front: {
  27259. height: math.unit(6, "feet"),
  27260. weight: math.unit(150, "lb"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/withers/front.svg",
  27264. extra: 1514 / 1438,
  27265. bottom: 118 / 1632
  27266. }
  27267. },
  27268. },
  27269. [
  27270. {
  27271. name: "Macro",
  27272. height: math.unit(168, "feet"),
  27273. default: true
  27274. },
  27275. {
  27276. name: "Megamacro",
  27277. height: math.unit(15, "miles")
  27278. }
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(6 + 7 / 12, "feet"),
  27286. weight: math.unit(250, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/nemoskii/front.svg",
  27290. extra: 2270 / 1734,
  27291. bottom: 86 / 2354
  27292. }
  27293. },
  27294. back: {
  27295. height: math.unit(6 + 7 / 12, "feet"),
  27296. weight: math.unit(250, "lb"),
  27297. name: "Back",
  27298. image: {
  27299. source: "./media/characters/nemoskii/back.svg",
  27300. extra: 1845 / 1788,
  27301. bottom: 10.5 / 1852
  27302. }
  27303. },
  27304. head: {
  27305. height: math.unit(1.31, "feet"),
  27306. name: "Head",
  27307. image: {
  27308. source: "./media/characters/nemoskii/head.svg"
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Micro",
  27315. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27316. },
  27317. {
  27318. name: "Normal",
  27319. height: math.unit(6 + 7 / 12, "feet"),
  27320. default: true
  27321. },
  27322. {
  27323. name: "Macro",
  27324. height: math.unit((6 + 7 / 12) * 150, "feet")
  27325. },
  27326. {
  27327. name: "Macro+",
  27328. height: math.unit((6 + 7 / 12) * 500, "feet")
  27329. },
  27330. {
  27331. name: "Megamacro",
  27332. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(1, "mile"),
  27341. weight: math.unit(265261.9, "lb"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/shui/front.svg",
  27345. extra: 1633 / 1564,
  27346. bottom: 91.5 / 1726
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Macro",
  27353. height: math.unit(1, "mile"),
  27354. default: true
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(12 + 6 / 12, "feet"),
  27363. weight: math.unit(1342, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/arokh-takakura/front.svg",
  27367. extra: 1089 / 1043,
  27368. bottom: 77.4 / 1176.7
  27369. }
  27370. },
  27371. back: {
  27372. height: math.unit(12 + 6 / 12, "feet"),
  27373. weight: math.unit(1342, "lb"),
  27374. name: "Back",
  27375. image: {
  27376. source: "./media/characters/arokh-takakura/back.svg",
  27377. extra: 1046 / 1019,
  27378. bottom: 102 / 1150
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Big",
  27385. height: math.unit(12 + 6 / 12, "feet"),
  27386. default: true
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(5 + 6 / 12, "feet"),
  27395. weight: math.unit(150, "lb"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/theo/front.svg",
  27399. extra: 1184 / 1131,
  27400. bottom: 7.4 / 1191
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Micro",
  27407. height: math.unit(5, "inches")
  27408. },
  27409. {
  27410. name: "Normal",
  27411. height: math.unit(5 + 6 / 12, "feet"),
  27412. default: true
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27418. {
  27419. front: {
  27420. height: math.unit(5 + 9 / 12, "feet"),
  27421. weight: math.unit(130, "lb"),
  27422. name: "Front",
  27423. image: {
  27424. source: "./media/characters/cecelia-swift/front.svg",
  27425. extra: 502 / 484,
  27426. bottom: 23 / 523
  27427. }
  27428. },
  27429. back: {
  27430. height: math.unit(5 + 9 / 12, "feet"),
  27431. weight: math.unit(130, "lb"),
  27432. name: "Back",
  27433. image: {
  27434. source: "./media/characters/cecelia-swift/back.svg",
  27435. extra: 499 / 485,
  27436. bottom: 12 / 511
  27437. }
  27438. },
  27439. head: {
  27440. height: math.unit(0.90, "feet"),
  27441. name: "Head",
  27442. image: {
  27443. source: "./media/characters/cecelia-swift/head.svg"
  27444. }
  27445. },
  27446. rump: {
  27447. height: math.unit(1.75, "feet"),
  27448. name: "Rump",
  27449. image: {
  27450. source: "./media/characters/cecelia-swift/rump.svg"
  27451. }
  27452. },
  27453. },
  27454. [
  27455. {
  27456. name: "Normal",
  27457. height: math.unit(5 + 9 / 12, "feet"),
  27458. default: true
  27459. },
  27460. {
  27461. name: "Big",
  27462. height: math.unit(50, "feet")
  27463. },
  27464. {
  27465. name: "Macro",
  27466. height: math.unit(100, "feet")
  27467. },
  27468. {
  27469. name: "Macro+",
  27470. height: math.unit(500, "feet")
  27471. },
  27472. {
  27473. name: "Macro++",
  27474. height: math.unit(1000, "feet")
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(6, "feet"),
  27483. weight: math.unit(150, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/kaunan/front.svg",
  27487. extra: 2890 / 2523,
  27488. bottom: 49 / 2939
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Macro",
  27495. height: math.unit(150, "feet"),
  27496. default: true
  27497. },
  27498. ]
  27499. ))
  27500. characterMakers.push(() => makeCharacter(
  27501. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27502. {
  27503. front: {
  27504. height: math.unit(175, "cm"),
  27505. weight: math.unit(60, "kg"),
  27506. name: "Front",
  27507. image: {
  27508. source: "./media/characters/fei/front.svg",
  27509. extra: 1873/1723,
  27510. bottom: 53/1926
  27511. }
  27512. },
  27513. },
  27514. [
  27515. {
  27516. name: "Mortal",
  27517. height: math.unit(175, "cm")
  27518. },
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(3500, "m"),
  27522. default: true
  27523. },
  27524. {
  27525. name: "Stroll",
  27526. height: math.unit(17.5, "km")
  27527. },
  27528. {
  27529. name: "Showoff",
  27530. height: math.unit(175, "km")
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(7, "feet"),
  27539. weight: math.unit(1000, "kg"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/edrax/front.svg",
  27543. extra: 2838 / 2550,
  27544. bottom: 130 / 2968
  27545. }
  27546. },
  27547. },
  27548. [
  27549. {
  27550. name: "Small",
  27551. height: math.unit(7, "feet")
  27552. },
  27553. {
  27554. name: "Normal",
  27555. height: math.unit(1500, "meters")
  27556. },
  27557. {
  27558. name: "Mega",
  27559. height: math.unit(12000000, "km"),
  27560. default: true
  27561. },
  27562. {
  27563. name: "Megamacro",
  27564. height: math.unit(10600000, "lightyears")
  27565. },
  27566. {
  27567. name: "Hypermacro",
  27568. height: math.unit(256, "yottameters")
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(10, "feet"),
  27577. weight: math.unit(750, "lb"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/clove/front.svg",
  27581. extra: 2031 / 1860,
  27582. bottom: 47.8 / 2080
  27583. }
  27584. },
  27585. back: {
  27586. height: math.unit(10, "feet"),
  27587. weight: math.unit(750, "lb"),
  27588. name: "Back",
  27589. image: {
  27590. source: "./media/characters/clove/back.svg",
  27591. extra: 2025 / 1859,
  27592. bottom: 46 / 2071
  27593. }
  27594. },
  27595. },
  27596. [
  27597. {
  27598. name: "Normal",
  27599. height: math.unit(10, "feet"),
  27600. default: true
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27606. {
  27607. front: {
  27608. height: math.unit(4, "feet"),
  27609. weight: math.unit(50, "lb"),
  27610. name: "Front",
  27611. image: {
  27612. source: "./media/characters/alex-rabbit/front.svg",
  27613. extra: 507 / 458,
  27614. bottom: 18.5 / 527
  27615. }
  27616. },
  27617. back: {
  27618. height: math.unit(4, "feet"),
  27619. weight: math.unit(50, "lb"),
  27620. name: "Back",
  27621. image: {
  27622. source: "./media/characters/alex-rabbit/back.svg",
  27623. extra: 502 / 460,
  27624. bottom: 18.9 / 521
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Normal",
  27631. height: math.unit(4, "feet"),
  27632. default: true
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(1 + 3 / 12, "feet"),
  27641. weight: math.unit(80, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/zander-rose/front.svg",
  27645. extra: 916 / 797,
  27646. bottom: 17 / 933
  27647. }
  27648. },
  27649. back: {
  27650. height: math.unit(1 + 3 / 12, "feet"),
  27651. weight: math.unit(80, "lb"),
  27652. name: "Back",
  27653. image: {
  27654. source: "./media/characters/zander-rose/back.svg",
  27655. extra: 903 / 779,
  27656. bottom: 31 / 934
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(1 + 3 / 12, "feet"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27670. {
  27671. anthro: {
  27672. height: math.unit(6, "feet"),
  27673. weight: math.unit(150, "lb"),
  27674. name: "Anthro",
  27675. image: {
  27676. source: "./media/characters/razz/anthro.svg",
  27677. extra: 1437 / 1343,
  27678. bottom: 48 / 1485
  27679. }
  27680. },
  27681. feral: {
  27682. height: math.unit(6, "feet"),
  27683. weight: math.unit(150, "lb"),
  27684. name: "Feral",
  27685. image: {
  27686. source: "./media/characters/razz/feral.svg",
  27687. extra: 2569 / 1385,
  27688. bottom: 95 / 2664
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Normal",
  27695. height: math.unit(6, "feet"),
  27696. default: true
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27702. {
  27703. front: {
  27704. height: math.unit(9 + 4 / 12, "feet"),
  27705. weight: math.unit(500, "lb"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/morrigan/front.svg",
  27709. extra: 2707 / 2579,
  27710. bottom: 156 / 2863
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(9 + 4 / 12, "feet"),
  27718. default: true
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(5, "stories"),
  27727. weight: math.unit(4000, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/jenene/front.svg",
  27731. extra: 1780 / 1710,
  27732. bottom: 57 / 1837
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Normal",
  27739. height: math.unit(5, "stories"),
  27740. default: true
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27746. {
  27747. taurSfw: {
  27748. height: math.unit(10, "meters"),
  27749. weight: math.unit(17500, "kg"),
  27750. name: "Taur",
  27751. image: {
  27752. source: "./media/characters/faey/taur-sfw.svg",
  27753. extra: 1200 / 968,
  27754. bottom: 41 / 1241
  27755. }
  27756. },
  27757. chestmaw: {
  27758. height: math.unit(2.01, "meters"),
  27759. name: "Chestmaw",
  27760. image: {
  27761. source: "./media/characters/faey/chestmaw.svg"
  27762. }
  27763. },
  27764. foot: {
  27765. height: math.unit(2.43, "meters"),
  27766. name: "Foot",
  27767. image: {
  27768. source: "./media/characters/faey/foot.svg"
  27769. }
  27770. },
  27771. jaws: {
  27772. height: math.unit(1.66, "meters"),
  27773. name: "Jaws",
  27774. image: {
  27775. source: "./media/characters/faey/jaws.svg"
  27776. }
  27777. },
  27778. tongues: {
  27779. height: math.unit(2.01, "meters"),
  27780. name: "Tongues",
  27781. image: {
  27782. source: "./media/characters/faey/tongues.svg"
  27783. }
  27784. },
  27785. },
  27786. [
  27787. {
  27788. name: "Small",
  27789. height: math.unit(10, "meters"),
  27790. default: true
  27791. },
  27792. {
  27793. name: "Big",
  27794. height: math.unit(500000, "km")
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27800. {
  27801. front: {
  27802. height: math.unit(7, "feet"),
  27803. weight: math.unit(275, "lb"),
  27804. name: "Front",
  27805. image: {
  27806. source: "./media/characters/roku/front.svg",
  27807. extra: 903 / 878,
  27808. bottom: 37 / 940
  27809. }
  27810. },
  27811. },
  27812. [
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(7, "feet"),
  27816. default: true
  27817. },
  27818. {
  27819. name: "Macro",
  27820. height: math.unit(500, "feet")
  27821. },
  27822. {
  27823. name: "Megamacro",
  27824. height: math.unit(200, "miles")
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(6 + 2 / 12, "feet"),
  27833. weight: math.unit(150, "lb"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/lira/front.svg",
  27837. extra: 1727 / 1605,
  27838. bottom: 26 / 1753
  27839. }
  27840. },
  27841. back: {
  27842. height: math.unit(6 + 2 / 12, "feet"),
  27843. weight: math.unit(150, "lb"),
  27844. name: "Back",
  27845. image: {
  27846. source: "./media/characters/lira/back.svg",
  27847. extra: 1713/1621,
  27848. bottom: 20/1733
  27849. }
  27850. },
  27851. hand: {
  27852. height: math.unit(0.75, "feet"),
  27853. name: "Hand",
  27854. image: {
  27855. source: "./media/characters/lira/hand.svg"
  27856. }
  27857. },
  27858. maw: {
  27859. height: math.unit(0.65, "feet"),
  27860. name: "Maw",
  27861. image: {
  27862. source: "./media/characters/lira/maw.svg"
  27863. }
  27864. },
  27865. pawDigi: {
  27866. height: math.unit(1.6, "feet"),
  27867. name: "Paw Digi",
  27868. image: {
  27869. source: "./media/characters/lira/paw-digi.svg"
  27870. }
  27871. },
  27872. pawPlanti: {
  27873. height: math.unit(1.4, "feet"),
  27874. name: "Paw Planti",
  27875. image: {
  27876. source: "./media/characters/lira/paw-planti.svg"
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(6 + 2 / 12, "feet"),
  27884. default: true
  27885. },
  27886. {
  27887. name: "Macro",
  27888. height: math.unit(100, "feet")
  27889. },
  27890. {
  27891. name: "Macro²",
  27892. height: math.unit(1600, "feet")
  27893. },
  27894. {
  27895. name: "Planetary",
  27896. height: math.unit(20, "earths")
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27902. {
  27903. front: {
  27904. height: math.unit(6, "feet"),
  27905. weight: math.unit(150, "lb"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/hadjet/front.svg",
  27909. extra: 1480 / 1346,
  27910. bottom: 26 / 1506
  27911. }
  27912. },
  27913. frontNsfw: {
  27914. height: math.unit(6, "feet"),
  27915. weight: math.unit(150, "lb"),
  27916. name: "Front (NSFW)",
  27917. image: {
  27918. source: "./media/characters/hadjet/front-nsfw.svg",
  27919. extra: 1440 / 1358,
  27920. bottom: 52 / 1492
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Macro",
  27927. height: math.unit(10, "stories"),
  27928. default: true
  27929. },
  27930. {
  27931. name: "Megamacro",
  27932. height: math.unit(1.5, "miles")
  27933. },
  27934. {
  27935. name: "Megamacro+",
  27936. height: math.unit(5, "miles")
  27937. },
  27938. ]
  27939. ))
  27940. characterMakers.push(() => makeCharacter(
  27941. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27942. {
  27943. side: {
  27944. height: math.unit(106, "feet"),
  27945. weight: math.unit(500, "tonnes"),
  27946. name: "Side",
  27947. image: {
  27948. source: "./media/characters/kodran/side.svg",
  27949. extra: 553 / 480,
  27950. bottom: 33 / 586
  27951. }
  27952. },
  27953. front: {
  27954. height: math.unit(132, "feet"),
  27955. weight: math.unit(500, "tonnes"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/kodran/front.svg",
  27959. extra: 667 / 643,
  27960. bottom: 42 / 709
  27961. }
  27962. },
  27963. flying: {
  27964. height: math.unit(350, "feet"),
  27965. weight: math.unit(500, "tonnes"),
  27966. name: "Flying",
  27967. image: {
  27968. source: "./media/characters/kodran/flying.svg"
  27969. }
  27970. },
  27971. foot: {
  27972. height: math.unit(33, "feet"),
  27973. name: "Foot",
  27974. image: {
  27975. source: "./media/characters/kodran/foot.svg"
  27976. }
  27977. },
  27978. footFront: {
  27979. height: math.unit(19, "feet"),
  27980. name: "Foot (Front)",
  27981. image: {
  27982. source: "./media/characters/kodran/foot-front.svg",
  27983. extra: 261 / 261,
  27984. bottom: 91 / 352
  27985. }
  27986. },
  27987. headFront: {
  27988. height: math.unit(53, "feet"),
  27989. name: "Head (Front)",
  27990. image: {
  27991. source: "./media/characters/kodran/head-front.svg"
  27992. }
  27993. },
  27994. headSide: {
  27995. height: math.unit(65, "feet"),
  27996. name: "Head (Side)",
  27997. image: {
  27998. source: "./media/characters/kodran/head-side.svg"
  27999. }
  28000. },
  28001. throat: {
  28002. height: math.unit(79, "feet"),
  28003. name: "Throat",
  28004. image: {
  28005. source: "./media/characters/kodran/throat.svg"
  28006. }
  28007. },
  28008. },
  28009. [
  28010. {
  28011. name: "Large",
  28012. height: math.unit(106, "feet"),
  28013. default: true
  28014. },
  28015. ]
  28016. ))
  28017. characterMakers.push(() => makeCharacter(
  28018. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28019. {
  28020. side: {
  28021. height: math.unit(11, "feet"),
  28022. weight: math.unit(150, "lb"),
  28023. name: "Side",
  28024. image: {
  28025. source: "./media/characters/pyxaron/side.svg",
  28026. extra: 305 / 195,
  28027. bottom: 17 / 322
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Normal",
  28034. height: math.unit(11, "feet"),
  28035. default: true
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28041. {
  28042. front: {
  28043. height: math.unit(6, "feet"),
  28044. weight: math.unit(150, "lb"),
  28045. name: "Front",
  28046. image: {
  28047. source: "./media/characters/meep/front.svg",
  28048. extra: 88 / 80,
  28049. bottom: 6 / 94
  28050. }
  28051. },
  28052. },
  28053. [
  28054. {
  28055. name: "Fun Sized",
  28056. height: math.unit(2, "inches"),
  28057. default: true
  28058. },
  28059. {
  28060. name: "Friend Sized",
  28061. height: math.unit(8, "inches")
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28067. {
  28068. front: {
  28069. height: math.unit(15, "feet"),
  28070. weight: math.unit(2500, "lb"),
  28071. name: "Front",
  28072. image: {
  28073. source: "./media/characters/holly-rabbit/front.svg",
  28074. extra: 1433 / 1233,
  28075. bottom: 125 / 1558
  28076. }
  28077. },
  28078. dick: {
  28079. height: math.unit(4.6, "feet"),
  28080. name: "Dick",
  28081. image: {
  28082. source: "./media/characters/holly-rabbit/dick.svg"
  28083. }
  28084. },
  28085. },
  28086. [
  28087. {
  28088. name: "Normal",
  28089. height: math.unit(15, "feet"),
  28090. default: true
  28091. },
  28092. {
  28093. name: "Macro",
  28094. height: math.unit(250, "feet")
  28095. },
  28096. {
  28097. name: "Macro+",
  28098. height: math.unit(2500, "feet")
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(3.02, "meters"),
  28107. weight: math.unit(500, "kg"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/drena/front.svg",
  28111. extra: 282 / 243,
  28112. bottom: 8 / 290
  28113. }
  28114. },
  28115. side: {
  28116. height: math.unit(3.02, "meters"),
  28117. weight: math.unit(500, "kg"),
  28118. name: "Side",
  28119. image: {
  28120. source: "./media/characters/drena/side.svg",
  28121. extra: 280 / 245,
  28122. bottom: 10 / 290
  28123. }
  28124. },
  28125. back: {
  28126. height: math.unit(3.02, "meters"),
  28127. weight: math.unit(500, "kg"),
  28128. name: "Back",
  28129. image: {
  28130. source: "./media/characters/drena/back.svg",
  28131. extra: 278 / 243,
  28132. bottom: 2 / 280
  28133. }
  28134. },
  28135. foot: {
  28136. height: math.unit(0.75, "meters"),
  28137. name: "Foot",
  28138. image: {
  28139. source: "./media/characters/drena/foot.svg"
  28140. }
  28141. },
  28142. maw: {
  28143. height: math.unit(0.82, "meters"),
  28144. name: "Maw",
  28145. image: {
  28146. source: "./media/characters/drena/maw.svg"
  28147. }
  28148. },
  28149. rump: {
  28150. height: math.unit(0.93, "meters"),
  28151. name: "Rump",
  28152. image: {
  28153. source: "./media/characters/drena/rump.svg"
  28154. }
  28155. },
  28156. },
  28157. [
  28158. {
  28159. name: "Normal",
  28160. height: math.unit(3.02, "meters"),
  28161. default: true
  28162. },
  28163. ]
  28164. ))
  28165. characterMakers.push(() => makeCharacter(
  28166. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28167. {
  28168. front: {
  28169. height: math.unit(6 + 4 / 12, "feet"),
  28170. weight: math.unit(250, "lb"),
  28171. name: "Front",
  28172. image: {
  28173. source: "./media/characters/remmyzilla/front.svg",
  28174. extra: 4033 / 3588,
  28175. bottom: 123 / 4156
  28176. }
  28177. },
  28178. back: {
  28179. height: math.unit(6 + 4 / 12, "feet"),
  28180. weight: math.unit(250, "lb"),
  28181. name: "Back",
  28182. image: {
  28183. source: "./media/characters/remmyzilla/back.svg",
  28184. extra: 2687 / 2555,
  28185. bottom: 48 / 2735
  28186. }
  28187. },
  28188. paw: {
  28189. height: math.unit(1.73, "feet"),
  28190. name: "Paw",
  28191. image: {
  28192. source: "./media/characters/remmyzilla/paw.svg"
  28193. }
  28194. },
  28195. maw: {
  28196. height: math.unit(1.73, "feet"),
  28197. name: "Maw",
  28198. image: {
  28199. source: "./media/characters/remmyzilla/maw.svg"
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(6 + 4 / 12, "feet")
  28207. },
  28208. {
  28209. name: "Minimacro",
  28210. height: math.unit(12 + 8 / 12, "feet")
  28211. },
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(640, "feet"),
  28215. default: true
  28216. },
  28217. {
  28218. name: "Megamacro",
  28219. height: math.unit(6400, "feet")
  28220. },
  28221. {
  28222. name: "Gigamacro",
  28223. height: math.unit(64000, "miles")
  28224. },
  28225. ]
  28226. ))
  28227. characterMakers.push(() => makeCharacter(
  28228. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28229. {
  28230. front: {
  28231. height: math.unit(2.5, "meters"),
  28232. weight: math.unit(300, "lb"),
  28233. name: "Front",
  28234. image: {
  28235. source: "./media/characters/lawrence/front.svg",
  28236. extra: 357 / 335,
  28237. bottom: 30 / 387
  28238. }
  28239. },
  28240. back: {
  28241. height: math.unit(2.5, "meters"),
  28242. weight: math.unit(300, "lb"),
  28243. name: "Back",
  28244. image: {
  28245. source: "./media/characters/lawrence/back.svg",
  28246. extra: 357 / 338,
  28247. bottom: 16 / 373
  28248. }
  28249. },
  28250. head: {
  28251. height: math.unit(0.9, "meter"),
  28252. name: "Head",
  28253. image: {
  28254. source: "./media/characters/lawrence/head.svg"
  28255. }
  28256. },
  28257. maw: {
  28258. height: math.unit(0.7, "meter"),
  28259. name: "Maw",
  28260. image: {
  28261. source: "./media/characters/lawrence/maw.svg"
  28262. }
  28263. },
  28264. footBottom: {
  28265. height: math.unit(0.5, "meter"),
  28266. name: "Foot (Bottom)",
  28267. image: {
  28268. source: "./media/characters/lawrence/foot-bottom.svg"
  28269. }
  28270. },
  28271. footTop: {
  28272. height: math.unit(0.5, "meter"),
  28273. name: "Foot (Top)",
  28274. image: {
  28275. source: "./media/characters/lawrence/foot-top.svg"
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(2.5, "meters"),
  28283. default: true
  28284. },
  28285. {
  28286. name: "Macro",
  28287. height: math.unit(95, "meters")
  28288. },
  28289. {
  28290. name: "Megamacro",
  28291. height: math.unit(150, "km")
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28297. {
  28298. front: {
  28299. height: math.unit(4.2, "meters"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/sydney/front.svg",
  28303. extra: 1323 / 1277,
  28304. bottom: 111 / 1434
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(4.2, "meters"),
  28312. default: true
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28318. {
  28319. back: {
  28320. height: math.unit(201, "feet"),
  28321. name: "Back",
  28322. image: {
  28323. source: "./media/characters/jessica/back.svg",
  28324. extra: 273 / 259,
  28325. bottom: 7 / 280
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(201, "feet"),
  28333. default: true
  28334. },
  28335. {
  28336. name: "Megamacro",
  28337. height: math.unit(8, "miles")
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28343. {
  28344. side: {
  28345. height: math.unit(320, "cm"),
  28346. name: "Side",
  28347. image: {
  28348. source: "./media/characters/victoria/side.svg",
  28349. extra: 778 / 346,
  28350. bottom: 56 / 834
  28351. }
  28352. },
  28353. maw: {
  28354. height: math.unit(5.9, "feet"),
  28355. name: "Maw",
  28356. image: {
  28357. source: "./media/characters/victoria/maw.svg"
  28358. }
  28359. },
  28360. },
  28361. [
  28362. {
  28363. name: "Normal",
  28364. height: math.unit(320, "cm"),
  28365. default: true
  28366. },
  28367. ]
  28368. ))
  28369. characterMakers.push(() => makeCharacter(
  28370. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28371. {
  28372. front: {
  28373. height: math.unit(5 + 6 / 12, "feet"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/cat/front.svg",
  28377. extra: 1374 / 1257,
  28378. bottom: 59 / 1433
  28379. }
  28380. },
  28381. back: {
  28382. height: math.unit(5 + 6 / 12, "feet"),
  28383. name: "Back",
  28384. image: {
  28385. source: "./media/characters/cat/back.svg",
  28386. extra: 1337 / 1226,
  28387. bottom: 34 / 1371
  28388. }
  28389. },
  28390. taur: {
  28391. height: math.unit(7, "feet"),
  28392. name: "Taur",
  28393. image: {
  28394. source: "./media/characters/cat/taur.svg",
  28395. extra: 1345 / 1231,
  28396. bottom: 66 / 1411
  28397. }
  28398. },
  28399. lucario: {
  28400. height: math.unit(4, "feet"),
  28401. name: "Lucario",
  28402. image: {
  28403. source: "./media/characters/cat/lucario.svg",
  28404. extra: 1470 / 1318,
  28405. bottom: 65 / 1535
  28406. }
  28407. },
  28408. megaLucario: {
  28409. height: math.unit(4, "feet"),
  28410. name: "Mega Lucario",
  28411. image: {
  28412. source: "./media/characters/cat/mega-lucario.svg",
  28413. extra: 1515 / 1319,
  28414. bottom: 63 / 1578
  28415. }
  28416. },
  28417. nickit: {
  28418. height: math.unit(2, "feet"),
  28419. name: "Nickit",
  28420. image: {
  28421. source: "./media/characters/cat/nickit.svg",
  28422. extra: 1980 / 1585,
  28423. bottom: 102 / 2082
  28424. }
  28425. },
  28426. lopunnyFront: {
  28427. height: math.unit(5, "feet"),
  28428. name: "Lopunny (Front)",
  28429. image: {
  28430. source: "./media/characters/cat/lopunny-front.svg",
  28431. extra: 1782 / 1469,
  28432. bottom: 38 / 1820
  28433. }
  28434. },
  28435. lopunnyBack: {
  28436. height: math.unit(5, "feet"),
  28437. name: "Lopunny (Back)",
  28438. image: {
  28439. source: "./media/characters/cat/lopunny-back.svg",
  28440. extra: 1660 / 1490,
  28441. bottom: 25 / 1685
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Really small",
  28448. height: math.unit(1, "nm")
  28449. },
  28450. {
  28451. name: "Micro",
  28452. height: math.unit(5, "inches")
  28453. },
  28454. {
  28455. name: "Normal",
  28456. height: math.unit(5 + 6 / 12, "feet"),
  28457. default: true
  28458. },
  28459. {
  28460. name: "Macro",
  28461. height: math.unit(50, "feet")
  28462. },
  28463. {
  28464. name: "Macro+",
  28465. height: math.unit(150, "feet")
  28466. },
  28467. {
  28468. name: "Megamacro",
  28469. height: math.unit(100, "miles")
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(63.4, "meters"),
  28478. weight: math.unit(3.28349e+6, "kilograms"),
  28479. name: "Front",
  28480. image: {
  28481. source: "./media/characters/kirina-violet/front.svg",
  28482. extra: 2812 / 2725,
  28483. bottom: 0 / 2812
  28484. }
  28485. },
  28486. back: {
  28487. height: math.unit(63.4, "meters"),
  28488. weight: math.unit(3.28349e+6, "kilograms"),
  28489. name: "Back",
  28490. image: {
  28491. source: "./media/characters/kirina-violet/back.svg",
  28492. extra: 2812 / 2725,
  28493. bottom: 0 / 2812
  28494. }
  28495. },
  28496. mouth: {
  28497. height: math.unit(4.35, "meters"),
  28498. name: "Mouth",
  28499. image: {
  28500. source: "./media/characters/kirina-violet/mouth.svg"
  28501. }
  28502. },
  28503. paw: {
  28504. height: math.unit(5.6, "meters"),
  28505. name: "Paw",
  28506. image: {
  28507. source: "./media/characters/kirina-violet/paw.svg"
  28508. }
  28509. },
  28510. tail: {
  28511. height: math.unit(18, "meters"),
  28512. name: "Tail",
  28513. image: {
  28514. source: "./media/characters/kirina-violet/tail.svg"
  28515. }
  28516. },
  28517. },
  28518. [
  28519. {
  28520. name: "Macro",
  28521. height: math.unit(63.4, "meters"),
  28522. default: true
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28528. {
  28529. front: {
  28530. height: math.unit(75, "feet"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/cat-gigachu/front.svg",
  28534. extra: 1239/1027,
  28535. bottom: 32/1271
  28536. }
  28537. },
  28538. back: {
  28539. height: math.unit(75, "feet"),
  28540. name: "Back",
  28541. image: {
  28542. source: "./media/characters/cat-gigachu/back.svg",
  28543. extra: 1229/1030,
  28544. bottom: 9/1238
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Dynamax",
  28551. height: math.unit(75, "feet"),
  28552. default: true
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(6, "feet"),
  28561. weight: math.unit(150, "lb"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/sfaiyan/front.svg",
  28565. extra: 999 / 978,
  28566. bottom: 5 / 1004
  28567. }
  28568. },
  28569. },
  28570. [
  28571. {
  28572. name: "Normal",
  28573. height: math.unit(1.82, "meters")
  28574. },
  28575. {
  28576. name: "Giant",
  28577. height: math.unit(2.27, "km"),
  28578. default: true
  28579. },
  28580. ]
  28581. ))
  28582. characterMakers.push(() => makeCharacter(
  28583. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28584. {
  28585. front: {
  28586. height: math.unit(179, "cm"),
  28587. weight: math.unit(100, "kg"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/raunehkeli/front.svg",
  28591. extra: 1934 / 1926,
  28592. bottom: 0 / 1934
  28593. }
  28594. },
  28595. },
  28596. [
  28597. {
  28598. name: "Normal",
  28599. height: math.unit(179, "cm")
  28600. },
  28601. {
  28602. name: "Maximum",
  28603. height: math.unit(575, "meters"),
  28604. default: true
  28605. },
  28606. ]
  28607. ))
  28608. characterMakers.push(() => makeCharacter(
  28609. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28610. {
  28611. front: {
  28612. height: math.unit(6, "feet"),
  28613. weight: math.unit(150, "lb"),
  28614. name: "Front",
  28615. image: {
  28616. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28617. extra: 2625 / 2518,
  28618. bottom: 60 / 2685
  28619. }
  28620. },
  28621. },
  28622. [
  28623. {
  28624. name: "Normal",
  28625. height: math.unit(6 + 2 / 12, "feet")
  28626. },
  28627. {
  28628. name: "Macro",
  28629. height: math.unit(1180, "feet"),
  28630. default: true
  28631. },
  28632. ]
  28633. ))
  28634. characterMakers.push(() => makeCharacter(
  28635. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28636. {
  28637. front: {
  28638. height: math.unit(5 + 6 / 12, "feet"),
  28639. weight: math.unit(108, "lb"),
  28640. name: "Front",
  28641. image: {
  28642. source: "./media/characters/lilith-zott/front.svg",
  28643. extra: 2510 / 2238,
  28644. bottom: 100 / 2610
  28645. }
  28646. },
  28647. frontDressed: {
  28648. height: math.unit(5 + 6 / 12, "feet"),
  28649. weight: math.unit(108, "lb"),
  28650. name: "Front (Dressed)",
  28651. image: {
  28652. source: "./media/characters/lilith-zott/front-dressed.svg",
  28653. extra: 2510 / 2238,
  28654. bottom: 100 / 2610
  28655. }
  28656. },
  28657. },
  28658. [
  28659. {
  28660. name: "Normal",
  28661. height: math.unit(5 + 6 / 12, "feet")
  28662. },
  28663. {
  28664. name: "Macro",
  28665. height: math.unit(1030, "feet"),
  28666. default: true
  28667. },
  28668. ]
  28669. ))
  28670. characterMakers.push(() => makeCharacter(
  28671. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28672. {
  28673. front: {
  28674. height: math.unit(6, "feet"),
  28675. weight: math.unit(150, "lb"),
  28676. name: "Front",
  28677. image: {
  28678. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28679. extra: 2567 / 2435,
  28680. bottom: 39 / 2606
  28681. }
  28682. },
  28683. frontSuper: {
  28684. height: math.unit(6, "feet"),
  28685. name: "Front (Super)",
  28686. image: {
  28687. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28688. extra: 2567 / 2435,
  28689. bottom: 39 / 2606
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(5 + 10 / 12, "feet")
  28697. },
  28698. {
  28699. name: "Macro",
  28700. height: math.unit(1100, "feet"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28707. {
  28708. front: {
  28709. height: math.unit(100, "miles"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/sona/front.svg",
  28713. extra: 2433 / 2201,
  28714. bottom: 53 / 2486
  28715. }
  28716. },
  28717. foot: {
  28718. height: math.unit(16.1, "miles"),
  28719. name: "Foot",
  28720. image: {
  28721. source: "./media/characters/sona/foot.svg"
  28722. }
  28723. },
  28724. },
  28725. [
  28726. {
  28727. name: "Macro",
  28728. height: math.unit(100, "miles"),
  28729. default: true
  28730. },
  28731. ]
  28732. ))
  28733. characterMakers.push(() => makeCharacter(
  28734. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28735. {
  28736. front: {
  28737. height: math.unit(6, "feet"),
  28738. weight: math.unit(150, "lb"),
  28739. name: "Front",
  28740. image: {
  28741. source: "./media/characters/bailey/front.svg",
  28742. extra: 1778 / 1724,
  28743. bottom: 30 / 1808
  28744. }
  28745. },
  28746. },
  28747. [
  28748. {
  28749. name: "Micro",
  28750. height: math.unit(4, "inches")
  28751. },
  28752. {
  28753. name: "Normal",
  28754. height: math.unit(5 + 5 / 12, "feet"),
  28755. default: true
  28756. },
  28757. {
  28758. name: "Macro",
  28759. height: math.unit(250, "feet")
  28760. },
  28761. {
  28762. name: "Megamacro",
  28763. height: math.unit(100, "miles")
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(5 + 2 / 12, "feet"),
  28772. weight: math.unit(120, "lb"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/snaps/front.svg",
  28776. extra: 2370 / 2177,
  28777. bottom: 48 / 2418
  28778. }
  28779. },
  28780. back: {
  28781. height: math.unit(5 + 2 / 12, "feet"),
  28782. weight: math.unit(120, "lb"),
  28783. name: "Back",
  28784. image: {
  28785. source: "./media/characters/snaps/back.svg",
  28786. extra: 2408 / 2258,
  28787. bottom: 15 / 2423
  28788. }
  28789. },
  28790. },
  28791. [
  28792. {
  28793. name: "Micro",
  28794. height: math.unit(9, "inches")
  28795. },
  28796. {
  28797. name: "Normal",
  28798. height: math.unit(5 + 2 / 12, "feet"),
  28799. default: true
  28800. },
  28801. {
  28802. name: "Mini Macro",
  28803. height: math.unit(10, "feet")
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28809. {
  28810. front: {
  28811. height: math.unit(1.8, "meters"),
  28812. weight: math.unit(85, "kg"),
  28813. name: "Front",
  28814. image: {
  28815. source: "./media/characters/azteck/front.svg",
  28816. extra: 2815 / 2625,
  28817. bottom: 89 / 2904
  28818. }
  28819. },
  28820. back: {
  28821. height: math.unit(1.8, "meters"),
  28822. weight: math.unit(85, "kg"),
  28823. name: "Back",
  28824. image: {
  28825. source: "./media/characters/azteck/back.svg",
  28826. extra: 2856 / 2648,
  28827. bottom: 85 / 2941
  28828. }
  28829. },
  28830. frontDressed: {
  28831. height: math.unit(1.8, "meters"),
  28832. weight: math.unit(85, "kg"),
  28833. name: "Front (Dressed)",
  28834. image: {
  28835. source: "./media/characters/azteck/front-dressed.svg",
  28836. extra: 2147 / 2003,
  28837. bottom: 68 / 2215
  28838. }
  28839. },
  28840. head: {
  28841. height: math.unit(0.47, "meters"),
  28842. weight: math.unit(85, "kg"),
  28843. name: "Head",
  28844. image: {
  28845. source: "./media/characters/azteck/head.svg"
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Bite sized",
  28852. height: math.unit(16, "cm")
  28853. },
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(1.8, "meters"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(6, "feet"),
  28866. weight: math.unit(150, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/pidge/front.svg",
  28870. extra: 620 / 588,
  28871. bottom: 9 / 629
  28872. }
  28873. },
  28874. back: {
  28875. height: math.unit(6, "feet"),
  28876. weight: math.unit(150, "lb"),
  28877. name: "Back",
  28878. image: {
  28879. source: "./media/characters/pidge/back.svg",
  28880. extra: 620 / 588,
  28881. bottom: 9 / 629
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Macro",
  28888. height: math.unit(1, "mile"),
  28889. default: true
  28890. },
  28891. ]
  28892. ))
  28893. characterMakers.push(() => makeCharacter(
  28894. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28895. {
  28896. front: {
  28897. height: math.unit(6, "feet"),
  28898. weight: math.unit(150, "lb"),
  28899. name: "Front",
  28900. image: {
  28901. source: "./media/characters/en/front.svg",
  28902. extra: 1697 / 1563,
  28903. bottom: 103 / 1800
  28904. }
  28905. },
  28906. back: {
  28907. height: math.unit(6, "feet"),
  28908. weight: math.unit(150, "lb"),
  28909. name: "Back",
  28910. image: {
  28911. source: "./media/characters/en/back.svg",
  28912. extra: 1700 / 1570,
  28913. bottom: 51 / 1751
  28914. }
  28915. },
  28916. frontDressed: {
  28917. height: math.unit(6, "feet"),
  28918. weight: math.unit(150, "lb"),
  28919. name: "Front (Dressed)",
  28920. image: {
  28921. source: "./media/characters/en/front-dressed.svg",
  28922. extra: 1697 / 1563,
  28923. bottom: 103 / 1800
  28924. }
  28925. },
  28926. backDressed: {
  28927. height: math.unit(6, "feet"),
  28928. weight: math.unit(150, "lb"),
  28929. name: "Back (Dressed)",
  28930. image: {
  28931. source: "./media/characters/en/back-dressed.svg",
  28932. extra: 1700 / 1570,
  28933. bottom: 51 / 1751
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Macro",
  28940. height: math.unit(210, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(6, "feet"),
  28950. weight: math.unit(150, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/haze-orris/front.svg",
  28954. extra: 3975 / 3525,
  28955. bottom: 137 / 4112
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Micro",
  28962. height: math.unit(150, "mm"),
  28963. default: true
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(6, "feet"),
  28972. weight: math.unit(150, "lb"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/casselene-yaro/front.svg",
  28976. extra: 4721 / 4541,
  28977. bottom: 82 / 4803
  28978. }
  28979. },
  28980. back: {
  28981. height: math.unit(6, "feet"),
  28982. weight: math.unit(150, "lb"),
  28983. name: "Back",
  28984. image: {
  28985. source: "./media/characters/casselene-yaro/back.svg",
  28986. extra: 4569 / 4377,
  28987. bottom: 69 / 4638
  28988. }
  28989. },
  28990. frontDressed: {
  28991. height: math.unit(6, "feet"),
  28992. weight: math.unit(150, "lb"),
  28993. name: "Front-dressed",
  28994. image: {
  28995. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28996. extra: 4721 / 4541,
  28997. bottom: 82 / 4803
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Macro",
  29004. height: math.unit(190, "feet"),
  29005. default: true
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29011. {
  29012. front: {
  29013. height: math.unit(6, "feet"),
  29014. weight: math.unit(150, "lb"),
  29015. name: "Front",
  29016. image: {
  29017. source: "./media/characters/myra-rue-delore/front.svg",
  29018. extra: 1340 / 1308,
  29019. bottom: 67 / 1407
  29020. }
  29021. },
  29022. back: {
  29023. height: math.unit(6, "feet"),
  29024. weight: math.unit(150, "lb"),
  29025. name: "Back",
  29026. image: {
  29027. source: "./media/characters/myra-rue-delore/back.svg",
  29028. extra: 1341 / 1310,
  29029. bottom: 40 / 1381
  29030. }
  29031. },
  29032. frontDressed: {
  29033. height: math.unit(6, "feet"),
  29034. weight: math.unit(150, "lb"),
  29035. name: "Front (Dressed)",
  29036. image: {
  29037. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29038. extra: 1340 / 1308,
  29039. bottom: 67 / 1407
  29040. }
  29041. },
  29042. },
  29043. [
  29044. {
  29045. name: "Macro",
  29046. height: math.unit(150, "feet"),
  29047. default: true
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(10, "feet"),
  29056. weight: math.unit(15015, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/fem!plat/front.svg",
  29060. extra: 2799 / 2604,
  29061. bottom: 149 / 2948
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Normal",
  29068. height: math.unit(10, "feet"),
  29069. default: true
  29070. },
  29071. {
  29072. name: "Macro",
  29073. height: math.unit(100, "feet")
  29074. },
  29075. {
  29076. name: "Megamacro",
  29077. height: math.unit(1000, "feet")
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(15 + 5 / 12, "feet"),
  29086. weight: math.unit(4600, "lb"),
  29087. name: "Front",
  29088. image: {
  29089. source: "./media/characters/neapolitan-ananassa/front.svg",
  29090. extra: 2903 / 2736,
  29091. bottom: 0 / 2903
  29092. }
  29093. },
  29094. side: {
  29095. height: math.unit(15 + 5 / 12, "feet"),
  29096. weight: math.unit(4600, "lb"),
  29097. name: "Side",
  29098. image: {
  29099. source: "./media/characters/neapolitan-ananassa/side.svg",
  29100. extra: 2925 / 2719,
  29101. bottom: 0 / 2925
  29102. }
  29103. },
  29104. back: {
  29105. height: math.unit(15 + 5 / 12, "feet"),
  29106. weight: math.unit(4600, "lb"),
  29107. name: "Back",
  29108. image: {
  29109. source: "./media/characters/neapolitan-ananassa/back.svg",
  29110. extra: 2903 / 2736,
  29111. bottom: 0 / 2903
  29112. }
  29113. },
  29114. },
  29115. [
  29116. {
  29117. name: "Normal",
  29118. height: math.unit(15 + 5 / 12, "feet"),
  29119. default: true
  29120. },
  29121. {
  29122. name: "Post-Millenium",
  29123. height: math.unit(35 + 5 / 12, "feet")
  29124. },
  29125. {
  29126. name: "Post-Era",
  29127. height: math.unit(450 + 5 / 12, "feet")
  29128. },
  29129. ]
  29130. ))
  29131. characterMakers.push(() => makeCharacter(
  29132. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29133. {
  29134. front: {
  29135. height: math.unit(300, "meters"),
  29136. weight: math.unit(125000, "tonnes"),
  29137. name: "Front",
  29138. image: {
  29139. source: "./media/characters/pazuzu/front.svg",
  29140. extra: 877 / 794,
  29141. bottom: 47 / 924
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Macro",
  29148. height: math.unit(300, "meters"),
  29149. default: true
  29150. },
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29155. {
  29156. side: {
  29157. height: math.unit(10 + 7 / 12, "feet"),
  29158. weight: math.unit(2.5, "tons"),
  29159. name: "Side",
  29160. image: {
  29161. source: "./media/characters/aasha/side.svg",
  29162. extra: 1345 / 1245,
  29163. bottom: 111 / 1456
  29164. }
  29165. },
  29166. back: {
  29167. height: math.unit(10 + 7 / 12, "feet"),
  29168. weight: math.unit(2.5, "tons"),
  29169. name: "Back",
  29170. image: {
  29171. source: "./media/characters/aasha/back.svg",
  29172. extra: 1133 / 1057,
  29173. bottom: 257 / 1390
  29174. }
  29175. },
  29176. },
  29177. [
  29178. {
  29179. name: "Normal",
  29180. height: math.unit(10 + 7 / 12, "feet"),
  29181. default: true
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(6 + 3 / 12, "feet"),
  29190. name: "Front",
  29191. image: {
  29192. source: "./media/characters/nevan/front.svg",
  29193. extra: 704 / 704,
  29194. bottom: 28 / 732
  29195. }
  29196. },
  29197. back: {
  29198. height: math.unit(6 + 3 / 12, "feet"),
  29199. name: "Back",
  29200. image: {
  29201. source: "./media/characters/nevan/back.svg",
  29202. extra: 714 / 714,
  29203. bottom: 21 / 735
  29204. }
  29205. },
  29206. frontFlaccid: {
  29207. height: math.unit(6 + 3 / 12, "feet"),
  29208. name: "Front (Flaccid)",
  29209. image: {
  29210. source: "./media/characters/nevan/front-flaccid.svg",
  29211. extra: 704 / 704,
  29212. bottom: 28 / 732
  29213. }
  29214. },
  29215. frontErect: {
  29216. height: math.unit(6 + 3 / 12, "feet"),
  29217. name: "Front (Erect)",
  29218. image: {
  29219. source: "./media/characters/nevan/front-erect.svg",
  29220. extra: 704 / 704,
  29221. bottom: 28 / 732
  29222. }
  29223. },
  29224. backFlaccid: {
  29225. height: math.unit(6 + 3 / 12, "feet"),
  29226. name: "Back (Flaccid)",
  29227. image: {
  29228. source: "./media/characters/nevan/back-flaccid.svg",
  29229. extra: 714 / 714,
  29230. bottom: 21 / 735
  29231. }
  29232. },
  29233. },
  29234. [
  29235. {
  29236. name: "Normal",
  29237. height: math.unit(6 + 3 / 12, "feet"),
  29238. default: true
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29244. {
  29245. front: {
  29246. height: math.unit(4, "feet"),
  29247. name: "Front",
  29248. image: {
  29249. source: "./media/characters/arhan/front.svg",
  29250. extra: 3368 / 3133,
  29251. bottom: 0 / 3368
  29252. }
  29253. },
  29254. side: {
  29255. height: math.unit(4, "feet"),
  29256. name: "Side",
  29257. image: {
  29258. source: "./media/characters/arhan/side.svg",
  29259. extra: 3347 / 3105,
  29260. bottom: 0 / 3347
  29261. }
  29262. },
  29263. tongue: {
  29264. height: math.unit(1.42, "feet"),
  29265. name: "Tongue",
  29266. image: {
  29267. source: "./media/characters/arhan/tongue.svg"
  29268. }
  29269. },
  29270. head: {
  29271. height: math.unit(0.85, "feet"),
  29272. name: "Head",
  29273. image: {
  29274. source: "./media/characters/arhan/head.svg"
  29275. }
  29276. },
  29277. },
  29278. [
  29279. {
  29280. name: "Normal",
  29281. height: math.unit(4, "feet"),
  29282. default: true
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29288. {
  29289. front: {
  29290. height: math.unit(5 + 7.5 / 12, "feet"),
  29291. weight: math.unit(120, "lb"),
  29292. name: "Front",
  29293. image: {
  29294. source: "./media/characters/digi-duncan/front.svg",
  29295. extra: 330 / 326,
  29296. bottom: 16 / 346
  29297. }
  29298. },
  29299. side: {
  29300. height: math.unit(5 + 7.5 / 12, "feet"),
  29301. weight: math.unit(120, "lb"),
  29302. name: "Side",
  29303. image: {
  29304. source: "./media/characters/digi-duncan/side.svg",
  29305. extra: 341 / 337,
  29306. bottom: 1 / 342
  29307. }
  29308. },
  29309. back: {
  29310. height: math.unit(5 + 7.5 / 12, "feet"),
  29311. weight: math.unit(120, "lb"),
  29312. name: "Back",
  29313. image: {
  29314. source: "./media/characters/digi-duncan/back.svg",
  29315. extra: 330 / 326,
  29316. bottom: 12 / 342
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Speck",
  29323. height: math.unit(0.25, "mm")
  29324. },
  29325. {
  29326. name: "Micro",
  29327. height: math.unit(5, "mm")
  29328. },
  29329. {
  29330. name: "Tiny",
  29331. height: math.unit(0.5, "inches"),
  29332. default: true
  29333. },
  29334. {
  29335. name: "Human",
  29336. height: math.unit(5 + 7.5 / 12, "feet")
  29337. },
  29338. {
  29339. name: "Minigiant",
  29340. height: math.unit(8 + 5.25, "feet")
  29341. },
  29342. {
  29343. name: "Giant",
  29344. height: math.unit(2000, "feet")
  29345. },
  29346. {
  29347. name: "Mega",
  29348. height: math.unit(371.1, "miles")
  29349. },
  29350. ]
  29351. ))
  29352. characterMakers.push(() => makeCharacter(
  29353. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29354. {
  29355. front: {
  29356. height: math.unit(2, "meters"),
  29357. weight: math.unit(350, "kg"),
  29358. name: "Front",
  29359. image: {
  29360. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29361. extra: 898 / 838,
  29362. bottom: 9 / 907
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Micro",
  29369. height: math.unit(8, "meters")
  29370. },
  29371. {
  29372. name: "Normal",
  29373. height: math.unit(50, "meters"),
  29374. default: true
  29375. },
  29376. {
  29377. name: "Macro",
  29378. height: math.unit(500, "meters")
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(6 + 6 / 12, "feet"),
  29387. name: "Front",
  29388. image: {
  29389. source: "./media/characters/khardesh/front.svg",
  29390. extra: 888 / 797,
  29391. bottom: 25 / 913
  29392. }
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Normal",
  29398. height: math.unit(6 + 6 / 12, "feet"),
  29399. default: true
  29400. },
  29401. {
  29402. name: "Normal+",
  29403. height: math.unit(4, "meters")
  29404. },
  29405. {
  29406. name: "Macro",
  29407. height: math.unit(50, "meters")
  29408. },
  29409. {
  29410. name: "Macro+",
  29411. height: math.unit(100, "meters")
  29412. },
  29413. {
  29414. name: "Megamacro",
  29415. height: math.unit(20, "km")
  29416. },
  29417. ]
  29418. ))
  29419. characterMakers.push(() => makeCharacter(
  29420. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29421. {
  29422. front: {
  29423. height: math.unit(6, "feet"),
  29424. weight: math.unit(150, "lb"),
  29425. name: "Front",
  29426. image: {
  29427. source: "./media/characters/kosho/front.svg",
  29428. extra: 1847 / 1847,
  29429. bottom: 86 / 1933
  29430. }
  29431. },
  29432. },
  29433. [
  29434. {
  29435. name: "Second-stage micro",
  29436. height: math.unit(0.5, "inches")
  29437. },
  29438. {
  29439. name: "First-stage micro",
  29440. height: math.unit(6, "inches")
  29441. },
  29442. {
  29443. name: "Normal",
  29444. height: math.unit(6, "feet"),
  29445. default: true
  29446. },
  29447. {
  29448. name: "First-stage macro",
  29449. height: math.unit(72, "feet")
  29450. },
  29451. {
  29452. name: "Second-stage macro",
  29453. height: math.unit(864, "feet")
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29459. {
  29460. normal: {
  29461. height: math.unit(4 + 6 / 12, "feet"),
  29462. name: "Normal",
  29463. image: {
  29464. source: "./media/characters/hydra/normal.svg",
  29465. extra: 2833 / 2634,
  29466. bottom: 68 / 2901
  29467. }
  29468. },
  29469. smol: {
  29470. height: math.unit(0.705, "inches"),
  29471. name: "Smol",
  29472. image: {
  29473. source: "./media/characters/hydra/smol.svg",
  29474. extra: 2715 / 2540,
  29475. bottom: 0 / 2715
  29476. }
  29477. },
  29478. },
  29479. [
  29480. {
  29481. name: "Normal",
  29482. height: math.unit(4 + 6 / 12, "feet"),
  29483. default: true
  29484. }
  29485. ]
  29486. ))
  29487. characterMakers.push(() => makeCharacter(
  29488. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29489. {
  29490. front: {
  29491. height: math.unit(0.6, "cm"),
  29492. name: "Front",
  29493. image: {
  29494. source: "./media/characters/daz/front.svg",
  29495. extra: 1682 / 1164,
  29496. bottom: 42 / 1724
  29497. }
  29498. },
  29499. },
  29500. [
  29501. {
  29502. name: "Normal",
  29503. height: math.unit(0.6, "cm"),
  29504. default: true
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29510. {
  29511. front: {
  29512. height: math.unit(6, "feet"),
  29513. weight: math.unit(235, "lb"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/theo-pangolin/front.svg",
  29517. extra: 1996 / 1969,
  29518. bottom: 115 / 2111
  29519. }
  29520. },
  29521. back: {
  29522. height: math.unit(6, "feet"),
  29523. weight: math.unit(235, "lb"),
  29524. name: "Back",
  29525. image: {
  29526. source: "./media/characters/theo-pangolin/back.svg",
  29527. extra: 1979 / 1979,
  29528. bottom: 40 / 2019
  29529. }
  29530. },
  29531. feral: {
  29532. height: math.unit(2, "feet"),
  29533. weight: math.unit(30, "lb"),
  29534. name: "Feral",
  29535. image: {
  29536. source: "./media/characters/theo-pangolin/feral.svg",
  29537. extra: 803 / 791,
  29538. bottom: 181 / 984
  29539. }
  29540. },
  29541. footFive: {
  29542. height: math.unit(1.43, "feet"),
  29543. name: "Foot (Five Toes)",
  29544. image: {
  29545. source: "./media/characters/theo-pangolin/foot-five.svg"
  29546. }
  29547. },
  29548. footFour: {
  29549. height: math.unit(1.43, "feet"),
  29550. name: "Foot (Four Toes)",
  29551. image: {
  29552. source: "./media/characters/theo-pangolin/foot-four.svg"
  29553. }
  29554. },
  29555. handFour: {
  29556. height: math.unit(0.81, "feet"),
  29557. name: "Hand (Four Fingers)",
  29558. image: {
  29559. source: "./media/characters/theo-pangolin/hand-four.svg"
  29560. }
  29561. },
  29562. handThree: {
  29563. height: math.unit(0.81, "feet"),
  29564. name: "Hand (Three Fingers)",
  29565. image: {
  29566. source: "./media/characters/theo-pangolin/hand-three.svg"
  29567. }
  29568. },
  29569. headFront: {
  29570. height: math.unit(1.37, "feet"),
  29571. name: "Head (Front)",
  29572. image: {
  29573. source: "./media/characters/theo-pangolin/head-front.svg"
  29574. }
  29575. },
  29576. headSide: {
  29577. height: math.unit(1.43, "feet"),
  29578. name: "Head (Side)",
  29579. image: {
  29580. source: "./media/characters/theo-pangolin/head-side.svg"
  29581. }
  29582. },
  29583. tongue: {
  29584. height: math.unit(2.29, "feet"),
  29585. name: "Tongue",
  29586. image: {
  29587. source: "./media/characters/theo-pangolin/tongue.svg"
  29588. }
  29589. },
  29590. },
  29591. [
  29592. {
  29593. name: "Normal",
  29594. height: math.unit(6, "feet")
  29595. },
  29596. {
  29597. name: "Macro",
  29598. height: math.unit(400, "feet"),
  29599. default: true
  29600. },
  29601. ]
  29602. ))
  29603. characterMakers.push(() => makeCharacter(
  29604. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29605. {
  29606. front: {
  29607. height: math.unit(6, "inches"),
  29608. weight: math.unit(0.036, "kg"),
  29609. name: "Front",
  29610. image: {
  29611. source: "./media/characters/renée/front.svg",
  29612. extra: 900 / 886,
  29613. bottom: 8 / 908
  29614. }
  29615. },
  29616. },
  29617. [
  29618. {
  29619. name: "Nano",
  29620. height: math.unit(1, "nm")
  29621. },
  29622. {
  29623. name: "Micro",
  29624. height: math.unit(1, "mm")
  29625. },
  29626. {
  29627. name: "Normal",
  29628. height: math.unit(6, "inches")
  29629. },
  29630. {
  29631. name: "Macro",
  29632. height: math.unit(2000, "feet"),
  29633. default: true
  29634. },
  29635. {
  29636. name: "Megamacro",
  29637. height: math.unit(2, "km")
  29638. },
  29639. {
  29640. name: "Gigamacro",
  29641. height: math.unit(2000, "km")
  29642. },
  29643. {
  29644. name: "Teramacro",
  29645. height: math.unit(250000, "km")
  29646. },
  29647. ]
  29648. ))
  29649. characterMakers.push(() => makeCharacter(
  29650. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29651. {
  29652. front: {
  29653. height: math.unit(4, "meters"),
  29654. weight: math.unit(150, "kg"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/caledvwlch/front.svg",
  29658. extra: 1760 / 1551,
  29659. bottom: 28 / 1788
  29660. }
  29661. },
  29662. side: {
  29663. height: math.unit(4, "meters"),
  29664. weight: math.unit(150, "kg"),
  29665. name: "Side",
  29666. image: {
  29667. source: "./media/characters/caledvwlch/side.svg",
  29668. extra: 1605 / 1536,
  29669. bottom: 31 / 1636
  29670. }
  29671. },
  29672. back: {
  29673. height: math.unit(4, "meters"),
  29674. weight: math.unit(150, "kg"),
  29675. name: "Back",
  29676. image: {
  29677. source: "./media/characters/caledvwlch/back.svg",
  29678. extra: 1635 / 1565,
  29679. bottom: 27 / 1662
  29680. }
  29681. },
  29682. },
  29683. [
  29684. {
  29685. name: "\"Incognito\"",
  29686. height: math.unit(4, "meters")
  29687. },
  29688. {
  29689. name: "Small rampage",
  29690. height: math.unit(600, "meters")
  29691. },
  29692. {
  29693. name: "Mega",
  29694. height: math.unit(30, "km")
  29695. },
  29696. {
  29697. name: "Home-size",
  29698. height: math.unit(50, "km"),
  29699. default: true
  29700. },
  29701. {
  29702. name: "Giga",
  29703. height: math.unit(300, "km")
  29704. },
  29705. {
  29706. name: "Lounging",
  29707. height: math.unit(11000, "km")
  29708. },
  29709. {
  29710. name: "Planet snacking",
  29711. height: math.unit(2000000, "km")
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29717. {
  29718. front: {
  29719. height: math.unit(6, "feet"),
  29720. weight: math.unit(215, "lb"),
  29721. name: "Front",
  29722. image: {
  29723. source: "./media/characters/sapphire-svell/front.svg",
  29724. extra: 495 / 455,
  29725. bottom: 20 / 515
  29726. }
  29727. },
  29728. back: {
  29729. height: math.unit(6, "feet"),
  29730. weight: math.unit(216, "lb"),
  29731. name: "Back",
  29732. image: {
  29733. source: "./media/characters/sapphire-svell/back.svg",
  29734. extra: 497 / 477,
  29735. bottom: 7 / 504
  29736. }
  29737. },
  29738. maw: {
  29739. height: math.unit(1.57, "feet"),
  29740. name: "Maw",
  29741. image: {
  29742. source: "./media/characters/sapphire-svell/maw.svg"
  29743. }
  29744. },
  29745. foot: {
  29746. height: math.unit(1.07, "feet"),
  29747. name: "Foot",
  29748. image: {
  29749. source: "./media/characters/sapphire-svell/foot.svg"
  29750. }
  29751. },
  29752. toering: {
  29753. height: math.unit(1.7, "inch"),
  29754. name: "Toering",
  29755. image: {
  29756. source: "./media/characters/sapphire-svell/toering.svg"
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(300, "feet"),
  29764. default: true
  29765. },
  29766. {
  29767. name: "Augmented",
  29768. height: math.unit(1250, "feet")
  29769. },
  29770. {
  29771. name: "Unleashed",
  29772. height: math.unit(3000, "feet")
  29773. },
  29774. ]
  29775. ))
  29776. characterMakers.push(() => makeCharacter(
  29777. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29778. {
  29779. side: {
  29780. height: math.unit(2 + 3 / 12, "feet"),
  29781. weight: math.unit(110, "lb"),
  29782. name: "Side",
  29783. image: {
  29784. source: "./media/characters/glitch-flux/side.svg",
  29785. extra: 997 / 805,
  29786. bottom: 20 / 1017
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Normal",
  29793. height: math.unit(2 + 3 / 12, "feet"),
  29794. default: true
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(4, "meters"),
  29803. name: "Front",
  29804. image: {
  29805. source: "./media/characters/mid/front.svg",
  29806. extra: 507 / 476,
  29807. bottom: 17 / 524
  29808. }
  29809. },
  29810. back: {
  29811. height: math.unit(4, "meters"),
  29812. name: "Back",
  29813. image: {
  29814. source: "./media/characters/mid/back.svg",
  29815. extra: 519 / 487,
  29816. bottom: 7 / 526
  29817. }
  29818. },
  29819. stuck: {
  29820. height: math.unit(2.2, "meters"),
  29821. name: "Stuck",
  29822. image: {
  29823. source: "./media/characters/mid/stuck.svg",
  29824. extra: 1951 / 1869,
  29825. bottom: 88 / 2039
  29826. }
  29827. }
  29828. },
  29829. [
  29830. {
  29831. name: "Normal",
  29832. height: math.unit(4, "meters"),
  29833. default: true
  29834. },
  29835. {
  29836. name: "Big",
  29837. height: math.unit(10, "meters")
  29838. },
  29839. {
  29840. name: "Macro",
  29841. height: math.unit(800, "meters")
  29842. },
  29843. {
  29844. name: "Megamacro",
  29845. height: math.unit(100, "km")
  29846. },
  29847. {
  29848. name: "Overgrown",
  29849. height: math.unit(1, "parsec")
  29850. },
  29851. ]
  29852. ))
  29853. characterMakers.push(() => makeCharacter(
  29854. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29855. {
  29856. front: {
  29857. height: math.unit(2.5, "meters"),
  29858. weight: math.unit(225, "kg"),
  29859. name: "Front",
  29860. image: {
  29861. source: "./media/characters/iris/front.svg",
  29862. extra: 3348 / 3251,
  29863. bottom: 205 / 3553
  29864. }
  29865. },
  29866. maw: {
  29867. height: math.unit(0.56, "meter"),
  29868. name: "Maw",
  29869. image: {
  29870. source: "./media/characters/iris/maw.svg"
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Mewter cat",
  29877. height: math.unit(1.2, "meters")
  29878. },
  29879. {
  29880. name: "Minimacro",
  29881. height: math.unit(2.5, "meters"),
  29882. default: true
  29883. },
  29884. {
  29885. name: "Macro",
  29886. height: math.unit(180, "meters")
  29887. },
  29888. {
  29889. name: "Megamacro",
  29890. height: math.unit(2746, "meters")
  29891. },
  29892. ]
  29893. ))
  29894. characterMakers.push(() => makeCharacter(
  29895. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29896. {
  29897. front: {
  29898. height: math.unit(6, "feet"),
  29899. weight: math.unit(135, "lb"),
  29900. name: "Front",
  29901. image: {
  29902. source: "./media/characters/axel/front.svg",
  29903. extra: 908 / 908,
  29904. bottom: 58 / 966
  29905. }
  29906. },
  29907. side: {
  29908. height: math.unit(6, "feet"),
  29909. weight: math.unit(135, "lb"),
  29910. name: "Side",
  29911. image: {
  29912. source: "./media/characters/axel/side.svg",
  29913. extra: 958 / 958,
  29914. bottom: 11 / 969
  29915. }
  29916. },
  29917. back: {
  29918. height: math.unit(6, "feet"),
  29919. weight: math.unit(135, "lb"),
  29920. name: "Back",
  29921. image: {
  29922. source: "./media/characters/axel/back.svg",
  29923. extra: 887 / 887,
  29924. bottom: 34 / 921
  29925. }
  29926. },
  29927. head: {
  29928. height: math.unit(1.07, "feet"),
  29929. name: "Head",
  29930. image: {
  29931. source: "./media/characters/axel/head.svg"
  29932. }
  29933. },
  29934. beak: {
  29935. height: math.unit(1.4, "feet"),
  29936. name: "Beak",
  29937. image: {
  29938. source: "./media/characters/axel/beak.svg"
  29939. }
  29940. },
  29941. beakSide: {
  29942. height: math.unit(1.4, "feet"),
  29943. name: "Beak Side",
  29944. image: {
  29945. source: "./media/characters/axel/beak-side.svg"
  29946. }
  29947. },
  29948. sheath: {
  29949. height: math.unit(0.5, "feet"),
  29950. name: "Sheath",
  29951. image: {
  29952. source: "./media/characters/axel/sheath.svg"
  29953. }
  29954. },
  29955. dick: {
  29956. height: math.unit(0.98, "feet"),
  29957. name: "Dick",
  29958. image: {
  29959. source: "./media/characters/axel/dick.svg"
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Macro",
  29966. height: math.unit(68, "meters"),
  29967. default: true
  29968. },
  29969. ]
  29970. ))
  29971. characterMakers.push(() => makeCharacter(
  29972. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29973. {
  29974. front: {
  29975. height: math.unit(3.5, "meters"),
  29976. weight: math.unit(1200, "kg"),
  29977. name: "Front",
  29978. image: {
  29979. source: "./media/characters/joanna/front.svg",
  29980. extra: 1596 / 1488,
  29981. bottom: 29 / 1625
  29982. }
  29983. },
  29984. back: {
  29985. height: math.unit(3.5, "meters"),
  29986. weight: math.unit(1200, "kg"),
  29987. name: "Back",
  29988. image: {
  29989. source: "./media/characters/joanna/back.svg",
  29990. extra: 1594 / 1495,
  29991. bottom: 26 / 1620
  29992. }
  29993. },
  29994. frontShorts: {
  29995. height: math.unit(3.5, "meters"),
  29996. weight: math.unit(1200, "kg"),
  29997. name: "Front (Shorts)",
  29998. image: {
  29999. source: "./media/characters/joanna/front-shorts.svg",
  30000. extra: 1596 / 1488,
  30001. bottom: 29 / 1625
  30002. }
  30003. },
  30004. frontBiker: {
  30005. height: math.unit(3.5, "meters"),
  30006. weight: math.unit(1200, "kg"),
  30007. name: "Front (Biker)",
  30008. image: {
  30009. source: "./media/characters/joanna/front-biker.svg",
  30010. extra: 1596 / 1488,
  30011. bottom: 29 / 1625
  30012. }
  30013. },
  30014. backBiker: {
  30015. height: math.unit(3.5, "meters"),
  30016. weight: math.unit(1200, "kg"),
  30017. name: "Back (Biker)",
  30018. image: {
  30019. source: "./media/characters/joanna/back-biker.svg",
  30020. extra: 1594 / 1495,
  30021. bottom: 88 / 1682
  30022. }
  30023. },
  30024. bikeLeft: {
  30025. height: math.unit(2.4, "meters"),
  30026. weight: math.unit(1600, "kg"),
  30027. name: "Bike (Left)",
  30028. image: {
  30029. source: "./media/characters/joanna/bike-left.svg",
  30030. extra: 720 / 720,
  30031. bottom: 8 / 728
  30032. }
  30033. },
  30034. bikeRight: {
  30035. height: math.unit(2.4, "meters"),
  30036. weight: math.unit(1600, "kg"),
  30037. name: "Bike (Right)",
  30038. image: {
  30039. source: "./media/characters/joanna/bike-right.svg",
  30040. extra: 720 / 720,
  30041. bottom: 8 / 728
  30042. }
  30043. },
  30044. },
  30045. [
  30046. {
  30047. name: "Incognito",
  30048. height: math.unit(3.5, "meters")
  30049. },
  30050. {
  30051. name: "Casual Big",
  30052. height: math.unit(200, "meters")
  30053. },
  30054. {
  30055. name: "Macro",
  30056. height: math.unit(600, "meters")
  30057. },
  30058. {
  30059. name: "Original",
  30060. height: math.unit(20, "km"),
  30061. default: true
  30062. },
  30063. {
  30064. name: "Giga",
  30065. height: math.unit(400, "km")
  30066. },
  30067. {
  30068. name: "Lounging",
  30069. height: math.unit(1500, "km")
  30070. },
  30071. {
  30072. name: "Planetary",
  30073. height: math.unit(200000, "km")
  30074. },
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30079. {
  30080. front: {
  30081. height: math.unit(6, "feet"),
  30082. weight: math.unit(150, "lb"),
  30083. name: "Front",
  30084. image: {
  30085. source: "./media/characters/hugo-sigil/front.svg",
  30086. extra: 522 / 500,
  30087. bottom: 2 / 524
  30088. }
  30089. },
  30090. back: {
  30091. height: math.unit(6, "feet"),
  30092. weight: math.unit(150, "lb"),
  30093. name: "Back",
  30094. image: {
  30095. source: "./media/characters/hugo-sigil/back.svg",
  30096. extra: 519 / 495,
  30097. bottom: 5 / 524
  30098. }
  30099. },
  30100. maw: {
  30101. height: math.unit(1.4, "feet"),
  30102. weight: math.unit(150, "lb"),
  30103. name: "Maw",
  30104. image: {
  30105. source: "./media/characters/hugo-sigil/maw.svg"
  30106. }
  30107. },
  30108. feet: {
  30109. height: math.unit(1.56, "feet"),
  30110. weight: math.unit(150, "lb"),
  30111. name: "Feet",
  30112. image: {
  30113. source: "./media/characters/hugo-sigil/feet.svg",
  30114. extra: 177 / 177,
  30115. bottom: 12 / 189
  30116. }
  30117. },
  30118. },
  30119. [
  30120. {
  30121. name: "Normal",
  30122. height: math.unit(6, "feet")
  30123. },
  30124. {
  30125. name: "Macro",
  30126. height: math.unit(200, "feet"),
  30127. default: true
  30128. },
  30129. ]
  30130. ))
  30131. characterMakers.push(() => makeCharacter(
  30132. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30133. {
  30134. front: {
  30135. height: math.unit(6, "feet"),
  30136. weight: math.unit(150, "lb"),
  30137. name: "Front",
  30138. image: {
  30139. source: "./media/characters/peri/front.svg",
  30140. extra: 2354 / 2233,
  30141. bottom: 49 / 2403
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Really Small",
  30148. height: math.unit(1, "nm")
  30149. },
  30150. {
  30151. name: "Micro",
  30152. height: math.unit(4, "inches")
  30153. },
  30154. {
  30155. name: "Normal",
  30156. height: math.unit(7, "inches"),
  30157. default: true
  30158. },
  30159. {
  30160. name: "Macro",
  30161. height: math.unit(400, "feet")
  30162. },
  30163. {
  30164. name: "Megamacro",
  30165. height: math.unit(100, "miles")
  30166. },
  30167. ]
  30168. ))
  30169. characterMakers.push(() => makeCharacter(
  30170. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30171. {
  30172. frontSlim: {
  30173. height: math.unit(7, "feet"),
  30174. name: "Front (Slim)",
  30175. image: {
  30176. source: "./media/characters/issilora/front-slim.svg",
  30177. extra: 529 / 449,
  30178. bottom: 53 / 582
  30179. }
  30180. },
  30181. sideSlim: {
  30182. height: math.unit(7, "feet"),
  30183. name: "Side (Slim)",
  30184. image: {
  30185. source: "./media/characters/issilora/side-slim.svg",
  30186. extra: 570 / 480,
  30187. bottom: 30 / 600
  30188. }
  30189. },
  30190. backSlim: {
  30191. height: math.unit(7, "feet"),
  30192. name: "Back (Slim)",
  30193. image: {
  30194. source: "./media/characters/issilora/back-slim.svg",
  30195. extra: 537 / 455,
  30196. bottom: 46 / 583
  30197. }
  30198. },
  30199. frontBuff: {
  30200. height: math.unit(7, "feet"),
  30201. name: "Front (Buff)",
  30202. image: {
  30203. source: "./media/characters/issilora/front-buff.svg",
  30204. extra: 2310 / 2035,
  30205. bottom: 335 / 2645
  30206. }
  30207. },
  30208. head: {
  30209. height: math.unit(1.94, "feet"),
  30210. name: "Head",
  30211. image: {
  30212. source: "./media/characters/issilora/head.svg"
  30213. }
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Minimum",
  30219. height: math.unit(7, "feet")
  30220. },
  30221. {
  30222. name: "Comfortable",
  30223. height: math.unit(17, "feet")
  30224. },
  30225. {
  30226. name: "Fun Size",
  30227. height: math.unit(47, "feet")
  30228. },
  30229. {
  30230. name: "Natural Macro",
  30231. height: math.unit(137, "feet"),
  30232. default: true
  30233. },
  30234. {
  30235. name: "Maximum Kaiju",
  30236. height: math.unit(397, "feet")
  30237. },
  30238. ]
  30239. ))
  30240. characterMakers.push(() => makeCharacter(
  30241. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30242. {
  30243. front: {
  30244. height: math.unit(50 + 9/12, "feet"),
  30245. weight: math.unit(32.8, "tons"),
  30246. name: "Front",
  30247. image: {
  30248. source: "./media/characters/irb'iiritaahn/front.svg",
  30249. extra: 1878/1826,
  30250. bottom: 326/2204
  30251. }
  30252. },
  30253. back: {
  30254. height: math.unit(50 + 9/12, "feet"),
  30255. weight: math.unit(32.8, "tons"),
  30256. name: "Back",
  30257. image: {
  30258. source: "./media/characters/irb'iiritaahn/back.svg",
  30259. extra: 2052/2018,
  30260. bottom: 152/2204
  30261. }
  30262. },
  30263. head: {
  30264. height: math.unit(12.86, "feet"),
  30265. name: "Head",
  30266. image: {
  30267. source: "./media/characters/irb'iiritaahn/head.svg"
  30268. }
  30269. },
  30270. maw: {
  30271. height: math.unit(9.66, "feet"),
  30272. name: "Maw",
  30273. image: {
  30274. source: "./media/characters/irb'iiritaahn/maw.svg"
  30275. }
  30276. },
  30277. frontDick: {
  30278. height: math.unit(8.78461, "feet"),
  30279. name: "Front Dick",
  30280. image: {
  30281. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30282. }
  30283. },
  30284. rearDick: {
  30285. height: math.unit(8.78461, "feet"),
  30286. name: "Rear Dick",
  30287. image: {
  30288. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30289. }
  30290. },
  30291. rearDickUnfolded: {
  30292. height: math.unit(8.78, "feet"),
  30293. name: "Rear Dick (Unfolded)",
  30294. image: {
  30295. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30296. }
  30297. },
  30298. wings: {
  30299. height: math.unit(43, "feet"),
  30300. name: "Wings",
  30301. image: {
  30302. source: "./media/characters/irb'iiritaahn/wings.svg"
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Macro",
  30309. height: math.unit(50 + 9/12, "feet"),
  30310. default: true
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(205, "cm"),
  30319. weight: math.unit(102, "kg"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/irbisgreif/front.svg",
  30323. extra: 785/706,
  30324. bottom: 13/798
  30325. }
  30326. },
  30327. back: {
  30328. height: math.unit(205, "cm"),
  30329. weight: math.unit(102, "kg"),
  30330. name: "Back",
  30331. image: {
  30332. source: "./media/characters/irbisgreif/back.svg",
  30333. extra: 713/701,
  30334. bottom: 26/739
  30335. }
  30336. },
  30337. frontDressed: {
  30338. height: math.unit(216, "cm"),
  30339. weight: math.unit(102, "kg"),
  30340. name: "Front-dressed",
  30341. image: {
  30342. source: "./media/characters/irbisgreif/front-dressed.svg",
  30343. extra: 902/776,
  30344. bottom: 14/916
  30345. }
  30346. },
  30347. sideDressed: {
  30348. height: math.unit(195, "cm"),
  30349. weight: math.unit(102, "kg"),
  30350. name: "Side-dressed",
  30351. image: {
  30352. source: "./media/characters/irbisgreif/side-dressed.svg",
  30353. extra: 788/688,
  30354. bottom: 21/809
  30355. }
  30356. },
  30357. backDressed: {
  30358. height: math.unit(216, "cm"),
  30359. weight: math.unit(102, "kg"),
  30360. name: "Back-dressed",
  30361. image: {
  30362. source: "./media/characters/irbisgreif/back-dressed.svg",
  30363. extra: 901/783,
  30364. bottom: 10/911
  30365. }
  30366. },
  30367. dick: {
  30368. height: math.unit(0.49, "feet"),
  30369. name: "Dick",
  30370. image: {
  30371. source: "./media/characters/irbisgreif/dick.svg"
  30372. }
  30373. },
  30374. wingTop: {
  30375. height: math.unit(1.93 , "feet"),
  30376. name: "Wing-top",
  30377. image: {
  30378. source: "./media/characters/irbisgreif/wing-top.svg"
  30379. }
  30380. },
  30381. wingBottom: {
  30382. height: math.unit(1.93 , "feet"),
  30383. name: "Wing-bottom",
  30384. image: {
  30385. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30386. }
  30387. },
  30388. },
  30389. [
  30390. {
  30391. name: "Normal",
  30392. height: math.unit(216, "cm"),
  30393. default: true
  30394. },
  30395. ]
  30396. ))
  30397. characterMakers.push(() => makeCharacter(
  30398. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30399. {
  30400. front: {
  30401. height: math.unit(6, "feet"),
  30402. weight: math.unit(150, "lb"),
  30403. name: "Front",
  30404. image: {
  30405. source: "./media/characters/pride/front.svg",
  30406. extra: 1299/1230,
  30407. bottom: 18/1317
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(7, "feet")
  30415. },
  30416. {
  30417. name: "Mini-macro",
  30418. height: math.unit(11, "feet")
  30419. },
  30420. {
  30421. name: "Macro",
  30422. height: math.unit(15, "meters"),
  30423. default: true
  30424. },
  30425. {
  30426. name: "Macro+",
  30427. height: math.unit(40, "meters")
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30433. {
  30434. front: {
  30435. height: math.unit(4 + 2 / 12, "feet"),
  30436. weight: math.unit(95, "lb"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/vaelophis-nyx/front.svg",
  30440. extra: 2532/2330,
  30441. bottom: 0/2532
  30442. }
  30443. },
  30444. back: {
  30445. height: math.unit(4 + 2 / 12, "feet"),
  30446. weight: math.unit(95, "lb"),
  30447. name: "Back",
  30448. image: {
  30449. source: "./media/characters/vaelophis-nyx/back.svg",
  30450. extra: 2484/2361,
  30451. bottom: 0/2484
  30452. }
  30453. },
  30454. feralSide: {
  30455. height: math.unit(2 + 1/12, "feet"),
  30456. weight: math.unit(20, "lb"),
  30457. name: "Feral (Side)",
  30458. image: {
  30459. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30460. extra: 1721/1581,
  30461. bottom: 70/1791
  30462. }
  30463. },
  30464. feralLazing: {
  30465. height: math.unit(1.08, "feet"),
  30466. weight: math.unit(20, "lb"),
  30467. name: "Feral (Lazing)",
  30468. image: {
  30469. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30470. extra: 822/822,
  30471. bottom: 248/1070
  30472. }
  30473. },
  30474. ear: {
  30475. height: math.unit(0.416, "feet"),
  30476. name: "Ear",
  30477. image: {
  30478. source: "./media/characters/vaelophis-nyx/ear.svg"
  30479. }
  30480. },
  30481. eye: {
  30482. height: math.unit(0.0748, "feet"),
  30483. name: "Eye",
  30484. image: {
  30485. source: "./media/characters/vaelophis-nyx/eye.svg"
  30486. }
  30487. },
  30488. mouth: {
  30489. height: math.unit(0.378, "feet"),
  30490. name: "Mouth",
  30491. image: {
  30492. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30493. }
  30494. },
  30495. spade: {
  30496. height: math.unit(0.55, "feet"),
  30497. name: "Spade",
  30498. image: {
  30499. source: "./media/characters/vaelophis-nyx/spade.svg"
  30500. }
  30501. },
  30502. },
  30503. [
  30504. {
  30505. name: "Normal",
  30506. height: math.unit(4 + 2/12, "feet"),
  30507. default: true
  30508. },
  30509. ]
  30510. ))
  30511. characterMakers.push(() => makeCharacter(
  30512. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30513. {
  30514. front: {
  30515. height: math.unit(7, "feet"),
  30516. weight: math.unit(231, "lb"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/flux/front.svg",
  30520. extra: 919/871,
  30521. bottom: 0/919
  30522. }
  30523. },
  30524. back: {
  30525. height: math.unit(7, "feet"),
  30526. weight: math.unit(231, "lb"),
  30527. name: "Back",
  30528. image: {
  30529. source: "./media/characters/flux/back.svg",
  30530. extra: 1040/992,
  30531. bottom: 0/1040
  30532. }
  30533. },
  30534. frontDressed: {
  30535. height: math.unit(7, "feet"),
  30536. weight: math.unit(231, "lb"),
  30537. name: "Front (Dressed)",
  30538. image: {
  30539. source: "./media/characters/flux/front-dressed.svg",
  30540. extra: 919/871,
  30541. bottom: 0/919
  30542. }
  30543. },
  30544. feralSide: {
  30545. height: math.unit(5, "feet"),
  30546. weight: math.unit(150, "lb"),
  30547. name: "Feral (Side)",
  30548. image: {
  30549. source: "./media/characters/flux/feral-side.svg",
  30550. extra: 598/528,
  30551. bottom: 28/626
  30552. }
  30553. },
  30554. head: {
  30555. height: math.unit(1.585, "feet"),
  30556. name: "Head",
  30557. image: {
  30558. source: "./media/characters/flux/head.svg"
  30559. }
  30560. },
  30561. headSide: {
  30562. height: math.unit(1.74, "feet"),
  30563. name: "Head (Side)",
  30564. image: {
  30565. source: "./media/characters/flux/head-side.svg"
  30566. }
  30567. },
  30568. headSideFire: {
  30569. height: math.unit(1.76, "feet"),
  30570. name: "Head (Side, Fire)",
  30571. image: {
  30572. source: "./media/characters/flux/head-side-fire.svg"
  30573. }
  30574. },
  30575. },
  30576. [
  30577. {
  30578. name: "Normal",
  30579. height: math.unit(7, "feet"),
  30580. default: true
  30581. },
  30582. ]
  30583. ))
  30584. characterMakers.push(() => makeCharacter(
  30585. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30586. {
  30587. front: {
  30588. height: math.unit(9, "feet"),
  30589. weight: math.unit(1012, "lb"),
  30590. name: "Front",
  30591. image: {
  30592. source: "./media/characters/ulfra-lupae/front.svg",
  30593. extra: 1083/1011,
  30594. bottom: 67/1150
  30595. }
  30596. },
  30597. },
  30598. [
  30599. {
  30600. name: "Micro",
  30601. height: math.unit(6, "inches")
  30602. },
  30603. {
  30604. name: "Socializing",
  30605. height: math.unit(6 + 5/12, "feet")
  30606. },
  30607. {
  30608. name: "Normal",
  30609. height: math.unit(9, "feet"),
  30610. default: true
  30611. },
  30612. {
  30613. name: "Macro",
  30614. height: math.unit(150, "feet")
  30615. },
  30616. ]
  30617. ))
  30618. characterMakers.push(() => makeCharacter(
  30619. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30620. {
  30621. front: {
  30622. height: math.unit(5 + 2/12, "feet"),
  30623. weight: math.unit(120, "lb"),
  30624. name: "Front",
  30625. image: {
  30626. source: "./media/characters/timber/front.svg",
  30627. extra: 2814/2705,
  30628. bottom: 181/2995
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(5 + 2/12, "feet"),
  30636. default: true
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30642. {
  30643. front: {
  30644. height: math.unit(5 + 7/12, "feet"),
  30645. weight: math.unit(220, "lb"),
  30646. name: "Front",
  30647. image: {
  30648. source: "./media/characters/nicki/front.svg",
  30649. extra: 453/419,
  30650. bottom: 7/460
  30651. }
  30652. },
  30653. frontAlt: {
  30654. height: math.unit(5 + 7/12, "feet"),
  30655. weight: math.unit(220, "lb"),
  30656. name: "Front-alt",
  30657. image: {
  30658. source: "./media/characters/nicki/front-alt.svg",
  30659. extra: 435/411,
  30660. bottom: 12/447
  30661. }
  30662. },
  30663. back: {
  30664. height: math.unit(5 + 7/12, "feet"),
  30665. weight: math.unit(220, "lb"),
  30666. name: "Back",
  30667. image: {
  30668. source: "./media/characters/nicki/back.svg",
  30669. extra: 440/413,
  30670. bottom: 19/459
  30671. }
  30672. },
  30673. taur: {
  30674. height: math.unit(7 + 6/12, "feet"),
  30675. weight: math.unit(700, "lb"),
  30676. name: "Taur",
  30677. image: {
  30678. source: "./media/characters/nicki/taur.svg",
  30679. extra: 975/773,
  30680. bottom: 0/975
  30681. }
  30682. },
  30683. frontNsfw: {
  30684. height: math.unit(5 + 7/12, "feet"),
  30685. weight: math.unit(220, "lb"),
  30686. name: "Front (NSFW)",
  30687. image: {
  30688. source: "./media/characters/nicki/front-nsfw.svg",
  30689. extra: 453/419,
  30690. bottom: 7/460
  30691. }
  30692. },
  30693. frontNsfwAlt: {
  30694. height: math.unit(5 + 7/12, "feet"),
  30695. weight: math.unit(220, "lb"),
  30696. name: "Front (Alt, NSFW)",
  30697. image: {
  30698. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30699. extra: 435/411,
  30700. bottom: 12/447
  30701. }
  30702. },
  30703. backNsfw: {
  30704. height: math.unit(5 + 7/12, "feet"),
  30705. weight: math.unit(220, "lb"),
  30706. name: "Back (NSFW)",
  30707. image: {
  30708. source: "./media/characters/nicki/back-nsfw.svg",
  30709. extra: 440/413,
  30710. bottom: 19/459
  30711. }
  30712. },
  30713. head: {
  30714. height: math.unit(2.1, "feet"),
  30715. name: "Head",
  30716. image: {
  30717. source: "./media/characters/nicki/head.svg"
  30718. }
  30719. },
  30720. paw: {
  30721. height: math.unit(1.88, "feet"),
  30722. name: "Paw",
  30723. image: {
  30724. source: "./media/characters/nicki/paw.svg"
  30725. }
  30726. },
  30727. },
  30728. [
  30729. {
  30730. name: "Normal",
  30731. height: math.unit(5 + 7/12, "feet"),
  30732. default: true
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30738. {
  30739. front: {
  30740. height: math.unit(7 + 10/12, "feet"),
  30741. weight: math.unit(3.5, "tons"),
  30742. name: "Front",
  30743. image: {
  30744. source: "./media/characters/lee/front.svg",
  30745. extra: 1773/1615,
  30746. bottom: 86/1859
  30747. }
  30748. },
  30749. hand: {
  30750. height: math.unit(1.78, "feet"),
  30751. name: "Hand",
  30752. image: {
  30753. source: "./media/characters/lee/hand.svg"
  30754. }
  30755. },
  30756. maw: {
  30757. height: math.unit(1.18, "feet"),
  30758. name: "Maw",
  30759. image: {
  30760. source: "./media/characters/lee/maw.svg"
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "Normal",
  30767. height: math.unit(7 + 10/12, "feet"),
  30768. default: true
  30769. },
  30770. ]
  30771. ))
  30772. characterMakers.push(() => makeCharacter(
  30773. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30774. {
  30775. front: {
  30776. height: math.unit(9, "feet"),
  30777. name: "Front",
  30778. image: {
  30779. source: "./media/characters/guti/front.svg",
  30780. extra: 4551/4355,
  30781. bottom: 123/4674
  30782. }
  30783. },
  30784. tongue: {
  30785. height: math.unit(1, "feet"),
  30786. name: "Tongue",
  30787. image: {
  30788. source: "./media/characters/guti/tongue.svg"
  30789. }
  30790. },
  30791. paw: {
  30792. height: math.unit(1.18, "feet"),
  30793. name: "Paw",
  30794. image: {
  30795. source: "./media/characters/guti/paw.svg"
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Normal",
  30802. height: math.unit(9, "feet"),
  30803. default: true
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30809. {
  30810. side: {
  30811. height: math.unit(5, "meters"),
  30812. name: "Side",
  30813. image: {
  30814. source: "./media/characters/vesper/side.svg",
  30815. extra: 1605/1518,
  30816. bottom: 0/1605
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Small",
  30823. height: math.unit(5, "meters")
  30824. },
  30825. {
  30826. name: "Sage",
  30827. height: math.unit(100, "meters"),
  30828. default: true
  30829. },
  30830. {
  30831. name: "Fun Size",
  30832. height: math.unit(600, "meters")
  30833. },
  30834. {
  30835. name: "Goddess",
  30836. height: math.unit(20000, "km")
  30837. },
  30838. {
  30839. name: "Maximum",
  30840. height: math.unit(5, "galaxies")
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30846. {
  30847. front: {
  30848. height: math.unit(6 + 3/12, "feet"),
  30849. weight: math.unit(190, "lb"),
  30850. name: "Front",
  30851. image: {
  30852. source: "./media/characters/gawain/front.svg",
  30853. extra: 2222/2139,
  30854. bottom: 90/2312
  30855. }
  30856. },
  30857. back: {
  30858. height: math.unit(6 + 3/12, "feet"),
  30859. weight: math.unit(190, "lb"),
  30860. name: "Back",
  30861. image: {
  30862. source: "./media/characters/gawain/back.svg",
  30863. extra: 2199/2111,
  30864. bottom: 73/2272
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Normal",
  30871. height: math.unit(6 + 3/12, "feet"),
  30872. default: true
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30878. {
  30879. side: {
  30880. height: math.unit(3.5, "meters"),
  30881. weight: math.unit(16000, "lb"),
  30882. name: "Side",
  30883. image: {
  30884. source: "./media/characters/dascalti/side.svg",
  30885. extra: 392/273,
  30886. bottom: 47/439
  30887. }
  30888. },
  30889. breath: {
  30890. height: math.unit(7.4, "feet"),
  30891. name: "Breath",
  30892. image: {
  30893. source: "./media/characters/dascalti/breath.svg"
  30894. }
  30895. },
  30896. fed: {
  30897. height: math.unit(3.6, "meters"),
  30898. weight: math.unit(16000, "lb"),
  30899. name: "Fed",
  30900. image: {
  30901. source: "./media/characters/dascalti/fed.svg",
  30902. extra: 1419/820,
  30903. bottom: 95/1514
  30904. }
  30905. },
  30906. },
  30907. [
  30908. {
  30909. name: "Normal",
  30910. height: math.unit(3.5, "meters"),
  30911. default: true
  30912. },
  30913. ]
  30914. ))
  30915. characterMakers.push(() => makeCharacter(
  30916. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30917. {
  30918. front: {
  30919. height: math.unit(3 + 5/12, "feet"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/mauve/front.svg",
  30923. extra: 1126/1033,
  30924. bottom: 65/1191
  30925. }
  30926. },
  30927. side: {
  30928. height: math.unit(3 + 5/12, "feet"),
  30929. name: "Side",
  30930. image: {
  30931. source: "./media/characters/mauve/side.svg",
  30932. extra: 1089/1001,
  30933. bottom: 29/1118
  30934. }
  30935. },
  30936. back: {
  30937. height: math.unit(3 + 5/12, "feet"),
  30938. name: "Back",
  30939. image: {
  30940. source: "./media/characters/mauve/back.svg",
  30941. extra: 1173/1053,
  30942. bottom: 109/1282
  30943. }
  30944. },
  30945. },
  30946. [
  30947. {
  30948. name: "Normal",
  30949. height: math.unit(3 + 5/12, "feet"),
  30950. default: true
  30951. },
  30952. ]
  30953. ))
  30954. characterMakers.push(() => makeCharacter(
  30955. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30956. {
  30957. front: {
  30958. height: math.unit(6 + 3/12, "feet"),
  30959. weight: math.unit(430, "lb"),
  30960. name: "Front",
  30961. image: {
  30962. source: "./media/characters/carlos/front.svg",
  30963. extra: 1964/1913,
  30964. bottom: 70/2034
  30965. }
  30966. },
  30967. },
  30968. [
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(6 + 3/12, "feet"),
  30972. default: true
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30978. {
  30979. back: {
  30980. height: math.unit(5 + 10/12, "feet"),
  30981. weight: math.unit(200, "lb"),
  30982. name: "Back",
  30983. image: {
  30984. source: "./media/characters/jax/back.svg",
  30985. extra: 764/739,
  30986. bottom: 25/789
  30987. }
  30988. },
  30989. },
  30990. [
  30991. {
  30992. name: "Normal",
  30993. height: math.unit(5 + 10/12, "feet"),
  30994. default: true
  30995. },
  30996. ]
  30997. ))
  30998. characterMakers.push(() => makeCharacter(
  30999. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31000. {
  31001. front: {
  31002. height: math.unit(8, "feet"),
  31003. weight: math.unit(250, "lb"),
  31004. name: "Front",
  31005. image: {
  31006. source: "./media/characters/eikthynir/front.svg",
  31007. extra: 1332/1166,
  31008. bottom: 82/1414
  31009. }
  31010. },
  31011. back: {
  31012. height: math.unit(8, "feet"),
  31013. weight: math.unit(250, "lb"),
  31014. name: "Back",
  31015. image: {
  31016. source: "./media/characters/eikthynir/back.svg",
  31017. extra: 1342/1190,
  31018. bottom: 19/1361
  31019. }
  31020. },
  31021. dick: {
  31022. height: math.unit(2.35, "feet"),
  31023. name: "Dick",
  31024. image: {
  31025. source: "./media/characters/eikthynir/dick.svg"
  31026. }
  31027. },
  31028. },
  31029. [
  31030. {
  31031. name: "Normal",
  31032. height: math.unit(8, "feet"),
  31033. default: true
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(99, "meters"),
  31042. weight: math.unit(13000, "tons"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/zlmos/front.svg",
  31046. extra: 2202/1992,
  31047. bottom: 315/2517
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Macro",
  31054. height: math.unit(99, "meters"),
  31055. default: true
  31056. },
  31057. ]
  31058. ))
  31059. characterMakers.push(() => makeCharacter(
  31060. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31061. {
  31062. front: {
  31063. height: math.unit(6 + 5/12, "feet"),
  31064. name: "Front",
  31065. image: {
  31066. source: "./media/characters/purri/front.svg",
  31067. extra: 1698/1610,
  31068. bottom: 32/1730
  31069. }
  31070. },
  31071. frontAlt: {
  31072. height: math.unit(6 + 5/12, "feet"),
  31073. name: "Front (Alt)",
  31074. image: {
  31075. source: "./media/characters/purri/front-alt.svg",
  31076. extra: 450/420,
  31077. bottom: 26/476
  31078. }
  31079. },
  31080. boots: {
  31081. height: math.unit(5.5, "feet"),
  31082. name: "Boots",
  31083. image: {
  31084. source: "./media/characters/purri/boots.svg",
  31085. extra: 905/853,
  31086. bottom: 18/923
  31087. }
  31088. },
  31089. lying: {
  31090. height: math.unit(2, "feet"),
  31091. name: "Lying",
  31092. image: {
  31093. source: "./media/characters/purri/lying.svg",
  31094. extra: 940/843,
  31095. bottom: 146/1086
  31096. }
  31097. },
  31098. devious: {
  31099. height: math.unit(1.77, "feet"),
  31100. name: "Devious",
  31101. image: {
  31102. source: "./media/characters/purri/devious.svg",
  31103. extra: 1440/1155,
  31104. bottom: 147/1587
  31105. }
  31106. },
  31107. bean: {
  31108. height: math.unit(1.94, "feet"),
  31109. name: "Bean",
  31110. image: {
  31111. source: "./media/characters/purri/bean.svg"
  31112. }
  31113. },
  31114. },
  31115. [
  31116. {
  31117. name: "Micro",
  31118. height: math.unit(1, "mm")
  31119. },
  31120. {
  31121. name: "Normal",
  31122. height: math.unit(6 + 5/12, "feet"),
  31123. default: true
  31124. },
  31125. {
  31126. name: "Macro :3c",
  31127. height: math.unit(2, "miles")
  31128. },
  31129. ]
  31130. ))
  31131. characterMakers.push(() => makeCharacter(
  31132. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31133. {
  31134. front: {
  31135. height: math.unit(6 + 2/12, "feet"),
  31136. weight: math.unit(250, "lb"),
  31137. name: "Front",
  31138. image: {
  31139. source: "./media/characters/moonlight/front.svg",
  31140. extra: 1044/908,
  31141. bottom: 56/1100
  31142. }
  31143. },
  31144. feral: {
  31145. height: math.unit(3 + 1/12, "feet"),
  31146. weight: math.unit(50, "kg"),
  31147. name: "Feral",
  31148. image: {
  31149. source: "./media/characters/moonlight/feral.svg",
  31150. extra: 3705/2791,
  31151. bottom: 145/3850
  31152. }
  31153. },
  31154. paw: {
  31155. height: math.unit(1, "feet"),
  31156. name: "Paw",
  31157. image: {
  31158. source: "./media/characters/moonlight/paw.svg"
  31159. }
  31160. },
  31161. paws: {
  31162. height: math.unit(0.98, "feet"),
  31163. name: "Paws",
  31164. image: {
  31165. source: "./media/characters/moonlight/paws.svg",
  31166. extra: 939/939,
  31167. bottom: 50/989
  31168. }
  31169. },
  31170. mouth: {
  31171. height: math.unit(0.48, "feet"),
  31172. name: "Mouth",
  31173. image: {
  31174. source: "./media/characters/moonlight/mouth.svg"
  31175. }
  31176. },
  31177. dick: {
  31178. height: math.unit(1.46, "feet"),
  31179. name: "Dick",
  31180. image: {
  31181. source: "./media/characters/moonlight/dick.svg"
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Normal",
  31188. height: math.unit(6 + 2/12, "feet"),
  31189. default: true
  31190. },
  31191. {
  31192. name: "Macro",
  31193. height: math.unit(300, "feet")
  31194. },
  31195. {
  31196. name: "Macro+",
  31197. height: math.unit(1, "mile")
  31198. },
  31199. {
  31200. name: "Mt. Moon",
  31201. height: math.unit(5, "miles")
  31202. },
  31203. {
  31204. name: "Megamacro",
  31205. height: math.unit(15, "miles")
  31206. },
  31207. ]
  31208. ))
  31209. characterMakers.push(() => makeCharacter(
  31210. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31211. {
  31212. back: {
  31213. height: math.unit(6, "feet"),
  31214. weight: math.unit(150, "lb"),
  31215. name: "Back",
  31216. image: {
  31217. source: "./media/characters/sylen/back.svg",
  31218. extra: 1335/1273,
  31219. bottom: 107/1442
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Normal",
  31226. height: math.unit(5 + 5/12, "feet")
  31227. },
  31228. {
  31229. name: "Megamacro",
  31230. height: math.unit(3, "miles"),
  31231. default: true
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(6, "feet"),
  31240. weight: math.unit(190, "lb"),
  31241. name: "Front",
  31242. image: {
  31243. source: "./media/characters/huttser/front.svg",
  31244. extra: 1152/1058,
  31245. bottom: 23/1175
  31246. }
  31247. },
  31248. side: {
  31249. height: math.unit(6, "feet"),
  31250. weight: math.unit(190, "lb"),
  31251. name: "Side",
  31252. image: {
  31253. source: "./media/characters/huttser/side.svg",
  31254. extra: 1174/1065,
  31255. bottom: 18/1192
  31256. }
  31257. },
  31258. back: {
  31259. height: math.unit(6, "feet"),
  31260. weight: math.unit(190, "lb"),
  31261. name: "Back",
  31262. image: {
  31263. source: "./media/characters/huttser/back.svg",
  31264. extra: 1158/1056,
  31265. bottom: 12/1170
  31266. }
  31267. },
  31268. },
  31269. [
  31270. ]
  31271. ))
  31272. characterMakers.push(() => makeCharacter(
  31273. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31274. {
  31275. side: {
  31276. height: math.unit(12 + 9/12, "feet"),
  31277. weight: math.unit(15000, "lb"),
  31278. name: "Side",
  31279. image: {
  31280. source: "./media/characters/faan/side.svg",
  31281. extra: 2747/2697,
  31282. bottom: 0/2747
  31283. }
  31284. },
  31285. front: {
  31286. height: math.unit(12 + 9/12, "feet"),
  31287. weight: math.unit(15000, "lb"),
  31288. name: "Front",
  31289. image: {
  31290. source: "./media/characters/faan/front.svg",
  31291. extra: 607/571,
  31292. bottom: 24/631
  31293. }
  31294. },
  31295. head: {
  31296. height: math.unit(2.85, "feet"),
  31297. name: "Head",
  31298. image: {
  31299. source: "./media/characters/faan/head.svg"
  31300. }
  31301. },
  31302. headAlt: {
  31303. height: math.unit(3.13, "feet"),
  31304. name: "Head-alt",
  31305. image: {
  31306. source: "./media/characters/faan/head-alt.svg"
  31307. }
  31308. },
  31309. },
  31310. [
  31311. {
  31312. name: "Normal",
  31313. height: math.unit(12 + 9/12, "feet"),
  31314. default: true
  31315. },
  31316. ]
  31317. ))
  31318. characterMakers.push(() => makeCharacter(
  31319. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31320. {
  31321. front: {
  31322. height: math.unit(6, "feet"),
  31323. weight: math.unit(300, "lb"),
  31324. name: "Front",
  31325. image: {
  31326. source: "./media/characters/tanio/front.svg",
  31327. extra: 711/673,
  31328. bottom: 25/736
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(6, "feet"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(3, "inches"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/noboru/front.svg",
  31348. extra: 1039/932,
  31349. bottom: 18/1057
  31350. }
  31351. },
  31352. },
  31353. [
  31354. {
  31355. name: "Micro",
  31356. height: math.unit(3, "inches"),
  31357. default: true
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31363. {
  31364. front: {
  31365. height: math.unit(1.85, "meters"),
  31366. weight: math.unit(80, "kg"),
  31367. name: "Front",
  31368. image: {
  31369. source: "./media/characters/daniel-barrett/front.svg",
  31370. extra: 355/337,
  31371. bottom: 9/364
  31372. }
  31373. },
  31374. },
  31375. [
  31376. {
  31377. name: "Pico",
  31378. height: math.unit(0.0433, "mm")
  31379. },
  31380. {
  31381. name: "Nano",
  31382. height: math.unit(1.5, "mm")
  31383. },
  31384. {
  31385. name: "Micro",
  31386. height: math.unit(5.3, "cm"),
  31387. default: true
  31388. },
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(1.85, "meters")
  31392. },
  31393. {
  31394. name: "Macro",
  31395. height: math.unit(64.7, "meters")
  31396. },
  31397. {
  31398. name: "Megamacro",
  31399. height: math.unit(2.26, "km")
  31400. },
  31401. {
  31402. name: "Gigamacro",
  31403. height: math.unit(79, "km")
  31404. },
  31405. {
  31406. name: "Teramacro",
  31407. height: math.unit(2765, "km")
  31408. },
  31409. {
  31410. name: "Petamacro",
  31411. height: math.unit(96678, "km")
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(30, "meters"),
  31420. weight: math.unit(400, "tons"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/zeel/front.svg",
  31424. extra: 2599/2599,
  31425. bottom: 226/2825
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "Macro",
  31432. height: math.unit(30, "meters"),
  31433. default: true
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31439. {
  31440. front: {
  31441. height: math.unit(6 + 7/12, "feet"),
  31442. weight: math.unit(210, "lb"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/tarn/front.svg",
  31446. extra: 3517/3220,
  31447. bottom: 91/3608
  31448. }
  31449. },
  31450. back: {
  31451. height: math.unit(6 + 7/12, "feet"),
  31452. weight: math.unit(210, "lb"),
  31453. name: "Back",
  31454. image: {
  31455. source: "./media/characters/tarn/back.svg",
  31456. extra: 3566/3241,
  31457. bottom: 34/3600
  31458. }
  31459. },
  31460. dick: {
  31461. height: math.unit(1.65, "feet"),
  31462. name: "Dick",
  31463. image: {
  31464. source: "./media/characters/tarn/dick.svg"
  31465. }
  31466. },
  31467. paw: {
  31468. height: math.unit(1.80, "feet"),
  31469. name: "Paw",
  31470. image: {
  31471. source: "./media/characters/tarn/paw.svg"
  31472. }
  31473. },
  31474. tongue: {
  31475. height: math.unit(0.97, "feet"),
  31476. name: "Tongue",
  31477. image: {
  31478. source: "./media/characters/tarn/tongue.svg"
  31479. }
  31480. },
  31481. },
  31482. [
  31483. {
  31484. name: "Micro",
  31485. height: math.unit(4, "inches")
  31486. },
  31487. {
  31488. name: "Normal",
  31489. height: math.unit(6 + 7/12, "feet"),
  31490. default: true
  31491. },
  31492. {
  31493. name: "Macro",
  31494. height: math.unit(300, "feet")
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31500. {
  31501. front: {
  31502. height: math.unit(5 + 7/12, "feet"),
  31503. weight: math.unit(80, "kg"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31507. extra: 3023/2865,
  31508. bottom: 33/3056
  31509. }
  31510. },
  31511. back: {
  31512. height: math.unit(5 + 7/12, "feet"),
  31513. weight: math.unit(80, "kg"),
  31514. name: "Back",
  31515. image: {
  31516. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31517. extra: 3020/2886,
  31518. bottom: 30/3050
  31519. }
  31520. },
  31521. dick: {
  31522. height: math.unit(0.98, "feet"),
  31523. name: "Dick",
  31524. image: {
  31525. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31526. }
  31527. },
  31528. anatomy: {
  31529. height: math.unit(2.86, "feet"),
  31530. name: "Anatomy",
  31531. image: {
  31532. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Really Small",
  31539. height: math.unit(2, "inches")
  31540. },
  31541. {
  31542. name: "Micro",
  31543. height: math.unit(5.583, "inches")
  31544. },
  31545. {
  31546. name: "Normal",
  31547. height: math.unit(5 + 7/12, "feet"),
  31548. default: true
  31549. },
  31550. {
  31551. name: "Macro",
  31552. height: math.unit(67, "feet")
  31553. },
  31554. {
  31555. name: "Megamacro",
  31556. height: math.unit(134, "feet")
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31562. {
  31563. front: {
  31564. height: math.unit(9, "feet"),
  31565. weight: math.unit(120, "lb"),
  31566. name: "Front",
  31567. image: {
  31568. source: "./media/characters/sally/front.svg",
  31569. extra: 1506/1349,
  31570. bottom: 66/1572
  31571. }
  31572. },
  31573. },
  31574. [
  31575. {
  31576. name: "Normal",
  31577. height: math.unit(9, "feet"),
  31578. default: true
  31579. },
  31580. ]
  31581. ))
  31582. characterMakers.push(() => makeCharacter(
  31583. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31584. {
  31585. front: {
  31586. height: math.unit(8, "feet"),
  31587. weight: math.unit(900, "lb"),
  31588. name: "Front",
  31589. image: {
  31590. source: "./media/characters/owen/front.svg",
  31591. extra: 1761/1657,
  31592. bottom: 74/1835
  31593. }
  31594. },
  31595. side: {
  31596. height: math.unit(8, "feet"),
  31597. weight: math.unit(900, "lb"),
  31598. name: "Side",
  31599. image: {
  31600. source: "./media/characters/owen/side.svg",
  31601. extra: 1797/1734,
  31602. bottom: 30/1827
  31603. }
  31604. },
  31605. back: {
  31606. height: math.unit(8, "feet"),
  31607. weight: math.unit(900, "lb"),
  31608. name: "Back",
  31609. image: {
  31610. source: "./media/characters/owen/back.svg",
  31611. extra: 1796/1706,
  31612. bottom: 59/1855
  31613. }
  31614. },
  31615. maw: {
  31616. height: math.unit(1.76, "feet"),
  31617. name: "Maw",
  31618. image: {
  31619. source: "./media/characters/owen/maw.svg"
  31620. }
  31621. },
  31622. },
  31623. [
  31624. {
  31625. name: "Normal",
  31626. height: math.unit(8, "feet"),
  31627. default: true
  31628. },
  31629. ]
  31630. ))
  31631. characterMakers.push(() => makeCharacter(
  31632. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31633. {
  31634. front: {
  31635. height: math.unit(4, "feet"),
  31636. weight: math.unit(400, "lb"),
  31637. name: "Front",
  31638. image: {
  31639. source: "./media/characters/ryth/front.svg",
  31640. extra: 876/691,
  31641. bottom: 25/901
  31642. }
  31643. },
  31644. goia: {
  31645. height: math.unit(12, "feet"),
  31646. weight: math.unit(10800, "lb"),
  31647. name: "Goia",
  31648. image: {
  31649. source: "./media/characters/ryth/goia.svg",
  31650. extra: 3450/3198,
  31651. bottom: 61/3511
  31652. }
  31653. },
  31654. },
  31655. [
  31656. {
  31657. name: "Normal",
  31658. height: math.unit(4, "feet"),
  31659. default: true
  31660. },
  31661. ]
  31662. ))
  31663. characterMakers.push(() => makeCharacter(
  31664. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31665. {
  31666. front: {
  31667. height: math.unit(7, "feet"),
  31668. weight: math.unit(180, "lb"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/necrolance/front.svg",
  31672. extra: 1062/947,
  31673. bottom: 41/1103
  31674. }
  31675. },
  31676. back: {
  31677. height: math.unit(7, "feet"),
  31678. weight: math.unit(180, "lb"),
  31679. name: "Back",
  31680. image: {
  31681. source: "./media/characters/necrolance/back.svg",
  31682. extra: 1045/984,
  31683. bottom: 14/1059
  31684. }
  31685. },
  31686. wing: {
  31687. height: math.unit(2.67, "feet"),
  31688. name: "Wing",
  31689. image: {
  31690. source: "./media/characters/necrolance/wing.svg"
  31691. }
  31692. },
  31693. },
  31694. [
  31695. {
  31696. name: "Normal",
  31697. height: math.unit(7, "feet"),
  31698. default: true
  31699. },
  31700. ]
  31701. ))
  31702. characterMakers.push(() => makeCharacter(
  31703. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31704. {
  31705. front: {
  31706. height: math.unit(76, "meters"),
  31707. weight: math.unit(30000, "tons"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/tyler/front.svg",
  31711. extra: 1640/1640,
  31712. bottom: 114/1754
  31713. }
  31714. },
  31715. },
  31716. [
  31717. {
  31718. name: "Macro",
  31719. height: math.unit(76, "meters"),
  31720. default: true
  31721. },
  31722. ]
  31723. ))
  31724. characterMakers.push(() => makeCharacter(
  31725. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31726. {
  31727. front: {
  31728. height: math.unit(4 + 11/12, "feet"),
  31729. weight: math.unit(132, "lb"),
  31730. name: "Front",
  31731. image: {
  31732. source: "./media/characters/icey/front.svg",
  31733. extra: 2750/2550,
  31734. bottom: 33/2783
  31735. }
  31736. },
  31737. back: {
  31738. height: math.unit(4 + 11/12, "feet"),
  31739. weight: math.unit(132, "lb"),
  31740. name: "Back",
  31741. image: {
  31742. source: "./media/characters/icey/back.svg",
  31743. extra: 2624/2481,
  31744. bottom: 35/2659
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Normal",
  31751. height: math.unit(4 + 11/12, "feet"),
  31752. default: true
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(100, "feet"),
  31761. weight: math.unit(0, "lb"),
  31762. name: "Front",
  31763. image: {
  31764. source: "./media/characters/smile/front.svg",
  31765. extra: 2983/2912,
  31766. bottom: 162/3145
  31767. }
  31768. },
  31769. back: {
  31770. height: math.unit(100, "feet"),
  31771. weight: math.unit(0, "lb"),
  31772. name: "Back",
  31773. image: {
  31774. source: "./media/characters/smile/back.svg",
  31775. extra: 3143/3031,
  31776. bottom: 91/3234
  31777. }
  31778. },
  31779. head: {
  31780. height: math.unit(26.3, "feet"),
  31781. weight: math.unit(0, "lb"),
  31782. name: "Head",
  31783. image: {
  31784. source: "./media/characters/smile/head.svg"
  31785. }
  31786. },
  31787. collar: {
  31788. height: math.unit(5.3, "feet"),
  31789. weight: math.unit(0, "lb"),
  31790. name: "Collar",
  31791. image: {
  31792. source: "./media/characters/smile/collar.svg"
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Macro",
  31799. height: math.unit(100, "feet"),
  31800. default: true
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31806. {
  31807. dragon: {
  31808. height: math.unit(26, "feet"),
  31809. weight: math.unit(36, "tons"),
  31810. name: "Dragon",
  31811. image: {
  31812. source: "./media/characters/arimphae/dragon.svg",
  31813. extra: 1574/983,
  31814. bottom: 357/1931
  31815. }
  31816. },
  31817. drake: {
  31818. height: math.unit(9, "feet"),
  31819. weight: math.unit(1.5, "tons"),
  31820. name: "Drake",
  31821. image: {
  31822. source: "./media/characters/arimphae/drake.svg",
  31823. extra: 1120/925,
  31824. bottom: 435/1555
  31825. }
  31826. },
  31827. },
  31828. [
  31829. {
  31830. name: "Small",
  31831. height: math.unit(26*5/9, "feet")
  31832. },
  31833. {
  31834. name: "Normal",
  31835. height: math.unit(26, "feet"),
  31836. default: true
  31837. },
  31838. ]
  31839. ))
  31840. characterMakers.push(() => makeCharacter(
  31841. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31842. {
  31843. front: {
  31844. height: math.unit(8 + 9/12, "feet"),
  31845. name: "Front",
  31846. image: {
  31847. source: "./media/characters/xander/front.svg",
  31848. extra: 848/673,
  31849. bottom: 62/910
  31850. }
  31851. },
  31852. },
  31853. [
  31854. {
  31855. name: "Normal",
  31856. height: math.unit(8 + 9/12, "feet"),
  31857. default: true
  31858. },
  31859. {
  31860. name: "Gaze Grabber",
  31861. height: math.unit(13 + 8/12, "feet")
  31862. },
  31863. {
  31864. name: "Jaw Dropper",
  31865. height: math.unit(27, "feet")
  31866. },
  31867. {
  31868. name: "Show Stopper",
  31869. height: math.unit(136, "feet")
  31870. },
  31871. {
  31872. name: "Superstar",
  31873. height: math.unit(1.9e6, "miles")
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31879. {
  31880. side: {
  31881. height: math.unit(2100, "feet"),
  31882. name: "Side",
  31883. image: {
  31884. source: "./media/characters/osiris/side.svg",
  31885. extra: 1105/939,
  31886. bottom: 167/1272
  31887. }
  31888. },
  31889. },
  31890. [
  31891. {
  31892. name: "Macro",
  31893. height: math.unit(2100, "feet"),
  31894. default: true
  31895. },
  31896. ]
  31897. ))
  31898. characterMakers.push(() => makeCharacter(
  31899. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31900. {
  31901. front: {
  31902. height: math.unit(6 + 8/12, "feet"),
  31903. weight: math.unit(225, "lb"),
  31904. name: "Front",
  31905. image: {
  31906. source: "./media/characters/rhys-londe/front.svg",
  31907. extra: 2258/2141,
  31908. bottom: 188/2446
  31909. }
  31910. },
  31911. back: {
  31912. height: math.unit(6 + 8/12, "feet"),
  31913. weight: math.unit(225, "lb"),
  31914. name: "Back",
  31915. image: {
  31916. source: "./media/characters/rhys-londe/back.svg",
  31917. extra: 2237/2137,
  31918. bottom: 63/2300
  31919. }
  31920. },
  31921. frontNsfw: {
  31922. height: math.unit(6 + 8/12, "feet"),
  31923. weight: math.unit(225, "lb"),
  31924. name: "Front (NSFW)",
  31925. image: {
  31926. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31927. extra: 2258/2141,
  31928. bottom: 188/2446
  31929. }
  31930. },
  31931. backNsfw: {
  31932. height: math.unit(6 + 8/12, "feet"),
  31933. weight: math.unit(225, "lb"),
  31934. name: "Back (NSFW)",
  31935. image: {
  31936. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31937. extra: 2237/2137,
  31938. bottom: 63/2300
  31939. }
  31940. },
  31941. dick: {
  31942. height: math.unit(30, "inches"),
  31943. name: "Dick",
  31944. image: {
  31945. source: "./media/characters/rhys-londe/dick.svg"
  31946. }
  31947. },
  31948. maw: {
  31949. height: math.unit(1.6, "feet"),
  31950. name: "Maw",
  31951. image: {
  31952. source: "./media/characters/rhys-londe/maw.svg"
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Normal",
  31959. height: math.unit(6 + 8/12, "feet"),
  31960. default: true
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31966. {
  31967. front: {
  31968. height: math.unit(3 + 10/12, "feet"),
  31969. weight: math.unit(90, "lb"),
  31970. name: "Front",
  31971. image: {
  31972. source: "./media/characters/taivas-ensim/front.svg",
  31973. extra: 1327/1216,
  31974. bottom: 96/1423
  31975. }
  31976. },
  31977. back: {
  31978. height: math.unit(3 + 10/12, "feet"),
  31979. weight: math.unit(90, "lb"),
  31980. name: "Back",
  31981. image: {
  31982. source: "./media/characters/taivas-ensim/back.svg",
  31983. extra: 1355/1247,
  31984. bottom: 11/1366
  31985. }
  31986. },
  31987. frontNsfw: {
  31988. height: math.unit(3 + 10/12, "feet"),
  31989. weight: math.unit(90, "lb"),
  31990. name: "Front (NSFW)",
  31991. image: {
  31992. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31993. extra: 1327/1216,
  31994. bottom: 96/1423
  31995. }
  31996. },
  31997. backNsfw: {
  31998. height: math.unit(3 + 10/12, "feet"),
  31999. weight: math.unit(90, "lb"),
  32000. name: "Back (NSFW)",
  32001. image: {
  32002. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32003. extra: 1355/1247,
  32004. bottom: 11/1366
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Normal",
  32011. height: math.unit(3 + 10/12, "feet"),
  32012. default: true
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32018. {
  32019. front: {
  32020. height: math.unit(9 + 6/12, "feet"),
  32021. weight: math.unit(940, "lb"),
  32022. name: "Front",
  32023. image: {
  32024. source: "./media/characters/byliss/front.svg",
  32025. extra: 1327/1290,
  32026. bottom: 82/1409
  32027. }
  32028. },
  32029. back: {
  32030. height: math.unit(9 + 6/12, "feet"),
  32031. weight: math.unit(940, "lb"),
  32032. name: "Back",
  32033. image: {
  32034. source: "./media/characters/byliss/back.svg",
  32035. extra: 1376/1349,
  32036. bottom: 9/1385
  32037. }
  32038. },
  32039. frontNsfw: {
  32040. height: math.unit(9 + 6/12, "feet"),
  32041. weight: math.unit(940, "lb"),
  32042. name: "Front (NSFW)",
  32043. image: {
  32044. source: "./media/characters/byliss/front-nsfw.svg",
  32045. extra: 1327/1290,
  32046. bottom: 82/1409
  32047. }
  32048. },
  32049. backNsfw: {
  32050. height: math.unit(9 + 6/12, "feet"),
  32051. weight: math.unit(940, "lb"),
  32052. name: "Back (NSFW)",
  32053. image: {
  32054. source: "./media/characters/byliss/back-nsfw.svg",
  32055. extra: 1376/1349,
  32056. bottom: 9/1385
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Normal",
  32063. height: math.unit(9 + 6/12, "feet"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32070. {
  32071. front: {
  32072. height: math.unit(5 + 2/12, "feet"),
  32073. weight: math.unit(200, "lb"),
  32074. name: "Front",
  32075. image: {
  32076. source: "./media/characters/noraly/front.svg",
  32077. extra: 4985/4773,
  32078. bottom: 150/5135
  32079. }
  32080. },
  32081. full: {
  32082. height: math.unit(5 + 2/12, "feet"),
  32083. weight: math.unit(164, "lb"),
  32084. name: "Full",
  32085. image: {
  32086. source: "./media/characters/noraly/full.svg",
  32087. extra: 1114/1059,
  32088. bottom: 35/1149
  32089. }
  32090. },
  32091. fuller: {
  32092. height: math.unit(5 + 2/12, "feet"),
  32093. weight: math.unit(230, "lb"),
  32094. name: "Fuller",
  32095. image: {
  32096. source: "./media/characters/noraly/fuller.svg",
  32097. extra: 1114/1059,
  32098. bottom: 35/1149
  32099. }
  32100. },
  32101. fullest: {
  32102. height: math.unit(5 + 2/12, "feet"),
  32103. weight: math.unit(300, "lb"),
  32104. name: "Fullest",
  32105. image: {
  32106. source: "./media/characters/noraly/fullest.svg",
  32107. extra: 1114/1059,
  32108. bottom: 35/1149
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(5 + 2/12, "feet"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32122. {
  32123. front: {
  32124. height: math.unit(5 + 2/12, "feet"),
  32125. weight: math.unit(210, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/pera/front.svg",
  32129. extra: 1560/1531,
  32130. bottom: 165/1725
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(5 + 2/12, "feet"),
  32135. weight: math.unit(210, "lb"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/pera/back.svg",
  32139. extra: 1523/1493,
  32140. bottom: 152/1675
  32141. }
  32142. },
  32143. dick: {
  32144. height: math.unit(2.4, "feet"),
  32145. name: "Dick",
  32146. image: {
  32147. source: "./media/characters/pera/dick.svg"
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(5 + 2/12, "feet"),
  32155. default: true
  32156. },
  32157. ]
  32158. ))
  32159. characterMakers.push(() => makeCharacter(
  32160. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32161. {
  32162. front: {
  32163. height: math.unit(12, "feet"),
  32164. weight: math.unit(3200, "lb"),
  32165. name: "Front",
  32166. image: {
  32167. source: "./media/characters/julian/front.svg",
  32168. extra: 2962/2701,
  32169. bottom: 184/3146
  32170. }
  32171. },
  32172. maw: {
  32173. height: math.unit(5.35, "feet"),
  32174. name: "Maw",
  32175. image: {
  32176. source: "./media/characters/julian/maw.svg"
  32177. }
  32178. },
  32179. paw: {
  32180. height: math.unit(3.07, "feet"),
  32181. name: "Paw",
  32182. image: {
  32183. source: "./media/characters/julian/paw.svg"
  32184. }
  32185. },
  32186. },
  32187. [
  32188. {
  32189. name: "Default",
  32190. height: math.unit(12, "feet"),
  32191. default: true
  32192. },
  32193. {
  32194. name: "Big",
  32195. height: math.unit(50, "feet")
  32196. },
  32197. {
  32198. name: "Really Big",
  32199. height: math.unit(1, "mile")
  32200. },
  32201. {
  32202. name: "Extremely Big",
  32203. height: math.unit(100, "miles")
  32204. },
  32205. {
  32206. name: "Planet Hugger",
  32207. height: math.unit(200, "megameters")
  32208. },
  32209. {
  32210. name: "Unreasonably Big",
  32211. height: math.unit(1e300, "meters")
  32212. },
  32213. ]
  32214. ))
  32215. characterMakers.push(() => makeCharacter(
  32216. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32217. {
  32218. solgooleo: {
  32219. height: math.unit(4, "meters"),
  32220. weight: math.unit(6000*1.5, "kg"),
  32221. volume: math.unit(6000, "liters"),
  32222. name: "Solgooleo",
  32223. image: {
  32224. source: "./media/characters/pi/solgooleo.svg",
  32225. extra: 388/331,
  32226. bottom: 29/417
  32227. }
  32228. },
  32229. },
  32230. [
  32231. {
  32232. name: "Normal",
  32233. height: math.unit(4, "meters"),
  32234. default: true
  32235. },
  32236. ]
  32237. ))
  32238. characterMakers.push(() => makeCharacter(
  32239. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32240. {
  32241. front: {
  32242. height: math.unit(8 + 2/12, "feet"),
  32243. weight: math.unit(4, "tons"),
  32244. name: "Front",
  32245. image: {
  32246. source: "./media/characters/shaun/front.svg",
  32247. extra: 1550/1505,
  32248. bottom: 353/1903
  32249. }
  32250. },
  32251. },
  32252. [
  32253. {
  32254. name: "Lorg",
  32255. height: math.unit(8 + 2/12, "feet"),
  32256. default: true
  32257. },
  32258. ]
  32259. ))
  32260. characterMakers.push(() => makeCharacter(
  32261. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32262. {
  32263. front: {
  32264. height: math.unit(7, "feet"),
  32265. name: "Front",
  32266. image: {
  32267. source: "./media/characters/sini/front.svg",
  32268. extra: 726/678,
  32269. bottom: 35/761
  32270. }
  32271. },
  32272. back: {
  32273. height: math.unit(7, "feet"),
  32274. name: "Back",
  32275. image: {
  32276. source: "./media/characters/sini/back.svg",
  32277. extra: 743/701,
  32278. bottom: 12/755
  32279. }
  32280. },
  32281. mawAnthro: {
  32282. height: math.unit(2.14, "feet"),
  32283. name: "Maw (Anthro)",
  32284. image: {
  32285. source: "./media/characters/sini/maw-anthro.svg"
  32286. }
  32287. },
  32288. dick: {
  32289. height: math.unit(1.45, "feet"),
  32290. name: "Dick (Anthro)",
  32291. image: {
  32292. source: "./media/characters/sini/dick-anthro.svg"
  32293. }
  32294. },
  32295. feral: {
  32296. height: math.unit(16, "feet"),
  32297. name: "Feral",
  32298. image: {
  32299. source: "./media/characters/sini/feral.svg",
  32300. extra: 814/605,
  32301. bottom: 11/825
  32302. }
  32303. },
  32304. mawFeral: {
  32305. height: math.unit(5.66, "feet"),
  32306. name: "Maw-feral",
  32307. image: {
  32308. source: "./media/characters/sini/maw-feral.svg"
  32309. }
  32310. },
  32311. footFeral: {
  32312. height: math.unit(5.17, "feet"),
  32313. name: "Foot-feral",
  32314. image: {
  32315. source: "./media/characters/sini/foot-feral.svg"
  32316. }
  32317. },
  32318. },
  32319. [
  32320. {
  32321. name: "Normal",
  32322. height: math.unit(7, "feet"),
  32323. default: true
  32324. },
  32325. ]
  32326. ))
  32327. characterMakers.push(() => makeCharacter(
  32328. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32329. {
  32330. side: {
  32331. height: math.unit(13, "meters"),
  32332. weight: math.unit(9072, "kg"),
  32333. name: "Side",
  32334. image: {
  32335. source: "./media/characters/raylldo/side.svg",
  32336. extra: 403/344,
  32337. bottom: 42/445
  32338. }
  32339. },
  32340. leaping: {
  32341. height: math.unit(12.3, "meters"),
  32342. weight: math.unit(9072, "kg"),
  32343. name: "Leaping",
  32344. image: {
  32345. source: "./media/characters/raylldo/leaping.svg",
  32346. extra: 470/249,
  32347. bottom: 13/483
  32348. }
  32349. },
  32350. flying: {
  32351. height: math.unit(18, "meters"),
  32352. weight: math.unit(9072, "kg"),
  32353. name: "Flying",
  32354. image: {
  32355. source: "./media/characters/raylldo/flying.svg"
  32356. }
  32357. },
  32358. head: {
  32359. height: math.unit(5.85, "meters"),
  32360. name: "Head",
  32361. image: {
  32362. source: "./media/characters/raylldo/head.svg"
  32363. }
  32364. },
  32365. maw: {
  32366. height: math.unit(5.32, "meters"),
  32367. name: "Maw",
  32368. image: {
  32369. source: "./media/characters/raylldo/maw.svg"
  32370. }
  32371. },
  32372. eye: {
  32373. height: math.unit(0.54, "meters"),
  32374. name: "Eye",
  32375. image: {
  32376. source: "./media/characters/raylldo/eye.svg"
  32377. }
  32378. },
  32379. },
  32380. [
  32381. {
  32382. name: "Normal",
  32383. height: math.unit(13, "meters"),
  32384. default: true
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32390. {
  32391. anthroFront: {
  32392. height: math.unit(9, "feet"),
  32393. weight: math.unit(600, "lb"),
  32394. name: "Anthro (Front)",
  32395. image: {
  32396. source: "./media/characters/glint/anthro-front.svg",
  32397. extra: 1097/1018,
  32398. bottom: 28/1125
  32399. }
  32400. },
  32401. anthroBack: {
  32402. height: math.unit(9, "feet"),
  32403. weight: math.unit(600, "lb"),
  32404. name: "Anthro (Back)",
  32405. image: {
  32406. source: "./media/characters/glint/anthro-back.svg",
  32407. extra: 1154/997,
  32408. bottom: 36/1190
  32409. }
  32410. },
  32411. feral: {
  32412. height: math.unit(11, "feet"),
  32413. weight: math.unit(50000, "lb"),
  32414. name: "Feral",
  32415. image: {
  32416. source: "./media/characters/glint/feral.svg",
  32417. extra: 3035/1585,
  32418. bottom: 1169/4204
  32419. }
  32420. },
  32421. dickAnthro: {
  32422. height: math.unit(0.7, "meters"),
  32423. name: "Dick (Anthro)",
  32424. image: {
  32425. source: "./media/characters/glint/dick-anthro.svg"
  32426. }
  32427. },
  32428. dickFeral: {
  32429. height: math.unit(2.65, "meters"),
  32430. name: "Dick (Feral)",
  32431. image: {
  32432. source: "./media/characters/glint/dick-feral.svg"
  32433. }
  32434. },
  32435. slitHidden: {
  32436. height: math.unit(5.85, "meters"),
  32437. name: "Slit (Hidden)",
  32438. image: {
  32439. source: "./media/characters/glint/slit-hidden.svg"
  32440. }
  32441. },
  32442. slitErect: {
  32443. height: math.unit(5.85, "meters"),
  32444. name: "Slit (Erect)",
  32445. image: {
  32446. source: "./media/characters/glint/slit-erect.svg"
  32447. }
  32448. },
  32449. mawAnthro: {
  32450. height: math.unit(0.63, "meters"),
  32451. name: "Maw (Anthro)",
  32452. image: {
  32453. source: "./media/characters/glint/maw.svg"
  32454. }
  32455. },
  32456. mawFeral: {
  32457. height: math.unit(2.89, "meters"),
  32458. name: "Maw (Feral)",
  32459. image: {
  32460. source: "./media/characters/glint/maw.svg"
  32461. }
  32462. },
  32463. },
  32464. [
  32465. {
  32466. name: "Normal",
  32467. height: math.unit(9, "feet"),
  32468. default: true
  32469. },
  32470. ]
  32471. ))
  32472. characterMakers.push(() => makeCharacter(
  32473. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32474. {
  32475. side: {
  32476. height: math.unit(15, "feet"),
  32477. weight: math.unit(5000, "kg"),
  32478. name: "Side",
  32479. image: {
  32480. source: "./media/characters/kairne/side.svg",
  32481. extra: 979/811,
  32482. bottom: 13/992
  32483. }
  32484. },
  32485. front: {
  32486. height: math.unit(15, "feet"),
  32487. weight: math.unit(5000, "kg"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/kairne/front.svg",
  32491. extra: 908/814,
  32492. bottom: 26/934
  32493. }
  32494. },
  32495. sideNsfw: {
  32496. height: math.unit(15, "feet"),
  32497. weight: math.unit(5000, "kg"),
  32498. name: "Side (NSFW)",
  32499. image: {
  32500. source: "./media/characters/kairne/side-nsfw.svg",
  32501. extra: 979/811,
  32502. bottom: 13/992
  32503. }
  32504. },
  32505. frontNsfw: {
  32506. height: math.unit(15, "feet"),
  32507. weight: math.unit(5000, "kg"),
  32508. name: "Front (NSFW)",
  32509. image: {
  32510. source: "./media/characters/kairne/front-nsfw.svg",
  32511. extra: 908/814,
  32512. bottom: 26/934
  32513. }
  32514. },
  32515. dickCaged: {
  32516. height: math.unit(0.65, "meters"),
  32517. name: "Dick-caged",
  32518. image: {
  32519. source: "./media/characters/kairne/dick-caged.svg"
  32520. }
  32521. },
  32522. dick: {
  32523. height: math.unit(0.79, "meters"),
  32524. name: "Dick",
  32525. image: {
  32526. source: "./media/characters/kairne/dick.svg"
  32527. }
  32528. },
  32529. genitals: {
  32530. height: math.unit(1.29, "meters"),
  32531. name: "Genitals",
  32532. image: {
  32533. source: "./media/characters/kairne/genitals.svg"
  32534. }
  32535. },
  32536. maw: {
  32537. height: math.unit(1.73, "meters"),
  32538. name: "Maw",
  32539. image: {
  32540. source: "./media/characters/kairne/maw.svg"
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(15, "feet"),
  32548. default: true
  32549. },
  32550. ]
  32551. ))
  32552. characterMakers.push(() => makeCharacter(
  32553. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32554. {
  32555. front: {
  32556. height: math.unit(5 + 8/12, "feet"),
  32557. weight: math.unit(139, "lb"),
  32558. name: "Front",
  32559. image: {
  32560. source: "./media/characters/biscuit-jackal/front.svg",
  32561. extra: 2106/1961,
  32562. bottom: 58/2164
  32563. }
  32564. },
  32565. back: {
  32566. height: math.unit(5 + 8/12, "feet"),
  32567. weight: math.unit(139, "lb"),
  32568. name: "Back",
  32569. image: {
  32570. source: "./media/characters/biscuit-jackal/back.svg",
  32571. extra: 2132/1976,
  32572. bottom: 57/2189
  32573. }
  32574. },
  32575. werejackal: {
  32576. height: math.unit(6 + 3/12, "feet"),
  32577. weight: math.unit(188, "lb"),
  32578. name: "Werejackal",
  32579. image: {
  32580. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32581. extra: 2373/2178,
  32582. bottom: 53/2426
  32583. }
  32584. },
  32585. },
  32586. [
  32587. {
  32588. name: "Normal",
  32589. height: math.unit(5 + 8/12, "feet"),
  32590. default: true
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32596. {
  32597. front: {
  32598. height: math.unit(140, "cm"),
  32599. weight: math.unit(45, "kg"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/tayra-white/front.svg",
  32603. extra: 2229/2192,
  32604. bottom: 75/2304
  32605. }
  32606. },
  32607. },
  32608. [
  32609. {
  32610. name: "Normal",
  32611. height: math.unit(140, "cm"),
  32612. default: true
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32618. {
  32619. front: {
  32620. height: math.unit(4 + 5/12, "feet"),
  32621. name: "Front",
  32622. image: {
  32623. source: "./media/characters/scoop/front.svg",
  32624. extra: 1257/1136,
  32625. bottom: 69/1326
  32626. }
  32627. },
  32628. back: {
  32629. height: math.unit(4 + 5/12, "feet"),
  32630. name: "Back",
  32631. image: {
  32632. source: "./media/characters/scoop/back.svg",
  32633. extra: 1321/1152,
  32634. bottom: 32/1353
  32635. }
  32636. },
  32637. maw: {
  32638. height: math.unit(0.68, "feet"),
  32639. name: "Maw",
  32640. image: {
  32641. source: "./media/characters/scoop/maw.svg"
  32642. }
  32643. },
  32644. },
  32645. [
  32646. {
  32647. name: "Really Small",
  32648. height: math.unit(1, "mm")
  32649. },
  32650. {
  32651. name: "Micro",
  32652. height: math.unit(1, "inch")
  32653. },
  32654. {
  32655. name: "Normal",
  32656. height: math.unit(4 + 5/12, "feet"),
  32657. default: true
  32658. },
  32659. {
  32660. name: "Macro",
  32661. height: math.unit(200, "feet")
  32662. },
  32663. {
  32664. name: "Megamacro",
  32665. height: math.unit(3240, "feet")
  32666. },
  32667. {
  32668. name: "Teramacro",
  32669. height: math.unit(2500, "miles")
  32670. },
  32671. ]
  32672. ))
  32673. characterMakers.push(() => makeCharacter(
  32674. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32675. {
  32676. front: {
  32677. height: math.unit(15 + 7/12, "feet"),
  32678. name: "Front",
  32679. image: {
  32680. source: "./media/characters/saphinara/front.svg",
  32681. extra: 604/546,
  32682. bottom: 19/623
  32683. }
  32684. },
  32685. side: {
  32686. height: math.unit(15 + 7/12, "feet"),
  32687. name: "Side",
  32688. image: {
  32689. source: "./media/characters/saphinara/side.svg",
  32690. extra: 605/547,
  32691. bottom: 6/611
  32692. }
  32693. },
  32694. back: {
  32695. height: math.unit(15 + 7/12, "feet"),
  32696. name: "Back",
  32697. image: {
  32698. source: "./media/characters/saphinara/back.svg",
  32699. extra: 591/531,
  32700. bottom: 13/604
  32701. }
  32702. },
  32703. frontTail: {
  32704. height: math.unit(15 + 7/12, "feet"),
  32705. name: "Front (Full Tail)",
  32706. image: {
  32707. source: "./media/characters/saphinara/front-tail.svg",
  32708. extra: 748/547,
  32709. bottom: 66/814
  32710. }
  32711. },
  32712. },
  32713. [
  32714. {
  32715. name: "Normal",
  32716. height: math.unit(15 + 7/12, "feet"),
  32717. default: true
  32718. },
  32719. {
  32720. name: "Angry",
  32721. height: math.unit(30 + 6/12, "feet")
  32722. },
  32723. {
  32724. name: "Enraged",
  32725. height: math.unit(102 + 1/12, "feet")
  32726. },
  32727. ]
  32728. ))
  32729. characterMakers.push(() => makeCharacter(
  32730. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32731. {
  32732. front: {
  32733. height: math.unit(6 + 8/12, "feet"),
  32734. weight: math.unit(300, "lb"),
  32735. name: "Front",
  32736. image: {
  32737. source: "./media/characters/jrain/front.svg",
  32738. extra: 3039/2865,
  32739. bottom: 399/3438
  32740. }
  32741. },
  32742. back: {
  32743. height: math.unit(6 + 8/12, "feet"),
  32744. weight: math.unit(300, "lb"),
  32745. name: "Back",
  32746. image: {
  32747. source: "./media/characters/jrain/back.svg",
  32748. extra: 3089/2938,
  32749. bottom: 172/3261
  32750. }
  32751. },
  32752. head: {
  32753. height: math.unit(2.14, "feet"),
  32754. name: "Head",
  32755. image: {
  32756. source: "./media/characters/jrain/head.svg"
  32757. }
  32758. },
  32759. maw: {
  32760. height: math.unit(1.77, "feet"),
  32761. name: "Maw",
  32762. image: {
  32763. source: "./media/characters/jrain/maw.svg"
  32764. }
  32765. },
  32766. leftHand: {
  32767. height: math.unit(1.1, "feet"),
  32768. name: "Left Hand",
  32769. image: {
  32770. source: "./media/characters/jrain/left-hand.svg"
  32771. }
  32772. },
  32773. rightHand: {
  32774. height: math.unit(1.1, "feet"),
  32775. name: "Right Hand",
  32776. image: {
  32777. source: "./media/characters/jrain/right-hand.svg"
  32778. }
  32779. },
  32780. eye: {
  32781. height: math.unit(0.35, "feet"),
  32782. name: "Eye",
  32783. image: {
  32784. source: "./media/characters/jrain/eye.svg"
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(6 + 8/12, "feet"),
  32792. default: true
  32793. },
  32794. {
  32795. name: "Casually Large",
  32796. height: math.unit(25, "feet")
  32797. },
  32798. {
  32799. name: "Giant",
  32800. height: math.unit(100, "feet")
  32801. },
  32802. {
  32803. name: "Kaiju",
  32804. height: math.unit(300, "feet")
  32805. },
  32806. ]
  32807. ))
  32808. characterMakers.push(() => makeCharacter(
  32809. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32810. {
  32811. dragon: {
  32812. height: math.unit(5, "meters"),
  32813. name: "Dragon",
  32814. image: {
  32815. source: "./media/characters/sabrina/dragon.svg",
  32816. extra: 3670 / 2365,
  32817. bottom: 333 / 4003
  32818. }
  32819. },
  32820. gryphon: {
  32821. height: math.unit(3, "meters"),
  32822. name: "Gryphon",
  32823. image: {
  32824. source: "./media/characters/sabrina/gryphon.svg",
  32825. extra: 1576 / 945,
  32826. bottom: 71 / 1647
  32827. }
  32828. },
  32829. snake: {
  32830. height: math.unit(12, "meters"),
  32831. name: "Snake",
  32832. image: {
  32833. source: "./media/characters/sabrina/snake.svg",
  32834. extra: 1758 / 1320,
  32835. bottom: 186 / 1944
  32836. }
  32837. },
  32838. collar: {
  32839. height: math.unit(1.86, "meters"),
  32840. name: "Collar",
  32841. image: {
  32842. source: "./media/characters/sabrina/collar.svg"
  32843. }
  32844. },
  32845. eye: {
  32846. height: math.unit(0.53, "meters"),
  32847. name: "Eye",
  32848. image: {
  32849. source: "./media/characters/sabrina/eye.svg"
  32850. }
  32851. },
  32852. foot: {
  32853. height: math.unit(1.86, "meters"),
  32854. name: "Foot",
  32855. image: {
  32856. source: "./media/characters/sabrina/foot.svg"
  32857. }
  32858. },
  32859. hand: {
  32860. height: math.unit(1.32, "meters"),
  32861. name: "Hand",
  32862. image: {
  32863. source: "./media/characters/sabrina/hand.svg"
  32864. }
  32865. },
  32866. head: {
  32867. height: math.unit(2.44, "meters"),
  32868. name: "Head",
  32869. image: {
  32870. source: "./media/characters/sabrina/head.svg"
  32871. }
  32872. },
  32873. headAngry: {
  32874. height: math.unit(2.44, "meters"),
  32875. name: "Head (Angry))",
  32876. image: {
  32877. source: "./media/characters/sabrina/head-angry.svg"
  32878. }
  32879. },
  32880. maw: {
  32881. height: math.unit(1.65, "meters"),
  32882. name: "Maw",
  32883. image: {
  32884. source: "./media/characters/sabrina/maw.svg"
  32885. }
  32886. },
  32887. spikes: {
  32888. height: math.unit(1.69, "meters"),
  32889. name: "Spikes",
  32890. image: {
  32891. source: "./media/characters/sabrina/spikes.svg"
  32892. }
  32893. },
  32894. stomach: {
  32895. height: math.unit(1.15, "meters"),
  32896. name: "Stomach",
  32897. image: {
  32898. source: "./media/characters/sabrina/stomach.svg"
  32899. }
  32900. },
  32901. tongue: {
  32902. height: math.unit(1.27, "meters"),
  32903. name: "Tongue",
  32904. image: {
  32905. source: "./media/characters/sabrina/tongue.svg"
  32906. }
  32907. },
  32908. wingDorsal: {
  32909. height: math.unit(4.85, "meters"),
  32910. name: "Wing (Dorsal)",
  32911. image: {
  32912. source: "./media/characters/sabrina/wing-dorsal.svg"
  32913. }
  32914. },
  32915. wingVentral: {
  32916. height: math.unit(4.85, "meters"),
  32917. name: "Wing (Ventral)",
  32918. image: {
  32919. source: "./media/characters/sabrina/wing-ventral.svg"
  32920. }
  32921. },
  32922. },
  32923. [
  32924. {
  32925. name: "Normal",
  32926. height: math.unit(5, "meters"),
  32927. default: true
  32928. },
  32929. ]
  32930. ))
  32931. characterMakers.push(() => makeCharacter(
  32932. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32933. {
  32934. frontMaid: {
  32935. height: math.unit(5 + 5/12, "feet"),
  32936. weight: math.unit(130, "lb"),
  32937. name: "Front (Maid)",
  32938. image: {
  32939. source: "./media/characters/midnight-tales/front-maid.svg",
  32940. extra: 489/454,
  32941. bottom: 61/550
  32942. }
  32943. },
  32944. frontFormal: {
  32945. height: math.unit(5 + 5/12, "feet"),
  32946. weight: math.unit(130, "lb"),
  32947. name: "Front (Formal)",
  32948. image: {
  32949. source: "./media/characters/midnight-tales/front-formal.svg",
  32950. extra: 489/454,
  32951. bottom: 61/550
  32952. }
  32953. },
  32954. back: {
  32955. height: math.unit(5 + 5/12, "feet"),
  32956. weight: math.unit(130, "lb"),
  32957. name: "Back",
  32958. image: {
  32959. source: "./media/characters/midnight-tales/back.svg",
  32960. extra: 498/456,
  32961. bottom: 33/531
  32962. }
  32963. },
  32964. frontBeast: {
  32965. height: math.unit(40, "feet"),
  32966. weight: math.unit(64000, "lb"),
  32967. name: "Front (Beast)",
  32968. image: {
  32969. source: "./media/characters/midnight-tales/front-beast.svg",
  32970. extra: 927/860,
  32971. bottom: 53/980
  32972. }
  32973. },
  32974. backBeast: {
  32975. height: math.unit(40, "feet"),
  32976. weight: math.unit(64000, "lb"),
  32977. name: "Back (Beast)",
  32978. image: {
  32979. source: "./media/characters/midnight-tales/back-beast.svg",
  32980. extra: 929/855,
  32981. bottom: 16/945
  32982. }
  32983. },
  32984. footBeast: {
  32985. height: math.unit(6.7, "feet"),
  32986. name: "Foot (Beast)",
  32987. image: {
  32988. source: "./media/characters/midnight-tales/foot-beast.svg"
  32989. }
  32990. },
  32991. headBeast: {
  32992. height: math.unit(8, "feet"),
  32993. name: "Head (Beast)",
  32994. image: {
  32995. source: "./media/characters/midnight-tales/head-beast.svg"
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(5 + 5 / 12, "feet"),
  33003. default: true
  33004. },
  33005. {
  33006. name: "Macro",
  33007. height: math.unit(25, "feet")
  33008. },
  33009. ]
  33010. ))
  33011. characterMakers.push(() => makeCharacter(
  33012. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33013. {
  33014. front: {
  33015. height: math.unit(5 + 10/12, "feet"),
  33016. name: "Front",
  33017. image: {
  33018. source: "./media/characters/argon/front.svg",
  33019. extra: 2009/1935,
  33020. bottom: 118/2127
  33021. }
  33022. },
  33023. back: {
  33024. height: math.unit(5 + 10/12, "feet"),
  33025. name: "Back",
  33026. image: {
  33027. source: "./media/characters/argon/back.svg",
  33028. extra: 2047/1992,
  33029. bottom: 20/2067
  33030. }
  33031. },
  33032. frontDressed: {
  33033. height: math.unit(5 + 10/12, "feet"),
  33034. name: "Front (Dressed)",
  33035. image: {
  33036. source: "./media/characters/argon/front-dressed.svg",
  33037. extra: 2009/1935,
  33038. bottom: 118/2127
  33039. }
  33040. },
  33041. },
  33042. [
  33043. {
  33044. name: "Normal",
  33045. height: math.unit(5 + 10/12, "feet"),
  33046. default: true
  33047. },
  33048. ]
  33049. ))
  33050. characterMakers.push(() => makeCharacter(
  33051. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33052. {
  33053. front: {
  33054. height: math.unit(8 + 6/12, "feet"),
  33055. weight: math.unit(1150, "lb"),
  33056. name: "Front",
  33057. image: {
  33058. source: "./media/characters/kichi/front.svg",
  33059. extra: 1267/1164,
  33060. bottom: 61/1328
  33061. }
  33062. },
  33063. back: {
  33064. height: math.unit(8 + 6/12, "feet"),
  33065. weight: math.unit(1150, "lb"),
  33066. name: "Back",
  33067. image: {
  33068. source: "./media/characters/kichi/back.svg",
  33069. extra: 1273/1166,
  33070. bottom: 33/1306
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Normal",
  33077. height: math.unit(8 + 6/12, "feet"),
  33078. default: true
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33084. {
  33085. front: {
  33086. height: math.unit(6, "feet"),
  33087. weight: math.unit(210, "lb"),
  33088. name: "Front",
  33089. image: {
  33090. source: "./media/characters/manetel-greyscale/front.svg",
  33091. extra: 350/312,
  33092. bottom: 8/358
  33093. }
  33094. },
  33095. },
  33096. [
  33097. {
  33098. name: "Micro",
  33099. height: math.unit(2, "inches")
  33100. },
  33101. {
  33102. name: "Normal",
  33103. height: math.unit(6, "feet"),
  33104. default: true
  33105. },
  33106. {
  33107. name: "Minimacro",
  33108. height: math.unit(17, "feet")
  33109. },
  33110. {
  33111. name: "Macro",
  33112. height: math.unit(117, "feet")
  33113. },
  33114. ]
  33115. ))
  33116. characterMakers.push(() => makeCharacter(
  33117. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33118. {
  33119. side: {
  33120. height: math.unit(5 + 1/12, "feet"),
  33121. weight: math.unit(418, "lb"),
  33122. name: "Side",
  33123. image: {
  33124. source: "./media/characters/softpurr/side.svg",
  33125. extra: 1993/1945,
  33126. bottom: 134/2127
  33127. }
  33128. },
  33129. front: {
  33130. height: math.unit(5 + 1/12, "feet"),
  33131. weight: math.unit(418, "lb"),
  33132. name: "Front",
  33133. image: {
  33134. source: "./media/characters/softpurr/front.svg",
  33135. extra: 1950/1856,
  33136. bottom: 174/2124
  33137. }
  33138. },
  33139. paw: {
  33140. height: math.unit(1, "feet"),
  33141. name: "Paw",
  33142. image: {
  33143. source: "./media/characters/softpurr/paw.svg"
  33144. }
  33145. },
  33146. },
  33147. [
  33148. {
  33149. name: "Normal",
  33150. height: math.unit(5 + 1/12, "feet"),
  33151. default: true
  33152. },
  33153. ]
  33154. ))
  33155. characterMakers.push(() => makeCharacter(
  33156. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33157. {
  33158. front: {
  33159. height: math.unit(260, "meters"),
  33160. name: "Front",
  33161. image: {
  33162. source: "./media/characters/anahita/front.svg",
  33163. extra: 665/635,
  33164. bottom: 89/754
  33165. }
  33166. },
  33167. },
  33168. [
  33169. {
  33170. name: "Macro",
  33171. height: math.unit(260, "meters"),
  33172. default: true
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33178. {
  33179. front: {
  33180. height: math.unit(4 + 10/12, "feet"),
  33181. weight: math.unit(160, "lb"),
  33182. name: "Front",
  33183. image: {
  33184. source: "./media/characters/chip-mouse/front.svg",
  33185. extra: 3528/3408,
  33186. bottom: 0/3528
  33187. }
  33188. },
  33189. frontNsfw: {
  33190. height: math.unit(4 + 10/12, "feet"),
  33191. weight: math.unit(160, "lb"),
  33192. name: "Front (NSFW)",
  33193. image: {
  33194. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33195. extra: 3528/3408,
  33196. bottom: 0/3528
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(4 + 10/12, "feet"),
  33204. default: true
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33210. {
  33211. side: {
  33212. height: math.unit(10, "feet"),
  33213. weight: math.unit(14000, "lb"),
  33214. name: "Side",
  33215. image: {
  33216. source: "./media/characters/kremm/side.svg",
  33217. extra: 1390/1053,
  33218. bottom: 90/1480
  33219. }
  33220. },
  33221. gut: {
  33222. height: math.unit(5.8, "feet"),
  33223. name: "Gut",
  33224. image: {
  33225. source: "./media/characters/kremm/gut.svg"
  33226. }
  33227. },
  33228. ass: {
  33229. height: math.unit(6.1, "feet"),
  33230. name: "Ass",
  33231. image: {
  33232. source: "./media/characters/kremm/ass.svg"
  33233. }
  33234. },
  33235. jaws: {
  33236. height: math.unit(2.2, "feet"),
  33237. name: "Jaws",
  33238. image: {
  33239. source: "./media/characters/kremm/jaws.svg"
  33240. }
  33241. },
  33242. dick: {
  33243. height: math.unit(4.26, "feet"),
  33244. name: "Dick",
  33245. image: {
  33246. source: "./media/characters/kremm/dick.svg"
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(10, "feet"),
  33254. default: true
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33260. {
  33261. front: {
  33262. height: math.unit(30, "stories"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/kai/front.svg",
  33266. extra: 1892/1718,
  33267. bottom: 162/2054
  33268. }
  33269. },
  33270. },
  33271. [
  33272. {
  33273. name: "Macro",
  33274. height: math.unit(30, "stories"),
  33275. default: true
  33276. },
  33277. ]
  33278. ))
  33279. characterMakers.push(() => makeCharacter(
  33280. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33281. {
  33282. front: {
  33283. height: math.unit(6 + 4/12, "feet"),
  33284. weight: math.unit(145, "lb"),
  33285. name: "Front",
  33286. image: {
  33287. source: "./media/characters/sykes/front.svg",
  33288. extra: 1321 / 1187,
  33289. bottom: 66 / 1387
  33290. }
  33291. },
  33292. back: {
  33293. height: math.unit(6 + 4/12, "feet"),
  33294. weight: math.unit(145, "lb"),
  33295. name: "Back",
  33296. image: {
  33297. source: "./media/characters/sykes/back.svg",
  33298. extra: 1326/1181,
  33299. bottom: 31/1357
  33300. }
  33301. },
  33302. handBack: {
  33303. height: math.unit(0.9, "feet"),
  33304. name: "Hand (Back)",
  33305. image: {
  33306. source: "./media/characters/sykes/hand-back.svg"
  33307. }
  33308. },
  33309. handFront: {
  33310. height: math.unit(0.839, "feet"),
  33311. name: "Hand (Front)",
  33312. image: {
  33313. source: "./media/characters/sykes/hand-front.svg"
  33314. }
  33315. },
  33316. leftFoot: {
  33317. height: math.unit(1.2, "feet"),
  33318. name: "Foot (Left)",
  33319. image: {
  33320. source: "./media/characters/sykes/foot-left.svg"
  33321. }
  33322. },
  33323. rightFoot: {
  33324. height: math.unit(1.2, "feet"),
  33325. name: "Foot (Right)",
  33326. image: {
  33327. source: "./media/characters/sykes/foot-right.svg"
  33328. }
  33329. },
  33330. maw: {
  33331. height: math.unit(1.93, "feet"),
  33332. name: "Maw",
  33333. image: {
  33334. source: "./media/characters/sykes/maw.svg"
  33335. }
  33336. },
  33337. teeth: {
  33338. height: math.unit(0.51, "feet"),
  33339. name: "Teeth",
  33340. image: {
  33341. source: "./media/characters/sykes/teeth.svg"
  33342. }
  33343. },
  33344. tongue: {
  33345. height: math.unit(2.13, "feet"),
  33346. name: "Tongue",
  33347. image: {
  33348. source: "./media/characters/sykes/tongue.svg"
  33349. }
  33350. },
  33351. uvula: {
  33352. height: math.unit(0.16, "feet"),
  33353. name: "Uvula",
  33354. image: {
  33355. source: "./media/characters/sykes/uvula.svg"
  33356. }
  33357. },
  33358. collar: {
  33359. height: math.unit(0.287, "feet"),
  33360. name: "Collar",
  33361. image: {
  33362. source: "./media/characters/sykes/collar.svg"
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Shrunken",
  33369. height: math.unit(5, "inches")
  33370. },
  33371. {
  33372. name: "Normal",
  33373. height: math.unit(6 + 4 / 12, "feet"),
  33374. default: true
  33375. },
  33376. {
  33377. name: "Big",
  33378. height: math.unit(15, "feet")
  33379. },
  33380. ]
  33381. ))
  33382. characterMakers.push(() => makeCharacter(
  33383. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33384. {
  33385. front: {
  33386. height: math.unit(5 + 8/12, "feet"),
  33387. weight: math.unit(190, "lb"),
  33388. name: "Front",
  33389. image: {
  33390. source: "./media/characters/oven-otter/front.svg",
  33391. extra: 1809/1740,
  33392. bottom: 181/1990
  33393. }
  33394. },
  33395. back: {
  33396. height: math.unit(5 + 8/12, "feet"),
  33397. weight: math.unit(190, "lb"),
  33398. name: "Back",
  33399. image: {
  33400. source: "./media/characters/oven-otter/back.svg",
  33401. extra: 1709/1635,
  33402. bottom: 118/1827
  33403. }
  33404. },
  33405. hand: {
  33406. height: math.unit(1.07, "feet"),
  33407. name: "Hand",
  33408. image: {
  33409. source: "./media/characters/oven-otter/hand.svg"
  33410. }
  33411. },
  33412. beans: {
  33413. height: math.unit(1.74, "feet"),
  33414. name: "Beans",
  33415. image: {
  33416. source: "./media/characters/oven-otter/beans.svg"
  33417. }
  33418. },
  33419. },
  33420. [
  33421. {
  33422. name: "Micro",
  33423. height: math.unit(0.5, "inches")
  33424. },
  33425. {
  33426. name: "Normal",
  33427. height: math.unit(5 + 8/12, "feet"),
  33428. default: true
  33429. },
  33430. {
  33431. name: "Macro",
  33432. height: math.unit(250, "feet")
  33433. },
  33434. {
  33435. name: "Really High",
  33436. height: math.unit(420, "feet")
  33437. },
  33438. ]
  33439. ))
  33440. characterMakers.push(() => makeCharacter(
  33441. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33442. {
  33443. front: {
  33444. height: math.unit(5, "meters"),
  33445. weight: math.unit(292000000000000, "kg"),
  33446. name: "Front",
  33447. image: {
  33448. source: "./media/characters/devourer/front.svg",
  33449. extra: 1800/1733,
  33450. bottom: 211/2011
  33451. }
  33452. },
  33453. maw: {
  33454. height: math.unit(1.1, "meter"),
  33455. name: "Maw",
  33456. image: {
  33457. source: "./media/characters/devourer/maw.svg"
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Small",
  33464. height: math.unit(3, "meters")
  33465. },
  33466. {
  33467. name: "Large",
  33468. height: math.unit(5, "meters"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33475. {
  33476. front: {
  33477. height: math.unit(6, "feet"),
  33478. weight: math.unit(400, "lb"),
  33479. name: "Front",
  33480. image: {
  33481. source: "./media/characters/ellarby/front.svg",
  33482. extra: 1909/1763,
  33483. bottom: 80/1989
  33484. }
  33485. },
  33486. back: {
  33487. height: math.unit(6, "feet"),
  33488. weight: math.unit(400, "lb"),
  33489. name: "Back",
  33490. image: {
  33491. source: "./media/characters/ellarby/back.svg",
  33492. extra: 1914/1784,
  33493. bottom: 172/2086
  33494. }
  33495. },
  33496. },
  33497. [
  33498. {
  33499. name: "Mischief",
  33500. height: math.unit(18, "inches")
  33501. },
  33502. {
  33503. name: "Trouble",
  33504. height: math.unit(12, "feet")
  33505. },
  33506. {
  33507. name: "Havoc",
  33508. height: math.unit(200, "feet"),
  33509. default: true
  33510. },
  33511. {
  33512. name: "Pandemonium",
  33513. height: math.unit(1, "mile")
  33514. },
  33515. {
  33516. name: "Catastrophe",
  33517. height: math.unit(100, "miles")
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33523. {
  33524. front: {
  33525. height: math.unit(4.7, "meters"),
  33526. weight: math.unit(6500, "kg"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/vex/front.svg",
  33530. extra: 1288/1140,
  33531. bottom: 100/1388
  33532. }
  33533. },
  33534. },
  33535. [
  33536. {
  33537. name: "Normal",
  33538. height: math.unit(4.7, "meters"),
  33539. default: true
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33545. {
  33546. normal: {
  33547. height: math.unit(6, "feet"),
  33548. weight: math.unit(350, "lb"),
  33549. name: "Normal",
  33550. image: {
  33551. source: "./media/characters/teshy/normal.svg",
  33552. extra: 1795/1735,
  33553. bottom: 16/1811
  33554. }
  33555. },
  33556. monsterFront: {
  33557. height: math.unit(12, "feet"),
  33558. weight: math.unit(4700, "lb"),
  33559. name: "Monster (Front)",
  33560. image: {
  33561. source: "./media/characters/teshy/monster-front.svg",
  33562. extra: 2042/2034,
  33563. bottom: 128/2170
  33564. }
  33565. },
  33566. monsterSide: {
  33567. height: math.unit(12, "feet"),
  33568. weight: math.unit(4700, "lb"),
  33569. name: "Monster (Side)",
  33570. image: {
  33571. source: "./media/characters/teshy/monster-side.svg",
  33572. extra: 2067/2056,
  33573. bottom: 70/2137
  33574. }
  33575. },
  33576. monsterBack: {
  33577. height: math.unit(12, "feet"),
  33578. weight: math.unit(4700, "lb"),
  33579. name: "Monster (Back)",
  33580. image: {
  33581. source: "./media/characters/teshy/monster-back.svg",
  33582. extra: 1921/1914,
  33583. bottom: 171/2092
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(6, "feet"),
  33591. default: true
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33597. {
  33598. front: {
  33599. height: math.unit(6, "feet"),
  33600. name: "Front",
  33601. image: {
  33602. source: "./media/characters/ramey/front.svg",
  33603. extra: 790/787,
  33604. bottom: 27/817
  33605. }
  33606. },
  33607. },
  33608. [
  33609. {
  33610. name: "Normal",
  33611. height: math.unit(6, "feet"),
  33612. default: true
  33613. },
  33614. ]
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33618. {
  33619. front: {
  33620. height: math.unit(5 + 5/12, "feet"),
  33621. weight: math.unit(120, "lb"),
  33622. name: "Front",
  33623. image: {
  33624. source: "./media/characters/phirae/front.svg",
  33625. extra: 2491/2436,
  33626. bottom: 38/2529
  33627. }
  33628. },
  33629. },
  33630. [
  33631. {
  33632. name: "Normal",
  33633. height: math.unit(5 + 5/12, "feet"),
  33634. default: true
  33635. },
  33636. ]
  33637. ))
  33638. characterMakers.push(() => makeCharacter(
  33639. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33640. {
  33641. front: {
  33642. height: math.unit(6, "feet"),
  33643. weight: math.unit(150, "lb"),
  33644. name: "Front",
  33645. image: {
  33646. source: "./media/characters/stagglas/front.svg",
  33647. extra: 962/882,
  33648. bottom: 53/1015
  33649. }
  33650. },
  33651. },
  33652. [
  33653. {
  33654. name: "Normal",
  33655. height: math.unit(5 + 3/12, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33662. {
  33663. front: {
  33664. height: math.unit(5 + 4/12, "feet"),
  33665. weight: math.unit(145, "lb"),
  33666. name: "Front",
  33667. image: {
  33668. source: "./media/characters/starra/front.svg",
  33669. extra: 1790/1691,
  33670. bottom: 91/1881
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Normal",
  33677. height: math.unit(5 + 4/12, "feet"),
  33678. default: true
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33684. {
  33685. front: {
  33686. height: math.unit(2.2, "meters"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33690. extra: 1194/1005,
  33691. bottom: 25/1219
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(2.2, "meters"),
  33699. default: true
  33700. },
  33701. ]
  33702. ))
  33703. characterMakers.push(() => makeCharacter(
  33704. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33705. {
  33706. side: {
  33707. height: math.unit(8 + 2/12, "feet"),
  33708. weight: math.unit(1240, "lb"),
  33709. name: "Side",
  33710. image: {
  33711. source: "./media/characters/mika-valentine/side.svg",
  33712. extra: 2670/2501,
  33713. bottom: 250/2920
  33714. }
  33715. },
  33716. },
  33717. [
  33718. {
  33719. name: "Normal",
  33720. height: math.unit(8 + 2/12, "feet"),
  33721. default: true
  33722. },
  33723. ]
  33724. ))
  33725. characterMakers.push(() => makeCharacter(
  33726. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33727. {
  33728. front: {
  33729. height: math.unit(7 + 2/12, "feet"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/xoltol/front.svg",
  33733. extra: 2212/2124,
  33734. bottom: 84/2296
  33735. }
  33736. },
  33737. side: {
  33738. height: math.unit(7 + 2/12, "feet"),
  33739. name: "Side",
  33740. image: {
  33741. source: "./media/characters/xoltol/side.svg",
  33742. extra: 2273/2197,
  33743. bottom: 26/2299
  33744. }
  33745. },
  33746. hand: {
  33747. height: math.unit(2.5, "feet"),
  33748. name: "Hand",
  33749. image: {
  33750. source: "./media/characters/xoltol/hand.svg"
  33751. }
  33752. },
  33753. },
  33754. [
  33755. {
  33756. name: "Small-ish",
  33757. height: math.unit(5 + 11/12, "feet")
  33758. },
  33759. {
  33760. name: "Normal",
  33761. height: math.unit(7 + 2/12, "feet")
  33762. },
  33763. {
  33764. name: "\"Macro\"",
  33765. height: math.unit(14 + 9/12, "feet"),
  33766. default: true
  33767. },
  33768. {
  33769. name: "Alternate Height",
  33770. height: math.unit(20, "feet")
  33771. },
  33772. {
  33773. name: "Actually Macro",
  33774. height: math.unit(100, "feet")
  33775. },
  33776. ]
  33777. ))
  33778. characterMakers.push(() => makeCharacter(
  33779. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33780. {
  33781. front: {
  33782. height: math.unit(5 + 2/12, "feet"),
  33783. name: "Front",
  33784. image: {
  33785. source: "./media/characters/kotetsu-redwood/front.svg",
  33786. extra: 1053/942,
  33787. bottom: 60/1113
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Normal",
  33794. height: math.unit(5 + 2/12, "feet"),
  33795. default: true
  33796. },
  33797. ]
  33798. ))
  33799. characterMakers.push(() => makeCharacter(
  33800. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33801. {
  33802. front: {
  33803. height: math.unit(2.4, "meters"),
  33804. weight: math.unit(125, "kg"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/lilith/front.svg",
  33808. extra: 1590/1513,
  33809. bottom: 203/1793
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Humanoid",
  33816. height: math.unit(2.4, "meters")
  33817. },
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(6, "meters"),
  33821. default: true
  33822. },
  33823. {
  33824. name: "Largest",
  33825. height: math.unit(55, "meters")
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33831. {
  33832. front: {
  33833. height: math.unit(8 + 4/12, "feet"),
  33834. weight: math.unit(535, "lb"),
  33835. name: "Front",
  33836. image: {
  33837. source: "./media/characters/beh'kah-bolger/front.svg",
  33838. extra: 1660/1603,
  33839. bottom: 37/1697
  33840. }
  33841. },
  33842. },
  33843. [
  33844. {
  33845. name: "Normal",
  33846. height: math.unit(8 + 4/12, "feet"),
  33847. default: true
  33848. },
  33849. {
  33850. name: "Kaiju",
  33851. height: math.unit(250, "feet")
  33852. },
  33853. {
  33854. name: "Still Growing",
  33855. height: math.unit(10, "miles")
  33856. },
  33857. {
  33858. name: "Continental",
  33859. height: math.unit(5000, "miles")
  33860. },
  33861. {
  33862. name: "Final Form",
  33863. height: math.unit(2500000, "miles")
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(7 + 2/12, "feet"),
  33872. weight: math.unit(230, "kg"),
  33873. name: "Front",
  33874. image: {
  33875. source: "./media/characters/tatyana-milewska/front.svg",
  33876. extra: 1199/1150,
  33877. bottom: 86/1285
  33878. }
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(7 + 2/12, "feet"),
  33885. default: true
  33886. },
  33887. {
  33888. name: "Big",
  33889. height: math.unit(12, "feet")
  33890. },
  33891. {
  33892. name: "Minimacro",
  33893. height: math.unit(20, "feet")
  33894. },
  33895. {
  33896. name: "Macro",
  33897. height: math.unit(120, "feet")
  33898. },
  33899. ]
  33900. ))
  33901. characterMakers.push(() => makeCharacter(
  33902. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33903. {
  33904. front: {
  33905. height: math.unit(7 + 8/12, "feet"),
  33906. weight: math.unit(152, "kg"),
  33907. name: "Front",
  33908. image: {
  33909. source: "./media/characters/helen-arri/front.svg",
  33910. extra: 440/423,
  33911. bottom: 14/454
  33912. }
  33913. },
  33914. back: {
  33915. height: math.unit(7 + 8/12, "feet"),
  33916. weight: math.unit(152, "kg"),
  33917. name: "Back",
  33918. image: {
  33919. source: "./media/characters/helen-arri/back.svg",
  33920. extra: 443/426,
  33921. bottom: 8/451
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(7 + 8/12, "feet"),
  33929. default: true
  33930. },
  33931. {
  33932. name: "Big",
  33933. height: math.unit(14, "feet")
  33934. },
  33935. {
  33936. name: "Minimacro",
  33937. height: math.unit(24, "feet")
  33938. },
  33939. {
  33940. name: "Macro",
  33941. height: math.unit(140, "feet")
  33942. },
  33943. ]
  33944. ))
  33945. characterMakers.push(() => makeCharacter(
  33946. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33947. {
  33948. front: {
  33949. height: math.unit(6, "meters"),
  33950. name: "Front",
  33951. image: {
  33952. source: "./media/characters/ehanu-rehu/front.svg",
  33953. extra: 1800/1800,
  33954. bottom: 59/1859
  33955. }
  33956. },
  33957. },
  33958. [
  33959. {
  33960. name: "Normal",
  33961. height: math.unit(6, "meters"),
  33962. default: true
  33963. },
  33964. ]
  33965. ))
  33966. characterMakers.push(() => makeCharacter(
  33967. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33968. {
  33969. front: {
  33970. height: math.unit(7 + 3/12, "feet"),
  33971. name: "Front",
  33972. image: {
  33973. source: "./media/characters/renholder/front.svg",
  33974. extra: 3096/2960,
  33975. bottom: 250/3346
  33976. }
  33977. },
  33978. },
  33979. [
  33980. {
  33981. name: "Normal Bat",
  33982. height: math.unit(7 + 3/12, "feet"),
  33983. default: true
  33984. },
  33985. {
  33986. name: "Slightly Tall Bat",
  33987. height: math.unit(100, "feet")
  33988. },
  33989. {
  33990. name: "Big Bat",
  33991. height: math.unit(1000, "feet")
  33992. },
  33993. {
  33994. name: "City-Sized Bat",
  33995. height: math.unit(200000, "feet")
  33996. },
  33997. {
  33998. name: "Bigger Bat",
  33999. height: math.unit(10000, "miles")
  34000. },
  34001. {
  34002. name: "Solar Sized Bat",
  34003. height: math.unit(100, "AU")
  34004. },
  34005. {
  34006. name: "Galactic Bat",
  34007. height: math.unit(200000, "lightyears")
  34008. },
  34009. {
  34010. name: "Universally Known Bat",
  34011. height: math.unit(1, "universe")
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34017. {
  34018. front: {
  34019. height: math.unit(6 + 11/12, "feet"),
  34020. weight: math.unit(250, "lb"),
  34021. name: "Front",
  34022. image: {
  34023. source: "./media/characters/cookiecat/front.svg",
  34024. extra: 893/827,
  34025. bottom: 14/907
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Micro",
  34032. height: math.unit(3, "inches")
  34033. },
  34034. {
  34035. name: "Normal",
  34036. height: math.unit(6 + 11/12, "feet"),
  34037. default: true
  34038. },
  34039. {
  34040. name: "Macro",
  34041. height: math.unit(100, "feet")
  34042. },
  34043. {
  34044. name: "Macro+",
  34045. height: math.unit(404, "feet")
  34046. },
  34047. {
  34048. name: "Megamacro",
  34049. height: math.unit(165, "miles")
  34050. },
  34051. {
  34052. name: "Planetary",
  34053. height: math.unit(4600, "miles")
  34054. },
  34055. ]
  34056. ))
  34057. characterMakers.push(() => makeCharacter(
  34058. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34059. {
  34060. front: {
  34061. height: math.unit(10 + 3/12, "feet"),
  34062. weight: math.unit(1500, "lb"),
  34063. name: "Front",
  34064. image: {
  34065. source: "./media/characters/tux-kusanagi/front.svg",
  34066. extra: 944/840,
  34067. bottom: 39/983
  34068. }
  34069. },
  34070. back: {
  34071. height: math.unit(10 + 3/12, "feet"),
  34072. weight: math.unit(1500, "lb"),
  34073. name: "Back",
  34074. image: {
  34075. source: "./media/characters/tux-kusanagi/back.svg",
  34076. extra: 941/842,
  34077. bottom: 28/969
  34078. }
  34079. },
  34080. rump: {
  34081. height: math.unit(5.25, "feet"),
  34082. name: "Rump",
  34083. image: {
  34084. source: "./media/characters/tux-kusanagi/rump.svg"
  34085. }
  34086. },
  34087. beak: {
  34088. height: math.unit(1.54, "feet"),
  34089. name: "Beak",
  34090. image: {
  34091. source: "./media/characters/tux-kusanagi/beak.svg"
  34092. }
  34093. },
  34094. },
  34095. [
  34096. {
  34097. name: "Normal",
  34098. height: math.unit(10 + 3/12, "feet"),
  34099. default: true
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34105. {
  34106. front: {
  34107. height: math.unit(58, "feet"),
  34108. weight: math.unit(200, "tons"),
  34109. name: "Front",
  34110. image: {
  34111. source: "./media/characters/uzarmazari/front.svg",
  34112. extra: 1575/1455,
  34113. bottom: 152/1727
  34114. }
  34115. },
  34116. back: {
  34117. height: math.unit(58, "feet"),
  34118. weight: math.unit(200, "tons"),
  34119. name: "Back",
  34120. image: {
  34121. source: "./media/characters/uzarmazari/back.svg",
  34122. extra: 1585/1510,
  34123. bottom: 157/1742
  34124. }
  34125. },
  34126. head: {
  34127. height: math.unit(26, "feet"),
  34128. name: "Head",
  34129. image: {
  34130. source: "./media/characters/uzarmazari/head.svg"
  34131. }
  34132. },
  34133. },
  34134. [
  34135. {
  34136. name: "Normal",
  34137. height: math.unit(58, "feet"),
  34138. default: true
  34139. },
  34140. ]
  34141. ))
  34142. characterMakers.push(() => makeCharacter(
  34143. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34144. {
  34145. side: {
  34146. height: math.unit(15, "feet"),
  34147. name: "Side",
  34148. image: {
  34149. source: "./media/characters/akitu/side.svg",
  34150. extra: 1421/1321,
  34151. bottom: 157/1578
  34152. }
  34153. },
  34154. front: {
  34155. height: math.unit(15, "feet"),
  34156. name: "Front",
  34157. image: {
  34158. source: "./media/characters/akitu/front.svg",
  34159. extra: 1435/1326,
  34160. bottom: 232/1667
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(15, "feet"),
  34168. default: true
  34169. },
  34170. ]
  34171. ))
  34172. characterMakers.push(() => makeCharacter(
  34173. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34174. {
  34175. front: {
  34176. height: math.unit(10 + 8/12, "feet"),
  34177. name: "Front",
  34178. image: {
  34179. source: "./media/characters/azalie-croixland/front.svg",
  34180. extra: 1972/1856,
  34181. bottom: 31/2003
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Original Height",
  34188. height: math.unit(5 + 4/12, "feet")
  34189. },
  34190. {
  34191. name: "Normal Height",
  34192. height: math.unit(10 + 8/12, "feet"),
  34193. default: true
  34194. },
  34195. ]
  34196. ))
  34197. characterMakers.push(() => makeCharacter(
  34198. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34199. {
  34200. side: {
  34201. height: math.unit(7 + 1/12, "feet"),
  34202. weight: math.unit(245, "lb"),
  34203. name: "Side",
  34204. image: {
  34205. source: "./media/characters/kavus-kazian/side.svg",
  34206. extra: 349/342,
  34207. bottom: 15/364
  34208. }
  34209. },
  34210. },
  34211. [
  34212. {
  34213. name: "Normal",
  34214. height: math.unit(7 + 1/12, "feet"),
  34215. default: true
  34216. },
  34217. ]
  34218. ))
  34219. characterMakers.push(() => makeCharacter(
  34220. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34221. {
  34222. normal: {
  34223. height: math.unit(5 + 11/12, "feet"),
  34224. name: "Normal",
  34225. image: {
  34226. source: "./media/characters/moonlight-rose/normal.svg",
  34227. extra: 1979/1835,
  34228. bottom: 14/1993
  34229. }
  34230. },
  34231. demon: {
  34232. height: math.unit(5, "km"),
  34233. name: "Demon",
  34234. image: {
  34235. source: "./media/characters/moonlight-rose/demon.svg",
  34236. extra: 986/916,
  34237. bottom: 28/1014
  34238. }
  34239. },
  34240. },
  34241. [
  34242. {
  34243. name: "\"Natural\" height",
  34244. height: math.unit(5 + 11/12, "feet")
  34245. },
  34246. {
  34247. name: "Comfortable Size",
  34248. height: math.unit(40, "meters")
  34249. },
  34250. {
  34251. name: "Common Size",
  34252. height: math.unit(50, "km"),
  34253. default: true
  34254. },
  34255. {
  34256. name: "Demonic",
  34257. height: math.unit(1.24415e+21, "meters")
  34258. },
  34259. ]
  34260. ))
  34261. characterMakers.push(() => makeCharacter(
  34262. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34263. {
  34264. front: {
  34265. height: math.unit(16, "feet"),
  34266. weight: math.unit(610, "kg"),
  34267. name: "Front",
  34268. image: {
  34269. source: "./media/characters/huckle/front.svg",
  34270. extra: 1731/1625,
  34271. bottom: 33/1764
  34272. }
  34273. },
  34274. back: {
  34275. height: math.unit(16, "feet"),
  34276. weight: math.unit(610, "kg"),
  34277. name: "Back",
  34278. image: {
  34279. source: "./media/characters/huckle/back.svg",
  34280. extra: 1738/1651,
  34281. bottom: 37/1775
  34282. }
  34283. },
  34284. laughing: {
  34285. height: math.unit(3.75, "feet"),
  34286. name: "Laughing",
  34287. image: {
  34288. source: "./media/characters/huckle/laughing.svg"
  34289. }
  34290. },
  34291. angry: {
  34292. height: math.unit(4.15, "feet"),
  34293. name: "Angry",
  34294. image: {
  34295. source: "./media/characters/huckle/angry.svg"
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(16, "feet"),
  34303. default: true
  34304. },
  34305. {
  34306. name: "Mini Macro",
  34307. height: math.unit(463, "feet")
  34308. },
  34309. {
  34310. name: "Macro",
  34311. height: math.unit(1680, "meters")
  34312. },
  34313. {
  34314. name: "Mega Macro",
  34315. height: math.unit(175, "km")
  34316. },
  34317. {
  34318. name: "Terra Macro",
  34319. height: math.unit(32, "gigameters")
  34320. },
  34321. {
  34322. name: "Multiverse+",
  34323. height: math.unit(2.56e23, "yottameters")
  34324. },
  34325. ]
  34326. ))
  34327. characterMakers.push(() => makeCharacter(
  34328. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34329. {
  34330. front: {
  34331. height: math.unit(6 + 9/12, "feet"),
  34332. weight: math.unit(280, "lb"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/candy/front.svg",
  34336. extra: 234/217,
  34337. bottom: 11/245
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Really Small",
  34344. height: math.unit(0.1, "nm")
  34345. },
  34346. {
  34347. name: "Micro",
  34348. height: math.unit(2, "inches")
  34349. },
  34350. {
  34351. name: "Normal",
  34352. height: math.unit(6 + 9/12, "feet"),
  34353. default: true
  34354. },
  34355. {
  34356. name: "Small Macro",
  34357. height: math.unit(69, "feet")
  34358. },
  34359. {
  34360. name: "Macro",
  34361. height: math.unit(160, "feet")
  34362. },
  34363. {
  34364. name: "Megamacro",
  34365. height: math.unit(22000, "miles")
  34366. },
  34367. {
  34368. name: "Gigamacro",
  34369. height: math.unit(50000, "miles")
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(4, "feet"),
  34378. weight: math.unit(90, "lb"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/joey-mcdonald/front.svg",
  34382. extra: 1059/852,
  34383. bottom: 33/1092
  34384. }
  34385. },
  34386. back: {
  34387. height: math.unit(4, "feet"),
  34388. weight: math.unit(90, "lb"),
  34389. name: "Back",
  34390. image: {
  34391. source: "./media/characters/joey-mcdonald/back.svg",
  34392. extra: 1077/879,
  34393. bottom: 5/1082
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Normal",
  34400. height: math.unit(4, "feet"),
  34401. default: true
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34407. {
  34408. front: {
  34409. height: math.unit(12 + 6/12, "feet"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/kass-lockheed/front.svg",
  34413. extra: 354/343,
  34414. bottom: 9/363
  34415. }
  34416. },
  34417. back: {
  34418. height: math.unit(12 + 6/12, "feet"),
  34419. name: "Back",
  34420. image: {
  34421. source: "./media/characters/kass-lockheed/back.svg",
  34422. extra: 364/352,
  34423. bottom: 3/367
  34424. }
  34425. },
  34426. dick: {
  34427. height: math.unit(3.12, "feet"),
  34428. name: "Dick",
  34429. image: {
  34430. source: "./media/characters/kass-lockheed/dick.svg"
  34431. }
  34432. },
  34433. head: {
  34434. height: math.unit(2.6, "feet"),
  34435. name: "Head",
  34436. image: {
  34437. source: "./media/characters/kass-lockheed/head.svg"
  34438. }
  34439. },
  34440. bleh: {
  34441. height: math.unit(2.85, "feet"),
  34442. name: "Bleh",
  34443. image: {
  34444. source: "./media/characters/kass-lockheed/bleh.svg"
  34445. }
  34446. },
  34447. smug: {
  34448. height: math.unit(2.85, "feet"),
  34449. name: "Smug",
  34450. image: {
  34451. source: "./media/characters/kass-lockheed/smug.svg"
  34452. }
  34453. },
  34454. },
  34455. [
  34456. {
  34457. name: "Normal",
  34458. height: math.unit(12 + 6/12, "feet"),
  34459. default: true
  34460. },
  34461. ]
  34462. ))
  34463. characterMakers.push(() => makeCharacter(
  34464. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34465. {
  34466. front: {
  34467. height: math.unit(6 + 2/12, "feet"),
  34468. name: "Front",
  34469. image: {
  34470. source: "./media/characters/taylor/front.svg",
  34471. extra: 639/495,
  34472. bottom: 12/651
  34473. }
  34474. },
  34475. },
  34476. [
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(6 + 2/12, "feet"),
  34480. default: true
  34481. },
  34482. {
  34483. name: "Big",
  34484. height: math.unit(15, "feet")
  34485. },
  34486. {
  34487. name: "Lorg",
  34488. height: math.unit(80, "feet")
  34489. },
  34490. {
  34491. name: "Too Lorg",
  34492. height: math.unit(120, "feet")
  34493. },
  34494. ]
  34495. ))
  34496. characterMakers.push(() => makeCharacter(
  34497. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34498. {
  34499. front: {
  34500. height: math.unit(15, "feet"),
  34501. name: "Front",
  34502. image: {
  34503. source: "./media/characters/kaizer/front.svg",
  34504. extra: 1612/1436,
  34505. bottom: 43/1655
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Normal",
  34512. height: math.unit(15, "feet"),
  34513. default: true
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(2, "feet"),
  34522. weight: math.unit(30, "lb"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/sandy/front.svg",
  34526. extra: 1439/1307,
  34527. bottom: 194/1633
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Normal",
  34534. height: math.unit(2, "feet"),
  34535. default: true
  34536. },
  34537. ]
  34538. ))
  34539. characterMakers.push(() => makeCharacter(
  34540. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34541. {
  34542. front: {
  34543. height: math.unit(3, "feet"),
  34544. name: "Front",
  34545. image: {
  34546. source: "./media/characters/mellvi/front.svg",
  34547. extra: 1831/1630,
  34548. bottom: 58/1889
  34549. }
  34550. },
  34551. },
  34552. [
  34553. {
  34554. name: "Normal",
  34555. height: math.unit(3, "feet"),
  34556. default: true
  34557. },
  34558. ]
  34559. ))
  34560. characterMakers.push(() => makeCharacter(
  34561. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34562. {
  34563. front: {
  34564. height: math.unit(5 + 11/12, "feet"),
  34565. weight: math.unit(200, "lb"),
  34566. name: "Front",
  34567. image: {
  34568. source: "./media/characters/shirou/front.svg",
  34569. extra: 2491/2383,
  34570. bottom: 189/2680
  34571. }
  34572. },
  34573. back: {
  34574. height: math.unit(5 + 11/12, "feet"),
  34575. weight: math.unit(200, "lb"),
  34576. name: "Back",
  34577. image: {
  34578. source: "./media/characters/shirou/back.svg",
  34579. extra: 2554/2450,
  34580. bottom: 76/2630
  34581. }
  34582. },
  34583. },
  34584. [
  34585. {
  34586. name: "Normal",
  34587. height: math.unit(5 + 11/12, "feet"),
  34588. default: true
  34589. },
  34590. ]
  34591. ))
  34592. characterMakers.push(() => makeCharacter(
  34593. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34594. {
  34595. front: {
  34596. height: math.unit(6 + 3/12, "feet"),
  34597. weight: math.unit(177, "lb"),
  34598. name: "Front",
  34599. image: {
  34600. source: "./media/characters/noryu/front.svg",
  34601. extra: 973/885,
  34602. bottom: 10/983
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "Normal",
  34609. height: math.unit(6 + 3/12, "feet"),
  34610. default: true
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34616. {
  34617. front: {
  34618. height: math.unit(5 + 6/12, "feet"),
  34619. weight: math.unit(170, "lb"),
  34620. name: "Front",
  34621. image: {
  34622. source: "./media/characters/mevolas-rubenido/front.svg",
  34623. extra: 2109/1901,
  34624. bottom: 96/2205
  34625. }
  34626. },
  34627. },
  34628. [
  34629. {
  34630. name: "Normal",
  34631. height: math.unit(5 + 6/12, "feet"),
  34632. default: true
  34633. },
  34634. ]
  34635. ))
  34636. characterMakers.push(() => makeCharacter(
  34637. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34638. {
  34639. front: {
  34640. height: math.unit(100, "feet"),
  34641. name: "Front",
  34642. image: {
  34643. source: "./media/characters/dee/front.svg",
  34644. extra: 2153/2036,
  34645. bottom: 59/2212
  34646. }
  34647. },
  34648. back: {
  34649. height: math.unit(100, "feet"),
  34650. name: "Back",
  34651. image: {
  34652. source: "./media/characters/dee/back.svg",
  34653. extra: 2183/2058,
  34654. bottom: 75/2258
  34655. }
  34656. },
  34657. foot: {
  34658. height: math.unit(19.43, "feet"),
  34659. name: "Foot",
  34660. image: {
  34661. source: "./media/characters/dee/foot.svg"
  34662. }
  34663. },
  34664. hoof: {
  34665. height: math.unit(20.6, "feet"),
  34666. name: "Hoof",
  34667. image: {
  34668. source: "./media/characters/dee/hoof.svg"
  34669. }
  34670. },
  34671. },
  34672. [
  34673. {
  34674. name: "Macro",
  34675. height: math.unit(100, "feet"),
  34676. default: true
  34677. },
  34678. ]
  34679. ))
  34680. characterMakers.push(() => makeCharacter(
  34681. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34682. {
  34683. front: {
  34684. height: math.unit(5 + 6/12, "feet"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/teh/front.svg",
  34688. extra: 1002/847,
  34689. bottom: 62/1064
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(5 + 6/12, "feet"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34703. {
  34704. side: {
  34705. height: math.unit(6 + 1/12, "feet"),
  34706. weight: math.unit(204, "lb"),
  34707. name: "Side",
  34708. image: {
  34709. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34710. extra: 974/775,
  34711. bottom: 169/1143
  34712. }
  34713. },
  34714. sitting: {
  34715. height: math.unit(6 + 2/12, "feet"),
  34716. weight: math.unit(204, "lb"),
  34717. name: "Sitting",
  34718. image: {
  34719. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34720. extra: 1175/964,
  34721. bottom: 378/1553
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(6 + 1/12, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34735. {
  34736. front: {
  34737. height: math.unit(6, "inches"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/tululi/front.svg",
  34741. extra: 1997/1876,
  34742. bottom: 20/2017
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Normal",
  34749. height: math.unit(6, "inches"),
  34750. default: true
  34751. },
  34752. ]
  34753. ))
  34754. characterMakers.push(() => makeCharacter(
  34755. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34756. {
  34757. front: {
  34758. height: math.unit(4 + 1/12, "feet"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/star/front.svg",
  34762. extra: 1493/1189,
  34763. bottom: 48/1541
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Normal",
  34770. height: math.unit(4 + 1/12, "feet"),
  34771. default: true
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34777. {
  34778. front: {
  34779. height: math.unit(6 + 3/12, "feet"),
  34780. name: "Front",
  34781. image: {
  34782. source: "./media/characters/comet/front.svg",
  34783. extra: 1681/1462,
  34784. bottom: 26/1707
  34785. }
  34786. },
  34787. },
  34788. [
  34789. {
  34790. name: "Normal",
  34791. height: math.unit(6 + 3/12, "feet"),
  34792. default: true
  34793. },
  34794. ]
  34795. ))
  34796. characterMakers.push(() => makeCharacter(
  34797. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34798. {
  34799. front: {
  34800. height: math.unit(950, "feet"),
  34801. name: "Front",
  34802. image: {
  34803. source: "./media/characters/vortex/front.svg",
  34804. extra: 1497/1434,
  34805. bottom: 56/1553
  34806. }
  34807. },
  34808. maw: {
  34809. height: math.unit(285, "feet"),
  34810. name: "Maw",
  34811. image: {
  34812. source: "./media/characters/vortex/maw.svg"
  34813. }
  34814. },
  34815. },
  34816. [
  34817. {
  34818. name: "Macro",
  34819. height: math.unit(950, "feet"),
  34820. default: true
  34821. },
  34822. ]
  34823. ))
  34824. characterMakers.push(() => makeCharacter(
  34825. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34826. {
  34827. front: {
  34828. height: math.unit(600, "feet"),
  34829. weight: math.unit(0.02, "grams"),
  34830. name: "Front",
  34831. image: {
  34832. source: "./media/characters/doodle/front.svg",
  34833. extra: 1578/1413,
  34834. bottom: 37/1615
  34835. }
  34836. },
  34837. },
  34838. [
  34839. {
  34840. name: "Macro",
  34841. height: math.unit(600, "feet"),
  34842. default: true
  34843. },
  34844. ]
  34845. ))
  34846. characterMakers.push(() => makeCharacter(
  34847. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34848. {
  34849. front: {
  34850. height: math.unit(6 + 6/12, "feet"),
  34851. name: "Front",
  34852. image: {
  34853. source: "./media/characters/jai/front.svg",
  34854. extra: 1645/1534,
  34855. bottom: 115/1760
  34856. }
  34857. },
  34858. },
  34859. [
  34860. {
  34861. name: "Normal",
  34862. height: math.unit(6 + 6/12, "feet"),
  34863. default: true
  34864. },
  34865. ]
  34866. ))
  34867. characterMakers.push(() => makeCharacter(
  34868. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34869. {
  34870. front: {
  34871. height: math.unit(6 + 8/12, "feet"),
  34872. name: "Front",
  34873. image: {
  34874. source: "./media/characters/pixel/front.svg",
  34875. extra: 1900/1735,
  34876. bottom: 63/1963
  34877. }
  34878. },
  34879. },
  34880. [
  34881. {
  34882. name: "Normal",
  34883. height: math.unit(6 + 8/12, "feet"),
  34884. default: true
  34885. },
  34886. ]
  34887. ))
  34888. characterMakers.push(() => makeCharacter(
  34889. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34890. {
  34891. front: {
  34892. height: math.unit(4 + 11/12, "feet"),
  34893. weight: math.unit(111, "lb"),
  34894. name: "Front",
  34895. image: {
  34896. source: "./media/characters/rhett/front.svg",
  34897. extra: 1682/1586,
  34898. bottom: 92/1774
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Mini",
  34905. height: math.unit(1 + 1/12, "feet")
  34906. },
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(4 + 11/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(3 + 3/12, "feet"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/penny/front.svg",
  34922. extra: 1406/1311,
  34923. bottom: 26/1432
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(3 + 3/12, "feet"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(4 + 11/12, "feet"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/monty/front.svg",
  34943. extra: 1479/1209,
  34944. bottom: 0/1479
  34945. }
  34946. },
  34947. },
  34948. [
  34949. {
  34950. name: "Normal",
  34951. height: math.unit(4 + 11/12, "feet"),
  34952. default: true
  34953. },
  34954. ]
  34955. ))
  34956. characterMakers.push(() => makeCharacter(
  34957. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34958. {
  34959. front: {
  34960. height: math.unit(8 + 4/12, "feet"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/sterling/front.svg",
  34964. extra: 1420/1236,
  34965. bottom: 27/1447
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(8 + 4/12, "feet"),
  34973. default: true
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(15, "feet"),
  34982. name: "Front",
  34983. image: {
  34984. source: "./media/characters/marble/front.svg",
  34985. extra: 973/937,
  34986. bottom: 32/1005
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(15, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35000. {
  35001. front: {
  35002. height: math.unit(3, "inches"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/powder/front.svg",
  35006. extra: 1504/1334,
  35007. bottom: 518/2022
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(3, "inches"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(4 + 5/12, "feet"),
  35024. name: "Front",
  35025. image: {
  35026. source: "./media/characters/joey-raccoon/front.svg",
  35027. extra: 1273/1197,
  35028. bottom: 0/1273
  35029. }
  35030. },
  35031. },
  35032. [
  35033. {
  35034. name: "Normal",
  35035. height: math.unit(4 + 5/12, "feet"),
  35036. default: true
  35037. },
  35038. ]
  35039. ))
  35040. characterMakers.push(() => makeCharacter(
  35041. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35042. {
  35043. front: {
  35044. height: math.unit(8 + 4/12, "feet"),
  35045. name: "Front",
  35046. image: {
  35047. source: "./media/characters/vick/front.svg",
  35048. extra: 2187/2118,
  35049. bottom: 47/2234
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Normal",
  35056. height: math.unit(8 + 4/12, "feet"),
  35057. default: true
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35063. {
  35064. front: {
  35065. height: math.unit(5 + 5/12, "feet"),
  35066. name: "Front",
  35067. image: {
  35068. source: "./media/characters/mitsy/front.svg",
  35069. extra: 1842/1695,
  35070. bottom: 0/1842
  35071. }
  35072. },
  35073. },
  35074. [
  35075. {
  35076. name: "Normal",
  35077. height: math.unit(5 + 5/12, "feet"),
  35078. default: true
  35079. },
  35080. ]
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35084. {
  35085. front: {
  35086. height: math.unit(6 + 3/12, "feet"),
  35087. name: "Front",
  35088. image: {
  35089. source: "./media/characters/silvy/front.svg",
  35090. extra: 1995/1836,
  35091. bottom: 225/2220
  35092. }
  35093. },
  35094. },
  35095. [
  35096. {
  35097. name: "Normal",
  35098. height: math.unit(6 + 3/12, "feet"),
  35099. default: true
  35100. },
  35101. ]
  35102. ))
  35103. characterMakers.push(() => makeCharacter(
  35104. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35105. {
  35106. front: {
  35107. height: math.unit(3 + 8/12, "feet"),
  35108. name: "Front",
  35109. image: {
  35110. source: "./media/characters/rodney/front.svg",
  35111. extra: 1956/1747,
  35112. bottom: 31/1987
  35113. }
  35114. },
  35115. frontDressed: {
  35116. height: math.unit(2.9, "feet"),
  35117. name: "Front (Dressed)",
  35118. image: {
  35119. source: "./media/characters/rodney/front-dressed.svg",
  35120. extra: 1382/1241,
  35121. bottom: 385/1767
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(3 + 8/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(5 + 9/12, "feet"),
  35138. weight: math.unit(194, "lbs"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/zakail-sudekai/front.svg",
  35142. extra: 2696/2533,
  35143. bottom: 248/2944
  35144. }
  35145. },
  35146. maw: {
  35147. height: math.unit(1.35, "feet"),
  35148. name: "Maw",
  35149. image: {
  35150. source: "./media/characters/zakail-sudekai/maw.svg"
  35151. }
  35152. },
  35153. },
  35154. [
  35155. {
  35156. name: "Normal",
  35157. height: math.unit(5 + 9/12, "feet"),
  35158. default: true
  35159. },
  35160. ]
  35161. ))
  35162. characterMakers.push(() => makeCharacter(
  35163. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35164. {
  35165. front: {
  35166. height: math.unit(8 + 4/12, "feet"),
  35167. weight: math.unit(1200, "lb"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/eleanor/front.svg",
  35171. extra: 1226/1192,
  35172. bottom: 52/1278
  35173. }
  35174. },
  35175. back: {
  35176. height: math.unit(8 + 4/12, "feet"),
  35177. weight: math.unit(1200, "lb"),
  35178. name: "Back",
  35179. image: {
  35180. source: "./media/characters/eleanor/back.svg",
  35181. extra: 1242/1184,
  35182. bottom: 60/1302
  35183. }
  35184. },
  35185. head: {
  35186. height: math.unit(2.62, "feet"),
  35187. name: "Head",
  35188. image: {
  35189. source: "./media/characters/eleanor/head.svg"
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(8 + 4/12, "feet"),
  35197. default: true
  35198. },
  35199. ]
  35200. ))
  35201. characterMakers.push(() => makeCharacter(
  35202. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35203. {
  35204. front: {
  35205. height: math.unit(8 + 4/12, "feet"),
  35206. weight: math.unit(750, "lb"),
  35207. name: "Front",
  35208. image: {
  35209. source: "./media/characters/tanya/front.svg",
  35210. extra: 1749/1615,
  35211. bottom: 33/1782
  35212. }
  35213. },
  35214. },
  35215. [
  35216. {
  35217. name: "Normal",
  35218. height: math.unit(8 + 4/12, "feet"),
  35219. default: true
  35220. },
  35221. ]
  35222. ))
  35223. characterMakers.push(() => makeCharacter(
  35224. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35225. {
  35226. front: {
  35227. height: math.unit(5, "feet"),
  35228. weight: math.unit(225, "lb"),
  35229. name: "Front",
  35230. image: {
  35231. source: "./media/characters/cindy/front.svg",
  35232. extra: 1320/1250,
  35233. bottom: 42/1362
  35234. }
  35235. },
  35236. frontDressed: {
  35237. height: math.unit(5, "feet"),
  35238. weight: math.unit(225, "lb"),
  35239. name: "Front (Dressed)",
  35240. image: {
  35241. source: "./media/characters/cindy/front-dressed.svg",
  35242. extra: 1320/1250,
  35243. bottom: 42/1362
  35244. }
  35245. },
  35246. back: {
  35247. height: math.unit(5, "feet"),
  35248. weight: math.unit(225, "lb"),
  35249. name: "Back",
  35250. image: {
  35251. source: "./media/characters/cindy/back.svg",
  35252. extra: 1384/1346,
  35253. bottom: 14/1398
  35254. }
  35255. },
  35256. },
  35257. [
  35258. {
  35259. name: "Normal",
  35260. height: math.unit(5, "feet"),
  35261. default: true
  35262. },
  35263. ]
  35264. ))
  35265. characterMakers.push(() => makeCharacter(
  35266. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35267. {
  35268. front: {
  35269. height: math.unit(6 + 9/12, "feet"),
  35270. weight: math.unit(440, "lb"),
  35271. name: "Front",
  35272. image: {
  35273. source: "./media/characters/wilbur-owen/front.svg",
  35274. extra: 1575/1448,
  35275. bottom: 72/1647
  35276. }
  35277. },
  35278. back: {
  35279. height: math.unit(6 + 9/12, "feet"),
  35280. weight: math.unit(440, "lb"),
  35281. name: "Back",
  35282. image: {
  35283. source: "./media/characters/wilbur-owen/back.svg",
  35284. extra: 1578/1445,
  35285. bottom: 36/1614
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Normal",
  35292. height: math.unit(6 + 9/12, "feet"),
  35293. default: true
  35294. },
  35295. ]
  35296. ))
  35297. characterMakers.push(() => makeCharacter(
  35298. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35299. {
  35300. front: {
  35301. height: math.unit(6 + 5/12, "feet"),
  35302. weight: math.unit(650, "lb"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/keegan/front.svg",
  35306. extra: 2387/2198,
  35307. bottom: 33/2420
  35308. }
  35309. },
  35310. side: {
  35311. height: math.unit(6 + 5/12, "feet"),
  35312. weight: math.unit(650, "lb"),
  35313. name: "Side",
  35314. image: {
  35315. source: "./media/characters/keegan/side.svg",
  35316. extra: 2390/2202,
  35317. bottom: 47/2437
  35318. }
  35319. },
  35320. back: {
  35321. height: math.unit(6 + 5/12, "feet"),
  35322. weight: math.unit(650, "lb"),
  35323. name: "Back",
  35324. image: {
  35325. source: "./media/characters/keegan/back.svg",
  35326. extra: 2418/2268,
  35327. bottom: 15/2433
  35328. }
  35329. },
  35330. frontSfw: {
  35331. height: math.unit(6 + 5/12, "feet"),
  35332. weight: math.unit(650, "lb"),
  35333. name: "Front (SFW)",
  35334. image: {
  35335. source: "./media/characters/keegan/front-sfw.svg",
  35336. extra: 2387/2198,
  35337. bottom: 33/2420
  35338. }
  35339. },
  35340. beans: {
  35341. height: math.unit(1.85, "feet"),
  35342. name: "Beans",
  35343. image: {
  35344. source: "./media/characters/keegan/beans.svg"
  35345. }
  35346. },
  35347. },
  35348. [
  35349. {
  35350. name: "Normal",
  35351. height: math.unit(6 + 5/12, "feet"),
  35352. default: true
  35353. },
  35354. ]
  35355. ))
  35356. characterMakers.push(() => makeCharacter(
  35357. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35358. {
  35359. front: {
  35360. height: math.unit(9, "feet"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/colton/front.svg",
  35364. extra: 1589/1326,
  35365. bottom: 139/1728
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(9, "feet"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35379. {
  35380. front: {
  35381. height: math.unit(2 + 9/12, "feet"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/bora/front.svg",
  35385. extra: 1265/1250,
  35386. bottom: 24/1289
  35387. }
  35388. },
  35389. },
  35390. [
  35391. {
  35392. name: "Normal",
  35393. height: math.unit(2 + 9/12, "feet"),
  35394. default: true
  35395. },
  35396. ]
  35397. ))
  35398. characterMakers.push(() => makeCharacter(
  35399. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35400. {
  35401. front: {
  35402. height: math.unit(8, "feet"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/myu-myu/front.svg",
  35406. extra: 1949/1857,
  35407. bottom: 90/2039
  35408. }
  35409. },
  35410. },
  35411. [
  35412. {
  35413. name: "Normal",
  35414. height: math.unit(8, "feet"),
  35415. default: true
  35416. },
  35417. {
  35418. name: "Big",
  35419. height: math.unit(15, "feet")
  35420. },
  35421. {
  35422. name: "BIG",
  35423. height: math.unit(25, "feet")
  35424. },
  35425. ]
  35426. ))
  35427. characterMakers.push(() => makeCharacter(
  35428. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35429. {
  35430. side: {
  35431. height: math.unit(7 + 5/12, "feet"),
  35432. weight: math.unit(2800, "lb"),
  35433. name: "Side",
  35434. image: {
  35435. source: "./media/characters/haloren/side.svg",
  35436. extra: 1793/409,
  35437. bottom: 59/1852
  35438. }
  35439. },
  35440. frontPaw: {
  35441. height: math.unit(2.36, "feet"),
  35442. name: "Front paw",
  35443. image: {
  35444. source: "./media/characters/haloren/front-paw.svg"
  35445. }
  35446. },
  35447. hindPaw: {
  35448. height: math.unit(3.18, "feet"),
  35449. name: "Hind paw",
  35450. image: {
  35451. source: "./media/characters/haloren/hind-paw.svg"
  35452. }
  35453. },
  35454. maw: {
  35455. height: math.unit(5.05, "feet"),
  35456. name: "Maw",
  35457. image: {
  35458. source: "./media/characters/haloren/maw.svg"
  35459. }
  35460. },
  35461. dick: {
  35462. height: math.unit(2.90, "feet"),
  35463. name: "Dick",
  35464. image: {
  35465. source: "./media/characters/haloren/dick.svg"
  35466. }
  35467. },
  35468. },
  35469. [
  35470. {
  35471. name: "Normal",
  35472. height: math.unit(7 + 5/12, "feet"),
  35473. default: true
  35474. },
  35475. {
  35476. name: "Enhanced",
  35477. height: math.unit(14 + 3/12, "feet")
  35478. },
  35479. ]
  35480. ))
  35481. characterMakers.push(() => makeCharacter(
  35482. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35483. {
  35484. front: {
  35485. height: math.unit(171, "cm"),
  35486. name: "Front",
  35487. image: {
  35488. source: "./media/characters/kimmy/front.svg",
  35489. extra: 1491/1435,
  35490. bottom: 53/1544
  35491. }
  35492. },
  35493. },
  35494. [
  35495. {
  35496. name: "Small",
  35497. height: math.unit(9, "cm")
  35498. },
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(171, "cm"),
  35502. default: true
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(8, "feet"),
  35511. weight: math.unit(300, "lb"),
  35512. name: "Front",
  35513. image: {
  35514. source: "./media/characters/galeboomer/front.svg",
  35515. extra: 4651/4415,
  35516. bottom: 162/4813
  35517. }
  35518. },
  35519. back: {
  35520. height: math.unit(8, "feet"),
  35521. weight: math.unit(300, "lb"),
  35522. name: "Back",
  35523. image: {
  35524. source: "./media/characters/galeboomer/back.svg",
  35525. extra: 4544/4314,
  35526. bottom: 16/4560
  35527. }
  35528. },
  35529. frontAlt: {
  35530. height: math.unit(8, "feet"),
  35531. weight: math.unit(300, "lb"),
  35532. name: "Front (Alt)",
  35533. image: {
  35534. source: "./media/characters/galeboomer/front-alt.svg",
  35535. extra: 4458/4228,
  35536. bottom: 68/4526
  35537. }
  35538. },
  35539. maw: {
  35540. height: math.unit(1.2, "feet"),
  35541. name: "Maw",
  35542. image: {
  35543. source: "./media/characters/galeboomer/maw.svg"
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(8, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(5 + 9/12, "feet"),
  35560. weight: math.unit(120, "lb"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/chyr/front.svg",
  35564. extra: 1323/1254,
  35565. bottom: 63/1386
  35566. }
  35567. },
  35568. back: {
  35569. height: math.unit(5 + 9/12, "feet"),
  35570. weight: math.unit(120, "lb"),
  35571. name: "Back",
  35572. image: {
  35573. source: "./media/characters/chyr/back.svg",
  35574. extra: 1323/1252,
  35575. bottom: 48/1371
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Normal",
  35582. height: math.unit(5 + 9/12, "feet"),
  35583. default: true
  35584. },
  35585. ]
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(7, "feet"),
  35592. weight: math.unit(310, "lb"),
  35593. name: "Front",
  35594. image: {
  35595. source: "./media/characters/solarus/front.svg",
  35596. extra: 2415/2021,
  35597. bottom: 103/2518
  35598. }
  35599. },
  35600. back: {
  35601. height: math.unit(7, "feet"),
  35602. weight: math.unit(310, "lb"),
  35603. name: "Back",
  35604. image: {
  35605. source: "./media/characters/solarus/back.svg",
  35606. extra: 2463/2089,
  35607. bottom: 79/2542
  35608. }
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(7, "feet"),
  35615. default: true
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35621. {
  35622. front: {
  35623. height: math.unit(16, "feet"),
  35624. name: "Front",
  35625. image: {
  35626. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35627. extra: 1844/1780,
  35628. bottom: 58/1902
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(16, "feet"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35642. {
  35643. front: {
  35644. height: math.unit(11 + 6/12, "feet"),
  35645. weight: math.unit(1366, "lb"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/lexor/front.svg",
  35649. extra: 1560/1481,
  35650. bottom: 211/1771
  35651. }
  35652. },
  35653. back: {
  35654. height: math.unit(11 + 6/12, "feet"),
  35655. weight: math.unit(1366, "lb"),
  35656. name: "Back",
  35657. image: {
  35658. source: "./media/characters/lexor/back.svg",
  35659. extra: 1614/1533,
  35660. bottom: 76/1690
  35661. }
  35662. },
  35663. maw: {
  35664. height: math.unit(3, "feet"),
  35665. name: "Maw",
  35666. image: {
  35667. source: "./media/characters/lexor/maw.svg"
  35668. }
  35669. },
  35670. dick: {
  35671. height: math.unit(2.59, "feet"),
  35672. name: "Dick",
  35673. image: {
  35674. source: "./media/characters/lexor/dick.svg"
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(11 + 6/12, "feet"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35688. {
  35689. front: {
  35690. height: math.unit(5 + 8/12, "feet"),
  35691. name: "Front",
  35692. image: {
  35693. source: "./media/characters/magnum/front.svg",
  35694. extra: 942/855,
  35695. bottom: 26/968
  35696. }
  35697. },
  35698. },
  35699. [
  35700. {
  35701. name: "Normal",
  35702. height: math.unit(5 + 8/12, "feet"),
  35703. default: true
  35704. },
  35705. ]
  35706. ))
  35707. characterMakers.push(() => makeCharacter(
  35708. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35709. {
  35710. front: {
  35711. height: math.unit(18 + 4/12, "feet"),
  35712. weight: math.unit(1500, "kg"),
  35713. name: "Front",
  35714. image: {
  35715. source: "./media/characters/solas-sharpsman/front.svg",
  35716. extra: 1698/1589,
  35717. bottom: 0/1698
  35718. }
  35719. },
  35720. },
  35721. [
  35722. {
  35723. name: "Normal",
  35724. height: math.unit(18 + 4/12, "feet"),
  35725. default: true
  35726. },
  35727. ]
  35728. ))
  35729. characterMakers.push(() => makeCharacter(
  35730. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35731. {
  35732. front: {
  35733. height: math.unit(5 + 5/12, "feet"),
  35734. weight: math.unit(180, "lb"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/october/front.svg",
  35738. extra: 1800/1650,
  35739. bottom: 0/1800
  35740. }
  35741. },
  35742. frontNsfw: {
  35743. height: math.unit(5 + 5/12, "feet"),
  35744. weight: math.unit(180, "lb"),
  35745. name: "Front (NSFW)",
  35746. image: {
  35747. source: "./media/characters/october/front-nsfw.svg",
  35748. extra: 1392/1307,
  35749. bottom: 42/1434
  35750. }
  35751. },
  35752. },
  35753. [
  35754. {
  35755. name: "Normal",
  35756. height: math.unit(5 + 5/12, "feet"),
  35757. default: true
  35758. },
  35759. ]
  35760. ))
  35761. characterMakers.push(() => makeCharacter(
  35762. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35763. {
  35764. front: {
  35765. height: math.unit(8 + 6/12, "feet"),
  35766. name: "Front",
  35767. image: {
  35768. source: "./media/characters/essynkardi/front.svg",
  35769. extra: 1914/1846,
  35770. bottom: 22/1936
  35771. }
  35772. },
  35773. },
  35774. [
  35775. {
  35776. name: "Normal",
  35777. height: math.unit(8 + 6/12, "feet"),
  35778. default: true
  35779. },
  35780. ]
  35781. ))
  35782. characterMakers.push(() => makeCharacter(
  35783. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35784. {
  35785. front: {
  35786. height: math.unit(6 + 6/12, "feet"),
  35787. weight: math.unit(7, "lb"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/icky/front.svg",
  35791. extra: 813/782,
  35792. bottom: 66/879
  35793. }
  35794. },
  35795. back: {
  35796. height: math.unit(6 + 6/12, "feet"),
  35797. weight: math.unit(7, "lb"),
  35798. name: "Back",
  35799. image: {
  35800. source: "./media/characters/icky/back.svg",
  35801. extra: 754/735,
  35802. bottom: 56/810
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(6 + 6/12, "feet"),
  35810. default: true
  35811. },
  35812. ]
  35813. ))
  35814. characterMakers.push(() => makeCharacter(
  35815. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35816. {
  35817. front: {
  35818. height: math.unit(15, "feet"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/rojas/front.svg",
  35822. extra: 1462/1408,
  35823. bottom: 95/1557
  35824. }
  35825. },
  35826. back: {
  35827. height: math.unit(15, "feet"),
  35828. name: "Back",
  35829. image: {
  35830. source: "./media/characters/rojas/back.svg",
  35831. extra: 1023/954,
  35832. bottom: 28/1051
  35833. }
  35834. },
  35835. },
  35836. [
  35837. {
  35838. name: "Normal",
  35839. height: math.unit(15, "feet"),
  35840. default: true
  35841. },
  35842. ]
  35843. ))
  35844. characterMakers.push(() => makeCharacter(
  35845. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35846. {
  35847. frontHuman: {
  35848. height: math.unit(5 + 7/12, "feet"),
  35849. name: "Front (Human)",
  35850. image: {
  35851. source: "./media/characters/alek-dryagan/front-human.svg",
  35852. extra: 1687/1667,
  35853. bottom: 69/1756
  35854. }
  35855. },
  35856. backHuman: {
  35857. height: math.unit(5 + 7/12, "feet"),
  35858. name: "Back (Human)",
  35859. image: {
  35860. source: "./media/characters/alek-dryagan/back-human.svg",
  35861. extra: 1670/1649,
  35862. bottom: 65/1735
  35863. }
  35864. },
  35865. frontDemi: {
  35866. height: math.unit(65, "feet"),
  35867. name: "Front (Demi)",
  35868. image: {
  35869. source: "./media/characters/alek-dryagan/front-demi.svg",
  35870. extra: 1669/1642,
  35871. bottom: 49/1718
  35872. }
  35873. },
  35874. backDemi: {
  35875. height: math.unit(65, "feet"),
  35876. name: "Back (Demi)",
  35877. image: {
  35878. source: "./media/characters/alek-dryagan/back-demi.svg",
  35879. extra: 1658/1637,
  35880. bottom: 40/1698
  35881. }
  35882. },
  35883. mawHuman: {
  35884. height: math.unit(0.3, "feet"),
  35885. name: "Maw (Human)",
  35886. image: {
  35887. source: "./media/characters/alek-dryagan/maw-human.svg"
  35888. }
  35889. },
  35890. mawDemi: {
  35891. height: math.unit(3.8, "feet"),
  35892. name: "Maw (Demi)",
  35893. image: {
  35894. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35895. }
  35896. },
  35897. },
  35898. [
  35899. {
  35900. name: "Normal",
  35901. height: math.unit(5 + 7/12, "feet"),
  35902. default: true
  35903. },
  35904. ]
  35905. ))
  35906. characterMakers.push(() => makeCharacter(
  35907. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35908. {
  35909. frontHuman: {
  35910. height: math.unit(5 + 2/12, "feet"),
  35911. name: "Front (Human)",
  35912. image: {
  35913. source: "./media/characters/gen/front-human.svg",
  35914. extra: 1627/1538,
  35915. bottom: 71/1698
  35916. }
  35917. },
  35918. backHuman: {
  35919. height: math.unit(5 + 2/12, "feet"),
  35920. name: "Back (Human)",
  35921. image: {
  35922. source: "./media/characters/gen/back-human.svg",
  35923. extra: 1638/1548,
  35924. bottom: 69/1707
  35925. }
  35926. },
  35927. frontDemi: {
  35928. height: math.unit(5 + 2/12, "feet"),
  35929. name: "Front (Demi)",
  35930. image: {
  35931. source: "./media/characters/gen/front-demi.svg",
  35932. extra: 1627/1538,
  35933. bottom: 71/1698
  35934. }
  35935. },
  35936. backDemi: {
  35937. height: math.unit(5 + 2/12, "feet"),
  35938. name: "Back (Demi)",
  35939. image: {
  35940. source: "./media/characters/gen/back-demi.svg",
  35941. extra: 1638/1548,
  35942. bottom: 69/1707
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(5 + 2/12, "feet"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35956. {
  35957. frontImp: {
  35958. height: math.unit(1 + 11/12, "feet"),
  35959. name: "Front (Imp)",
  35960. image: {
  35961. source: "./media/characters/max-kobold/front-imp.svg",
  35962. extra: 1238/1134,
  35963. bottom: 81/1319
  35964. }
  35965. },
  35966. backImp: {
  35967. height: math.unit(1 + 11/12, "feet"),
  35968. name: "Back (Imp)",
  35969. image: {
  35970. source: "./media/characters/max-kobold/back-imp.svg",
  35971. extra: 1334/1175,
  35972. bottom: 34/1368
  35973. }
  35974. },
  35975. frontDemi: {
  35976. height: math.unit(5 + 9/12, "feet"),
  35977. name: "Front (Demi)",
  35978. image: {
  35979. source: "./media/characters/max-kobold/front-demi.svg",
  35980. extra: 1715/1685,
  35981. bottom: 54/1769
  35982. }
  35983. },
  35984. backDemi: {
  35985. height: math.unit(5 + 9/12, "feet"),
  35986. name: "Back (Demi)",
  35987. image: {
  35988. source: "./media/characters/max-kobold/back-demi.svg",
  35989. extra: 1752/1729,
  35990. bottom: 41/1793
  35991. }
  35992. },
  35993. handImp: {
  35994. height: math.unit(0.45, "feet"),
  35995. name: "Hand (Imp)",
  35996. image: {
  35997. source: "./media/characters/max-kobold/hand.svg"
  35998. }
  35999. },
  36000. pawImp: {
  36001. height: math.unit(0.46, "feet"),
  36002. name: "Paw (Imp)",
  36003. image: {
  36004. source: "./media/characters/max-kobold/paw.svg"
  36005. }
  36006. },
  36007. handDemi: {
  36008. height: math.unit(0.80, "feet"),
  36009. name: "Hand (Demi)",
  36010. image: {
  36011. source: "./media/characters/max-kobold/hand.svg"
  36012. }
  36013. },
  36014. pawDemi: {
  36015. height: math.unit(1.1, "feet"),
  36016. name: "Paw (Demi)",
  36017. image: {
  36018. source: "./media/characters/max-kobold/paw.svg"
  36019. }
  36020. },
  36021. headImp: {
  36022. height: math.unit(1.33, "feet"),
  36023. name: "Head (Imp)",
  36024. image: {
  36025. source: "./media/characters/max-kobold/head-imp.svg"
  36026. }
  36027. },
  36028. mawImp: {
  36029. height: math.unit(0.75, "feet"),
  36030. name: "Maw (Imp)",
  36031. image: {
  36032. source: "./media/characters/max-kobold/maw-imp.svg"
  36033. }
  36034. },
  36035. mawDemi: {
  36036. height: math.unit(0.42, "feet"),
  36037. name: "Maw (Demi)",
  36038. image: {
  36039. source: "./media/characters/max-kobold/maw-demi.svg"
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Normal",
  36046. height: math.unit(1 + 11/12, "feet"),
  36047. default: true
  36048. },
  36049. ]
  36050. ))
  36051. characterMakers.push(() => makeCharacter(
  36052. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36053. {
  36054. front: {
  36055. height: math.unit(7 + 5/12, "feet"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/carbon/front.svg",
  36059. extra: 1754/1689,
  36060. bottom: 65/1819
  36061. }
  36062. },
  36063. back: {
  36064. height: math.unit(7 + 5/12, "feet"),
  36065. name: "Back",
  36066. image: {
  36067. source: "./media/characters/carbon/back.svg",
  36068. extra: 1762/1695,
  36069. bottom: 24/1786
  36070. }
  36071. },
  36072. frontGigantamax: {
  36073. height: math.unit(150, "feet"),
  36074. name: "Front (Gigantamax)",
  36075. image: {
  36076. source: "./media/characters/carbon/front-gigantamax.svg",
  36077. extra: 1826/1669,
  36078. bottom: 59/1885
  36079. }
  36080. },
  36081. backGigantamax: {
  36082. height: math.unit(150, "feet"),
  36083. name: "Back (Gigantamax)",
  36084. image: {
  36085. source: "./media/characters/carbon/back-gigantamax.svg",
  36086. extra: 1796/1653,
  36087. bottom: 53/1849
  36088. }
  36089. },
  36090. maw: {
  36091. height: math.unit(0.48, "feet"),
  36092. name: "Maw",
  36093. image: {
  36094. source: "./media/characters/carbon/maw.svg"
  36095. }
  36096. },
  36097. mawGigantamax: {
  36098. height: math.unit(7.5, "feet"),
  36099. name: "Maw (Gigantamax)",
  36100. image: {
  36101. source: "./media/characters/carbon/maw-gigantamax.svg"
  36102. }
  36103. },
  36104. },
  36105. [
  36106. {
  36107. name: "Normal",
  36108. height: math.unit(7 + 5/12, "feet"),
  36109. default: true
  36110. },
  36111. ]
  36112. ))
  36113. characterMakers.push(() => makeCharacter(
  36114. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36115. {
  36116. front: {
  36117. height: math.unit(6, "feet"),
  36118. name: "Front",
  36119. image: {
  36120. source: "./media/characters/maverick/front.svg",
  36121. extra: 1672/1661,
  36122. bottom: 85/1757
  36123. }
  36124. },
  36125. back: {
  36126. height: math.unit(6, "feet"),
  36127. name: "Back",
  36128. image: {
  36129. source: "./media/characters/maverick/back.svg",
  36130. extra: 1642/1631,
  36131. bottom: 38/1680
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(6, "feet"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(15, "feet"),
  36148. weight: math.unit(615, "lb"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/grockle/front.svg",
  36152. extra: 1535/1427,
  36153. bottom: 56/1591
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Normal",
  36160. height: math.unit(15, "feet"),
  36161. default: true
  36162. },
  36163. {
  36164. name: "Large",
  36165. height: math.unit(150, "feet")
  36166. },
  36167. {
  36168. name: "Macro",
  36169. height: math.unit(1876, "feet")
  36170. },
  36171. {
  36172. name: "Mega Macro",
  36173. height: math.unit(121940, "feet")
  36174. },
  36175. {
  36176. name: "Giga Macro",
  36177. height: math.unit(750, "km")
  36178. },
  36179. {
  36180. name: "Tera Macro",
  36181. height: math.unit(750000, "km")
  36182. },
  36183. {
  36184. name: "Galactic",
  36185. height: math.unit(1.4e5, "km")
  36186. },
  36187. {
  36188. name: "Godlike",
  36189. height: math.unit(9.8e280, "galaxies")
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(11, "meters"),
  36198. weight: math.unit(20, "tonnes"),
  36199. name: "Front",
  36200. image: {
  36201. source: "./media/characters/alistair/front.svg",
  36202. extra: 1265/1009,
  36203. bottom: 93/1358
  36204. }
  36205. },
  36206. },
  36207. [
  36208. {
  36209. name: "Normal",
  36210. height: math.unit(11, "meters"),
  36211. default: true
  36212. },
  36213. ]
  36214. ))
  36215. characterMakers.push(() => makeCharacter(
  36216. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36217. {
  36218. front: {
  36219. height: math.unit(5 + 8/12, "feet"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/haruka/front.svg",
  36223. extra: 2012/1952,
  36224. bottom: 0/2012
  36225. }
  36226. },
  36227. },
  36228. [
  36229. {
  36230. name: "Normal",
  36231. height: math.unit(5 + 8/12, "feet"),
  36232. default: true
  36233. },
  36234. ]
  36235. ))
  36236. characterMakers.push(() => makeCharacter(
  36237. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36238. {
  36239. back: {
  36240. height: math.unit(9, "feet"),
  36241. name: "Back",
  36242. image: {
  36243. source: "./media/characters/vivian-sylveon/back.svg",
  36244. extra: 1853/1714,
  36245. bottom: 0/1853
  36246. }
  36247. },
  36248. },
  36249. [
  36250. {
  36251. name: "Normal",
  36252. height: math.unit(9, "feet"),
  36253. default: true
  36254. },
  36255. {
  36256. name: "Macro",
  36257. height: math.unit(500, "feet")
  36258. },
  36259. {
  36260. name: "Megamacro",
  36261. height: math.unit(600, "miles")
  36262. },
  36263. {
  36264. name: "Gigamacro",
  36265. height: math.unit(30000, "miles")
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36271. {
  36272. anthro: {
  36273. height: math.unit(5 + 10/12, "feet"),
  36274. weight: math.unit(100, "lb"),
  36275. name: "Anthro",
  36276. image: {
  36277. source: "./media/characters/daiki/anthro.svg",
  36278. extra: 1115/1027,
  36279. bottom: 69/1184
  36280. }
  36281. },
  36282. feral: {
  36283. height: math.unit(200, "feet"),
  36284. name: "Feral",
  36285. image: {
  36286. source: "./media/characters/daiki/feral.svg",
  36287. extra: 1256/313,
  36288. bottom: 39/1295
  36289. }
  36290. },
  36291. feralHead: {
  36292. height: math.unit(171, "feet"),
  36293. name: "Feral Head",
  36294. image: {
  36295. source: "./media/characters/daiki/feral-head.svg"
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(5 + 10/12, "feet"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36309. {
  36310. fullyEquippedFront: {
  36311. height: math.unit(3 + 1/12, "feet"),
  36312. weight: math.unit(24, "lb"),
  36313. name: "Fully Equipped (Front)",
  36314. image: {
  36315. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36316. extra: 687/605,
  36317. bottom: 18/705
  36318. }
  36319. },
  36320. fullyEquippedBack: {
  36321. height: math.unit(3 + 1/12, "feet"),
  36322. weight: math.unit(24, "lb"),
  36323. name: "Fully Equipped (Back)",
  36324. image: {
  36325. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36326. extra: 689/590,
  36327. bottom: 18/707
  36328. }
  36329. },
  36330. dailyWear: {
  36331. height: math.unit(3 + 1/12, "feet"),
  36332. weight: math.unit(24, "lb"),
  36333. name: "Daily Wear",
  36334. image: {
  36335. source: "./media/characters/tea-spot/daily-wear.svg",
  36336. extra: 701/620,
  36337. bottom: 21/722
  36338. }
  36339. },
  36340. maidWork: {
  36341. height: math.unit(3 + 1/12, "feet"),
  36342. weight: math.unit(24, "lb"),
  36343. name: "Maid Work",
  36344. image: {
  36345. source: "./media/characters/tea-spot/maid-work.svg",
  36346. extra: 693/609,
  36347. bottom: 15/708
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(3 + 1/12, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(175, "cm"),
  36364. weight: math.unit(75, "kg"),
  36365. name: "Front",
  36366. image: {
  36367. source: "./media/characters/chee/front.svg",
  36368. extra: 1796/1740,
  36369. bottom: 40/1836
  36370. }
  36371. },
  36372. },
  36373. [
  36374. {
  36375. name: "Micro-Micro",
  36376. height: math.unit(1, "nm")
  36377. },
  36378. {
  36379. name: "Micro-erst",
  36380. height: math.unit(1, "micrometer")
  36381. },
  36382. {
  36383. name: "Micro-er",
  36384. height: math.unit(1, "cm")
  36385. },
  36386. {
  36387. name: "Normal",
  36388. height: math.unit(175, "cm"),
  36389. default: true
  36390. },
  36391. {
  36392. name: "Macro",
  36393. height: math.unit(100, "m")
  36394. },
  36395. {
  36396. name: "Macro-er",
  36397. height: math.unit(1, "km")
  36398. },
  36399. {
  36400. name: "Macro-erst",
  36401. height: math.unit(10, "km")
  36402. },
  36403. {
  36404. name: "Macro-Macro",
  36405. height: math.unit(100, "km")
  36406. },
  36407. ]
  36408. ))
  36409. characterMakers.push(() => makeCharacter(
  36410. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36411. {
  36412. front: {
  36413. height: math.unit(11 + 9/12, "feet"),
  36414. weight: math.unit(935, "lb"),
  36415. name: "Front",
  36416. image: {
  36417. source: "./media/characters/kingsley/front.svg",
  36418. extra: 1803/1674,
  36419. bottom: 127/1930
  36420. }
  36421. },
  36422. frontNude: {
  36423. height: math.unit(11 + 9/12, "feet"),
  36424. weight: math.unit(935, "lb"),
  36425. name: "Front (Nude)",
  36426. image: {
  36427. source: "./media/characters/kingsley/front-nude.svg",
  36428. extra: 1803/1674,
  36429. bottom: 127/1930
  36430. }
  36431. },
  36432. },
  36433. [
  36434. {
  36435. name: "Normal",
  36436. height: math.unit(11 + 9/12, "feet"),
  36437. default: true
  36438. },
  36439. ]
  36440. ))
  36441. characterMakers.push(() => makeCharacter(
  36442. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36443. {
  36444. side: {
  36445. height: math.unit(9, "feet"),
  36446. name: "Side",
  36447. image: {
  36448. source: "./media/characters/rymel/side.svg",
  36449. extra: 792/469,
  36450. bottom: 121/913
  36451. }
  36452. },
  36453. maw: {
  36454. height: math.unit(2.4, "meters"),
  36455. name: "Maw",
  36456. image: {
  36457. source: "./media/characters/rymel/maw.svg"
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "House Drake",
  36464. height: math.unit(2, "feet")
  36465. },
  36466. {
  36467. name: "Reduced",
  36468. height: math.unit(4.5, "feet")
  36469. },
  36470. {
  36471. name: "Normal",
  36472. height: math.unit(9, "feet"),
  36473. default: true
  36474. },
  36475. ]
  36476. ))
  36477. characterMakers.push(() => makeCharacter(
  36478. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36479. {
  36480. front: {
  36481. height: math.unit(1.74, "meters"),
  36482. weight: math.unit(55, "kg"),
  36483. name: "Front",
  36484. image: {
  36485. source: "./media/characters/rubus/front.svg",
  36486. extra: 1894/1742,
  36487. bottom: 44/1938
  36488. }
  36489. },
  36490. },
  36491. [
  36492. {
  36493. name: "Normal",
  36494. height: math.unit(1.74, "meters"),
  36495. default: true
  36496. },
  36497. ]
  36498. ))
  36499. characterMakers.push(() => makeCharacter(
  36500. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36501. {
  36502. front: {
  36503. height: math.unit(5 + 2/12, "feet"),
  36504. weight: math.unit(112, "lb"),
  36505. name: "Front",
  36506. image: {
  36507. source: "./media/characters/cassie-kingston/front.svg",
  36508. extra: 1438/1390,
  36509. bottom: 47/1485
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Normal",
  36516. height: math.unit(5 + 2/12, "feet"),
  36517. default: true
  36518. },
  36519. {
  36520. name: "Macro",
  36521. height: math.unit(128, "feet")
  36522. },
  36523. {
  36524. name: "Megamacro",
  36525. height: math.unit(2.56, "miles")
  36526. },
  36527. ]
  36528. ))
  36529. characterMakers.push(() => makeCharacter(
  36530. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36531. {
  36532. front: {
  36533. height: math.unit(7, "feet"),
  36534. name: "Front",
  36535. image: {
  36536. source: "./media/characters/fox/front.svg",
  36537. extra: 1798/1703,
  36538. bottom: 55/1853
  36539. }
  36540. },
  36541. back: {
  36542. height: math.unit(7, "feet"),
  36543. name: "Back",
  36544. image: {
  36545. source: "./media/characters/fox/back.svg",
  36546. extra: 1748/1649,
  36547. bottom: 32/1780
  36548. }
  36549. },
  36550. head: {
  36551. height: math.unit(1.95, "feet"),
  36552. name: "Head",
  36553. image: {
  36554. source: "./media/characters/fox/head.svg"
  36555. }
  36556. },
  36557. dick: {
  36558. height: math.unit(1.33, "feet"),
  36559. name: "Dick",
  36560. image: {
  36561. source: "./media/characters/fox/dick.svg"
  36562. }
  36563. },
  36564. foot: {
  36565. height: math.unit(1, "feet"),
  36566. name: "Foot",
  36567. image: {
  36568. source: "./media/characters/fox/foot.svg"
  36569. }
  36570. },
  36571. paw: {
  36572. height: math.unit(0.92, "feet"),
  36573. name: "Paw",
  36574. image: {
  36575. source: "./media/characters/fox/paw.svg"
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Small",
  36582. height: math.unit(3, "inches")
  36583. },
  36584. {
  36585. name: "\"Realistic\"",
  36586. height: math.unit(7, "feet")
  36587. },
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(150, "feet"),
  36591. default: true
  36592. },
  36593. {
  36594. name: "BIG",
  36595. height: math.unit(1200, "feet")
  36596. },
  36597. {
  36598. name: "👀",
  36599. height: math.unit(5, "miles")
  36600. },
  36601. {
  36602. name: "👀👀👀",
  36603. height: math.unit(64, "miles")
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(625, "feet"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/asonja-rossa/front.svg",
  36615. extra: 1833/1686,
  36616. bottom: 24/1857
  36617. }
  36618. },
  36619. back: {
  36620. height: math.unit(625, "feet"),
  36621. name: "Back",
  36622. image: {
  36623. source: "./media/characters/asonja-rossa/back.svg",
  36624. extra: 1852/1753,
  36625. bottom: 26/1878
  36626. }
  36627. },
  36628. },
  36629. [
  36630. {
  36631. name: "Macro",
  36632. height: math.unit(625, "feet"),
  36633. default: true
  36634. },
  36635. ]
  36636. ))
  36637. characterMakers.push(() => makeCharacter(
  36638. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36639. {
  36640. side: {
  36641. height: math.unit(6, "feet"),
  36642. weight: math.unit(150, "lb"),
  36643. name: "Side",
  36644. image: {
  36645. source: "./media/characters/rezukii/side.svg",
  36646. extra: 979/542,
  36647. bottom: 87/1066
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Tiny",
  36654. height: math.unit(2, "feet")
  36655. },
  36656. {
  36657. name: "Smol",
  36658. height: math.unit(4, "feet")
  36659. },
  36660. {
  36661. name: "Normal",
  36662. height: math.unit(8, "feet"),
  36663. default: true
  36664. },
  36665. {
  36666. name: "Big",
  36667. height: math.unit(12, "feet")
  36668. },
  36669. {
  36670. name: "Macro",
  36671. height: math.unit(30, "feet")
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(14, "feet"),
  36680. weight: math.unit(9.5, "tonnes"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/dawnheart/front.svg",
  36684. extra: 2792/2675,
  36685. bottom: 64/2856
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(14, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36699. {
  36700. front: {
  36701. height: math.unit(1.7, "m"),
  36702. name: "Front",
  36703. image: {
  36704. source: "./media/characters/gladi/front.svg",
  36705. extra: 1460/1362,
  36706. bottom: 19/1479
  36707. }
  36708. },
  36709. back: {
  36710. height: math.unit(1.7, "m"),
  36711. name: "Back",
  36712. image: {
  36713. source: "./media/characters/gladi/back.svg",
  36714. extra: 1459/1357,
  36715. bottom: 12/1471
  36716. }
  36717. },
  36718. feral: {
  36719. height: math.unit(2.05, "m"),
  36720. name: "Feral",
  36721. image: {
  36722. source: "./media/characters/gladi/feral.svg",
  36723. extra: 821/557,
  36724. bottom: 91/912
  36725. }
  36726. },
  36727. },
  36728. [
  36729. {
  36730. name: "Shortest",
  36731. height: math.unit(70, "cm")
  36732. },
  36733. {
  36734. name: "Normal",
  36735. height: math.unit(1.7, "m")
  36736. },
  36737. {
  36738. name: "Macro",
  36739. height: math.unit(10, "m"),
  36740. default: true
  36741. },
  36742. {
  36743. name: "Tallest",
  36744. height: math.unit(200, "m")
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(5 + 7/12, "feet"),
  36753. weight: math.unit(92, "kg"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/erdno/front.svg",
  36757. extra: 1954/1889,
  36758. bottom: 22/1976
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(5 + 7/12, "feet"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(5 + 10/12, "feet"),
  36775. weight: math.unit(150, "lb"),
  36776. name: "Front",
  36777. image: {
  36778. source: "./media/characters/jamie/front.svg",
  36779. extra: 1908/1768,
  36780. bottom: 19/1927
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Minimum",
  36787. height: math.unit(2, "cm")
  36788. },
  36789. {
  36790. name: "Micro",
  36791. height: math.unit(3, "inches")
  36792. },
  36793. {
  36794. name: "Normal",
  36795. height: math.unit(5 + 10/12, "feet"),
  36796. default: true
  36797. },
  36798. {
  36799. name: "Macro",
  36800. height: math.unit(150, "feet")
  36801. },
  36802. {
  36803. name: "Megamacro",
  36804. height: math.unit(10000, "m")
  36805. },
  36806. ]
  36807. ))
  36808. characterMakers.push(() => makeCharacter(
  36809. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36810. {
  36811. front: {
  36812. height: math.unit(2, "meters"),
  36813. weight: math.unit(100, "kg"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/shiron/front.svg",
  36817. extra: 2103/1985,
  36818. bottom: 98/2201
  36819. }
  36820. },
  36821. back: {
  36822. height: math.unit(2, "meters"),
  36823. weight: math.unit(100, "kg"),
  36824. name: "Back",
  36825. image: {
  36826. source: "./media/characters/shiron/back.svg",
  36827. extra: 2110/2015,
  36828. bottom: 89/2199
  36829. }
  36830. },
  36831. hand: {
  36832. height: math.unit(0.96, "feet"),
  36833. name: "Hand",
  36834. image: {
  36835. source: "./media/characters/shiron/hand.svg"
  36836. }
  36837. },
  36838. foot: {
  36839. height: math.unit(1.464, "feet"),
  36840. name: "Foot",
  36841. image: {
  36842. source: "./media/characters/shiron/foot.svg"
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(2, "meters")
  36850. },
  36851. {
  36852. name: "Macro",
  36853. height: math.unit(500, "meters"),
  36854. default: true
  36855. },
  36856. {
  36857. name: "Megamacro",
  36858. height: math.unit(20, "km")
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36864. {
  36865. front: {
  36866. height: math.unit(6, "feet"),
  36867. name: "Front",
  36868. image: {
  36869. source: "./media/characters/sam/front.svg",
  36870. extra: 849/826,
  36871. bottom: 19/868
  36872. }
  36873. },
  36874. },
  36875. [
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(6, "feet"),
  36879. default: true
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36885. {
  36886. front: {
  36887. height: math.unit(8 + 4/12, "feet"),
  36888. weight: math.unit(122, "kg"),
  36889. name: "Front",
  36890. image: {
  36891. source: "./media/characters/namori-kurogawa/front.svg",
  36892. extra: 1894/1576,
  36893. bottom: 34/1928
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(8 + 4/12, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(9, "feet"),
  36910. weight: math.unit(621, "lb"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/unmru/front.svg",
  36914. extra: 1853/1747,
  36915. bottom: 73/1926
  36916. }
  36917. },
  36918. side: {
  36919. height: math.unit(9, "feet"),
  36920. weight: math.unit(621, "lb"),
  36921. name: "Side",
  36922. image: {
  36923. source: "./media/characters/unmru/side.svg",
  36924. extra: 1781/1671,
  36925. bottom: 127/1908
  36926. }
  36927. },
  36928. back: {
  36929. height: math.unit(9, "feet"),
  36930. weight: math.unit(621, "lb"),
  36931. name: "Back",
  36932. image: {
  36933. source: "./media/characters/unmru/back.svg",
  36934. extra: 1894/1765,
  36935. bottom: 75/1969
  36936. }
  36937. },
  36938. dick: {
  36939. height: math.unit(3, "feet"),
  36940. weight: math.unit(35, "lb"),
  36941. name: "Dick",
  36942. image: {
  36943. source: "./media/characters/unmru/dick.svg"
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(9, "feet")
  36951. },
  36952. {
  36953. name: "Natural",
  36954. height: math.unit(27, "feet"),
  36955. default: true
  36956. },
  36957. {
  36958. name: "Giant",
  36959. height: math.unit(90, "feet")
  36960. },
  36961. {
  36962. name: "Kaiju",
  36963. height: math.unit(270, "feet")
  36964. },
  36965. {
  36966. name: "Macro",
  36967. height: math.unit(900, "feet")
  36968. },
  36969. {
  36970. name: "Macro+",
  36971. height: math.unit(2700, "feet")
  36972. },
  36973. {
  36974. name: "Megamacro",
  36975. height: math.unit(9000, "feet")
  36976. },
  36977. {
  36978. name: "City-Crushing",
  36979. height: math.unit(27000, "feet")
  36980. },
  36981. {
  36982. name: "Mountain-Mashing",
  36983. height: math.unit(90000, "feet")
  36984. },
  36985. {
  36986. name: "Earth-Eclipsing",
  36987. height: math.unit(2.7e8, "feet")
  36988. },
  36989. {
  36990. name: "Sol-Swallowing",
  36991. height: math.unit(9e10, "feet")
  36992. },
  36993. {
  36994. name: "Majoris-Munching",
  36995. height: math.unit(2.7e13, "feet")
  36996. },
  36997. ]
  36998. ))
  36999. characterMakers.push(() => makeCharacter(
  37000. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37001. {
  37002. front: {
  37003. height: math.unit(1, "inch"),
  37004. name: "Front",
  37005. image: {
  37006. source: "./media/characters/squeaks-mouse/front.svg",
  37007. extra: 352/308,
  37008. bottom: 25/377
  37009. }
  37010. },
  37011. },
  37012. [
  37013. {
  37014. name: "Micro",
  37015. height: math.unit(1, "inch"),
  37016. default: true
  37017. },
  37018. ]
  37019. ))
  37020. characterMakers.push(() => makeCharacter(
  37021. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37022. {
  37023. side: {
  37024. height: math.unit(35, "feet"),
  37025. name: "Side",
  37026. image: {
  37027. source: "./media/characters/sayko/side.svg",
  37028. extra: 1697/1021,
  37029. bottom: 82/1779
  37030. }
  37031. },
  37032. head: {
  37033. height: math.unit(16, "feet"),
  37034. name: "Head",
  37035. image: {
  37036. source: "./media/characters/sayko/head.svg"
  37037. }
  37038. },
  37039. forepaw: {
  37040. height: math.unit(7.85, "feet"),
  37041. name: "Forepaw",
  37042. image: {
  37043. source: "./media/characters/sayko/forepaw.svg"
  37044. }
  37045. },
  37046. hindpaw: {
  37047. height: math.unit(8.8, "feet"),
  37048. name: "Hindpaw",
  37049. image: {
  37050. source: "./media/characters/sayko/hindpaw.svg"
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(35, "feet"),
  37058. default: true
  37059. },
  37060. {
  37061. name: "Colossus",
  37062. height: math.unit(100, "meters")
  37063. },
  37064. {
  37065. name: "\"Small\" Deity",
  37066. height: math.unit(1, "km")
  37067. },
  37068. {
  37069. name: "\"Large\" Deity",
  37070. height: math.unit(15, "km")
  37071. },
  37072. ]
  37073. ))
  37074. characterMakers.push(() => makeCharacter(
  37075. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37076. {
  37077. front: {
  37078. height: math.unit(6, "feet"),
  37079. weight: math.unit(250, "lb"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/mukiro/front.svg",
  37083. extra: 1368/1310,
  37084. bottom: 34/1402
  37085. }
  37086. },
  37087. },
  37088. [
  37089. {
  37090. name: "Normal",
  37091. height: math.unit(6, "feet"),
  37092. default: true
  37093. },
  37094. ]
  37095. ))
  37096. characterMakers.push(() => makeCharacter(
  37097. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37098. {
  37099. front: {
  37100. height: math.unit(12 + 4/12, "feet"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37104. extra: 1346/1311,
  37105. bottom: 65/1411
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Base",
  37112. height: math.unit(12 + 4/12, "feet"),
  37113. default: true
  37114. },
  37115. {
  37116. name: "Macro",
  37117. height: math.unit(150, "feet")
  37118. },
  37119. {
  37120. name: "Mega",
  37121. height: math.unit(2, "miles")
  37122. },
  37123. {
  37124. name: "Demi God",
  37125. height: math.unit(4, "AU")
  37126. },
  37127. {
  37128. name: "God Size",
  37129. height: math.unit(1, "universe")
  37130. },
  37131. ]
  37132. ))
  37133. characterMakers.push(() => makeCharacter(
  37134. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37135. {
  37136. front: {
  37137. height: math.unit(3 + 3/12, "feet"),
  37138. weight: math.unit(88, "lb"),
  37139. name: "Front",
  37140. image: {
  37141. source: "./media/characters/trey/front.svg",
  37142. extra: 1815/1509,
  37143. bottom: 60/1875
  37144. }
  37145. },
  37146. },
  37147. [
  37148. {
  37149. name: "Normal",
  37150. height: math.unit(3 + 3/12, "feet"),
  37151. default: true
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(4, "meters"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/adelonda/front.svg",
  37163. extra: 1942/1775,
  37164. bottom: 33/1975
  37165. }
  37166. },
  37167. back: {
  37168. height: math.unit(4, "meters"),
  37169. name: "Back",
  37170. image: {
  37171. source: "./media/characters/adelonda/back.svg",
  37172. extra: 1932/1780,
  37173. bottom: 42/1974
  37174. }
  37175. },
  37176. bust: {
  37177. height: math.unit(1.8, "meter"),
  37178. name: "Bust",
  37179. image: {
  37180. source: "./media/characters/adelonda/bust.svg"
  37181. }
  37182. },
  37183. },
  37184. [
  37185. {
  37186. name: "Normal",
  37187. height: math.unit(4, "meters"),
  37188. default: true
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(8 + 4/12, "feet"),
  37197. weight: math.unit(670, "lb"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/acadiel/front.svg",
  37201. extra: 1901/1595,
  37202. bottom: 142/2043
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(8 + 4/12, "feet"),
  37210. default: true
  37211. },
  37212. {
  37213. name: "Macro",
  37214. height: math.unit(200, "feet")
  37215. },
  37216. ]
  37217. ))
  37218. characterMakers.push(() => makeCharacter(
  37219. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37220. {
  37221. front: {
  37222. height: math.unit(6 + 2/12, "feet"),
  37223. weight: math.unit(185, "lb"),
  37224. name: "Front",
  37225. image: {
  37226. source: "./media/characters/kayne-ein/front.svg",
  37227. extra: 1780/1560,
  37228. bottom: 81/1861
  37229. }
  37230. },
  37231. },
  37232. [
  37233. {
  37234. name: "Normal",
  37235. height: math.unit(6 + 2/12, "feet"),
  37236. default: true
  37237. },
  37238. {
  37239. name: "Transformation Stage",
  37240. height: math.unit(15, "feet")
  37241. },
  37242. {
  37243. name: "Macro",
  37244. height: math.unit(150, "feet")
  37245. },
  37246. {
  37247. name: "Earth's Shadow",
  37248. height: math.unit(6200, "miles")
  37249. },
  37250. {
  37251. name: "Universal Demon",
  37252. height: math.unit(28e9, "parsecs")
  37253. },
  37254. {
  37255. name: "Multiverse God",
  37256. height: math.unit(3, "multiverses")
  37257. },
  37258. ]
  37259. ))
  37260. characterMakers.push(() => makeCharacter(
  37261. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37262. {
  37263. front: {
  37264. height: math.unit(5 + 5/12, "feet"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/fawn/front.svg",
  37268. extra: 1873/1731,
  37269. bottom: 95/1968
  37270. }
  37271. },
  37272. back: {
  37273. height: math.unit(5 + 5/12, "feet"),
  37274. name: "Back",
  37275. image: {
  37276. source: "./media/characters/fawn/back.svg",
  37277. extra: 1813/1700,
  37278. bottom: 14/1827
  37279. }
  37280. },
  37281. hoof: {
  37282. height: math.unit(1.45, "feet"),
  37283. name: "Hoof",
  37284. image: {
  37285. source: "./media/characters/fawn/hoof.svg"
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(5 + 5/12, "feet"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37299. {
  37300. front: {
  37301. height: math.unit(2 + 5/12, "feet"),
  37302. name: "Front",
  37303. image: {
  37304. source: "./media/characters/orion/front.svg",
  37305. extra: 1366/1304,
  37306. bottom: 43/1409
  37307. }
  37308. },
  37309. paw: {
  37310. height: math.unit(0.52, "feet"),
  37311. name: "Paw",
  37312. image: {
  37313. source: "./media/characters/orion/paw.svg"
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(2 + 5/12, "feet"),
  37321. default: true
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37327. {
  37328. front: {
  37329. height: math.unit(5 + 10/12, "feet"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/vera/front.svg",
  37333. extra: 1680/1575,
  37334. bottom: 49/1729
  37335. }
  37336. },
  37337. back: {
  37338. height: math.unit(5 + 10/12, "feet"),
  37339. name: "Back",
  37340. image: {
  37341. source: "./media/characters/vera/back.svg",
  37342. extra: 1700/1588,
  37343. bottom: 18/1718
  37344. }
  37345. },
  37346. arcanine: {
  37347. height: math.unit(6 + 8/12, "feet"),
  37348. name: "Arcanine",
  37349. image: {
  37350. source: "./media/characters/vera/arcanine.svg",
  37351. extra: 1590/1511,
  37352. bottom: 71/1661
  37353. }
  37354. },
  37355. maw: {
  37356. height: math.unit(0.82, "feet"),
  37357. name: "Maw",
  37358. image: {
  37359. source: "./media/characters/vera/maw.svg"
  37360. }
  37361. },
  37362. mawArcanine: {
  37363. height: math.unit(0.97, "feet"),
  37364. name: "Maw (Arcanine)",
  37365. image: {
  37366. source: "./media/characters/vera/maw-arcanine.svg"
  37367. }
  37368. },
  37369. paw: {
  37370. height: math.unit(0.75, "feet"),
  37371. name: "Paw",
  37372. image: {
  37373. source: "./media/characters/vera/paw.svg"
  37374. }
  37375. },
  37376. pawprint: {
  37377. height: math.unit(0.52, "feet"),
  37378. name: "Pawprint",
  37379. image: {
  37380. source: "./media/characters/vera/pawprint.svg"
  37381. }
  37382. },
  37383. },
  37384. [
  37385. {
  37386. name: "Normal",
  37387. height: math.unit(5 + 10/12, "feet"),
  37388. default: true
  37389. },
  37390. {
  37391. name: "Macro",
  37392. height: math.unit(75, "feet")
  37393. },
  37394. ]
  37395. ))
  37396. characterMakers.push(() => makeCharacter(
  37397. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37398. {
  37399. front: {
  37400. height: math.unit(4, "feet"),
  37401. weight: math.unit(40, "lb"),
  37402. name: "Front",
  37403. image: {
  37404. source: "./media/characters/orvan-rabbit/front.svg",
  37405. extra: 1896/1642,
  37406. bottom: 29/1925
  37407. }
  37408. },
  37409. },
  37410. [
  37411. {
  37412. name: "Normal",
  37413. height: math.unit(4, "feet"),
  37414. default: true
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37420. {
  37421. front: {
  37422. height: math.unit(6, "feet"),
  37423. weight: math.unit(168, "lb"),
  37424. name: "Front",
  37425. image: {
  37426. source: "./media/characters/lisa/front.svg",
  37427. extra: 2065/1867,
  37428. bottom: 46/2111
  37429. }
  37430. },
  37431. back: {
  37432. height: math.unit(6, "feet"),
  37433. weight: math.unit(168, "lb"),
  37434. name: "Back",
  37435. image: {
  37436. source: "./media/characters/lisa/back.svg",
  37437. extra: 1982/1838,
  37438. bottom: 29/2011
  37439. }
  37440. },
  37441. maw: {
  37442. height: math.unit(0.81, "feet"),
  37443. name: "Maw",
  37444. image: {
  37445. source: "./media/characters/lisa/maw.svg"
  37446. }
  37447. },
  37448. paw: {
  37449. height: math.unit(0.9, "feet"),
  37450. name: "Paw",
  37451. image: {
  37452. source: "./media/characters/lisa/paw.svg"
  37453. }
  37454. },
  37455. caribousune: {
  37456. height: math.unit(7 + 2/12, "feet"),
  37457. weight: math.unit(268, "lb"),
  37458. name: "Caribousune",
  37459. image: {
  37460. source: "./media/characters/lisa/caribousune.svg",
  37461. extra: 1843/1633,
  37462. bottom: 29/1872
  37463. }
  37464. },
  37465. frontCaribousune: {
  37466. height: math.unit(7 + 2/12, "feet"),
  37467. weight: math.unit(268, "lb"),
  37468. name: "Front (Caribousune)",
  37469. image: {
  37470. source: "./media/characters/lisa/front-caribousune.svg",
  37471. extra: 1818/1638,
  37472. bottom: 52/1870
  37473. }
  37474. },
  37475. sideCaribousune: {
  37476. height: math.unit(7 + 2/12, "feet"),
  37477. weight: math.unit(268, "lb"),
  37478. name: "Side (Caribousune)",
  37479. image: {
  37480. source: "./media/characters/lisa/side-caribousune.svg",
  37481. extra: 1851/1635,
  37482. bottom: 16/1867
  37483. }
  37484. },
  37485. backCaribousune: {
  37486. height: math.unit(7 + 2/12, "feet"),
  37487. weight: math.unit(268, "lb"),
  37488. name: "Back (Caribousune)",
  37489. image: {
  37490. source: "./media/characters/lisa/back-caribousune.svg",
  37491. extra: 1801/1604,
  37492. bottom: 44/1845
  37493. }
  37494. },
  37495. caribou: {
  37496. height: math.unit(7 + 2/12, "feet"),
  37497. weight: math.unit(268, "lb"),
  37498. name: "Caribou",
  37499. image: {
  37500. source: "./media/characters/lisa/caribou.svg",
  37501. extra: 1843/1633,
  37502. bottom: 29/1872
  37503. }
  37504. },
  37505. frontCaribou: {
  37506. height: math.unit(7 + 2/12, "feet"),
  37507. weight: math.unit(268, "lb"),
  37508. name: "Front (Caribou)",
  37509. image: {
  37510. source: "./media/characters/lisa/front-caribou.svg",
  37511. extra: 1818/1638,
  37512. bottom: 52/1870
  37513. }
  37514. },
  37515. sideCaribou: {
  37516. height: math.unit(7 + 2/12, "feet"),
  37517. weight: math.unit(268, "lb"),
  37518. name: "Side (Caribou)",
  37519. image: {
  37520. source: "./media/characters/lisa/side-caribou.svg",
  37521. extra: 1851/1635,
  37522. bottom: 16/1867
  37523. }
  37524. },
  37525. backCaribou: {
  37526. height: math.unit(7 + 2/12, "feet"),
  37527. weight: math.unit(268, "lb"),
  37528. name: "Back (Caribou)",
  37529. image: {
  37530. source: "./media/characters/lisa/back-caribou.svg",
  37531. extra: 1801/1604,
  37532. bottom: 44/1845
  37533. }
  37534. },
  37535. mawCaribou: {
  37536. height: math.unit(1.45, "feet"),
  37537. name: "Maw (Caribou)",
  37538. image: {
  37539. source: "./media/characters/lisa/maw-caribou.svg"
  37540. }
  37541. },
  37542. mawCaribousune: {
  37543. height: math.unit(1.45, "feet"),
  37544. name: "Maw (Caribousune)",
  37545. image: {
  37546. source: "./media/characters/lisa/maw-caribousune.svg"
  37547. }
  37548. },
  37549. pawCaribousune: {
  37550. height: math.unit(1.61, "feet"),
  37551. name: "Paw (Caribou)",
  37552. image: {
  37553. source: "./media/characters/lisa/paw-caribousune.svg"
  37554. }
  37555. },
  37556. },
  37557. [
  37558. {
  37559. name: "Normal",
  37560. height: math.unit(6, "feet")
  37561. },
  37562. {
  37563. name: "God Size",
  37564. height: math.unit(72, "feet"),
  37565. default: true
  37566. },
  37567. {
  37568. name: "Towering",
  37569. height: math.unit(288, "feet")
  37570. },
  37571. {
  37572. name: "City Size",
  37573. height: math.unit(48384, "feet")
  37574. },
  37575. {
  37576. name: "Continental",
  37577. height: math.unit(4200, "miles")
  37578. },
  37579. {
  37580. name: "Planet Eater",
  37581. height: math.unit(42, "earths")
  37582. },
  37583. {
  37584. name: "Star Swallower",
  37585. height: math.unit(42, "solarradii")
  37586. },
  37587. {
  37588. name: "System Swallower",
  37589. height: math.unit(84000, "AU")
  37590. },
  37591. {
  37592. name: "Galaxy Gobbler",
  37593. height: math.unit(42, "galaxies")
  37594. },
  37595. {
  37596. name: "Universe Devourer",
  37597. height: math.unit(42, "universes")
  37598. },
  37599. {
  37600. name: "Multiverse Muncher",
  37601. height: math.unit(42, "multiverses")
  37602. },
  37603. ]
  37604. ))
  37605. characterMakers.push(() => makeCharacter(
  37606. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37607. {
  37608. front: {
  37609. height: math.unit(36, "feet"),
  37610. name: "Front",
  37611. image: {
  37612. source: "./media/characters/shadow-rat/front.svg",
  37613. extra: 1845/1758,
  37614. bottom: 83/1928
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Macro",
  37621. height: math.unit(36, "feet"),
  37622. default: true
  37623. },
  37624. ]
  37625. ))
  37626. characterMakers.push(() => makeCharacter(
  37627. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37628. {
  37629. side: {
  37630. height: math.unit(8, "feet"),
  37631. weight: math.unit(2630, "lb"),
  37632. name: "Side",
  37633. image: {
  37634. source: "./media/characters/torallia/side.svg",
  37635. extra: 2164/2021,
  37636. bottom: 371/2535
  37637. }
  37638. },
  37639. },
  37640. [
  37641. {
  37642. name: "Mortal Interaction",
  37643. height: math.unit(8, "feet")
  37644. },
  37645. {
  37646. name: "Natural",
  37647. height: math.unit(24, "feet"),
  37648. default: true
  37649. },
  37650. {
  37651. name: "Giant",
  37652. height: math.unit(80, "feet")
  37653. },
  37654. {
  37655. name: "Kaiju",
  37656. height: math.unit(240, "feet")
  37657. },
  37658. {
  37659. name: "Macro",
  37660. height: math.unit(800, "feet")
  37661. },
  37662. {
  37663. name: "Macro+",
  37664. height: math.unit(2400, "feet")
  37665. },
  37666. {
  37667. name: "Macro++",
  37668. height: math.unit(8000, "feet")
  37669. },
  37670. {
  37671. name: "City-Crushing",
  37672. height: math.unit(24000, "feet")
  37673. },
  37674. {
  37675. name: "Mountain-Mashing",
  37676. height: math.unit(80000, "feet")
  37677. },
  37678. {
  37679. name: "District Demolisher",
  37680. height: math.unit(240000, "feet")
  37681. },
  37682. {
  37683. name: "Tri-County Terror",
  37684. height: math.unit(800000, "feet")
  37685. },
  37686. {
  37687. name: "State Smasher",
  37688. height: math.unit(2.4e6, "feet")
  37689. },
  37690. {
  37691. name: "Nation Nemesis",
  37692. height: math.unit(8e6, "feet")
  37693. },
  37694. {
  37695. name: "Continent Cracker",
  37696. height: math.unit(2.4e7, "feet")
  37697. },
  37698. {
  37699. name: "Planet-Pillaging",
  37700. height: math.unit(8e7, "feet")
  37701. },
  37702. {
  37703. name: "Earth-Eclipsing",
  37704. height: math.unit(2.4e8, "feet")
  37705. },
  37706. {
  37707. name: "Jovian-Jostling",
  37708. height: math.unit(8e8, "feet")
  37709. },
  37710. {
  37711. name: "Gas Giant Gulper",
  37712. height: math.unit(2.4e9, "feet")
  37713. },
  37714. {
  37715. name: "Astral Annihilator",
  37716. height: math.unit(8e9, "feet")
  37717. },
  37718. {
  37719. name: "Celestial Conqueror",
  37720. height: math.unit(2.4e10, "feet")
  37721. },
  37722. {
  37723. name: "Sol-Swallowing",
  37724. height: math.unit(8e10, "feet")
  37725. },
  37726. {
  37727. name: "Hunter of the Heavens",
  37728. height: math.unit(2.4e13, "feet")
  37729. },
  37730. ]
  37731. ))
  37732. characterMakers.push(() => makeCharacter(
  37733. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37734. {
  37735. front: {
  37736. height: math.unit(6 + 8/12, "feet"),
  37737. name: "Front",
  37738. image: {
  37739. source: "./media/characters/rebecca-pawlson/front.svg",
  37740. extra: 1737/1596,
  37741. bottom: 107/1844
  37742. }
  37743. },
  37744. back: {
  37745. height: math.unit(6 + 8/12, "feet"),
  37746. name: "Back",
  37747. image: {
  37748. source: "./media/characters/rebecca-pawlson/back.svg",
  37749. extra: 1702/1523,
  37750. bottom: 86/1788
  37751. }
  37752. },
  37753. },
  37754. [
  37755. {
  37756. name: "Normal",
  37757. height: math.unit(6 + 8/12, "feet")
  37758. },
  37759. {
  37760. name: "Mini Macro",
  37761. height: math.unit(10, "feet"),
  37762. default: true
  37763. },
  37764. {
  37765. name: "Macro",
  37766. height: math.unit(100, "feet")
  37767. },
  37768. {
  37769. name: "Mega Macro",
  37770. height: math.unit(2500, "feet")
  37771. },
  37772. {
  37773. name: "Giga Macro",
  37774. height: math.unit(50, "miles")
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(7 + 6/12, "feet"),
  37783. weight: math.unit(600, "lb"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/moxie-nova/front.svg",
  37787. extra: 1734/1652,
  37788. bottom: 41/1775
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(7 + 6/12, "feet"),
  37796. default: true
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37802. {
  37803. front: {
  37804. height: math.unit(5, "feet"),
  37805. weight: math.unit(150, "lb"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/tiffany/front.svg",
  37809. extra: 1941/1845,
  37810. bottom: 58/1999
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Normal",
  37817. height: math.unit(5, "feet"),
  37818. default: true
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37824. {
  37825. front: {
  37826. height: math.unit(8, "feet"),
  37827. weight: math.unit(300, "lb"),
  37828. name: "Front",
  37829. image: {
  37830. source: "./media/characters/raxinath/front.svg",
  37831. extra: 1407/1309,
  37832. bottom: 39/1446
  37833. }
  37834. },
  37835. back: {
  37836. height: math.unit(8, "feet"),
  37837. weight: math.unit(300, "lb"),
  37838. name: "Back",
  37839. image: {
  37840. source: "./media/characters/raxinath/back.svg",
  37841. extra: 1405/1315,
  37842. bottom: 9/1414
  37843. }
  37844. },
  37845. },
  37846. [
  37847. {
  37848. name: "Speck",
  37849. height: math.unit(0.5, "nm")
  37850. },
  37851. {
  37852. name: "Micro",
  37853. height: math.unit(3, "inches")
  37854. },
  37855. {
  37856. name: "Kobold",
  37857. height: math.unit(3, "feet")
  37858. },
  37859. {
  37860. name: "Normal",
  37861. height: math.unit(8, "feet"),
  37862. default: true
  37863. },
  37864. {
  37865. name: "Giant",
  37866. height: math.unit(50, "feet")
  37867. },
  37868. {
  37869. name: "Macro",
  37870. height: math.unit(1000, "feet")
  37871. },
  37872. {
  37873. name: "Megamacro",
  37874. height: math.unit(1, "mile")
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(10, "feet"),
  37883. weight: math.unit(1442, "lb"),
  37884. name: "Front",
  37885. image: {
  37886. source: "./media/characters/mal-dragon/front.svg",
  37887. extra: 1515/1444,
  37888. bottom: 113/1628
  37889. }
  37890. },
  37891. back: {
  37892. height: math.unit(10, "feet"),
  37893. weight: math.unit(1442, "lb"),
  37894. name: "Back",
  37895. image: {
  37896. source: "./media/characters/mal-dragon/back.svg",
  37897. extra: 1527/1434,
  37898. bottom: 25/1552
  37899. }
  37900. },
  37901. },
  37902. [
  37903. {
  37904. name: "Mortal Interaction",
  37905. height: math.unit(10, "feet"),
  37906. default: true
  37907. },
  37908. {
  37909. name: "Large",
  37910. height: math.unit(30, "feet")
  37911. },
  37912. {
  37913. name: "Kaiju",
  37914. height: math.unit(300, "feet")
  37915. },
  37916. {
  37917. name: "Megamacro",
  37918. height: math.unit(10000, "feet")
  37919. },
  37920. {
  37921. name: "Continent Cracker",
  37922. height: math.unit(30000000, "feet")
  37923. },
  37924. {
  37925. name: "Sol-Swallowing",
  37926. height: math.unit(1e11, "feet")
  37927. },
  37928. {
  37929. name: "Light Universal",
  37930. height: math.unit(5, "universes")
  37931. },
  37932. {
  37933. name: "Universe Atoms",
  37934. height: math.unit(1.829e9, "universes")
  37935. },
  37936. {
  37937. name: "Light Multiversal",
  37938. height: math.unit(5, "multiverses")
  37939. },
  37940. {
  37941. name: "Multiverse Atoms",
  37942. height: math.unit(1.829e9, "multiverses")
  37943. },
  37944. {
  37945. name: "Fabric of Time",
  37946. height: math.unit(1e262, "multiverses")
  37947. },
  37948. ]
  37949. ))
  37950. characterMakers.push(() => makeCharacter(
  37951. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37952. {
  37953. front: {
  37954. height: math.unit(9, "feet"),
  37955. weight: math.unit(1050, "lb"),
  37956. name: "Front",
  37957. image: {
  37958. source: "./media/characters/tabitha/front.svg",
  37959. extra: 2083/1994,
  37960. bottom: 68/2151
  37961. }
  37962. },
  37963. },
  37964. [
  37965. {
  37966. name: "Baseline",
  37967. height: math.unit(9, "feet"),
  37968. default: true
  37969. },
  37970. {
  37971. name: "Giant",
  37972. height: math.unit(90, "feet")
  37973. },
  37974. {
  37975. name: "Macro",
  37976. height: math.unit(900, "feet")
  37977. },
  37978. {
  37979. name: "Megamacro",
  37980. height: math.unit(9000, "feet")
  37981. },
  37982. {
  37983. name: "City-Crushing",
  37984. height: math.unit(27000, "feet")
  37985. },
  37986. {
  37987. name: "Mountain-Mashing",
  37988. height: math.unit(90000, "feet")
  37989. },
  37990. {
  37991. name: "Nation Nemesis",
  37992. height: math.unit(9e6, "feet")
  37993. },
  37994. {
  37995. name: "Continent Cracker",
  37996. height: math.unit(27e6, "feet")
  37997. },
  37998. {
  37999. name: "Earth-Eclipsing",
  38000. height: math.unit(2.7e8, "feet")
  38001. },
  38002. {
  38003. name: "Gas Giant Gulper",
  38004. height: math.unit(2.7e9, "feet")
  38005. },
  38006. {
  38007. name: "Sol-Swallowing",
  38008. height: math.unit(9e10, "feet")
  38009. },
  38010. {
  38011. name: "Galaxy Gulper",
  38012. height: math.unit(9, "galaxies")
  38013. },
  38014. {
  38015. name: "Cosmos Churner",
  38016. height: math.unit(9, "universes")
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(160, "cm"),
  38025. weight: math.unit(55, "kg"),
  38026. name: "Front",
  38027. image: {
  38028. source: "./media/characters/tow/front.svg",
  38029. extra: 1751/1722,
  38030. bottom: 74/1825
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Norm",
  38037. height: math.unit(160, "cm")
  38038. },
  38039. {
  38040. name: "Casual",
  38041. height: math.unit(3200, "m"),
  38042. default: true
  38043. },
  38044. {
  38045. name: "Show-Off",
  38046. height: math.unit(160, "km")
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38052. {
  38053. front: {
  38054. height: math.unit(7 + 11/12, "feet"),
  38055. weight: math.unit(342.8, "lb"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/vivian-orca-dragon/front.svg",
  38059. extra: 1890/1865,
  38060. bottom: 28/1918
  38061. }
  38062. },
  38063. },
  38064. [
  38065. {
  38066. name: "Micro",
  38067. height: math.unit(5, "inches")
  38068. },
  38069. {
  38070. name: "Normal",
  38071. height: math.unit(7 + 11/12, "feet"),
  38072. default: true
  38073. },
  38074. {
  38075. name: "Macro",
  38076. height: math.unit(395 + 7/12, "feet")
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38082. {
  38083. side: {
  38084. height: math.unit(10, "feet"),
  38085. weight: math.unit(1442, "lb"),
  38086. name: "Side",
  38087. image: {
  38088. source: "./media/characters/lotherakon/side.svg",
  38089. extra: 1604/1497,
  38090. bottom: 89/1693
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Mortal Interaction",
  38097. height: math.unit(10, "feet")
  38098. },
  38099. {
  38100. name: "Large",
  38101. height: math.unit(30, "feet"),
  38102. default: true
  38103. },
  38104. {
  38105. name: "Giant",
  38106. height: math.unit(100, "feet")
  38107. },
  38108. {
  38109. name: "Kaiju",
  38110. height: math.unit(300, "feet")
  38111. },
  38112. {
  38113. name: "Macro",
  38114. height: math.unit(1000, "feet")
  38115. },
  38116. {
  38117. name: "Macro+",
  38118. height: math.unit(3000, "feet")
  38119. },
  38120. {
  38121. name: "Megamacro",
  38122. height: math.unit(10000, "feet")
  38123. },
  38124. {
  38125. name: "City-Crushing",
  38126. height: math.unit(30000, "feet")
  38127. },
  38128. {
  38129. name: "Continent Cracker",
  38130. height: math.unit(30e6, "feet")
  38131. },
  38132. {
  38133. name: "Earth Eclipsing",
  38134. height: math.unit(3e8, "feet")
  38135. },
  38136. {
  38137. name: "Gas Giant Gulper",
  38138. height: math.unit(3e9, "feet")
  38139. },
  38140. {
  38141. name: "Sol-Swallowing",
  38142. height: math.unit(1e11, "feet")
  38143. },
  38144. {
  38145. name: "System Swallower",
  38146. height: math.unit(3e14, "feet")
  38147. },
  38148. {
  38149. name: "Galaxy Gulper",
  38150. height: math.unit(10, "galaxies")
  38151. },
  38152. {
  38153. name: "Light Universal",
  38154. height: math.unit(5, "universes")
  38155. },
  38156. {
  38157. name: "Universe Palm",
  38158. height: math.unit(20, "universes")
  38159. },
  38160. {
  38161. name: "Light Multiversal",
  38162. height: math.unit(5, "multiverses")
  38163. },
  38164. {
  38165. name: "Multiverse Palm",
  38166. height: math.unit(20, "multiverses")
  38167. },
  38168. {
  38169. name: "Inferno Incarnate",
  38170. height: math.unit(1e7, "multiverses")
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(8, "feet"),
  38179. weight: math.unit(1200, "lb"),
  38180. name: "Front",
  38181. image: {
  38182. source: "./media/characters/malithee/front.svg",
  38183. extra: 1675/1640,
  38184. bottom: 162/1837
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Mortal Interaction",
  38191. height: math.unit(8, "feet"),
  38192. default: true
  38193. },
  38194. {
  38195. name: "Large",
  38196. height: math.unit(24, "feet")
  38197. },
  38198. {
  38199. name: "Kaiju",
  38200. height: math.unit(240, "feet")
  38201. },
  38202. {
  38203. name: "Megamacro",
  38204. height: math.unit(8000, "feet")
  38205. },
  38206. {
  38207. name: "Continent Cracker",
  38208. height: math.unit(24e6, "feet")
  38209. },
  38210. {
  38211. name: "Earth-Eclipsing",
  38212. height: math.unit(2.4e8, "feet")
  38213. },
  38214. {
  38215. name: "Sol-Swallowing",
  38216. height: math.unit(8e10, "feet")
  38217. },
  38218. {
  38219. name: "Galaxy Gulper",
  38220. height: math.unit(8, "galaxies")
  38221. },
  38222. {
  38223. name: "Light Universal",
  38224. height: math.unit(4, "universes")
  38225. },
  38226. {
  38227. name: "Universe Atoms",
  38228. height: math.unit(1.829e9, "universes")
  38229. },
  38230. {
  38231. name: "Light Multiversal",
  38232. height: math.unit(4, "multiverses")
  38233. },
  38234. {
  38235. name: "Multiverse Atoms",
  38236. height: math.unit(1.829e9, "multiverses")
  38237. },
  38238. {
  38239. name: "Nigh-Omnipresence",
  38240. height: math.unit(8e261, "multiverses")
  38241. },
  38242. ]
  38243. ))
  38244. characterMakers.push(() => makeCharacter(
  38245. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38246. {
  38247. front: {
  38248. height: math.unit(10, "feet"),
  38249. weight: math.unit(1500, "lb"),
  38250. name: "Front",
  38251. image: {
  38252. source: "./media/characters/miles-thestia/front.svg",
  38253. extra: 1812/1727,
  38254. bottom: 86/1898
  38255. }
  38256. },
  38257. back: {
  38258. height: math.unit(10, "feet"),
  38259. weight: math.unit(1500, "lb"),
  38260. name: "Back",
  38261. image: {
  38262. source: "./media/characters/miles-thestia/back.svg",
  38263. extra: 1799/1690,
  38264. bottom: 47/1846
  38265. }
  38266. },
  38267. frontNsfw: {
  38268. height: math.unit(10, "feet"),
  38269. weight: math.unit(1500, "lb"),
  38270. name: "Front (NSFW)",
  38271. image: {
  38272. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38273. extra: 1812/1727,
  38274. bottom: 86/1898
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Mini-Macro",
  38281. height: math.unit(10, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38288. {
  38289. front: {
  38290. height: math.unit(25, "feet"),
  38291. name: "Front",
  38292. image: {
  38293. source: "./media/characters/titan-s-wulf/front.svg",
  38294. extra: 1560/1484,
  38295. bottom: 76/1636
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Smallest",
  38302. height: math.unit(25, "feet"),
  38303. default: true
  38304. },
  38305. {
  38306. name: "Normal",
  38307. height: math.unit(200, "feet")
  38308. },
  38309. {
  38310. name: "Macro",
  38311. height: math.unit(200000, "feet")
  38312. },
  38313. {
  38314. name: "Multiversal Original",
  38315. height: math.unit(10000, "multiverses")
  38316. },
  38317. ]
  38318. ))
  38319. characterMakers.push(() => makeCharacter(
  38320. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38321. {
  38322. front: {
  38323. height: math.unit(8, "feet"),
  38324. weight: math.unit(553, "lb"),
  38325. name: "Front",
  38326. image: {
  38327. source: "./media/characters/tawendeh/front.svg",
  38328. extra: 2365/2268,
  38329. bottom: 83/2448
  38330. }
  38331. },
  38332. frontClothed: {
  38333. height: math.unit(8, "feet"),
  38334. weight: math.unit(553, "lb"),
  38335. name: "Front (Clothed)",
  38336. image: {
  38337. source: "./media/characters/tawendeh/front-clothed.svg",
  38338. extra: 2365/2268,
  38339. bottom: 83/2448
  38340. }
  38341. },
  38342. back: {
  38343. height: math.unit(8, "feet"),
  38344. weight: math.unit(553, "lb"),
  38345. name: "Back",
  38346. image: {
  38347. source: "./media/characters/tawendeh/back.svg",
  38348. extra: 2397/2294,
  38349. bottom: 42/2439
  38350. }
  38351. },
  38352. },
  38353. [
  38354. {
  38355. name: "Mortal Interaction",
  38356. height: math.unit(8, "feet"),
  38357. default: true
  38358. },
  38359. {
  38360. name: "Giant",
  38361. height: math.unit(80, "feet")
  38362. },
  38363. {
  38364. name: "Macro",
  38365. height: math.unit(800, "feet")
  38366. },
  38367. {
  38368. name: "Megamacro",
  38369. height: math.unit(8000, "feet")
  38370. },
  38371. {
  38372. name: "City-Crushing",
  38373. height: math.unit(24000, "feet")
  38374. },
  38375. {
  38376. name: "Mountain-Mashing",
  38377. height: math.unit(80000, "feet")
  38378. },
  38379. {
  38380. name: "Nation Nemesis",
  38381. height: math.unit(8e6, "feet")
  38382. },
  38383. {
  38384. name: "Continent Cracker",
  38385. height: math.unit(24e6, "feet")
  38386. },
  38387. {
  38388. name: "Earth-Eclipsing",
  38389. height: math.unit(2.4e8, "feet")
  38390. },
  38391. {
  38392. name: "Gas Giant Gulper",
  38393. height: math.unit(2.4e9, "feet")
  38394. },
  38395. {
  38396. name: "Sol-Swallowing",
  38397. height: math.unit(8e10, "feet")
  38398. },
  38399. {
  38400. name: "Galaxy Gulper",
  38401. height: math.unit(8, "galaxies")
  38402. },
  38403. {
  38404. name: "Cosmos Churner",
  38405. height: math.unit(8, "universes")
  38406. },
  38407. {
  38408. name: "Omnipotent Otter",
  38409. height: math.unit(80, "universes")
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38415. {
  38416. front: {
  38417. height: math.unit(2.6, "meters"),
  38418. weight: math.unit(900, "kg"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/neesha/front.svg",
  38422. extra: 1803/1653,
  38423. bottom: 128/1931
  38424. }
  38425. },
  38426. },
  38427. [
  38428. {
  38429. name: "Normal",
  38430. height: math.unit(2.6, "meters"),
  38431. default: true
  38432. },
  38433. {
  38434. name: "Macro",
  38435. height: math.unit(50, "meters")
  38436. },
  38437. ]
  38438. ))
  38439. characterMakers.push(() => makeCharacter(
  38440. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38441. {
  38442. front: {
  38443. height: math.unit(5, "feet"),
  38444. weight: math.unit(185, "lb"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/kyera/front.svg",
  38448. extra: 1875/1790,
  38449. bottom: 96/1971
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(5, "feet"),
  38457. default: true
  38458. },
  38459. ]
  38460. ))
  38461. characterMakers.push(() => makeCharacter(
  38462. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38463. {
  38464. front: {
  38465. height: math.unit(7 + 6/12, "feet"),
  38466. weight: math.unit(540, "lb"),
  38467. name: "Front",
  38468. image: {
  38469. source: "./media/characters/yuko/front.svg",
  38470. extra: 1282/1222,
  38471. bottom: 101/1383
  38472. }
  38473. },
  38474. frontClothed: {
  38475. height: math.unit(7 + 6/12, "feet"),
  38476. weight: math.unit(540, "lb"),
  38477. name: "Front (Clothed)",
  38478. image: {
  38479. source: "./media/characters/yuko/front-clothed.svg",
  38480. extra: 1282/1222,
  38481. bottom: 101/1383
  38482. }
  38483. },
  38484. },
  38485. [
  38486. {
  38487. name: "Normal",
  38488. height: math.unit(7 + 6/12, "feet"),
  38489. default: true
  38490. },
  38491. {
  38492. name: "Macro",
  38493. height: math.unit(26 + 9/12, "feet")
  38494. },
  38495. {
  38496. name: "Megamacro",
  38497. height: math.unit(300, "feet")
  38498. },
  38499. {
  38500. name: "Gigamacro",
  38501. height: math.unit(5000, "feet")
  38502. },
  38503. {
  38504. name: "Planetary",
  38505. height: math.unit(10000, "miles")
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38511. {
  38512. front: {
  38513. height: math.unit(8 + 2/12, "feet"),
  38514. weight: math.unit(600, "lb"),
  38515. name: "Front",
  38516. image: {
  38517. source: "./media/characters/deam-nitrel/front.svg",
  38518. extra: 1308/1234,
  38519. bottom: 125/1433
  38520. }
  38521. },
  38522. },
  38523. [
  38524. {
  38525. name: "Normal",
  38526. height: math.unit(8 + 2/12, "feet"),
  38527. default: true
  38528. },
  38529. ]
  38530. ))
  38531. characterMakers.push(() => makeCharacter(
  38532. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38533. {
  38534. front: {
  38535. height: math.unit(6.1, "feet"),
  38536. weight: math.unit(180, "lb"),
  38537. name: "Front",
  38538. image: {
  38539. source: "./media/characters/skyress/front.svg",
  38540. extra: 1045/915,
  38541. bottom: 28/1073
  38542. }
  38543. },
  38544. maw: {
  38545. height: math.unit(1, "feet"),
  38546. name: "Maw",
  38547. image: {
  38548. source: "./media/characters/skyress/maw.svg"
  38549. }
  38550. },
  38551. },
  38552. [
  38553. {
  38554. name: "Normal",
  38555. height: math.unit(6.1, "feet"),
  38556. default: true
  38557. },
  38558. {
  38559. name: "Macro",
  38560. height: math.unit(200, "feet")
  38561. },
  38562. ]
  38563. ))
  38564. characterMakers.push(() => makeCharacter(
  38565. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38566. {
  38567. front: {
  38568. height: math.unit(4 + 2/12, "feet"),
  38569. weight: math.unit(40, "kg"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/amethyst-jones/front.svg",
  38573. extra: 1220/1150,
  38574. bottom: 101/1321
  38575. }
  38576. },
  38577. },
  38578. [
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(4 + 2/12, "feet"),
  38582. default: true
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38588. {
  38589. front: {
  38590. height: math.unit(1.7, "m"),
  38591. weight: math.unit(135, "lb"),
  38592. name: "Front",
  38593. image: {
  38594. source: "./media/characters/jade/front.svg",
  38595. extra: 1818/1767,
  38596. bottom: 32/1850
  38597. }
  38598. },
  38599. back: {
  38600. height: math.unit(1.7, "m"),
  38601. weight: math.unit(135, "lb"),
  38602. name: "Back",
  38603. image: {
  38604. source: "./media/characters/jade/back.svg",
  38605. extra: 1869/1809,
  38606. bottom: 35/1904
  38607. }
  38608. },
  38609. hand: {
  38610. height: math.unit(0.24, "m"),
  38611. name: "Hand",
  38612. image: {
  38613. source: "./media/characters/jade/hand.svg"
  38614. }
  38615. },
  38616. foot: {
  38617. height: math.unit(0.263, "m"),
  38618. name: "Foot",
  38619. image: {
  38620. source: "./media/characters/jade/foot.svg"
  38621. }
  38622. },
  38623. dick: {
  38624. height: math.unit(0.47, "m"),
  38625. name: "Dick",
  38626. image: {
  38627. source: "./media/characters/jade/dick.svg"
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Micro",
  38634. height: math.unit(22, "cm")
  38635. },
  38636. {
  38637. name: "Normal",
  38638. height: math.unit(1.7, "m"),
  38639. default: true
  38640. },
  38641. {
  38642. name: "Macro",
  38643. height: math.unit(152, "m")
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(100, "miles"),
  38652. weight: math.unit(20000, "tons"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/cookie/front.svg",
  38656. extra: 1125/1070,
  38657. bottom: 30/1155
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Big",
  38664. height: math.unit(50, "feet")
  38665. },
  38666. {
  38667. name: "Macro",
  38668. height: math.unit(100, "miles"),
  38669. default: true
  38670. },
  38671. {
  38672. name: "Megamacro",
  38673. height: math.unit(90000, "miles")
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38679. {
  38680. front: {
  38681. height: math.unit(6, "feet"),
  38682. weight: math.unit(145, "lb"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/farzian/front.svg",
  38686. extra: 1902/1693,
  38687. bottom: 108/2010
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Macro",
  38694. height: math.unit(500, "feet"),
  38695. default: true
  38696. },
  38697. ]
  38698. ))
  38699. characterMakers.push(() => makeCharacter(
  38700. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38701. {
  38702. front: {
  38703. height: math.unit(3 + 6/12, "feet"),
  38704. weight: math.unit(50, "lb"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/kimberly-tilson/front.svg",
  38708. extra: 1400/1322,
  38709. bottom: 36/1436
  38710. }
  38711. },
  38712. back: {
  38713. height: math.unit(3 + 6/12, "feet"),
  38714. weight: math.unit(50, "lb"),
  38715. name: "Back",
  38716. image: {
  38717. source: "./media/characters/kimberly-tilson/back.svg",
  38718. extra: 1370/1307,
  38719. bottom: 20/1390
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Normal",
  38726. height: math.unit(3 + 6/12, "feet"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(1148, "feet"),
  38736. weight: math.unit(34057, "lb"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/harthos/front.svg",
  38740. extra: 1391/1339,
  38741. bottom: 13/1404
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Macro",
  38748. height: math.unit(1148, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(15, "feet"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/hypatia/front.svg",
  38761. extra: 1653/1591,
  38762. bottom: 79/1732
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Normal",
  38769. height: math.unit(15, "feet")
  38770. },
  38771. {
  38772. name: "Small",
  38773. height: math.unit(300, "feet")
  38774. },
  38775. {
  38776. name: "Macro",
  38777. height: math.unit(2500, "feet"),
  38778. default: true
  38779. },
  38780. {
  38781. name: "Mega Macro",
  38782. height: math.unit(1500, "miles")
  38783. },
  38784. {
  38785. name: "Giga Macro",
  38786. height: math.unit(1.5e6, "miles")
  38787. },
  38788. ]
  38789. ))
  38790. characterMakers.push(() => makeCharacter(
  38791. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38792. {
  38793. front: {
  38794. height: math.unit(6, "feet"),
  38795. weight: math.unit(200, "lb"),
  38796. name: "Front",
  38797. image: {
  38798. source: "./media/characters/wulver/front.svg",
  38799. extra: 1724/1632,
  38800. bottom: 130/1854
  38801. }
  38802. },
  38803. frontNsfw: {
  38804. height: math.unit(6, "feet"),
  38805. weight: math.unit(200, "lb"),
  38806. name: "Front (NSFW)",
  38807. image: {
  38808. source: "./media/characters/wulver/front-nsfw.svg",
  38809. extra: 1724/1632,
  38810. bottom: 130/1854
  38811. }
  38812. },
  38813. },
  38814. [
  38815. {
  38816. name: "Human-Sized",
  38817. height: math.unit(6, "feet")
  38818. },
  38819. {
  38820. name: "Normal",
  38821. height: math.unit(4, "meters"),
  38822. default: true
  38823. },
  38824. {
  38825. name: "Large",
  38826. height: math.unit(6, "m")
  38827. },
  38828. ]
  38829. ))
  38830. characterMakers.push(() => makeCharacter(
  38831. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38832. {
  38833. front: {
  38834. height: math.unit(7, "feet"),
  38835. name: "Front",
  38836. image: {
  38837. source: "./media/characters/maru/front.svg",
  38838. extra: 1595/1570,
  38839. bottom: 0/1595
  38840. }
  38841. },
  38842. },
  38843. [
  38844. {
  38845. name: "Normal",
  38846. height: math.unit(7, "feet"),
  38847. default: true
  38848. },
  38849. {
  38850. name: "Macro",
  38851. height: math.unit(700, "feet")
  38852. },
  38853. {
  38854. name: "Mega Macro",
  38855. height: math.unit(25, "miles")
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38861. {
  38862. front: {
  38863. height: math.unit(6, "feet"),
  38864. weight: math.unit(170, "lb"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/xenon/front.svg",
  38868. extra: 1376/1305,
  38869. bottom: 56/1432
  38870. }
  38871. },
  38872. back: {
  38873. height: math.unit(6, "feet"),
  38874. weight: math.unit(170, "lb"),
  38875. name: "Back",
  38876. image: {
  38877. source: "./media/characters/xenon/back.svg",
  38878. extra: 1328/1259,
  38879. bottom: 95/1423
  38880. }
  38881. },
  38882. maw: {
  38883. height: math.unit(0.52, "feet"),
  38884. name: "Maw",
  38885. image: {
  38886. source: "./media/characters/xenon/maw.svg"
  38887. }
  38888. },
  38889. hand: {
  38890. height: math.unit(0.82, "feet"),
  38891. name: "Hand",
  38892. image: {
  38893. source: "./media/characters/xenon/hand.svg"
  38894. }
  38895. },
  38896. foot: {
  38897. height: math.unit(1.13, "feet"),
  38898. name: "Foot",
  38899. image: {
  38900. source: "./media/characters/xenon/foot.svg"
  38901. }
  38902. },
  38903. },
  38904. [
  38905. {
  38906. name: "Micro",
  38907. height: math.unit(0.8, "inches")
  38908. },
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(6, "feet")
  38912. },
  38913. {
  38914. name: "Macro",
  38915. height: math.unit(50, "feet"),
  38916. default: true
  38917. },
  38918. {
  38919. name: "Macro+",
  38920. height: math.unit(250, "feet")
  38921. },
  38922. {
  38923. name: "Megamacro",
  38924. height: math.unit(1500, "feet")
  38925. },
  38926. ]
  38927. ))
  38928. characterMakers.push(() => makeCharacter(
  38929. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38930. {
  38931. front: {
  38932. height: math.unit(7 + 5/12, "feet"),
  38933. name: "Front",
  38934. image: {
  38935. source: "./media/characters/zane/front.svg",
  38936. extra: 1260/1203,
  38937. bottom: 94/1354
  38938. }
  38939. },
  38940. back: {
  38941. height: math.unit(5.05, "feet"),
  38942. name: "Back",
  38943. image: {
  38944. source: "./media/characters/zane/back.svg",
  38945. extra: 893/829,
  38946. bottom: 30/923
  38947. }
  38948. },
  38949. werewolf: {
  38950. height: math.unit(11, "feet"),
  38951. name: "Werewolf",
  38952. image: {
  38953. source: "./media/characters/zane/werewolf.svg",
  38954. extra: 1383/1323,
  38955. bottom: 89/1472
  38956. }
  38957. },
  38958. foot: {
  38959. height: math.unit(1.46, "feet"),
  38960. name: "Foot",
  38961. image: {
  38962. source: "./media/characters/zane/foot.svg"
  38963. }
  38964. },
  38965. footFront: {
  38966. height: math.unit(0.784, "feet"),
  38967. name: "Foot (Front)",
  38968. image: {
  38969. source: "./media/characters/zane/foot-front.svg"
  38970. }
  38971. },
  38972. dick: {
  38973. height: math.unit(1.95, "feet"),
  38974. name: "Dick",
  38975. image: {
  38976. source: "./media/characters/zane/dick.svg"
  38977. }
  38978. },
  38979. dickWerewolf: {
  38980. height: math.unit(3.77, "feet"),
  38981. name: "Dick (Werewolf)",
  38982. image: {
  38983. source: "./media/characters/zane/dick.svg"
  38984. }
  38985. },
  38986. },
  38987. [
  38988. {
  38989. name: "Normal",
  38990. height: math.unit(7 + 5/12, "feet"),
  38991. default: true
  38992. },
  38993. ]
  38994. ))
  38995. characterMakers.push(() => makeCharacter(
  38996. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38997. {
  38998. front: {
  38999. height: math.unit(6 + 2/12, "feet"),
  39000. weight: math.unit(284, "lb"),
  39001. name: "Front",
  39002. image: {
  39003. source: "./media/characters/benni-desparque/front.svg",
  39004. extra: 1353/1126,
  39005. bottom: 69/1422
  39006. }
  39007. },
  39008. },
  39009. [
  39010. {
  39011. name: "Civilian",
  39012. height: math.unit(6 + 2/12, "feet")
  39013. },
  39014. {
  39015. name: "Normal",
  39016. height: math.unit(98, "feet"),
  39017. default: true
  39018. },
  39019. {
  39020. name: "Kaiju Fighter",
  39021. height: math.unit(268, "feet")
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39027. {
  39028. front: {
  39029. height: math.unit(5, "feet"),
  39030. weight: math.unit(105, "lb"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/maxine/front.svg",
  39034. extra: 1386/1250,
  39035. bottom: 71/1457
  39036. }
  39037. },
  39038. },
  39039. [
  39040. {
  39041. name: "Normal",
  39042. height: math.unit(5, "feet"),
  39043. default: true
  39044. },
  39045. ]
  39046. ))
  39047. characterMakers.push(() => makeCharacter(
  39048. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39049. {
  39050. front: {
  39051. height: math.unit(11 + 7/12, "feet"),
  39052. weight: math.unit(9576, "lb"),
  39053. name: "Front",
  39054. image: {
  39055. source: "./media/characters/scaly/front.svg",
  39056. extra: 888/867,
  39057. bottom: 36/924
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(11 + 7/12, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(9, "inches"),
  39074. name: "Front",
  39075. image: {
  39076. source: "./media/characters/saelria/front.svg",
  39077. extra: 662/621,
  39078. bottom: 12/674
  39079. }
  39080. },
  39081. },
  39082. [
  39083. {
  39084. name: "Tiny",
  39085. height: math.unit(9, "inches"),
  39086. default: true
  39087. },
  39088. ]
  39089. ))
  39090. characterMakers.push(() => makeCharacter(
  39091. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39092. {
  39093. front: {
  39094. height: math.unit(80, "meters"),
  39095. weight: math.unit(7000, "tonnes"),
  39096. name: "Front",
  39097. image: {
  39098. source: "./media/characters/tef/front.svg",
  39099. extra: 2036/1991,
  39100. bottom: 54/2090
  39101. }
  39102. },
  39103. back: {
  39104. height: math.unit(80, "meters"),
  39105. weight: math.unit(7000, "tonnes"),
  39106. name: "Back",
  39107. image: {
  39108. source: "./media/characters/tef/back.svg",
  39109. extra: 2036/1991,
  39110. bottom: 54/2090
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Macro",
  39117. height: math.unit(80, "meters"),
  39118. default: true
  39119. },
  39120. ]
  39121. ))
  39122. characterMakers.push(() => makeCharacter(
  39123. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(13, "feet"),
  39127. weight: math.unit(6, "tons"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/rover/front.svg",
  39131. extra: 1233/1156,
  39132. bottom: 50/1283
  39133. }
  39134. },
  39135. back: {
  39136. height: math.unit(13, "feet"),
  39137. weight: math.unit(6, "tons"),
  39138. name: "Back",
  39139. image: {
  39140. source: "./media/characters/rover/back.svg",
  39141. extra: 1327/1258,
  39142. bottom: 39/1366
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Normal",
  39149. height: math.unit(13, "feet"),
  39150. default: true
  39151. },
  39152. {
  39153. name: "Macro",
  39154. height: math.unit(1300, "feet")
  39155. },
  39156. {
  39157. name: "Megamacro",
  39158. height: math.unit(1300, "miles")
  39159. },
  39160. {
  39161. name: "Gigamacro",
  39162. height: math.unit(1300000, "miles")
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39168. {
  39169. front: {
  39170. height: math.unit(6, "feet"),
  39171. weight: math.unit(150, "lb"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/ariz/front.svg",
  39175. extra: 1401/1346,
  39176. bottom: 5/1406
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(10, "feet"),
  39184. default: true
  39185. },
  39186. ]
  39187. ))
  39188. characterMakers.push(() => makeCharacter(
  39189. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39190. {
  39191. front: {
  39192. height: math.unit(6, "feet"),
  39193. weight: math.unit(140, "lb"),
  39194. name: "Front",
  39195. image: {
  39196. source: "./media/characters/sigrun/front.svg",
  39197. extra: 1418/1359,
  39198. bottom: 27/1445
  39199. }
  39200. },
  39201. },
  39202. [
  39203. {
  39204. name: "Macro",
  39205. height: math.unit(35, "feet"),
  39206. default: true
  39207. },
  39208. ]
  39209. ))
  39210. characterMakers.push(() => makeCharacter(
  39211. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39212. {
  39213. front: {
  39214. height: math.unit(6, "feet"),
  39215. weight: math.unit(150, "lb"),
  39216. name: "Front",
  39217. image: {
  39218. source: "./media/characters/numin/front.svg",
  39219. extra: 1433/1388,
  39220. bottom: 12/1445
  39221. }
  39222. },
  39223. },
  39224. [
  39225. {
  39226. name: "Macro",
  39227. height: math.unit(21.5, "km"),
  39228. default: true
  39229. },
  39230. ]
  39231. ))
  39232. characterMakers.push(() => makeCharacter(
  39233. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39234. {
  39235. front: {
  39236. height: math.unit(6, "feet"),
  39237. weight: math.unit(463, "lb"),
  39238. name: "Front",
  39239. image: {
  39240. source: "./media/characters/melwa/front.svg",
  39241. extra: 1307/1248,
  39242. bottom: 93/1400
  39243. }
  39244. },
  39245. },
  39246. [
  39247. {
  39248. name: "Macro",
  39249. height: math.unit(50, "meters"),
  39250. default: true
  39251. },
  39252. ]
  39253. ))
  39254. characterMakers.push(() => makeCharacter(
  39255. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39256. {
  39257. front: {
  39258. height: math.unit(325, "feet"),
  39259. name: "Front",
  39260. image: {
  39261. source: "./media/characters/zorkaiju/front.svg",
  39262. extra: 1955/1814,
  39263. bottom: 40/1995
  39264. }
  39265. },
  39266. frontExtended: {
  39267. height: math.unit(325, "feet"),
  39268. name: "Front (Extended)",
  39269. image: {
  39270. source: "./media/characters/zorkaiju/front-extended.svg",
  39271. extra: 1955/1814,
  39272. bottom: 40/1995
  39273. }
  39274. },
  39275. side: {
  39276. height: math.unit(325, "feet"),
  39277. name: "Side",
  39278. image: {
  39279. source: "./media/characters/zorkaiju/side.svg",
  39280. extra: 1495/1396,
  39281. bottom: 17/1512
  39282. }
  39283. },
  39284. sideExtended: {
  39285. height: math.unit(325, "feet"),
  39286. name: "Side (Extended)",
  39287. image: {
  39288. source: "./media/characters/zorkaiju/side-extended.svg",
  39289. extra: 1495/1396,
  39290. bottom: 17/1512
  39291. }
  39292. },
  39293. back: {
  39294. height: math.unit(325, "feet"),
  39295. name: "Back",
  39296. image: {
  39297. source: "./media/characters/zorkaiju/back.svg",
  39298. extra: 1959/1821,
  39299. bottom: 31/1990
  39300. }
  39301. },
  39302. backExtended: {
  39303. height: math.unit(325, "feet"),
  39304. name: "Back (Extended)",
  39305. image: {
  39306. source: "./media/characters/zorkaiju/back-extended.svg",
  39307. extra: 1959/1821,
  39308. bottom: 31/1990
  39309. }
  39310. },
  39311. hand: {
  39312. height: math.unit(58.4, "feet"),
  39313. name: "Hand",
  39314. image: {
  39315. source: "./media/characters/zorkaiju/hand.svg"
  39316. }
  39317. },
  39318. handExtended: {
  39319. height: math.unit(61.4, "feet"),
  39320. name: "Hand (Extended)",
  39321. image: {
  39322. source: "./media/characters/zorkaiju/hand-extended.svg"
  39323. }
  39324. },
  39325. foot: {
  39326. height: math.unit(95, "feet"),
  39327. name: "Foot",
  39328. image: {
  39329. source: "./media/characters/zorkaiju/foot.svg"
  39330. }
  39331. },
  39332. leftArm: {
  39333. height: math.unit(59, "feet"),
  39334. name: "Left Arm",
  39335. image: {
  39336. source: "./media/characters/zorkaiju/left-arm.svg"
  39337. }
  39338. },
  39339. rightArm: {
  39340. height: math.unit(59, "feet"),
  39341. name: "Right Arm",
  39342. image: {
  39343. source: "./media/characters/zorkaiju/right-arm.svg"
  39344. }
  39345. },
  39346. tail: {
  39347. height: math.unit(104, "feet"),
  39348. name: "Tail",
  39349. image: {
  39350. source: "./media/characters/zorkaiju/tail.svg"
  39351. }
  39352. },
  39353. tailExtended: {
  39354. height: math.unit(104, "feet"),
  39355. name: "Tail (Extended)",
  39356. image: {
  39357. source: "./media/characters/zorkaiju/tail-extended.svg"
  39358. }
  39359. },
  39360. tailBottom: {
  39361. height: math.unit(104, "feet"),
  39362. name: "Tail Bottom",
  39363. image: {
  39364. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39365. }
  39366. },
  39367. crystal: {
  39368. height: math.unit(27.54, "feet"),
  39369. name: "Crystal",
  39370. image: {
  39371. source: "./media/characters/zorkaiju/crystal.svg"
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Kaiju",
  39378. height: math.unit(325, "feet"),
  39379. default: true
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(6 + 1/12, "feet"),
  39388. weight: math.unit(115, "lb"),
  39389. name: "Front",
  39390. image: {
  39391. source: "./media/characters/bailey-belfry/front.svg",
  39392. extra: 1240/1121,
  39393. bottom: 101/1341
  39394. }
  39395. },
  39396. },
  39397. [
  39398. {
  39399. name: "Normal",
  39400. height: math.unit(6 + 1/12, "feet"),
  39401. default: true
  39402. },
  39403. ]
  39404. ))
  39405. characterMakers.push(() => makeCharacter(
  39406. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39407. {
  39408. side: {
  39409. height: math.unit(4, "meters"),
  39410. weight: math.unit(250, "kg"),
  39411. name: "Side",
  39412. image: {
  39413. source: "./media/characters/blacky/side.svg",
  39414. extra: 1027/919,
  39415. bottom: 43/1070
  39416. }
  39417. },
  39418. maw: {
  39419. height: math.unit(1, "meters"),
  39420. name: "Maw",
  39421. image: {
  39422. source: "./media/characters/blacky/maw.svg"
  39423. }
  39424. },
  39425. paw: {
  39426. height: math.unit(1, "meters"),
  39427. name: "Paw",
  39428. image: {
  39429. source: "./media/characters/blacky/paw.svg"
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "Normal",
  39436. height: math.unit(4, "meters"),
  39437. default: true
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39443. {
  39444. front: {
  39445. height: math.unit(170, "cm"),
  39446. weight: math.unit(66, "kg"),
  39447. name: "Front",
  39448. image: {
  39449. source: "./media/characters/thux-ei/front.svg",
  39450. extra: 1109/1011,
  39451. bottom: 8/1117
  39452. }
  39453. },
  39454. },
  39455. [
  39456. {
  39457. name: "Normal",
  39458. height: math.unit(170, "cm"),
  39459. default: true
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39465. {
  39466. front: {
  39467. height: math.unit(5, "feet"),
  39468. weight: math.unit(120, "lb"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/roxanne-voltaire/front.svg",
  39472. extra: 1901/1779,
  39473. bottom: 53/1954
  39474. }
  39475. },
  39476. },
  39477. [
  39478. {
  39479. name: "Normal",
  39480. height: math.unit(5, "feet"),
  39481. default: true
  39482. },
  39483. {
  39484. name: "Giant",
  39485. height: math.unit(50, "feet")
  39486. },
  39487. {
  39488. name: "Titan",
  39489. height: math.unit(500, "feet")
  39490. },
  39491. {
  39492. name: "Macro",
  39493. height: math.unit(5000, "feet")
  39494. },
  39495. {
  39496. name: "Megamacro",
  39497. height: math.unit(50000, "feet")
  39498. },
  39499. {
  39500. name: "Gigamacro",
  39501. height: math.unit(500000, "feet")
  39502. },
  39503. {
  39504. name: "Teramacro",
  39505. height: math.unit(5e6, "feet")
  39506. },
  39507. ]
  39508. ))
  39509. characterMakers.push(() => makeCharacter(
  39510. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39511. {
  39512. front: {
  39513. height: math.unit(6 + 2/12, "feet"),
  39514. name: "Front",
  39515. image: {
  39516. source: "./media/characters/squeaks/front.svg",
  39517. extra: 1823/1768,
  39518. bottom: 138/1961
  39519. }
  39520. },
  39521. },
  39522. [
  39523. {
  39524. name: "Micro",
  39525. height: math.unit(0.5, "inches")
  39526. },
  39527. {
  39528. name: "Normal",
  39529. height: math.unit(6 + 2/12, "feet"),
  39530. default: true
  39531. },
  39532. {
  39533. name: "Macro",
  39534. height: math.unit(600, "feet")
  39535. },
  39536. ]
  39537. ))
  39538. characterMakers.push(() => makeCharacter(
  39539. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39540. {
  39541. front: {
  39542. height: math.unit(1.72, "meters"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/archinger/front.svg",
  39546. extra: 1861/1675,
  39547. bottom: 125/1986
  39548. }
  39549. },
  39550. back: {
  39551. height: math.unit(1.72, "meters"),
  39552. name: "Back",
  39553. image: {
  39554. source: "./media/characters/archinger/back.svg",
  39555. extra: 1844/1701,
  39556. bottom: 104/1948
  39557. }
  39558. },
  39559. cock: {
  39560. height: math.unit(0.59, "feet"),
  39561. name: "Cock",
  39562. image: {
  39563. source: "./media/characters/archinger/cock.svg"
  39564. }
  39565. },
  39566. },
  39567. [
  39568. {
  39569. name: "Normal",
  39570. height: math.unit(1.72, "meters"),
  39571. default: true
  39572. },
  39573. {
  39574. name: "Macro",
  39575. height: math.unit(84, "meters")
  39576. },
  39577. {
  39578. name: "Macro+",
  39579. height: math.unit(112, "meters")
  39580. },
  39581. {
  39582. name: "Macro++",
  39583. height: math.unit(960, "meters")
  39584. },
  39585. {
  39586. name: "Macro+++",
  39587. height: math.unit(4, "km")
  39588. },
  39589. {
  39590. name: "Macro++++",
  39591. height: math.unit(48, "km")
  39592. },
  39593. {
  39594. name: "Macro+++++",
  39595. height: math.unit(4500, "km")
  39596. },
  39597. ]
  39598. ))
  39599. characterMakers.push(() => makeCharacter(
  39600. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39601. {
  39602. front: {
  39603. height: math.unit(5 + 5/12, "feet"),
  39604. name: "Front",
  39605. image: {
  39606. source: "./media/characters/alsnapz/front.svg",
  39607. extra: 1157/1065,
  39608. bottom: 42/1199
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(5 + 5/12, "feet"),
  39616. default: true
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39622. {
  39623. side: {
  39624. height: math.unit(3.2, "earths"),
  39625. name: "Side",
  39626. image: {
  39627. source: "./media/characters/mag/side.svg",
  39628. extra: 1331/1008,
  39629. bottom: 52/1383
  39630. }
  39631. },
  39632. wing: {
  39633. height: math.unit(1.94, "earths"),
  39634. name: "Wing",
  39635. image: {
  39636. source: "./media/characters/mag/wing.svg"
  39637. }
  39638. },
  39639. dick: {
  39640. height: math.unit(1.8, "earths"),
  39641. name: "Dick",
  39642. image: {
  39643. source: "./media/characters/mag/dick.svg"
  39644. }
  39645. },
  39646. ass: {
  39647. height: math.unit(1.33, "earths"),
  39648. name: "Ass",
  39649. image: {
  39650. source: "./media/characters/mag/ass.svg"
  39651. }
  39652. },
  39653. head: {
  39654. height: math.unit(1.1, "earths"),
  39655. name: "Head",
  39656. image: {
  39657. source: "./media/characters/mag/head.svg"
  39658. }
  39659. },
  39660. maw: {
  39661. height: math.unit(1.62, "earths"),
  39662. name: "Maw",
  39663. image: {
  39664. source: "./media/characters/mag/maw.svg"
  39665. }
  39666. },
  39667. },
  39668. [
  39669. {
  39670. name: "Small",
  39671. height: math.unit(162, "feet")
  39672. },
  39673. {
  39674. name: "Normal",
  39675. height: math.unit(3.2, "earths"),
  39676. default: true
  39677. },
  39678. ]
  39679. ))
  39680. characterMakers.push(() => makeCharacter(
  39681. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39682. {
  39683. front: {
  39684. height: math.unit(512, "feet"),
  39685. weight: math.unit(63509, "tonnes"),
  39686. name: "Front",
  39687. image: {
  39688. source: "./media/characters/vorrel-harroc/front.svg",
  39689. extra: 1075/1063,
  39690. bottom: 62/1137
  39691. }
  39692. },
  39693. },
  39694. [
  39695. {
  39696. name: "Normal",
  39697. height: math.unit(10, "feet")
  39698. },
  39699. {
  39700. name: "Macro",
  39701. height: math.unit(512, "feet"),
  39702. default: true
  39703. },
  39704. {
  39705. name: "Megamacro",
  39706. height: math.unit(256, "miles")
  39707. },
  39708. {
  39709. name: "Gigamacro",
  39710. height: math.unit(4096, "miles")
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39716. {
  39717. side: {
  39718. height: math.unit(50, "feet"),
  39719. name: "Side",
  39720. image: {
  39721. source: "./media/characters/froimar/side.svg",
  39722. extra: 855/638,
  39723. bottom: 99/954
  39724. }
  39725. },
  39726. },
  39727. [
  39728. {
  39729. name: "Macro",
  39730. height: math.unit(50, "feet"),
  39731. default: true
  39732. },
  39733. ]
  39734. ))
  39735. characterMakers.push(() => makeCharacter(
  39736. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39737. {
  39738. front: {
  39739. height: math.unit(210, "miles"),
  39740. name: "Front",
  39741. image: {
  39742. source: "./media/characters/timothy/front.svg",
  39743. extra: 1007/943,
  39744. bottom: 62/1069
  39745. }
  39746. },
  39747. frontSkirt: {
  39748. height: math.unit(210, "miles"),
  39749. name: "Front (Skirt)",
  39750. image: {
  39751. source: "./media/characters/timothy/front-skirt.svg",
  39752. extra: 1007/943,
  39753. bottom: 62/1069
  39754. }
  39755. },
  39756. frontCoat: {
  39757. height: math.unit(210, "miles"),
  39758. name: "Front (Coat)",
  39759. image: {
  39760. source: "./media/characters/timothy/front-coat.svg",
  39761. extra: 1007/943,
  39762. bottom: 62/1069
  39763. }
  39764. },
  39765. },
  39766. [
  39767. {
  39768. name: "Macro",
  39769. height: math.unit(210, "miles"),
  39770. default: true
  39771. },
  39772. {
  39773. name: "Megamacro",
  39774. height: math.unit(210000, "miles")
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39780. {
  39781. front: {
  39782. height: math.unit(188, "feet"),
  39783. name: "Front",
  39784. image: {
  39785. source: "./media/characters/pyotr/front.svg",
  39786. extra: 1912/1826,
  39787. bottom: 18/1930
  39788. }
  39789. },
  39790. },
  39791. [
  39792. {
  39793. name: "Macro",
  39794. height: math.unit(188, "feet"),
  39795. default: true
  39796. },
  39797. {
  39798. name: "Megamacro",
  39799. height: math.unit(8, "miles")
  39800. },
  39801. ]
  39802. ))
  39803. characterMakers.push(() => makeCharacter(
  39804. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39805. {
  39806. side: {
  39807. height: math.unit(10, "feet"),
  39808. weight: math.unit(4500, "lb"),
  39809. name: "Side",
  39810. image: {
  39811. source: "./media/characters/ackart/side.svg",
  39812. extra: 1776/1668,
  39813. bottom: 116/1892
  39814. }
  39815. },
  39816. },
  39817. [
  39818. {
  39819. name: "Normal",
  39820. height: math.unit(10, "feet"),
  39821. default: true
  39822. },
  39823. ]
  39824. ))
  39825. characterMakers.push(() => makeCharacter(
  39826. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39827. {
  39828. side: {
  39829. height: math.unit(21, "feet"),
  39830. name: "Side",
  39831. image: {
  39832. source: "./media/characters/nolow/side.svg",
  39833. extra: 1484/1434,
  39834. bottom: 85/1569
  39835. }
  39836. },
  39837. sideErect: {
  39838. height: math.unit(21, "feet"),
  39839. name: "Side-erect",
  39840. image: {
  39841. source: "./media/characters/nolow/side-erect.svg",
  39842. extra: 1484/1434,
  39843. bottom: 85/1569
  39844. }
  39845. },
  39846. },
  39847. [
  39848. {
  39849. name: "Regular",
  39850. height: math.unit(12, "feet")
  39851. },
  39852. {
  39853. name: "Big Chee",
  39854. height: math.unit(21, "feet"),
  39855. default: true
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(7, "feet"),
  39864. weight: math.unit(250, "lb"),
  39865. name: "Front",
  39866. image: {
  39867. source: "./media/characters/nines/front.svg",
  39868. extra: 1741/1607,
  39869. bottom: 41/1782
  39870. }
  39871. },
  39872. side: {
  39873. height: math.unit(7, "feet"),
  39874. weight: math.unit(250, "lb"),
  39875. name: "Side",
  39876. image: {
  39877. source: "./media/characters/nines/side.svg",
  39878. extra: 1854/1735,
  39879. bottom: 93/1947
  39880. }
  39881. },
  39882. back: {
  39883. height: math.unit(7, "feet"),
  39884. weight: math.unit(250, "lb"),
  39885. name: "Back",
  39886. image: {
  39887. source: "./media/characters/nines/back.svg",
  39888. extra: 1748/1615,
  39889. bottom: 20/1768
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Megamacro",
  39896. height: math.unit(99, "km"),
  39897. default: true
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(5 + 10/12, "feet"),
  39906. weight: math.unit(210, "lb"),
  39907. name: "Front",
  39908. image: {
  39909. source: "./media/characters/zenith/front.svg",
  39910. extra: 1531/1452,
  39911. bottom: 198/1729
  39912. }
  39913. },
  39914. back: {
  39915. height: math.unit(5 + 10/12, "feet"),
  39916. weight: math.unit(210, "lb"),
  39917. name: "Back",
  39918. image: {
  39919. source: "./media/characters/zenith/back.svg",
  39920. extra: 1571/1487,
  39921. bottom: 75/1646
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(5 + 10/12, "feet"),
  39929. default: true
  39930. }
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39935. {
  39936. front: {
  39937. height: math.unit(4, "feet"),
  39938. weight: math.unit(60, "lb"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/jasper/front.svg",
  39942. extra: 1450/1379,
  39943. bottom: 19/1469
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Normal",
  39950. height: math.unit(4, "feet"),
  39951. default: true
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39957. {
  39958. front: {
  39959. height: math.unit(6 + 5/12, "feet"),
  39960. weight: math.unit(290, "lb"),
  39961. name: "Front",
  39962. image: {
  39963. source: "./media/characters/tiberius-thyben/front.svg",
  39964. extra: 757/739,
  39965. bottom: 39/796
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Micro",
  39972. height: math.unit(1.5, "inches")
  39973. },
  39974. {
  39975. name: "Normal",
  39976. height: math.unit(6 + 5/12, "feet"),
  39977. default: true
  39978. },
  39979. {
  39980. name: "Macro",
  39981. height: math.unit(300, "feet")
  39982. },
  39983. ]
  39984. ))
  39985. characterMakers.push(() => makeCharacter(
  39986. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  39987. {
  39988. front: {
  39989. height: math.unit(5 + 6/12, "feet"),
  39990. weight: math.unit(60, "kg"),
  39991. name: "Front",
  39992. image: {
  39993. source: "./media/characters/sabre/front.svg",
  39994. extra: 738/671,
  39995. bottom: 27/765
  39996. }
  39997. },
  39998. },
  39999. [
  40000. {
  40001. name: "Teeny",
  40002. height: math.unit(2, "inches")
  40003. },
  40004. {
  40005. name: "Smol",
  40006. height: math.unit(8, "inches")
  40007. },
  40008. {
  40009. name: "Normal",
  40010. height: math.unit(5 + 6/12, "feet"),
  40011. default: true
  40012. },
  40013. {
  40014. name: "Mini-Macro",
  40015. height: math.unit(15, "feet")
  40016. },
  40017. {
  40018. name: "Macro",
  40019. height: math.unit(50, "feet")
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40025. {
  40026. front: {
  40027. height: math.unit(6 + 4/12, "feet"),
  40028. weight: math.unit(170, "lb"),
  40029. name: "Front",
  40030. image: {
  40031. source: "./media/characters/charlie/front.svg",
  40032. extra: 1348/1228,
  40033. bottom: 15/1363
  40034. }
  40035. },
  40036. },
  40037. [
  40038. {
  40039. name: "Macro",
  40040. height: math.unit(1700, "meters"),
  40041. default: true
  40042. },
  40043. {
  40044. name: "MegaMacro",
  40045. height: math.unit(20400, "meters")
  40046. },
  40047. ]
  40048. ))
  40049. characterMakers.push(() => makeCharacter(
  40050. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40051. {
  40052. front: {
  40053. height: math.unit(6 + 3/12, "feet"),
  40054. weight: math.unit(185, "lb"),
  40055. name: "Front",
  40056. image: {
  40057. source: "./media/characters/susan-grant/front.svg",
  40058. extra: 1351/1327,
  40059. bottom: 26/1377
  40060. }
  40061. },
  40062. },
  40063. [
  40064. {
  40065. name: "Normal",
  40066. height: math.unit(6 + 3/12, "feet"),
  40067. default: true
  40068. },
  40069. {
  40070. name: "Macro",
  40071. height: math.unit(225, "feet")
  40072. },
  40073. {
  40074. name: "Macro+",
  40075. height: math.unit(900, "feet")
  40076. },
  40077. {
  40078. name: "MegaMacro",
  40079. height: math.unit(14400, "feet")
  40080. },
  40081. ]
  40082. ))
  40083. characterMakers.push(() => makeCharacter(
  40084. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40085. {
  40086. front: {
  40087. height: math.unit(5 + 4/12, "feet"),
  40088. weight: math.unit(110, "lb"),
  40089. name: "Front",
  40090. image: {
  40091. source: "./media/characters/axel-isanov/front.svg",
  40092. extra: 1096/1065,
  40093. bottom: 13/1109
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(5 + 4/12, "feet"),
  40101. default: true
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(9, "feet"),
  40110. weight: math.unit(467, "lb"),
  40111. name: "Front",
  40112. image: {
  40113. source: "./media/characters/necahual/front.svg",
  40114. extra: 920/873,
  40115. bottom: 26/946
  40116. }
  40117. },
  40118. back: {
  40119. height: math.unit(9, "feet"),
  40120. weight: math.unit(467, "lb"),
  40121. name: "Back",
  40122. image: {
  40123. source: "./media/characters/necahual/back.svg",
  40124. extra: 930/884,
  40125. bottom: 16/946
  40126. }
  40127. },
  40128. frontUnderwear: {
  40129. height: math.unit(9, "feet"),
  40130. weight: math.unit(467, "lb"),
  40131. name: "Front (Underwear)",
  40132. image: {
  40133. source: "./media/characters/necahual/front-underwear.svg",
  40134. extra: 920/873,
  40135. bottom: 26/946
  40136. }
  40137. },
  40138. frontDressed: {
  40139. height: math.unit(9, "feet"),
  40140. weight: math.unit(467, "lb"),
  40141. name: "Front (Dressed)",
  40142. image: {
  40143. source: "./media/characters/necahual/front-dressed.svg",
  40144. extra: 920/873,
  40145. bottom: 26/946
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Comprsesed",
  40152. height: math.unit(9, "feet")
  40153. },
  40154. {
  40155. name: "Natural",
  40156. height: math.unit(15, "feet"),
  40157. default: true
  40158. },
  40159. {
  40160. name: "Boosted",
  40161. height: math.unit(50, "feet")
  40162. },
  40163. {
  40164. name: "Boosted+",
  40165. height: math.unit(150, "feet")
  40166. },
  40167. {
  40168. name: "Max",
  40169. height: math.unit(500, "feet")
  40170. },
  40171. ]
  40172. ))
  40173. characterMakers.push(() => makeCharacter(
  40174. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40175. {
  40176. front: {
  40177. height: math.unit(22 + 1/12, "feet"),
  40178. weight: math.unit(3200, "lb"),
  40179. name: "Front",
  40180. image: {
  40181. source: "./media/characters/theo-acacia/front.svg",
  40182. extra: 1796/1741,
  40183. bottom: 83/1879
  40184. }
  40185. },
  40186. frontUnderwear: {
  40187. height: math.unit(22 + 1/12, "feet"),
  40188. weight: math.unit(3200, "lb"),
  40189. name: "Front (Underwear)",
  40190. image: {
  40191. source: "./media/characters/theo-acacia/front-underwear.svg",
  40192. extra: 1796/1741,
  40193. bottom: 83/1879
  40194. }
  40195. },
  40196. frontNude: {
  40197. height: math.unit(22 + 1/12, "feet"),
  40198. weight: math.unit(3200, "lb"),
  40199. name: "Front (Nude)",
  40200. image: {
  40201. source: "./media/characters/theo-acacia/front-nude.svg",
  40202. extra: 1796/1741,
  40203. bottom: 83/1879
  40204. }
  40205. },
  40206. },
  40207. [
  40208. {
  40209. name: "Normal",
  40210. height: math.unit(22 + 1/12, "feet"),
  40211. default: true
  40212. },
  40213. ]
  40214. ))
  40215. characterMakers.push(() => makeCharacter(
  40216. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40217. {
  40218. front: {
  40219. height: math.unit(20, "feet"),
  40220. name: "Front",
  40221. image: {
  40222. source: "./media/characters/astra/front.svg",
  40223. extra: 1850/1714,
  40224. bottom: 106/1956
  40225. }
  40226. },
  40227. frontUndressed: {
  40228. height: math.unit(20, "feet"),
  40229. name: "Front (Undressed)",
  40230. image: {
  40231. source: "./media/characters/astra/front-undressed.svg",
  40232. extra: 1926/1749,
  40233. bottom: 0/1926
  40234. }
  40235. },
  40236. hand: {
  40237. height: math.unit(1.53, "feet"),
  40238. name: "Hand",
  40239. image: {
  40240. source: "./media/characters/astra/hand.svg"
  40241. }
  40242. },
  40243. paw: {
  40244. height: math.unit(1.53, "feet"),
  40245. name: "Paw",
  40246. image: {
  40247. source: "./media/characters/astra/paw.svg"
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Smallest",
  40254. height: math.unit(20, "feet")
  40255. },
  40256. {
  40257. name: "Normal",
  40258. height: math.unit(1e9, "miles"),
  40259. default: true
  40260. },
  40261. {
  40262. name: "Larger",
  40263. height: math.unit(5, "multiverses")
  40264. },
  40265. {
  40266. name: "Largest",
  40267. height: math.unit(1e9, "multiverses")
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40273. {
  40274. front: {
  40275. height: math.unit(8, "feet"),
  40276. name: "Front",
  40277. image: {
  40278. source: "./media/characters/breanna/front.svg",
  40279. extra: 1912/1632,
  40280. bottom: 33/1945
  40281. }
  40282. },
  40283. },
  40284. [
  40285. {
  40286. name: "Smallest",
  40287. height: math.unit(8, "feet")
  40288. },
  40289. {
  40290. name: "Normal",
  40291. height: math.unit(1, "mile"),
  40292. default: true
  40293. },
  40294. {
  40295. name: "Maximum",
  40296. height: math.unit(1500000000000, "lightyears")
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40302. {
  40303. front: {
  40304. height: math.unit(5 + 11/12, "feet"),
  40305. weight: math.unit(155, "lb"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/cai/front.svg",
  40309. extra: 1823/1702,
  40310. bottom: 32/1855
  40311. }
  40312. },
  40313. back: {
  40314. height: math.unit(5 + 11/12, "feet"),
  40315. weight: math.unit(155, "lb"),
  40316. name: "Back",
  40317. image: {
  40318. source: "./media/characters/cai/back.svg",
  40319. extra: 1809/1708,
  40320. bottom: 31/1840
  40321. }
  40322. },
  40323. },
  40324. [
  40325. {
  40326. name: "Normal",
  40327. height: math.unit(5 + 11/12, "feet"),
  40328. default: true
  40329. },
  40330. {
  40331. name: "Big",
  40332. height: math.unit(15, "feet")
  40333. },
  40334. {
  40335. name: "Macro",
  40336. height: math.unit(200, "feet")
  40337. },
  40338. ]
  40339. ))
  40340. characterMakers.push(() => makeCharacter(
  40341. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40342. {
  40343. front: {
  40344. height: math.unit(5 + 6/12, "feet"),
  40345. weight: math.unit(160, "lb"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40349. extra: 1227/1174,
  40350. bottom: 37/1264
  40351. }
  40352. },
  40353. },
  40354. [
  40355. {
  40356. name: "Macro",
  40357. height: math.unit(444, "meters"),
  40358. default: true
  40359. },
  40360. ]
  40361. ))
  40362. characterMakers.push(() => makeCharacter(
  40363. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40364. {
  40365. front: {
  40366. height: math.unit(18 + 7/12, "feet"),
  40367. name: "Front",
  40368. image: {
  40369. source: "./media/characters/rex/front.svg",
  40370. extra: 1941/1807,
  40371. bottom: 66/2007
  40372. }
  40373. },
  40374. back: {
  40375. height: math.unit(18 + 7/12, "feet"),
  40376. name: "Back",
  40377. image: {
  40378. source: "./media/characters/rex/back.svg",
  40379. extra: 1937/1822,
  40380. bottom: 42/1979
  40381. }
  40382. },
  40383. boot: {
  40384. height: math.unit(3.45, "feet"),
  40385. name: "Boot",
  40386. image: {
  40387. source: "./media/characters/rex/boot.svg"
  40388. }
  40389. },
  40390. paw: {
  40391. height: math.unit(4.17, "feet"),
  40392. name: "Paw",
  40393. image: {
  40394. source: "./media/characters/rex/paw.svg"
  40395. }
  40396. },
  40397. head: {
  40398. height: math.unit(6.728, "feet"),
  40399. name: "Head",
  40400. image: {
  40401. source: "./media/characters/rex/head.svg"
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Nano",
  40408. height: math.unit(18 + 7/12, "feet")
  40409. },
  40410. {
  40411. name: "Micro",
  40412. height: math.unit(1.5, "megameters")
  40413. },
  40414. {
  40415. name: "Normal",
  40416. height: math.unit(440, "megameters"),
  40417. default: true
  40418. },
  40419. {
  40420. name: "Macro",
  40421. height: math.unit(2.5, "gigameters")
  40422. },
  40423. {
  40424. name: "Gigamacro",
  40425. height: math.unit(2, "galaxies")
  40426. },
  40427. ]
  40428. ))
  40429. characterMakers.push(() => makeCharacter(
  40430. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40431. {
  40432. side: {
  40433. height: math.unit(32, "feet"),
  40434. weight: math.unit(250000, "lb"),
  40435. name: "Side",
  40436. image: {
  40437. source: "./media/characters/silverwing/side.svg",
  40438. extra: 1100/1019,
  40439. bottom: 204/1304
  40440. }
  40441. },
  40442. },
  40443. [
  40444. {
  40445. name: "Normal",
  40446. height: math.unit(32, "feet"),
  40447. default: true
  40448. },
  40449. ]
  40450. ))
  40451. //characters
  40452. function makeCharacters() {
  40453. const results = [];
  40454. characterMakers.forEach(character => {
  40455. results.push(character());
  40456. });
  40457. return results;
  40458. }