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

41541 строка
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. },
  1698. "sika-deer": {
  1699. name: "Sika Deer",
  1700. parents: ["deer"]
  1701. },
  1702. }
  1703. //species
  1704. function getSpeciesInfo(speciesList) {
  1705. let result = new Set();
  1706. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1707. result.add(entry)
  1708. });
  1709. return Array.from(result);
  1710. };
  1711. function getSpeciesInfoHelper(species) {
  1712. if (!speciesData[species]) {
  1713. console.warn(species + " doesn't exist");
  1714. return [];
  1715. }
  1716. if (speciesData[species].parents) {
  1717. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1718. } else {
  1719. return [species];
  1720. }
  1721. }
  1722. characterMakers.push(() => makeCharacter(
  1723. {
  1724. name: "Fen",
  1725. species: ["crux"],
  1726. description: {
  1727. title: "Bio",
  1728. text: "Very furry. Sheds on everything."
  1729. },
  1730. tags: [
  1731. "anthro",
  1732. "goo"
  1733. ]
  1734. },
  1735. {
  1736. back: {
  1737. height: math.unit(2.2428, "meter"),
  1738. weight: math.unit(124.738, "kg"),
  1739. name: "Back",
  1740. image: {
  1741. source: "./media/characters/fen/back.svg",
  1742. },
  1743. info: {
  1744. description: {
  1745. mode: "append",
  1746. text: "\n\nHe is not currently looking at you."
  1747. }
  1748. }
  1749. },
  1750. full: {
  1751. height: math.unit(1.34, "meter"),
  1752. weight: math.unit(225, "kg"),
  1753. name: "Full",
  1754. image: {
  1755. source: "./media/characters/fen/full.svg"
  1756. },
  1757. info: {
  1758. description: {
  1759. mode: "append",
  1760. text: "\n\nMunch."
  1761. }
  1762. }
  1763. },
  1764. kneeling: {
  1765. height: math.unit(5.4, "feet"),
  1766. weight: math.unit(124.738, "kg"),
  1767. name: "Kneeling",
  1768. image: {
  1769. source: "./media/characters/fen/kneeling.svg",
  1770. extra: 563 / 507
  1771. }
  1772. },
  1773. goo: {
  1774. height: math.unit(2.8, "feet"),
  1775. weight: math.unit(125, "kg"),
  1776. capacity: math.unit(1, "people"),
  1777. name: "Goo",
  1778. image: {
  1779. source: "./media/characters/fen/goo.svg",
  1780. bottom: 116 / 613
  1781. }
  1782. },
  1783. lounging: {
  1784. height: math.unit(6.5, "feet"),
  1785. weight: math.unit(125, "kg"),
  1786. name: "Lounging",
  1787. image: {
  1788. source: "./media/characters/fen/lounging.svg"
  1789. }
  1790. },
  1791. },
  1792. [
  1793. {
  1794. name: "Normal",
  1795. height: math.unit(2.2428, "meter")
  1796. },
  1797. {
  1798. name: "Big",
  1799. height: math.unit(12, "feet")
  1800. },
  1801. {
  1802. name: "Minimacro",
  1803. height: math.unit(40, "feet"),
  1804. default: true,
  1805. info: {
  1806. description: {
  1807. mode: "append",
  1808. text: "\n\nTOO DAMN BIG"
  1809. }
  1810. }
  1811. },
  1812. {
  1813. name: "Macro",
  1814. height: math.unit(100, "feet"),
  1815. info: {
  1816. description: {
  1817. mode: "append",
  1818. text: "\n\nTOO DAMN BIG"
  1819. }
  1820. }
  1821. },
  1822. {
  1823. name: "Macro+",
  1824. height: math.unit(300, "feet")
  1825. },
  1826. {
  1827. name: "Megamacro",
  1828. height: math.unit(2, "miles")
  1829. }
  1830. ]
  1831. ))
  1832. characterMakers.push(() => makeCharacter(
  1833. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1834. {
  1835. front: {
  1836. height: math.unit(183, "cm"),
  1837. weight: math.unit(80, "kg"),
  1838. name: "Front",
  1839. image: {
  1840. source: "./media/characters/sofia-fluttertail/front.svg",
  1841. bottom: 0.01,
  1842. extra: 2154 / 2081
  1843. }
  1844. },
  1845. frontAlt: {
  1846. height: math.unit(183, "cm"),
  1847. weight: math.unit(80, "kg"),
  1848. name: "Front (alt)",
  1849. image: {
  1850. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1851. }
  1852. },
  1853. back: {
  1854. height: math.unit(183, "cm"),
  1855. weight: math.unit(80, "kg"),
  1856. name: "Back",
  1857. image: {
  1858. source: "./media/characters/sofia-fluttertail/back.svg"
  1859. }
  1860. },
  1861. kneeling: {
  1862. height: math.unit(125, "cm"),
  1863. weight: math.unit(80, "kg"),
  1864. name: "Kneeling",
  1865. image: {
  1866. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1867. extra: 1033 / 977,
  1868. bottom: 23.7 / 1057
  1869. }
  1870. },
  1871. maw: {
  1872. height: math.unit(183 / 5, "cm"),
  1873. name: "Maw",
  1874. image: {
  1875. source: "./media/characters/sofia-fluttertail/maw.svg"
  1876. }
  1877. },
  1878. mawcloseup: {
  1879. height: math.unit(183 / 5 * 0.41, "cm"),
  1880. name: "Maw (Closeup)",
  1881. image: {
  1882. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1883. }
  1884. },
  1885. paws: {
  1886. height: math.unit(1.17, "feet"),
  1887. name: "Paws",
  1888. image: {
  1889. source: "./media/characters/sofia-fluttertail/paws.svg",
  1890. extra: 851 / 851,
  1891. bottom: 17 / 868
  1892. }
  1893. },
  1894. },
  1895. [
  1896. {
  1897. name: "Normal",
  1898. height: math.unit(1.83, "meter")
  1899. },
  1900. {
  1901. name: "Size Thief",
  1902. height: math.unit(18, "feet")
  1903. },
  1904. {
  1905. name: "50 Foot Collie",
  1906. height: math.unit(50, "feet")
  1907. },
  1908. {
  1909. name: "Macro",
  1910. height: math.unit(96, "feet"),
  1911. default: true
  1912. },
  1913. {
  1914. name: "Megamerger",
  1915. height: math.unit(650, "feet")
  1916. },
  1917. ]
  1918. ))
  1919. characterMakers.push(() => makeCharacter(
  1920. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1921. {
  1922. front: {
  1923. height: math.unit(7, "feet"),
  1924. weight: math.unit(100, "kg"),
  1925. name: "Front",
  1926. image: {
  1927. source: "./media/characters/march/front.svg",
  1928. extra: 1992/1851,
  1929. bottom: 39/2031
  1930. }
  1931. },
  1932. foot: {
  1933. height: math.unit(0.9, "feet"),
  1934. name: "Foot",
  1935. image: {
  1936. source: "./media/characters/march/foot.svg"
  1937. }
  1938. },
  1939. },
  1940. [
  1941. {
  1942. name: "Normal",
  1943. height: math.unit(7.9, "feet")
  1944. },
  1945. {
  1946. name: "Macro",
  1947. height: math.unit(220, "meters")
  1948. },
  1949. {
  1950. name: "Megamacro",
  1951. height: math.unit(2.98, "km"),
  1952. default: true
  1953. },
  1954. {
  1955. name: "Gigamacro",
  1956. height: math.unit(15963, "km")
  1957. },
  1958. {
  1959. name: "Teramacro",
  1960. height: math.unit(2980000000, "km")
  1961. },
  1962. {
  1963. name: "Examacro",
  1964. height: math.unit(250, "parsecs")
  1965. },
  1966. ]
  1967. ))
  1968. characterMakers.push(() => makeCharacter(
  1969. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1970. {
  1971. front: {
  1972. height: math.unit(6, "feet"),
  1973. weight: math.unit(60, "kg"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/noir/front.svg",
  1977. extra: 1,
  1978. bottom: 0.032
  1979. }
  1980. },
  1981. },
  1982. [
  1983. {
  1984. name: "Normal",
  1985. height: math.unit(6.6, "feet")
  1986. },
  1987. {
  1988. name: "Macro",
  1989. height: math.unit(500, "feet")
  1990. },
  1991. {
  1992. name: "Megamacro",
  1993. height: math.unit(2.5, "km"),
  1994. default: true
  1995. },
  1996. {
  1997. name: "Gigamacro",
  1998. height: math.unit(22500, "km")
  1999. },
  2000. {
  2001. name: "Teramacro",
  2002. height: math.unit(2500000000, "km")
  2003. },
  2004. {
  2005. name: "Examacro",
  2006. height: math.unit(200, "parsecs")
  2007. },
  2008. ]
  2009. ))
  2010. characterMakers.push(() => makeCharacter(
  2011. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2012. {
  2013. front: {
  2014. height: math.unit(7, "feet"),
  2015. weight: math.unit(100, "kg"),
  2016. name: "Front",
  2017. image: {
  2018. source: "./media/characters/okuri/front.svg",
  2019. extra: 1,
  2020. bottom: 0.037
  2021. }
  2022. },
  2023. back: {
  2024. height: math.unit(7, "feet"),
  2025. weight: math.unit(100, "kg"),
  2026. name: "Back",
  2027. image: {
  2028. source: "./media/characters/okuri/back.svg",
  2029. extra: 1,
  2030. bottom: 0.007
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Megamacro",
  2037. height: math.unit(100, "miles"),
  2038. default: true
  2039. },
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2044. {
  2045. front: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(100, "kg"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/manny/front.svg",
  2051. extra: 1,
  2052. bottom: 0.06
  2053. }
  2054. },
  2055. back: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(100, "kg"),
  2058. name: "Back",
  2059. image: {
  2060. source: "./media/characters/manny/back.svg",
  2061. extra: 1,
  2062. bottom: 0.014
  2063. }
  2064. },
  2065. },
  2066. [
  2067. {
  2068. name: "Normal",
  2069. height: math.unit(7, "feet"),
  2070. },
  2071. {
  2072. name: "Macro",
  2073. height: math.unit(78, "feet"),
  2074. default: true
  2075. },
  2076. {
  2077. name: "Macro+",
  2078. height: math.unit(300, "meters")
  2079. },
  2080. {
  2081. name: "Macro++",
  2082. height: math.unit(2400, "meters")
  2083. },
  2084. {
  2085. name: "Megamacro",
  2086. height: math.unit(5167, "meters")
  2087. },
  2088. {
  2089. name: "Gigamacro",
  2090. height: math.unit(41769, "miles")
  2091. },
  2092. ]
  2093. ))
  2094. characterMakers.push(() => makeCharacter(
  2095. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2096. {
  2097. front: {
  2098. height: math.unit(7, "feet"),
  2099. weight: math.unit(100, "kg"),
  2100. name: "Front",
  2101. image: {
  2102. source: "./media/characters/adake/front-1.svg"
  2103. }
  2104. },
  2105. frontAlt: {
  2106. height: math.unit(7, "feet"),
  2107. weight: math.unit(100, "kg"),
  2108. name: "Front (Alt)",
  2109. image: {
  2110. source: "./media/characters/adake/front-2.svg",
  2111. extra: 1,
  2112. bottom: 0.01
  2113. }
  2114. },
  2115. back: {
  2116. height: math.unit(7, "feet"),
  2117. weight: math.unit(100, "kg"),
  2118. name: "Back",
  2119. image: {
  2120. source: "./media/characters/adake/back.svg",
  2121. }
  2122. },
  2123. kneel: {
  2124. height: math.unit(5.385, "feet"),
  2125. weight: math.unit(100, "kg"),
  2126. name: "Kneeling",
  2127. image: {
  2128. source: "./media/characters/adake/kneel.svg",
  2129. bottom: 0.052
  2130. }
  2131. },
  2132. },
  2133. [
  2134. {
  2135. name: "Normal",
  2136. height: math.unit(7, "feet"),
  2137. },
  2138. {
  2139. name: "Macro",
  2140. height: math.unit(78, "feet"),
  2141. default: true
  2142. },
  2143. {
  2144. name: "Macro+",
  2145. height: math.unit(300, "meters")
  2146. },
  2147. {
  2148. name: "Macro++",
  2149. height: math.unit(2400, "meters")
  2150. },
  2151. {
  2152. name: "Megamacro",
  2153. height: math.unit(5167, "meters")
  2154. },
  2155. {
  2156. name: "Gigamacro",
  2157. height: math.unit(41769, "miles")
  2158. },
  2159. ]
  2160. ))
  2161. characterMakers.push(() => makeCharacter(
  2162. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2163. {
  2164. front: {
  2165. height: math.unit(1.65, "meters"),
  2166. weight: math.unit(50, "kg"),
  2167. name: "Front",
  2168. image: {
  2169. source: "./media/characters/elijah/front.svg",
  2170. extra: 858 / 830,
  2171. bottom: 95.5 / 953.8559
  2172. }
  2173. },
  2174. back: {
  2175. height: math.unit(1.65, "meters"),
  2176. weight: math.unit(50, "kg"),
  2177. name: "Back",
  2178. image: {
  2179. source: "./media/characters/elijah/back.svg",
  2180. extra: 895 / 850,
  2181. bottom: 5.3 / 897.956
  2182. }
  2183. },
  2184. frontNsfw: {
  2185. height: math.unit(1.65, "meters"),
  2186. weight: math.unit(50, "kg"),
  2187. name: "Front (NSFW)",
  2188. image: {
  2189. source: "./media/characters/elijah/front-nsfw.svg",
  2190. extra: 858 / 830,
  2191. bottom: 95.5 / 953.8559
  2192. }
  2193. },
  2194. backNsfw: {
  2195. height: math.unit(1.65, "meters"),
  2196. weight: math.unit(50, "kg"),
  2197. name: "Back (NSFW)",
  2198. image: {
  2199. source: "./media/characters/elijah/back-nsfw.svg",
  2200. extra: 895 / 850,
  2201. bottom: 5.3 / 897.956
  2202. }
  2203. },
  2204. dick: {
  2205. height: math.unit(1, "feet"),
  2206. name: "Dick",
  2207. image: {
  2208. source: "./media/characters/elijah/dick.svg"
  2209. }
  2210. },
  2211. beakOpen: {
  2212. height: math.unit(1.25, "feet"),
  2213. name: "Beak (Open)",
  2214. image: {
  2215. source: "./media/characters/elijah/beak-open.svg"
  2216. }
  2217. },
  2218. beakShut: {
  2219. height: math.unit(1.25, "feet"),
  2220. name: "Beak (Shut)",
  2221. image: {
  2222. source: "./media/characters/elijah/beak-shut.svg"
  2223. }
  2224. },
  2225. footFlexing: {
  2226. height: math.unit(1.61, "feet"),
  2227. name: "Foot (Flexing)",
  2228. image: {
  2229. source: "./media/characters/elijah/foot-flexing.svg"
  2230. }
  2231. },
  2232. footStepping: {
  2233. height: math.unit(1.44, "feet"),
  2234. name: "Foot (Stepping)",
  2235. image: {
  2236. source: "./media/characters/elijah/foot-stepping.svg"
  2237. }
  2238. },
  2239. plantigradeLeg: {
  2240. height: math.unit(2.34, "feet"),
  2241. name: "Plantigrade Leg",
  2242. image: {
  2243. source: "./media/characters/elijah/plantigrade-leg.svg"
  2244. }
  2245. },
  2246. plantigradeFootLeft: {
  2247. height: math.unit(0.9, "feet"),
  2248. name: "Plantigrade Foot (Left)",
  2249. image: {
  2250. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2251. }
  2252. },
  2253. plantigradeFootRight: {
  2254. height: math.unit(0.9, "feet"),
  2255. name: "Plantigrade Foot (Right)",
  2256. image: {
  2257. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2258. }
  2259. },
  2260. },
  2261. [
  2262. {
  2263. name: "Normal",
  2264. height: math.unit(1.65, "meters")
  2265. },
  2266. {
  2267. name: "Macro",
  2268. height: math.unit(55, "meters"),
  2269. default: true
  2270. },
  2271. {
  2272. name: "Macro+",
  2273. height: math.unit(105, "meters")
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2279. {
  2280. front: {
  2281. height: math.unit(11, "feet"),
  2282. weight: math.unit(320, "kg"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/rai/front.svg",
  2286. extra: 1802/1696,
  2287. bottom: 68/1870
  2288. }
  2289. },
  2290. frontDressed: {
  2291. height: math.unit(11, "feet"),
  2292. weight: math.unit(320, "kg"),
  2293. name: "Front (Dressed)",
  2294. image: {
  2295. source: "./media/characters/rai/front-dressed.svg",
  2296. extra: 1802/1696,
  2297. bottom: 68/1870
  2298. }
  2299. },
  2300. side: {
  2301. height: math.unit(11, "feet"),
  2302. weight: math.unit(320, "kg"),
  2303. name: "Side",
  2304. image: {
  2305. source: "./media/characters/rai/side.svg",
  2306. extra: 1789/1710,
  2307. bottom: 115/1904
  2308. }
  2309. },
  2310. back: {
  2311. height: math.unit(11, "feet"),
  2312. weight: math.unit(320, "kg"),
  2313. name: "Back",
  2314. image: {
  2315. source: "./media/characters/rai/back.svg",
  2316. extra: 1770/1707,
  2317. bottom: 28/1798
  2318. }
  2319. },
  2320. feral: {
  2321. height: math.unit(11, "feet"),
  2322. weight: math.unit(640, "kg"),
  2323. name: "Feral",
  2324. image: {
  2325. source: "./media/characters/rai/feral.svg",
  2326. extra: 1035/642,
  2327. bottom: 86/1121
  2328. }
  2329. },
  2330. dragon: {
  2331. height: math.unit(23, "feet"),
  2332. weight: math.unit(50000, "lb"),
  2333. name: "Dragon",
  2334. image: {
  2335. source: "./media/characters/rai/dragon.svg",
  2336. extra: 2498 / 2030,
  2337. bottom: 85.2 / 2584
  2338. }
  2339. },
  2340. maw: {
  2341. height: math.unit(6 / 3.81416, "feet"),
  2342. name: "Maw",
  2343. image: {
  2344. source: "./media/characters/rai/maw.svg"
  2345. }
  2346. },
  2347. },
  2348. [
  2349. {
  2350. name: "Normal",
  2351. height: math.unit(11, "feet")
  2352. },
  2353. {
  2354. name: "Macro",
  2355. height: math.unit(302, "feet"),
  2356. default: true
  2357. },
  2358. ]
  2359. ))
  2360. characterMakers.push(() => makeCharacter(
  2361. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2362. {
  2363. frontDressed: {
  2364. height: math.unit(216, "feet"),
  2365. weight: math.unit(7000000, "lb"),
  2366. name: "Front (Dressed)",
  2367. image: {
  2368. source: "./media/characters/jazzy/front-dressed.svg",
  2369. extra: 2738 / 2651,
  2370. bottom: 41.8 / 2786
  2371. }
  2372. },
  2373. backDressed: {
  2374. height: math.unit(216, "feet"),
  2375. weight: math.unit(7000000, "lb"),
  2376. name: "Back (Dressed)",
  2377. image: {
  2378. source: "./media/characters/jazzy/back-dressed.svg",
  2379. extra: 2775 / 2673,
  2380. bottom: 36.8 / 2817
  2381. }
  2382. },
  2383. front: {
  2384. height: math.unit(216, "feet"),
  2385. weight: math.unit(7000000, "lb"),
  2386. name: "Front",
  2387. image: {
  2388. source: "./media/characters/jazzy/front.svg",
  2389. extra: 2738 / 2651,
  2390. bottom: 41.8 / 2786
  2391. }
  2392. },
  2393. back: {
  2394. height: math.unit(216, "feet"),
  2395. weight: math.unit(7000000, "lb"),
  2396. name: "Back",
  2397. image: {
  2398. source: "./media/characters/jazzy/back.svg",
  2399. extra: 2775 / 2673,
  2400. bottom: 36.8 / 2817
  2401. }
  2402. },
  2403. maw: {
  2404. height: math.unit(20, "feet"),
  2405. name: "Maw",
  2406. image: {
  2407. source: "./media/characters/jazzy/maw.svg"
  2408. }
  2409. },
  2410. paws: {
  2411. height: math.unit(27.5, "feet"),
  2412. name: "Paws",
  2413. image: {
  2414. source: "./media/characters/jazzy/paws.svg"
  2415. }
  2416. },
  2417. eye: {
  2418. height: math.unit(4.4, "feet"),
  2419. name: "Eye",
  2420. image: {
  2421. source: "./media/characters/jazzy/eye.svg"
  2422. }
  2423. },
  2424. droneOffense: {
  2425. height: math.unit(9.5, "inches"),
  2426. name: "Drone (Offense)",
  2427. image: {
  2428. source: "./media/characters/jazzy/drone-offense.svg"
  2429. }
  2430. },
  2431. droneRecon: {
  2432. height: math.unit(9.5, "inches"),
  2433. name: "Drone (Recon)",
  2434. image: {
  2435. source: "./media/characters/jazzy/drone-recon.svg"
  2436. }
  2437. },
  2438. droneDefense: {
  2439. height: math.unit(9.5, "inches"),
  2440. name: "Drone (Defense)",
  2441. image: {
  2442. source: "./media/characters/jazzy/drone-defense.svg"
  2443. }
  2444. },
  2445. },
  2446. [
  2447. {
  2448. name: "Macro",
  2449. height: math.unit(216, "feet"),
  2450. default: true
  2451. },
  2452. ]
  2453. ))
  2454. characterMakers.push(() => makeCharacter(
  2455. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2456. {
  2457. front: {
  2458. height: math.unit(9 + 6/12, "feet"),
  2459. weight: math.unit(700, "lb"),
  2460. name: "Front",
  2461. image: {
  2462. source: "./media/characters/flamm/front.svg",
  2463. extra: 1751/1632,
  2464. bottom: 46/1797
  2465. }
  2466. },
  2467. buff: {
  2468. height: math.unit(9 + 6/12, "feet"),
  2469. weight: math.unit(950, "lb"),
  2470. name: "Buff",
  2471. image: {
  2472. source: "./media/characters/flamm/buff.svg",
  2473. extra: 3018/2874,
  2474. bottom: 221/3239
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Normal",
  2481. height: math.unit(9.5, "feet")
  2482. },
  2483. {
  2484. name: "Macro",
  2485. height: math.unit(200, "feet"),
  2486. default: true
  2487. },
  2488. ]
  2489. ))
  2490. characterMakers.push(() => makeCharacter(
  2491. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2492. {
  2493. front: {
  2494. height: math.unit(5 + 3/12, "feet"),
  2495. weight: math.unit(60, "kg"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/zephiro/front.svg",
  2499. extra: 2309 / 2162,
  2500. bottom: 0.069
  2501. }
  2502. },
  2503. side: {
  2504. height: math.unit(5 + 3/12, "feet"),
  2505. weight: math.unit(60, "kg"),
  2506. name: "Side",
  2507. image: {
  2508. source: "./media/characters/zephiro/side.svg",
  2509. extra: 2403 / 2279,
  2510. bottom: 0.015
  2511. }
  2512. },
  2513. back: {
  2514. height: math.unit(5 + 3/12, "feet"),
  2515. weight: math.unit(60, "kg"),
  2516. name: "Back",
  2517. image: {
  2518. source: "./media/characters/zephiro/back.svg",
  2519. extra: 2373 / 2244,
  2520. bottom: 0.013
  2521. }
  2522. },
  2523. hand: {
  2524. height: math.unit(0.68, "feet"),
  2525. name: "Hand",
  2526. image: {
  2527. source: "./media/characters/zephiro/hand.svg"
  2528. }
  2529. },
  2530. paw: {
  2531. height: math.unit(1, "feet"),
  2532. name: "Paw",
  2533. image: {
  2534. source: "./media/characters/zephiro/paw.svg"
  2535. }
  2536. },
  2537. beans: {
  2538. height: math.unit(0.93, "feet"),
  2539. name: "Beans",
  2540. image: {
  2541. source: "./media/characters/zephiro/beans.svg"
  2542. }
  2543. },
  2544. },
  2545. [
  2546. {
  2547. name: "Micro",
  2548. height: math.unit(3, "inches")
  2549. },
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(5 + 3 / 12, "feet"),
  2553. default: true
  2554. },
  2555. {
  2556. name: "Macro",
  2557. height: math.unit(118, "feet")
  2558. },
  2559. ]
  2560. ))
  2561. characterMakers.push(() => makeCharacter(
  2562. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2563. {
  2564. front: {
  2565. height: math.unit(5, "feet"),
  2566. weight: math.unit(90, "kg"),
  2567. name: "Front",
  2568. image: {
  2569. source: "./media/characters/fory/front.svg",
  2570. extra: 2862 / 2674,
  2571. bottom: 180 / 3043.8
  2572. }
  2573. },
  2574. back: {
  2575. height: math.unit(5, "feet"),
  2576. weight: math.unit(90, "kg"),
  2577. name: "Back",
  2578. image: {
  2579. source: "./media/characters/fory/back.svg",
  2580. extra: 2962 / 2791,
  2581. bottom: 106 / 3071.8
  2582. }
  2583. },
  2584. foot: {
  2585. height: math.unit(2.14, "feet"),
  2586. name: "Foot",
  2587. image: {
  2588. source: "./media/characters/fory/foot.svg"
  2589. }
  2590. },
  2591. },
  2592. [
  2593. {
  2594. name: "Normal",
  2595. height: math.unit(5, "feet")
  2596. },
  2597. {
  2598. name: "Macro",
  2599. height: math.unit(50, "feet"),
  2600. default: true
  2601. },
  2602. {
  2603. name: "Megamacro",
  2604. height: math.unit(10, "miles")
  2605. },
  2606. {
  2607. name: "Gigamacro",
  2608. height: math.unit(5, "earths")
  2609. },
  2610. ]
  2611. ))
  2612. characterMakers.push(() => makeCharacter(
  2613. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2614. {
  2615. front: {
  2616. height: math.unit(7, "feet"),
  2617. weight: math.unit(90, "kg"),
  2618. name: "Front",
  2619. image: {
  2620. source: "./media/characters/kurrikage/front.svg",
  2621. extra: 1,
  2622. bottom: 0.035
  2623. }
  2624. },
  2625. back: {
  2626. height: math.unit(7, "feet"),
  2627. weight: math.unit(90, "lb"),
  2628. name: "Back",
  2629. image: {
  2630. source: "./media/characters/kurrikage/back.svg"
  2631. }
  2632. },
  2633. paw: {
  2634. height: math.unit(1.5, "feet"),
  2635. name: "Paw",
  2636. image: {
  2637. source: "./media/characters/kurrikage/paw.svg"
  2638. }
  2639. },
  2640. staff: {
  2641. height: math.unit(6.7, "feet"),
  2642. name: "Staff",
  2643. image: {
  2644. source: "./media/characters/kurrikage/staff.svg"
  2645. }
  2646. },
  2647. peek: {
  2648. height: math.unit(1.05, "feet"),
  2649. name: "Peeking",
  2650. image: {
  2651. source: "./media/characters/kurrikage/peek.svg",
  2652. bottom: 0.08
  2653. }
  2654. },
  2655. },
  2656. [
  2657. {
  2658. name: "Normal",
  2659. height: math.unit(12, "feet"),
  2660. default: true
  2661. },
  2662. {
  2663. name: "Big",
  2664. height: math.unit(20, "feet")
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(500, "feet")
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(20, "miles")
  2673. },
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(6, "feet"),
  2681. weight: math.unit(75, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/shingo/front.svg",
  2685. extra: 706/681,
  2686. bottom: 11/717
  2687. }
  2688. },
  2689. frontAlt: {
  2690. height: math.unit(6, "feet"),
  2691. weight: math.unit(75, "kg"),
  2692. name: "Front (Alt)",
  2693. image: {
  2694. source: "./media/characters/shingo/front-alt.svg",
  2695. extra: 3511 / 3338,
  2696. bottom: 0.005
  2697. }
  2698. },
  2699. paw: {
  2700. height: math.unit(1, "feet"),
  2701. name: "Paw",
  2702. image: {
  2703. source: "./media/characters/shingo/paw.svg"
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Micro",
  2710. height: math.unit(4, "inches")
  2711. },
  2712. {
  2713. name: "Normal",
  2714. height: math.unit(6, "feet"),
  2715. default: true
  2716. },
  2717. {
  2718. name: "Macro",
  2719. height: math.unit(108, "feet")
  2720. },
  2721. {
  2722. name: "Macro+",
  2723. height: math.unit(1500, "feet")
  2724. },
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2729. {
  2730. side: {
  2731. height: math.unit(6, "feet"),
  2732. weight: math.unit(75, "kg"),
  2733. name: "Side",
  2734. image: {
  2735. source: "./media/characters/aigey/side.svg"
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Macro",
  2742. height: math.unit(200, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Megamacro",
  2747. height: math.unit(100, "miles")
  2748. },
  2749. ]
  2750. )
  2751. )
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(5 + 5 / 12, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/natasha/front.svg",
  2761. extra: 859 / 824,
  2762. bottom: 23 / 879.6
  2763. }
  2764. },
  2765. frontNsfw: {
  2766. height: math.unit(5 + 5 / 12, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Front (NSFW)",
  2769. image: {
  2770. source: "./media/characters/natasha/front-nsfw.svg",
  2771. extra: 859 / 824,
  2772. bottom: 23 / 879.6
  2773. }
  2774. },
  2775. frontErect: {
  2776. height: math.unit(5 + 5 / 12, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front (Erect)",
  2779. image: {
  2780. source: "./media/characters/natasha/front-erect.svg",
  2781. extra: 859 / 824,
  2782. bottom: 23 / 879.6
  2783. }
  2784. },
  2785. back: {
  2786. height: math.unit(5 + 5 / 12, "feet"),
  2787. weight: math.unit(75, "kg"),
  2788. name: "Back",
  2789. image: {
  2790. source: "./media/characters/natasha/back.svg",
  2791. extra: 887.9 / 852.6,
  2792. bottom: 9.7 / 896.4
  2793. }
  2794. },
  2795. backAlt: {
  2796. height: math.unit(5 + 5 / 12, "feet"),
  2797. weight: math.unit(75, "kg"),
  2798. name: "Back (Alt)",
  2799. image: {
  2800. source: "./media/characters/natasha/back-alt.svg",
  2801. extra: 1236.7 / 1192,
  2802. bottom: 22.3 / 1258.2
  2803. }
  2804. },
  2805. dick: {
  2806. height: math.unit(1.772, "feet"),
  2807. name: "Dick",
  2808. image: {
  2809. source: "./media/characters/natasha/dick.svg"
  2810. }
  2811. },
  2812. paw: {
  2813. height: math.unit(0.250, "meters"),
  2814. name: "Paw",
  2815. image: {
  2816. source: "./media/characters/natasha/paw.svg"
  2817. }
  2818. },
  2819. },
  2820. [
  2821. {
  2822. name: "Normal",
  2823. height: math.unit(5 + 5 / 12, "feet")
  2824. },
  2825. {
  2826. name: "Large",
  2827. height: math.unit(12, "feet")
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(100, "feet"),
  2832. default: true
  2833. },
  2834. {
  2835. name: "Macro+",
  2836. height: math.unit(260, "feet")
  2837. },
  2838. {
  2839. name: "Macro++",
  2840. height: math.unit(1, "mile")
  2841. },
  2842. ]
  2843. ))
  2844. characterMakers.push(() => makeCharacter(
  2845. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2846. {
  2847. front: {
  2848. height: math.unit(6, "feet"),
  2849. weight: math.unit(75, "kg"),
  2850. name: "Front",
  2851. image: {
  2852. source: "./media/characters/malik/front.svg"
  2853. }
  2854. },
  2855. side: {
  2856. height: math.unit(6, "feet"),
  2857. weight: math.unit(75, "kg"),
  2858. name: "Side",
  2859. image: {
  2860. source: "./media/characters/malik/side.svg",
  2861. extra: 1.1539
  2862. }
  2863. },
  2864. back: {
  2865. height: math.unit(6, "feet"),
  2866. weight: math.unit(75, "kg"),
  2867. name: "Back",
  2868. image: {
  2869. source: "./media/characters/malik/back.svg"
  2870. }
  2871. },
  2872. },
  2873. [
  2874. {
  2875. name: "Macro",
  2876. height: math.unit(156, "feet"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Macro+",
  2881. height: math.unit(1188, "feet")
  2882. },
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2887. {
  2888. front: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Front",
  2892. image: {
  2893. source: "./media/characters/sefer/front.svg",
  2894. extra: 848 / 659,
  2895. bottom: 28.3 / 876.442
  2896. }
  2897. },
  2898. back: {
  2899. height: math.unit(6, "feet"),
  2900. weight: math.unit(75, "kg"),
  2901. name: "Back",
  2902. image: {
  2903. source: "./media/characters/sefer/back.svg",
  2904. extra: 864 / 695,
  2905. bottom: 10 / 871
  2906. }
  2907. },
  2908. frontDressed: {
  2909. height: math.unit(6, "feet"),
  2910. weight: math.unit(75, "kg"),
  2911. name: "Front (Dressed)",
  2912. image: {
  2913. source: "./media/characters/sefer/front-dressed.svg",
  2914. extra: 839 / 653,
  2915. bottom: 37.6 / 878
  2916. }
  2917. },
  2918. },
  2919. [
  2920. {
  2921. name: "Normal",
  2922. height: math.unit(6, "feet"),
  2923. default: true
  2924. },
  2925. ]
  2926. ))
  2927. characterMakers.push(() => makeCharacter(
  2928. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2929. {
  2930. body: {
  2931. height: math.unit(2.2428, "meter"),
  2932. weight: math.unit(124.738, "kg"),
  2933. name: "Body",
  2934. image: {
  2935. extra: 1225 / 1050,
  2936. source: "./media/characters/north/front.svg"
  2937. }
  2938. }
  2939. },
  2940. [
  2941. {
  2942. name: "Micro",
  2943. height: math.unit(4, "inches")
  2944. },
  2945. {
  2946. name: "Macro",
  2947. height: math.unit(63, "meters")
  2948. },
  2949. {
  2950. name: "Megamacro",
  2951. height: math.unit(101, "miles"),
  2952. default: true
  2953. }
  2954. ]
  2955. ))
  2956. characterMakers.push(() => makeCharacter(
  2957. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2958. {
  2959. angled: {
  2960. height: math.unit(4, "meter"),
  2961. weight: math.unit(150, "kg"),
  2962. name: "Angled",
  2963. image: {
  2964. source: "./media/characters/talan/angled-sfw.svg",
  2965. bottom: 29 / 3734
  2966. }
  2967. },
  2968. angledNsfw: {
  2969. height: math.unit(4, "meter"),
  2970. weight: math.unit(150, "kg"),
  2971. name: "Angled (NSFW)",
  2972. image: {
  2973. source: "./media/characters/talan/angled-nsfw.svg",
  2974. bottom: 29 / 3734
  2975. }
  2976. },
  2977. frontNsfw: {
  2978. height: math.unit(4, "meter"),
  2979. weight: math.unit(150, "kg"),
  2980. name: "Front (NSFW)",
  2981. image: {
  2982. source: "./media/characters/talan/front-nsfw.svg",
  2983. bottom: 29 / 3734
  2984. }
  2985. },
  2986. sideNsfw: {
  2987. height: math.unit(4, "meter"),
  2988. weight: math.unit(150, "kg"),
  2989. name: "Side (NSFW)",
  2990. image: {
  2991. source: "./media/characters/talan/side-nsfw.svg",
  2992. bottom: 29 / 3734
  2993. }
  2994. },
  2995. back: {
  2996. height: math.unit(4, "meter"),
  2997. weight: math.unit(150, "kg"),
  2998. name: "Back",
  2999. image: {
  3000. source: "./media/characters/talan/back.svg"
  3001. }
  3002. },
  3003. dickBottom: {
  3004. height: math.unit(0.621, "meter"),
  3005. name: "Dick (Bottom)",
  3006. image: {
  3007. source: "./media/characters/talan/dick-bottom.svg"
  3008. }
  3009. },
  3010. dickTop: {
  3011. height: math.unit(0.621, "meter"),
  3012. name: "Dick (Top)",
  3013. image: {
  3014. source: "./media/characters/talan/dick-top.svg"
  3015. }
  3016. },
  3017. dickSide: {
  3018. height: math.unit(0.305, "meter"),
  3019. name: "Dick (Side)",
  3020. image: {
  3021. source: "./media/characters/talan/dick-side.svg"
  3022. }
  3023. },
  3024. dickFront: {
  3025. height: math.unit(0.305, "meter"),
  3026. name: "Dick (Front)",
  3027. image: {
  3028. source: "./media/characters/talan/dick-front.svg"
  3029. }
  3030. },
  3031. },
  3032. [
  3033. {
  3034. name: "Normal",
  3035. height: math.unit(4, "meters")
  3036. },
  3037. {
  3038. name: "Macro",
  3039. height: math.unit(100, "meters")
  3040. },
  3041. {
  3042. name: "Megamacro",
  3043. height: math.unit(2, "miles"),
  3044. default: true
  3045. },
  3046. {
  3047. name: "Gigamacro",
  3048. height: math.unit(5000, "miles")
  3049. },
  3050. {
  3051. name: "Teramacro",
  3052. height: math.unit(100, "parsecs")
  3053. }
  3054. ]
  3055. ))
  3056. characterMakers.push(() => makeCharacter(
  3057. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3058. {
  3059. front: {
  3060. height: math.unit(2, "meter"),
  3061. weight: math.unit(90, "kg"),
  3062. name: "Front",
  3063. image: {
  3064. source: "./media/characters/gael'rathus/front.svg"
  3065. }
  3066. },
  3067. frontAlt: {
  3068. height: math.unit(2, "meter"),
  3069. weight: math.unit(90, "kg"),
  3070. name: "Front (alt)",
  3071. image: {
  3072. source: "./media/characters/gael'rathus/front-alt.svg"
  3073. }
  3074. },
  3075. frontAlt2: {
  3076. height: math.unit(2, "meter"),
  3077. weight: math.unit(90, "kg"),
  3078. name: "Front (alt 2)",
  3079. image: {
  3080. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3081. }
  3082. }
  3083. },
  3084. [
  3085. {
  3086. name: "Normal",
  3087. height: math.unit(9, "feet"),
  3088. default: true
  3089. },
  3090. {
  3091. name: "Large",
  3092. height: math.unit(25, "feet")
  3093. },
  3094. {
  3095. name: "Macro",
  3096. height: math.unit(0.25, "miles")
  3097. },
  3098. {
  3099. name: "Megamacro",
  3100. height: math.unit(10, "miles")
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3106. {
  3107. side: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(140, "kg"),
  3110. name: "Side",
  3111. image: {
  3112. source: "./media/characters/sosha/side.svg",
  3113. bottom: 0.042
  3114. }
  3115. },
  3116. },
  3117. [
  3118. {
  3119. name: "Normal",
  3120. height: math.unit(12, "feet"),
  3121. default: true
  3122. }
  3123. ]
  3124. ))
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3127. {
  3128. side: {
  3129. height: math.unit(5 + 5 / 12, "feet"),
  3130. weight: math.unit(170, "kg"),
  3131. name: "Side",
  3132. image: {
  3133. source: "./media/characters/runnola/side.svg",
  3134. extra: 741 / 448,
  3135. bottom: 0.05
  3136. }
  3137. },
  3138. },
  3139. [
  3140. {
  3141. name: "Small",
  3142. height: math.unit(3, "feet")
  3143. },
  3144. {
  3145. name: "Normal",
  3146. height: math.unit(5 + 5 / 12, "feet"),
  3147. default: true
  3148. },
  3149. {
  3150. name: "Big",
  3151. height: math.unit(10, "feet")
  3152. },
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(2, "meter"),
  3160. weight: math.unit(50, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/kurribird/front.svg",
  3164. bottom: 0.015
  3165. }
  3166. },
  3167. frontAlt: {
  3168. height: math.unit(1.5, "meter"),
  3169. weight: math.unit(50, "kg"),
  3170. name: "Front (Alt)",
  3171. image: {
  3172. source: "./media/characters/kurribird/front-alt.svg",
  3173. extra: 1.45
  3174. }
  3175. },
  3176. },
  3177. [
  3178. {
  3179. name: "Normal",
  3180. height: math.unit(7, "feet")
  3181. },
  3182. {
  3183. name: "Big",
  3184. height: math.unit(12, "feet"),
  3185. default: true
  3186. },
  3187. {
  3188. name: "Macro",
  3189. height: math.unit(1500, "feet")
  3190. },
  3191. {
  3192. name: "Megamacro",
  3193. height: math.unit(2, "miles")
  3194. }
  3195. ]
  3196. ))
  3197. characterMakers.push(() => makeCharacter(
  3198. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3199. {
  3200. front: {
  3201. height: math.unit(2, "meter"),
  3202. weight: math.unit(80, "kg"),
  3203. name: "Front",
  3204. image: {
  3205. source: "./media/characters/elbial/front.svg",
  3206. extra: 1643 / 1556,
  3207. bottom: 60.2 / 1696
  3208. }
  3209. },
  3210. side: {
  3211. height: math.unit(2, "meter"),
  3212. weight: math.unit(80, "kg"),
  3213. name: "Side",
  3214. image: {
  3215. source: "./media/characters/elbial/side.svg",
  3216. extra: 1630 / 1565,
  3217. bottom: 71.5 / 1697
  3218. }
  3219. },
  3220. back: {
  3221. height: math.unit(2, "meter"),
  3222. weight: math.unit(80, "kg"),
  3223. name: "Back",
  3224. image: {
  3225. source: "./media/characters/elbial/back.svg",
  3226. extra: 1668 / 1595,
  3227. bottom: 5.6 / 1672
  3228. }
  3229. },
  3230. frontDressed: {
  3231. height: math.unit(2, "meter"),
  3232. weight: math.unit(80, "kg"),
  3233. name: "Front (Dressed)",
  3234. image: {
  3235. source: "./media/characters/elbial/front-dressed.svg",
  3236. extra: 1653 / 1584,
  3237. bottom: 57 / 1708
  3238. }
  3239. },
  3240. genitals: {
  3241. height: math.unit(2 / 3.367, "meter"),
  3242. name: "Genitals",
  3243. image: {
  3244. source: "./media/characters/elbial/genitals.svg"
  3245. }
  3246. },
  3247. },
  3248. [
  3249. {
  3250. name: "Large",
  3251. height: math.unit(100, "feet")
  3252. },
  3253. {
  3254. name: "Macro",
  3255. height: math.unit(500, "feet"),
  3256. default: true
  3257. },
  3258. {
  3259. name: "Megamacro",
  3260. height: math.unit(10, "miles")
  3261. },
  3262. {
  3263. name: "Gigamacro",
  3264. height: math.unit(25000, "miles")
  3265. },
  3266. {
  3267. name: "Full-Size",
  3268. height: math.unit(8000000, "gigaparsecs")
  3269. }
  3270. ]
  3271. ))
  3272. characterMakers.push(() => makeCharacter(
  3273. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3274. {
  3275. front: {
  3276. height: math.unit(2, "meter"),
  3277. weight: math.unit(60, "kg"),
  3278. name: "Front",
  3279. image: {
  3280. source: "./media/characters/noah/front.svg"
  3281. }
  3282. },
  3283. talons: {
  3284. height: math.unit(0.315, "meter"),
  3285. name: "Talons",
  3286. image: {
  3287. source: "./media/characters/noah/talons.svg"
  3288. }
  3289. }
  3290. },
  3291. [
  3292. {
  3293. name: "Large",
  3294. height: math.unit(50, "feet")
  3295. },
  3296. {
  3297. name: "Macro",
  3298. height: math.unit(750, "feet"),
  3299. default: true
  3300. },
  3301. {
  3302. name: "Megamacro",
  3303. height: math.unit(50, "miles")
  3304. },
  3305. {
  3306. name: "Gigamacro",
  3307. height: math.unit(100000, "miles")
  3308. },
  3309. {
  3310. name: "Full-Size",
  3311. height: math.unit(3000000000, "miles")
  3312. }
  3313. ]
  3314. ))
  3315. characterMakers.push(() => makeCharacter(
  3316. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3317. {
  3318. front: {
  3319. height: math.unit(2, "meter"),
  3320. weight: math.unit(80, "kg"),
  3321. name: "Front",
  3322. image: {
  3323. source: "./media/characters/natalya/front.svg"
  3324. }
  3325. },
  3326. back: {
  3327. height: math.unit(2, "meter"),
  3328. weight: math.unit(80, "kg"),
  3329. name: "Back",
  3330. image: {
  3331. source: "./media/characters/natalya/back.svg"
  3332. }
  3333. }
  3334. },
  3335. [
  3336. {
  3337. name: "Normal",
  3338. height: math.unit(150, "feet"),
  3339. default: true
  3340. },
  3341. {
  3342. name: "Megamacro",
  3343. height: math.unit(5, "miles")
  3344. },
  3345. {
  3346. name: "Full-Size",
  3347. height: math.unit(600, "kiloparsecs")
  3348. }
  3349. ]
  3350. ))
  3351. characterMakers.push(() => makeCharacter(
  3352. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3353. {
  3354. front: {
  3355. height: math.unit(2, "meter"),
  3356. weight: math.unit(50, "kg"),
  3357. name: "Front",
  3358. image: {
  3359. source: "./media/characters/erestrebah/front.svg",
  3360. extra: 208 / 193,
  3361. bottom: 0.055
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(50, "kg"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/erestrebah/back.svg",
  3370. extra: 1.3
  3371. }
  3372. }
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(10, "feet")
  3378. },
  3379. {
  3380. name: "Large",
  3381. height: math.unit(50, "feet"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(300, "feet")
  3387. },
  3388. {
  3389. name: "Macro+",
  3390. height: math.unit(750, "feet")
  3391. },
  3392. {
  3393. name: "Megamacro",
  3394. height: math.unit(3, "miles")
  3395. }
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(2, "meter"),
  3403. weight: math.unit(80, "kg"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/jennifer/front.svg",
  3407. bottom: 0.11,
  3408. extra: 1.16
  3409. }
  3410. },
  3411. frontAlt: {
  3412. height: math.unit(2, "meter"),
  3413. weight: math.unit(80, "kg"),
  3414. name: "Front (Alt)",
  3415. image: {
  3416. source: "./media/characters/jennifer/front-alt.svg"
  3417. }
  3418. }
  3419. },
  3420. [
  3421. {
  3422. name: "Canon Height",
  3423. height: math.unit(120, "feet"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Macro+",
  3428. height: math.unit(300, "feet")
  3429. },
  3430. {
  3431. name: "Megamacro",
  3432. height: math.unit(20000, "feet")
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(50, "kg"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/kalista/front.svg",
  3445. extra: 1947 / 1700,
  3446. bottom: 76.6 / 1412.98
  3447. }
  3448. },
  3449. back: {
  3450. height: math.unit(2, "meter"),
  3451. weight: math.unit(50, "kg"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/kalista/back.svg",
  3455. extra: 1366 / 1156,
  3456. bottom: 33.9 / 1362.78
  3457. }
  3458. }
  3459. },
  3460. [
  3461. {
  3462. name: "Uncomfortably Small",
  3463. height: math.unit(10, "feet")
  3464. },
  3465. {
  3466. name: "Small",
  3467. height: math.unit(30, "feet")
  3468. },
  3469. {
  3470. name: "Macro",
  3471. height: math.unit(100, "feet"),
  3472. default: true
  3473. },
  3474. {
  3475. name: "Macro+",
  3476. height: math.unit(2000, "feet")
  3477. },
  3478. {
  3479. name: "True Form",
  3480. height: math.unit(8924, "miles")
  3481. }
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(120, "kg"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/ggv/front.svg"
  3493. }
  3494. },
  3495. side: {
  3496. height: math.unit(2, "meter"),
  3497. weight: math.unit(120, "kg"),
  3498. name: "Side",
  3499. image: {
  3500. source: "./media/characters/ggv/side.svg"
  3501. }
  3502. }
  3503. },
  3504. [
  3505. {
  3506. name: "Extremely Puny",
  3507. height: math.unit(9 + 5 / 12, "feet")
  3508. },
  3509. {
  3510. name: "Horribly Small",
  3511. height: math.unit(47.7, "miles"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Reasonably Sized",
  3516. height: math.unit(25000, "parsecs")
  3517. },
  3518. {
  3519. name: "Slightly Uncompressed",
  3520. height: math.unit(7.77e31, "parsecs")
  3521. },
  3522. {
  3523. name: "Omniversal",
  3524. height: math.unit(1e300, "meters")
  3525. },
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(75, "lb"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/napalm/front.svg"
  3537. }
  3538. },
  3539. back: {
  3540. height: math.unit(2, "meter"),
  3541. weight: math.unit(75, "lb"),
  3542. name: "Back",
  3543. image: {
  3544. source: "./media/characters/napalm/back.svg"
  3545. }
  3546. }
  3547. },
  3548. [
  3549. {
  3550. name: "Standard",
  3551. height: math.unit(55, "feet"),
  3552. default: true
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(7 + 5 / 6, "feet"),
  3561. weight: math.unit(325, "lb"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/asana/front.svg",
  3565. extra: 1133 / 1060,
  3566. bottom: 15.2 / 1148.6
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(7 + 5 / 6, "feet"),
  3571. weight: math.unit(325, "lb"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/asana/back.svg",
  3575. extra: 1114 / 1043,
  3576. bottom: 5 / 1120
  3577. }
  3578. },
  3579. dressedDark: {
  3580. height: math.unit(7 + 5 / 6, "feet"),
  3581. weight: math.unit(325, "lb"),
  3582. name: "Dressed (Dark)",
  3583. image: {
  3584. source: "./media/characters/asana/dressed-dark.svg",
  3585. extra: 1133 / 1060,
  3586. bottom: 15.2 / 1148.6
  3587. }
  3588. },
  3589. dressedLight: {
  3590. height: math.unit(7 + 5 / 6, "feet"),
  3591. weight: math.unit(325, "lb"),
  3592. name: "Dressed (Light)",
  3593. image: {
  3594. source: "./media/characters/asana/dressed-light.svg",
  3595. extra: 1133 / 1060,
  3596. bottom: 15.2 / 1148.6
  3597. }
  3598. },
  3599. },
  3600. [
  3601. {
  3602. name: "Standard",
  3603. height: math.unit(7 + 5 / 6, "feet"),
  3604. default: true
  3605. },
  3606. {
  3607. name: "Large",
  3608. height: math.unit(10, "meters")
  3609. },
  3610. {
  3611. name: "Macro",
  3612. height: math.unit(2500, "meters")
  3613. },
  3614. {
  3615. name: "Megamacro",
  3616. height: math.unit(5e6, "meters")
  3617. },
  3618. {
  3619. name: "Examacro",
  3620. height: math.unit(5e12, "lightyears")
  3621. },
  3622. {
  3623. name: "Max Size",
  3624. height: math.unit(1e31, "lightyears")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(60, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/ebony/front.svg",
  3637. bottom: 0.03,
  3638. extra: 1045 / 810 + 0.03
  3639. }
  3640. },
  3641. side: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(60, "kg"),
  3644. name: "Side",
  3645. image: {
  3646. source: "./media/characters/ebony/side.svg",
  3647. bottom: 0.03,
  3648. extra: 1045 / 810 + 0.03
  3649. }
  3650. },
  3651. back: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(60, "kg"),
  3654. name: "Back",
  3655. image: {
  3656. source: "./media/characters/ebony/back.svg",
  3657. bottom: 0.01,
  3658. extra: 1045 / 810 + 0.01
  3659. }
  3660. },
  3661. },
  3662. [
  3663. // TODO check why I did this lol
  3664. {
  3665. name: "Standard",
  3666. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3667. default: true
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(200, "feet")
  3672. },
  3673. {
  3674. name: "Gigamacro",
  3675. height: math.unit(13000, "km")
  3676. }
  3677. ]
  3678. ))
  3679. characterMakers.push(() => makeCharacter(
  3680. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3681. {
  3682. front: {
  3683. height: math.unit(6, "feet"),
  3684. weight: math.unit(175, "lb"),
  3685. name: "Front",
  3686. image: {
  3687. source: "./media/characters/mountain/front.svg",
  3688. extra: 972 / 955,
  3689. bottom: 64 / 1036.6
  3690. }
  3691. },
  3692. back: {
  3693. height: math.unit(6, "feet"),
  3694. weight: math.unit(175, "lb"),
  3695. name: "Back",
  3696. image: {
  3697. source: "./media/characters/mountain/back.svg",
  3698. extra: 970 / 950,
  3699. bottom: 28.25 / 999
  3700. }
  3701. },
  3702. },
  3703. [
  3704. {
  3705. name: "Large",
  3706. height: math.unit(20, "meters")
  3707. },
  3708. {
  3709. name: "Macro",
  3710. height: math.unit(300, "meters")
  3711. },
  3712. {
  3713. name: "Gigamacro",
  3714. height: math.unit(10000, "km"),
  3715. default: true
  3716. },
  3717. {
  3718. name: "Examacro",
  3719. height: math.unit(10e9, "lightyears")
  3720. }
  3721. ]
  3722. ))
  3723. characterMakers.push(() => makeCharacter(
  3724. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3725. {
  3726. front: {
  3727. height: math.unit(8, "feet"),
  3728. weight: math.unit(500, "lb"),
  3729. name: "Front",
  3730. image: {
  3731. source: "./media/characters/rick/front.svg"
  3732. }
  3733. }
  3734. },
  3735. [
  3736. {
  3737. name: "Normal",
  3738. height: math.unit(8, "feet"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Macro",
  3743. height: math.unit(5, "km")
  3744. }
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(8, "feet"),
  3752. weight: math.unit(120, "lb"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/ona/front.svg"
  3756. }
  3757. },
  3758. frontAlt: {
  3759. height: math.unit(8, "feet"),
  3760. weight: math.unit(120, "lb"),
  3761. name: "Front (Alt)",
  3762. image: {
  3763. source: "./media/characters/ona/front-alt.svg"
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(8, "feet"),
  3768. weight: math.unit(120, "lb"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/ona/back.svg"
  3772. }
  3773. },
  3774. foot: {
  3775. height: math.unit(1.1, "feet"),
  3776. name: "Foot",
  3777. image: {
  3778. source: "./media/characters/ona/foot.svg"
  3779. }
  3780. }
  3781. },
  3782. [
  3783. {
  3784. name: "Megamacro",
  3785. height: math.unit(70, "km"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Gigamacro",
  3790. height: math.unit(681818, "miles")
  3791. },
  3792. {
  3793. name: "Examacro",
  3794. height: math.unit(3800000, "lightyears")
  3795. },
  3796. ]
  3797. ))
  3798. characterMakers.push(() => makeCharacter(
  3799. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3800. {
  3801. front: {
  3802. height: math.unit(12, "feet"),
  3803. weight: math.unit(3000, "lb"),
  3804. name: "Front",
  3805. image: {
  3806. source: "./media/characters/mech/front.svg",
  3807. extra: 2900 / 2770,
  3808. bottom: 110 / 3010
  3809. }
  3810. },
  3811. back: {
  3812. height: math.unit(12, "feet"),
  3813. weight: math.unit(3000, "lb"),
  3814. name: "Back",
  3815. image: {
  3816. source: "./media/characters/mech/back.svg",
  3817. extra: 3011 / 2890,
  3818. bottom: 94 / 3105
  3819. }
  3820. },
  3821. maw: {
  3822. height: math.unit(3.07, "feet"),
  3823. name: "Maw",
  3824. image: {
  3825. source: "./media/characters/mech/maw.svg"
  3826. }
  3827. },
  3828. head: {
  3829. height: math.unit(2.82, "feet"),
  3830. name: "Head",
  3831. image: {
  3832. source: "./media/characters/mech/head.svg"
  3833. }
  3834. },
  3835. dick: {
  3836. height: math.unit(1.43, "feet"),
  3837. name: "Dick",
  3838. image: {
  3839. source: "./media/characters/mech/dick.svg"
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Normal",
  3846. height: math.unit(12, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(300, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Macro+",
  3855. height: math.unit(1500, "feet")
  3856. },
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(1.3, "meter"),
  3864. weight: math.unit(30, "kg"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/gregory/front.svg",
  3868. }
  3869. }
  3870. },
  3871. [
  3872. {
  3873. name: "Normal",
  3874. height: math.unit(1.3, "meter"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Macro",
  3879. height: math.unit(20, "meter")
  3880. }
  3881. ]
  3882. ))
  3883. characterMakers.push(() => makeCharacter(
  3884. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3885. {
  3886. front: {
  3887. height: math.unit(2.8, "meter"),
  3888. weight: math.unit(200, "kg"),
  3889. name: "Front",
  3890. image: {
  3891. source: "./media/characters/elory/front.svg",
  3892. }
  3893. }
  3894. },
  3895. [
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(2.8, "meter"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Macro",
  3903. height: math.unit(38, "meter")
  3904. }
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3909. {
  3910. front: {
  3911. height: math.unit(470, "feet"),
  3912. weight: math.unit(924, "tons"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/angelpatamon/front.svg",
  3916. }
  3917. }
  3918. },
  3919. [
  3920. {
  3921. name: "Normal",
  3922. height: math.unit(470, "feet"),
  3923. default: true
  3924. },
  3925. {
  3926. name: "Deity Size I",
  3927. height: math.unit(28651.2, "km")
  3928. },
  3929. {
  3930. name: "Deity Size II",
  3931. height: math.unit(171907.2, "km")
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3937. {
  3938. side: {
  3939. height: math.unit(7.2, "meter"),
  3940. weight: math.unit(8.2, "tons"),
  3941. name: "Side",
  3942. image: {
  3943. source: "./media/characters/cryae/side.svg",
  3944. extra: 3500 / 1500
  3945. }
  3946. }
  3947. },
  3948. [
  3949. {
  3950. name: "Normal",
  3951. height: math.unit(7.2, "meter"),
  3952. default: true
  3953. }
  3954. ]
  3955. ))
  3956. characterMakers.push(() => makeCharacter(
  3957. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3958. {
  3959. front: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(175, "lb"),
  3962. name: "Front",
  3963. image: {
  3964. source: "./media/characters/xera/front.svg",
  3965. extra: 2377 / 1972,
  3966. bottom: 75.5 / 2452
  3967. }
  3968. },
  3969. side: {
  3970. height: math.unit(6, "feet"),
  3971. weight: math.unit(175, "lb"),
  3972. name: "Side",
  3973. image: {
  3974. source: "./media/characters/xera/side.svg",
  3975. extra: 2345 / 2019,
  3976. bottom: 39.7 / 2384
  3977. }
  3978. },
  3979. back: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(175, "lb"),
  3982. name: "Back",
  3983. image: {
  3984. source: "./media/characters/xera/back.svg",
  3985. extra: 2095 / 1984,
  3986. bottom: 67 / 2166
  3987. }
  3988. },
  3989. },
  3990. [
  3991. {
  3992. name: "Small",
  3993. height: math.unit(10, "feet")
  3994. },
  3995. {
  3996. name: "Macro",
  3997. height: math.unit(500, "meters"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Macro+",
  4002. height: math.unit(10, "km")
  4003. },
  4004. {
  4005. name: "Gigamacro",
  4006. height: math.unit(25000, "km")
  4007. },
  4008. {
  4009. name: "Teramacro",
  4010. height: math.unit(3e6, "km")
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(6, "feet"),
  4019. weight: math.unit(175, "lb"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/nebula/front.svg",
  4023. extra: 2566 / 2362,
  4024. bottom: 81 / 2644
  4025. }
  4026. }
  4027. },
  4028. [
  4029. {
  4030. name: "Small",
  4031. height: math.unit(4.5, "meters")
  4032. },
  4033. {
  4034. name: "Macro",
  4035. height: math.unit(1500, "meters"),
  4036. default: true
  4037. },
  4038. {
  4039. name: "Megamacro",
  4040. height: math.unit(150, "km")
  4041. },
  4042. {
  4043. name: "Gigamacro",
  4044. height: math.unit(27000, "km")
  4045. }
  4046. ]
  4047. ))
  4048. characterMakers.push(() => makeCharacter(
  4049. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4050. {
  4051. front: {
  4052. height: math.unit(6, "feet"),
  4053. weight: math.unit(225, "lb"),
  4054. name: "Front",
  4055. image: {
  4056. source: "./media/characters/abysgar/front.svg"
  4057. }
  4058. }
  4059. },
  4060. [
  4061. {
  4062. name: "Small",
  4063. height: math.unit(4.5, "meters")
  4064. },
  4065. {
  4066. name: "Macro",
  4067. height: math.unit(1250, "meters"),
  4068. default: true
  4069. },
  4070. {
  4071. name: "Megamacro",
  4072. height: math.unit(125, "km")
  4073. },
  4074. {
  4075. name: "Gigamacro",
  4076. height: math.unit(26000, "km")
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(180, "lb"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/yakuz/front.svg"
  4089. }
  4090. }
  4091. },
  4092. [
  4093. {
  4094. name: "Small",
  4095. height: math.unit(5, "meters")
  4096. },
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(1500, "meters"),
  4100. default: true
  4101. },
  4102. {
  4103. name: "Megamacro",
  4104. height: math.unit(200, "km")
  4105. },
  4106. {
  4107. name: "Gigamacro",
  4108. height: math.unit(100000, "km")
  4109. }
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4114. {
  4115. front: {
  4116. height: math.unit(6, "feet"),
  4117. weight: math.unit(175, "lb"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/mirova/front.svg",
  4121. extra: 3334 / 3071,
  4122. bottom: 42 / 3375.6
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Small",
  4129. height: math.unit(5, "meters")
  4130. },
  4131. {
  4132. name: "Macro",
  4133. height: math.unit(900, "meters"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Megamacro",
  4138. height: math.unit(135, "km")
  4139. },
  4140. {
  4141. name: "Gigamacro",
  4142. height: math.unit(20000, "km")
  4143. }
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4148. {
  4149. side: {
  4150. height: math.unit(28.35, "feet"),
  4151. weight: math.unit(99.75, "tons"),
  4152. name: "Side",
  4153. image: {
  4154. source: "./media/characters/asana-mech/side.svg",
  4155. extra: 923 / 699,
  4156. bottom: 50 / 975
  4157. }
  4158. },
  4159. chaingun: {
  4160. height: math.unit(7, "feet"),
  4161. weight: math.unit(2400, "lb"),
  4162. name: "Chaingun",
  4163. image: {
  4164. source: "./media/characters/asana-mech/chaingun.svg"
  4165. }
  4166. },
  4167. laser: {
  4168. height: math.unit(7.12, "feet"),
  4169. weight: math.unit(2000, "lb"),
  4170. name: "Laser",
  4171. image: {
  4172. source: "./media/characters/asana-mech/laser.svg"
  4173. }
  4174. },
  4175. },
  4176. [
  4177. {
  4178. name: "Normal",
  4179. height: math.unit(28.35, "feet"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Macro",
  4184. height: math.unit(2500, "feet")
  4185. },
  4186. {
  4187. name: "Megamacro",
  4188. height: math.unit(25, "miles")
  4189. },
  4190. {
  4191. name: "Examacro",
  4192. height: math.unit(6e8, "lightyears")
  4193. },
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(5, "meters"),
  4201. weight: math.unit(1000, "kg"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/asche/front.svg",
  4205. extra: 1258 / 1190,
  4206. bottom: 47 / 1305
  4207. }
  4208. },
  4209. frontUnderwear: {
  4210. height: math.unit(5, "meters"),
  4211. weight: math.unit(1000, "kg"),
  4212. name: "Front (Underwear)",
  4213. image: {
  4214. source: "./media/characters/asche/front-underwear.svg",
  4215. extra: 1258 / 1190,
  4216. bottom: 47 / 1305
  4217. }
  4218. },
  4219. frontDressed: {
  4220. height: math.unit(5, "meters"),
  4221. weight: math.unit(1000, "kg"),
  4222. name: "Front (Dressed)",
  4223. image: {
  4224. source: "./media/characters/asche/front-dressed.svg",
  4225. extra: 1258 / 1190,
  4226. bottom: 47 / 1305
  4227. }
  4228. },
  4229. frontArmor: {
  4230. height: math.unit(5, "meters"),
  4231. weight: math.unit(1000, "kg"),
  4232. name: "Front (Armored)",
  4233. image: {
  4234. source: "./media/characters/asche/front-armored.svg",
  4235. extra: 1374 / 1308,
  4236. bottom: 23 / 1397
  4237. }
  4238. },
  4239. mp724: {
  4240. height: math.unit(0.96, "meters"),
  4241. weight: math.unit(38, "kg"),
  4242. name: "H&K MP724",
  4243. image: {
  4244. source: "./media/characters/asche/h&k-mp724.svg"
  4245. }
  4246. },
  4247. side: {
  4248. height: math.unit(5, "meters"),
  4249. weight: math.unit(1000, "kg"),
  4250. name: "Side",
  4251. image: {
  4252. source: "./media/characters/asche/side.svg",
  4253. extra: 1717 / 1609,
  4254. bottom: 0.005
  4255. }
  4256. },
  4257. back: {
  4258. height: math.unit(5, "meters"),
  4259. weight: math.unit(1000, "kg"),
  4260. name: "Back",
  4261. image: {
  4262. source: "./media/characters/asche/back.svg",
  4263. extra: 1570 / 1501
  4264. }
  4265. },
  4266. },
  4267. [
  4268. {
  4269. name: "DEFCON 5",
  4270. height: math.unit(5, "meters")
  4271. },
  4272. {
  4273. name: "DEFCON 4",
  4274. height: math.unit(500, "meters"),
  4275. default: true
  4276. },
  4277. {
  4278. name: "DEFCON 3",
  4279. height: math.unit(5, "km")
  4280. },
  4281. {
  4282. name: "DEFCON 2",
  4283. height: math.unit(500, "km")
  4284. },
  4285. {
  4286. name: "DEFCON 1",
  4287. height: math.unit(500000, "km")
  4288. },
  4289. {
  4290. name: "DEFCON 0",
  4291. height: math.unit(3, "gigaparsecs")
  4292. },
  4293. ]
  4294. ))
  4295. characterMakers.push(() => makeCharacter(
  4296. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4297. {
  4298. front: {
  4299. height: math.unit(2, "meters"),
  4300. weight: math.unit(76, "kg"),
  4301. name: "Front",
  4302. image: {
  4303. source: "./media/characters/gale/front.svg"
  4304. }
  4305. },
  4306. frontAlt1: {
  4307. height: math.unit(2, "meters"),
  4308. weight: math.unit(76, "kg"),
  4309. name: "Front (Alt 1)",
  4310. image: {
  4311. source: "./media/characters/gale/front-alt-1.svg"
  4312. }
  4313. },
  4314. frontAlt2: {
  4315. height: math.unit(2, "meters"),
  4316. weight: math.unit(76, "kg"),
  4317. name: "Front (Alt 2)",
  4318. image: {
  4319. source: "./media/characters/gale/front-alt-2.svg"
  4320. }
  4321. },
  4322. },
  4323. [
  4324. {
  4325. name: "Normal",
  4326. height: math.unit(7, "feet")
  4327. },
  4328. {
  4329. name: "Macro",
  4330. height: math.unit(150, "feet"),
  4331. default: true
  4332. },
  4333. {
  4334. name: "Macro+",
  4335. height: math.unit(300, "feet")
  4336. },
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(2, "meters"),
  4344. weight: math.unit(76, "kg"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/draylen/front.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Macro",
  4354. height: math.unit(150, "feet"),
  4355. default: true
  4356. }
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(7 + 9 / 12, "feet"),
  4364. weight: math.unit(379, "lbs"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/chez/front.svg"
  4368. }
  4369. },
  4370. side: {
  4371. height: math.unit(7 + 9 / 12, "feet"),
  4372. weight: math.unit(379, "lbs"),
  4373. name: "Side",
  4374. image: {
  4375. source: "./media/characters/chez/side.svg"
  4376. }
  4377. }
  4378. },
  4379. [
  4380. {
  4381. name: "Normal",
  4382. height: math.unit(7 + 9 / 12, "feet"),
  4383. default: true
  4384. },
  4385. {
  4386. name: "God King",
  4387. height: math.unit(9750000, "meters")
  4388. }
  4389. ]
  4390. ))
  4391. characterMakers.push(() => makeCharacter(
  4392. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4393. {
  4394. front: {
  4395. height: math.unit(6, "feet"),
  4396. weight: math.unit(275, "lbs"),
  4397. name: "Front",
  4398. image: {
  4399. source: "./media/characters/kaylum/front.svg",
  4400. bottom: 0.01,
  4401. extra: 1166 / 1031
  4402. }
  4403. },
  4404. frontWingless: {
  4405. height: math.unit(6, "feet"),
  4406. weight: math.unit(275, "lbs"),
  4407. name: "Front (Wingless)",
  4408. image: {
  4409. source: "./media/characters/kaylum/front-wingless.svg",
  4410. bottom: 0.01,
  4411. extra: 1117 / 1031
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Normal",
  4418. height: math.unit(3.05, "meters")
  4419. },
  4420. {
  4421. name: "Master",
  4422. height: math.unit(5.5, "meters")
  4423. },
  4424. {
  4425. name: "Rampage",
  4426. height: math.unit(19, "meters")
  4427. },
  4428. {
  4429. name: "Macro Lite",
  4430. height: math.unit(37, "meters")
  4431. },
  4432. {
  4433. name: "Hyper Predator",
  4434. height: math.unit(61, "meters")
  4435. },
  4436. {
  4437. name: "Macro",
  4438. height: math.unit(138, "meters"),
  4439. default: true
  4440. }
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4445. {
  4446. front: {
  4447. height: math.unit(6, "feet"),
  4448. weight: math.unit(150, "lbs"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/geta/front.svg"
  4452. }
  4453. }
  4454. },
  4455. [
  4456. {
  4457. name: "Micro",
  4458. height: math.unit(3, "inches"),
  4459. default: true
  4460. },
  4461. {
  4462. name: "Normal",
  4463. height: math.unit(5 + 5 / 12, "feet")
  4464. }
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(6, "feet"),
  4472. weight: math.unit(300, "lbs"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/tyrnn/front.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Main Height",
  4482. height: math.unit(355, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Fave. Height",
  4487. height: math.unit(2400, "feet")
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(6, "feet"),
  4496. weight: math.unit(300, "lbs"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/appledectomy/front.svg"
  4500. }
  4501. }
  4502. },
  4503. [
  4504. {
  4505. name: "Macro",
  4506. height: math.unit(2500, "feet")
  4507. },
  4508. {
  4509. name: "Megamacro",
  4510. height: math.unit(50, "miles"),
  4511. default: true
  4512. },
  4513. {
  4514. name: "Gigamacro",
  4515. height: math.unit(5000, "miles")
  4516. },
  4517. {
  4518. name: "Teramacro",
  4519. height: math.unit(250000, "miles")
  4520. },
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4525. {
  4526. front: {
  4527. height: math.unit(6, "feet"),
  4528. weight: math.unit(200, "lbs"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/vulpes/front.svg",
  4532. extra: 573 / 543,
  4533. bottom: 0.033
  4534. }
  4535. },
  4536. side: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(200, "lbs"),
  4539. name: "Side",
  4540. image: {
  4541. source: "./media/characters/vulpes/side.svg",
  4542. extra: 577 / 549,
  4543. bottom: 11 / 588
  4544. }
  4545. },
  4546. back: {
  4547. height: math.unit(6, "feet"),
  4548. weight: math.unit(200, "lbs"),
  4549. name: "Back",
  4550. image: {
  4551. source: "./media/characters/vulpes/back.svg",
  4552. extra: 573 / 549,
  4553. bottom: 20 / 593
  4554. }
  4555. },
  4556. feet: {
  4557. height: math.unit(1.276, "feet"),
  4558. name: "Feet",
  4559. image: {
  4560. source: "./media/characters/vulpes/feet.svg"
  4561. }
  4562. },
  4563. maw: {
  4564. height: math.unit(1.18, "feet"),
  4565. name: "Maw",
  4566. image: {
  4567. source: "./media/characters/vulpes/maw.svg"
  4568. }
  4569. },
  4570. },
  4571. [
  4572. {
  4573. name: "Micro",
  4574. height: math.unit(2, "inches")
  4575. },
  4576. {
  4577. name: "Normal",
  4578. height: math.unit(6.3, "feet")
  4579. },
  4580. {
  4581. name: "Macro",
  4582. height: math.unit(850, "feet")
  4583. },
  4584. {
  4585. name: "Megamacro",
  4586. height: math.unit(7500, "feet"),
  4587. default: true
  4588. },
  4589. {
  4590. name: "Gigamacro",
  4591. height: math.unit(570000, "miles")
  4592. }
  4593. ]
  4594. ))
  4595. characterMakers.push(() => makeCharacter(
  4596. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4597. {
  4598. front: {
  4599. height: math.unit(6, "feet"),
  4600. weight: math.unit(210, "lbs"),
  4601. name: "Front",
  4602. image: {
  4603. source: "./media/characters/rain-fallen/front.svg"
  4604. }
  4605. },
  4606. side: {
  4607. height: math.unit(6, "feet"),
  4608. weight: math.unit(210, "lbs"),
  4609. name: "Side",
  4610. image: {
  4611. source: "./media/characters/rain-fallen/side.svg"
  4612. }
  4613. },
  4614. back: {
  4615. height: math.unit(6, "feet"),
  4616. weight: math.unit(210, "lbs"),
  4617. name: "Back",
  4618. image: {
  4619. source: "./media/characters/rain-fallen/back.svg"
  4620. }
  4621. },
  4622. feral: {
  4623. height: math.unit(9, "feet"),
  4624. weight: math.unit(700, "lbs"),
  4625. name: "Feral",
  4626. image: {
  4627. source: "./media/characters/rain-fallen/feral.svg"
  4628. }
  4629. },
  4630. },
  4631. [
  4632. {
  4633. name: "Meddling with Mortals",
  4634. height: math.unit(8 + 8/12, "feet")
  4635. },
  4636. {
  4637. name: "Normal",
  4638. height: math.unit(5, "meter")
  4639. },
  4640. {
  4641. name: "Macro",
  4642. height: math.unit(150, "meter"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Megamacro",
  4647. height: math.unit(278e6, "meter")
  4648. },
  4649. {
  4650. name: "Gigamacro",
  4651. height: math.unit(2e9, "meter")
  4652. },
  4653. {
  4654. name: "Teramacro",
  4655. height: math.unit(8e12, "meter")
  4656. },
  4657. {
  4658. name: "Devourer",
  4659. height: math.unit(14, "zettameters")
  4660. },
  4661. {
  4662. name: "Scarlet King",
  4663. height: math.unit(18, "yottameters")
  4664. },
  4665. {
  4666. name: "Void",
  4667. height: math.unit(1e88, "yottameters")
  4668. }
  4669. ]
  4670. ))
  4671. characterMakers.push(() => makeCharacter(
  4672. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4673. {
  4674. standing: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(180, "lbs"),
  4677. name: "Standing",
  4678. image: {
  4679. source: "./media/characters/zaakira/standing.svg",
  4680. extra: 1599/1504,
  4681. bottom: 39/1638
  4682. }
  4683. },
  4684. laying: {
  4685. height: math.unit(3, "feet"),
  4686. weight: math.unit(180, "lbs"),
  4687. name: "Laying",
  4688. image: {
  4689. source: "./media/characters/zaakira/laying.svg"
  4690. }
  4691. },
  4692. },
  4693. [
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(12, "feet")
  4697. },
  4698. {
  4699. name: "Macro",
  4700. height: math.unit(279, "feet"),
  4701. default: true
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4707. {
  4708. femSfw: {
  4709. height: math.unit(8, "feet"),
  4710. weight: math.unit(350, "lb"),
  4711. name: "Fem",
  4712. image: {
  4713. source: "./media/characters/sigvald/fem-sfw.svg",
  4714. extra: 182 / 164,
  4715. bottom: 8.7 / 190.5
  4716. }
  4717. },
  4718. femNsfw: {
  4719. height: math.unit(8, "feet"),
  4720. weight: math.unit(350, "lb"),
  4721. name: "Fem (NSFW)",
  4722. image: {
  4723. source: "./media/characters/sigvald/fem-nsfw.svg",
  4724. extra: 182 / 164,
  4725. bottom: 8.7 / 190.5
  4726. }
  4727. },
  4728. maleNsfw: {
  4729. height: math.unit(8, "feet"),
  4730. weight: math.unit(350, "lb"),
  4731. name: "Male (NSFW)",
  4732. image: {
  4733. source: "./media/characters/sigvald/male-nsfw.svg",
  4734. extra: 182 / 164,
  4735. bottom: 8.7 / 190.5
  4736. }
  4737. },
  4738. hermNsfw: {
  4739. height: math.unit(8, "feet"),
  4740. weight: math.unit(350, "lb"),
  4741. name: "Herm (NSFW)",
  4742. image: {
  4743. source: "./media/characters/sigvald/herm-nsfw.svg",
  4744. extra: 182 / 164,
  4745. bottom: 8.7 / 190.5
  4746. }
  4747. },
  4748. dick: {
  4749. height: math.unit(2.36, "feet"),
  4750. name: "Dick",
  4751. image: {
  4752. source: "./media/characters/sigvald/dick.svg"
  4753. }
  4754. },
  4755. eye: {
  4756. height: math.unit(0.31, "feet"),
  4757. name: "Eye",
  4758. image: {
  4759. source: "./media/characters/sigvald/eye.svg"
  4760. }
  4761. },
  4762. mouth: {
  4763. height: math.unit(0.92, "feet"),
  4764. name: "Mouth",
  4765. image: {
  4766. source: "./media/characters/sigvald/mouth.svg"
  4767. }
  4768. },
  4769. paws: {
  4770. height: math.unit(2.2, "feet"),
  4771. name: "Paws",
  4772. image: {
  4773. source: "./media/characters/sigvald/paws.svg"
  4774. }
  4775. }
  4776. },
  4777. [
  4778. {
  4779. name: "Normal",
  4780. height: math.unit(8, "feet")
  4781. },
  4782. {
  4783. name: "Large",
  4784. height: math.unit(12, "feet")
  4785. },
  4786. {
  4787. name: "Larger",
  4788. height: math.unit(20, "feet")
  4789. },
  4790. {
  4791. name: "Macro",
  4792. height: math.unit(150, "feet")
  4793. },
  4794. {
  4795. name: "Macro+",
  4796. height: math.unit(200, "feet"),
  4797. default: true
  4798. },
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4803. {
  4804. side: {
  4805. height: math.unit(12, "feet"),
  4806. weight: math.unit(2000, "kg"),
  4807. name: "Side",
  4808. image: {
  4809. source: "./media/characters/scott/side.svg",
  4810. extra: 754 / 724,
  4811. bottom: 0.069
  4812. }
  4813. },
  4814. upright: {
  4815. height: math.unit(12, "feet"),
  4816. weight: math.unit(2000, "kg"),
  4817. name: "Upright",
  4818. image: {
  4819. source: "./media/characters/scott/upright.svg",
  4820. extra: 3881 / 3722,
  4821. bottom: 0.05
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "Normal",
  4828. height: math.unit(12, "feet"),
  4829. default: true
  4830. },
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4835. {
  4836. side: {
  4837. height: math.unit(8, "meters"),
  4838. weight: math.unit(84755, "lbs"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/tobias/side.svg",
  4842. extra: 1474 / 1096,
  4843. bottom: 38.9 / 1513.1235
  4844. }
  4845. },
  4846. },
  4847. [
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(8, "meters"),
  4851. default: true
  4852. },
  4853. ]
  4854. ))
  4855. characterMakers.push(() => makeCharacter(
  4856. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4857. {
  4858. front: {
  4859. height: math.unit(5.5, "feet"),
  4860. weight: math.unit(400, "lbs"),
  4861. name: "Front",
  4862. image: {
  4863. source: "./media/characters/kieran/front.svg",
  4864. extra: 2694 / 2364,
  4865. bottom: 217 / 2908
  4866. }
  4867. },
  4868. side: {
  4869. height: math.unit(5.5, "feet"),
  4870. weight: math.unit(400, "lbs"),
  4871. name: "Side",
  4872. image: {
  4873. source: "./media/characters/kieran/side.svg",
  4874. extra: 875 / 777,
  4875. bottom: 84.6 / 959
  4876. }
  4877. },
  4878. },
  4879. [
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(5.5, "feet"),
  4883. default: true
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4889. {
  4890. side: {
  4891. height: math.unit(2, "meters"),
  4892. weight: math.unit(70, "kg"),
  4893. name: "Side",
  4894. image: {
  4895. source: "./media/characters/sanya/side.svg",
  4896. bottom: 0.02,
  4897. extra: 1.02
  4898. }
  4899. },
  4900. },
  4901. [
  4902. {
  4903. name: "Small",
  4904. height: math.unit(2, "meters")
  4905. },
  4906. {
  4907. name: "Normal",
  4908. height: math.unit(3, "meters")
  4909. },
  4910. {
  4911. name: "Macro",
  4912. height: math.unit(16, "meters"),
  4913. default: true
  4914. },
  4915. ]
  4916. ))
  4917. characterMakers.push(() => makeCharacter(
  4918. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4919. {
  4920. front: {
  4921. height: math.unit(2, "meters"),
  4922. weight: math.unit(120, "kg"),
  4923. name: "Front",
  4924. image: {
  4925. source: "./media/characters/miranda/front.svg",
  4926. extra: 195 / 185,
  4927. bottom: 10.9 / 206.5
  4928. }
  4929. },
  4930. back: {
  4931. height: math.unit(2, "meters"),
  4932. weight: math.unit(120, "kg"),
  4933. name: "Back",
  4934. image: {
  4935. source: "./media/characters/miranda/back.svg",
  4936. extra: 201 / 193,
  4937. bottom: 2.3 / 203.7
  4938. }
  4939. },
  4940. },
  4941. [
  4942. {
  4943. name: "Normal",
  4944. height: math.unit(10, "feet"),
  4945. default: true
  4946. }
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "James", species: ["deer"], tags: ["anthro"] },
  4951. {
  4952. side: {
  4953. height: math.unit(2, "meters"),
  4954. weight: math.unit(100, "kg"),
  4955. name: "Front",
  4956. image: {
  4957. source: "./media/characters/james/front.svg",
  4958. extra: 10 / 8.5
  4959. }
  4960. },
  4961. },
  4962. [
  4963. {
  4964. name: "Normal",
  4965. height: math.unit(8.5, "feet"),
  4966. default: true
  4967. }
  4968. ]
  4969. ))
  4970. characterMakers.push(() => makeCharacter(
  4971. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4972. {
  4973. side: {
  4974. height: math.unit(9.5, "feet"),
  4975. weight: math.unit(2500, "lbs"),
  4976. name: "Side",
  4977. image: {
  4978. source: "./media/characters/heather/side.svg"
  4979. }
  4980. },
  4981. },
  4982. [
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(9.5, "feet"),
  4986. default: true
  4987. }
  4988. ]
  4989. ))
  4990. characterMakers.push(() => makeCharacter(
  4991. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4992. {
  4993. side: {
  4994. height: math.unit(6.5, "feet"),
  4995. weight: math.unit(400, "lbs"),
  4996. name: "Side",
  4997. image: {
  4998. source: "./media/characters/lukas/side.svg",
  4999. extra: 7.25 / 6.5
  5000. }
  5001. },
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(6.5, "feet"),
  5007. default: true
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5013. {
  5014. side: {
  5015. height: math.unit(5, "feet"),
  5016. weight: math.unit(3000, "lbs"),
  5017. name: "Side",
  5018. image: {
  5019. source: "./media/characters/louise/side.svg"
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(5, "feet"),
  5027. default: true
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5033. {
  5034. side: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(150, "lbs"),
  5037. name: "Side",
  5038. image: {
  5039. source: "./media/characters/ramona/side.svg"
  5040. }
  5041. },
  5042. },
  5043. [
  5044. {
  5045. name: "Normal",
  5046. height: math.unit(5.3, "meters"),
  5047. default: true
  5048. },
  5049. {
  5050. name: "Macro",
  5051. height: math.unit(20, "stories")
  5052. },
  5053. {
  5054. name: "Macro+",
  5055. height: math.unit(50, "stories")
  5056. },
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5061. {
  5062. standing: {
  5063. height: math.unit(5.75, "feet"),
  5064. weight: math.unit(160, "lbs"),
  5065. name: "Standing",
  5066. image: {
  5067. source: "./media/characters/deerpuff/standing.svg",
  5068. extra: 682 / 624
  5069. }
  5070. },
  5071. sitting: {
  5072. height: math.unit(5.75 / 1.79, "feet"),
  5073. weight: math.unit(160, "lbs"),
  5074. name: "Sitting",
  5075. image: {
  5076. source: "./media/characters/deerpuff/sitting.svg",
  5077. bottom: 44 / 400,
  5078. extra: 1
  5079. }
  5080. },
  5081. taurLaying: {
  5082. height: math.unit(6, "feet"),
  5083. weight: math.unit(400, "lbs"),
  5084. name: "Taur (Laying)",
  5085. image: {
  5086. source: "./media/characters/deerpuff/taur-laying.svg"
  5087. }
  5088. },
  5089. },
  5090. [
  5091. {
  5092. name: "Puffball",
  5093. height: math.unit(6, "inches")
  5094. },
  5095. {
  5096. name: "Normalpuff",
  5097. height: math.unit(5.75, "feet")
  5098. },
  5099. {
  5100. name: "Macropuff",
  5101. height: math.unit(1500, "feet"),
  5102. default: true
  5103. },
  5104. {
  5105. name: "Megapuff",
  5106. height: math.unit(500, "miles")
  5107. },
  5108. {
  5109. name: "Gigapuff",
  5110. height: math.unit(250000, "miles")
  5111. },
  5112. {
  5113. name: "Omegapuff",
  5114. height: math.unit(1000, "lightyears")
  5115. },
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5120. {
  5121. stomping: {
  5122. height: math.unit(6, "feet"),
  5123. weight: math.unit(170, "lbs"),
  5124. name: "Stomping",
  5125. image: {
  5126. source: "./media/characters/vivian/stomping.svg"
  5127. }
  5128. },
  5129. sitting: {
  5130. height: math.unit(6 / 1.75, "feet"),
  5131. weight: math.unit(170, "lbs"),
  5132. name: "Sitting",
  5133. image: {
  5134. source: "./media/characters/vivian/sitting.svg",
  5135. bottom: 1 / 6.4,
  5136. extra: 1,
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(7, "feet"),
  5144. default: true
  5145. },
  5146. {
  5147. name: "Macro",
  5148. height: math.unit(10, "stories")
  5149. },
  5150. {
  5151. name: "Macro+",
  5152. height: math.unit(30, "stories")
  5153. },
  5154. {
  5155. name: "Megamacro",
  5156. height: math.unit(10, "miles")
  5157. },
  5158. {
  5159. name: "Megamacro+",
  5160. height: math.unit(2750000, "meters")
  5161. },
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5166. {
  5167. front: {
  5168. height: math.unit(6, "feet"),
  5169. weight: math.unit(160, "lbs"),
  5170. name: "Front",
  5171. image: {
  5172. source: "./media/characters/prince/front.svg",
  5173. extra: 3400 / 3000
  5174. }
  5175. },
  5176. jumping: {
  5177. height: math.unit(6, "feet"),
  5178. weight: math.unit(160, "lbs"),
  5179. name: "Jumping",
  5180. image: {
  5181. source: "./media/characters/prince/jump.svg",
  5182. extra: 2555 / 2134
  5183. }
  5184. },
  5185. },
  5186. [
  5187. {
  5188. name: "Normal",
  5189. height: math.unit(7.75, "feet"),
  5190. default: true
  5191. },
  5192. {
  5193. name: "Not cute",
  5194. height: math.unit(17, "feet")
  5195. },
  5196. {
  5197. name: "I said NOT",
  5198. height: math.unit(91, "feet")
  5199. },
  5200. {
  5201. name: "Please stop",
  5202. height: math.unit(560, "feet")
  5203. },
  5204. {
  5205. name: "What have you done",
  5206. height: math.unit(2200, "feet")
  5207. },
  5208. {
  5209. name: "Deer God",
  5210. height: math.unit(3.6, "miles")
  5211. },
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5216. {
  5217. standing: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(300, "lbs"),
  5220. name: "Standing",
  5221. image: {
  5222. source: "./media/characters/psymon/standing.svg",
  5223. extra: 1888 / 1810,
  5224. bottom: 0.05
  5225. }
  5226. },
  5227. slithering: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(300, "lbs"),
  5230. name: "Slithering",
  5231. image: {
  5232. source: "./media/characters/psymon/slithering.svg",
  5233. extra: 1330 / 1224
  5234. }
  5235. },
  5236. slitheringAlt: {
  5237. height: math.unit(6, "feet"),
  5238. weight: math.unit(300, "lbs"),
  5239. name: "Slithering (Alt)",
  5240. image: {
  5241. source: "./media/characters/psymon/slithering-alt.svg",
  5242. extra: 1330 / 1224
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(11.25, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Large",
  5254. height: math.unit(27, "feet")
  5255. },
  5256. {
  5257. name: "Giant",
  5258. height: math.unit(87, "feet")
  5259. },
  5260. {
  5261. name: "Macro",
  5262. height: math.unit(365, "feet")
  5263. },
  5264. {
  5265. name: "Megamacro",
  5266. height: math.unit(3, "miles")
  5267. },
  5268. {
  5269. name: "World Serpent",
  5270. height: math.unit(8000, "miles")
  5271. },
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(180, "lbs"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/daimos/front.svg",
  5283. extra: 4160 / 3897,
  5284. bottom: 0.021
  5285. }
  5286. }
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(8, "feet"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Big Dog",
  5296. height: math.unit(22, "feet")
  5297. },
  5298. {
  5299. name: "Macro",
  5300. height: math.unit(127, "feet")
  5301. },
  5302. {
  5303. name: "Megamacro",
  5304. height: math.unit(3600, "feet")
  5305. },
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5310. {
  5311. side: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(180, "lbs"),
  5314. name: "Side",
  5315. image: {
  5316. source: "./media/characters/blake/side.svg",
  5317. extra: 1212 / 1120,
  5318. bottom: 0.05
  5319. }
  5320. },
  5321. crouched: {
  5322. height: math.unit(6 * 0.57, "feet"),
  5323. weight: math.unit(180, "lbs"),
  5324. name: "Crouched",
  5325. image: {
  5326. source: "./media/characters/blake/crouched.svg",
  5327. extra: 840 / 587,
  5328. bottom: 0.04
  5329. }
  5330. },
  5331. bent: {
  5332. height: math.unit(6 * 0.75, "feet"),
  5333. weight: math.unit(180, "lbs"),
  5334. name: "Bent",
  5335. image: {
  5336. source: "./media/characters/blake/bent.svg",
  5337. extra: 592 / 544,
  5338. bottom: 0.035
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "Normal",
  5345. height: math.unit(8 + 1 / 6, "feet"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Big Backside",
  5350. height: math.unit(37, "feet")
  5351. },
  5352. {
  5353. name: "Subway Shredder",
  5354. height: math.unit(72, "feet")
  5355. },
  5356. {
  5357. name: "City Carver",
  5358. height: math.unit(1675, "feet")
  5359. },
  5360. {
  5361. name: "Tectonic Tweaker",
  5362. height: math.unit(2300, "miles")
  5363. },
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5368. {
  5369. front: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(180, "lbs"),
  5372. name: "Front",
  5373. image: {
  5374. source: "./media/characters/guisetto/front.svg",
  5375. extra: 856 / 817,
  5376. bottom: 0.06
  5377. }
  5378. },
  5379. airborne: {
  5380. height: math.unit(6, "feet"),
  5381. weight: math.unit(180, "lbs"),
  5382. name: "Airborne",
  5383. image: {
  5384. source: "./media/characters/guisetto/airborne.svg",
  5385. extra: 584 / 525
  5386. }
  5387. },
  5388. },
  5389. [
  5390. {
  5391. name: "Normal",
  5392. height: math.unit(10 + 11 / 12, "feet"),
  5393. default: true
  5394. },
  5395. {
  5396. name: "Large",
  5397. height: math.unit(35, "feet")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(475, "feet")
  5402. },
  5403. ]
  5404. ))
  5405. characterMakers.push(() => makeCharacter(
  5406. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5407. {
  5408. front: {
  5409. height: math.unit(6, "feet"),
  5410. weight: math.unit(180, "lbs"),
  5411. name: "Front",
  5412. image: {
  5413. source: "./media/characters/luxor/front.svg",
  5414. extra: 2940 / 2152
  5415. }
  5416. },
  5417. back: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(180, "lbs"),
  5420. name: "Back",
  5421. image: {
  5422. source: "./media/characters/luxor/back.svg",
  5423. extra: 1083 / 960
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Normal",
  5430. height: math.unit(5 + 5 / 6, "feet"),
  5431. default: true
  5432. },
  5433. {
  5434. name: "Lamp",
  5435. height: math.unit(50, "feet")
  5436. },
  5437. {
  5438. name: "Lämp",
  5439. height: math.unit(300, "feet")
  5440. },
  5441. {
  5442. name: "The sun is a lamp",
  5443. height: math.unit(250000, "miles")
  5444. },
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5449. {
  5450. front: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(50, "lbs"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/huoyan/front.svg"
  5456. }
  5457. },
  5458. side: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(180, "lbs"),
  5461. name: "Side",
  5462. image: {
  5463. source: "./media/characters/huoyan/side.svg"
  5464. }
  5465. },
  5466. },
  5467. [
  5468. {
  5469. name: "Chef",
  5470. height: math.unit(9, "feet")
  5471. },
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(65, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(780, "feet")
  5480. },
  5481. {
  5482. name: "Flaming Mountain",
  5483. height: math.unit(4.8, "miles")
  5484. },
  5485. {
  5486. name: "Celestial",
  5487. height: math.unit(765000, "miles")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(5 + 3 / 4, "feet"),
  5496. weight: math.unit(120, "lbs"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/tails/front.svg"
  5500. }
  5501. }
  5502. },
  5503. [
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(5 + 3 / 4, "feet"),
  5507. default: true
  5508. }
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(4, "feet"),
  5516. weight: math.unit(50, "lbs"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/rainy/front.svg"
  5520. }
  5521. }
  5522. },
  5523. [
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(800, "feet"),
  5527. default: true
  5528. }
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(150, "lbs"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/rainier/front.svg"
  5540. }
  5541. }
  5542. },
  5543. [
  5544. {
  5545. name: "Micro",
  5546. height: math.unit(2, "mm"),
  5547. default: true
  5548. }
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(8 + 4/12, "feet"),
  5556. name: "Front",
  5557. image: {
  5558. source: "./media/characters/andy-renard/front.svg",
  5559. extra: 1839/1726,
  5560. bottom: 134/1973
  5561. }
  5562. },
  5563. back: {
  5564. height: math.unit(8 + 4/12, "feet"),
  5565. name: "Back",
  5566. image: {
  5567. source: "./media/characters/andy-renard/back.svg",
  5568. extra: 1838/1710,
  5569. bottom: 105/1943
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Tall",
  5576. height: math.unit(8 + 4/12, "feet")
  5577. },
  5578. {
  5579. name: "Mini Macro",
  5580. height: math.unit(15, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Macro",
  5585. height: math.unit(100, "feet")
  5586. },
  5587. {
  5588. name: "Mega Macro",
  5589. height: math.unit(1000, "feet")
  5590. },
  5591. {
  5592. name: "Giga Macro",
  5593. height: math.unit(10, "miles")
  5594. },
  5595. {
  5596. name: "God Macro",
  5597. height: math.unit(1, "multiverse")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(210, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/cimmaron/front-sfw.svg",
  5610. extra: 701 / 676,
  5611. bottom: 0.046
  5612. }
  5613. },
  5614. back: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(210, "lbs"),
  5617. name: "Back",
  5618. image: {
  5619. source: "./media/characters/cimmaron/back-sfw.svg",
  5620. extra: 701 / 676,
  5621. bottom: 0.046
  5622. }
  5623. },
  5624. frontNsfw: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(210, "lbs"),
  5627. name: "Front (NSFW)",
  5628. image: {
  5629. source: "./media/characters/cimmaron/front-nsfw.svg",
  5630. extra: 701 / 676,
  5631. bottom: 0.046
  5632. }
  5633. },
  5634. backNsfw: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(210, "lbs"),
  5637. name: "Back (NSFW)",
  5638. image: {
  5639. source: "./media/characters/cimmaron/back-nsfw.svg",
  5640. extra: 701 / 676,
  5641. bottom: 0.046
  5642. }
  5643. },
  5644. dick: {
  5645. height: math.unit(1.714, "feet"),
  5646. name: "Dick",
  5647. image: {
  5648. source: "./media/characters/cimmaron/dick.svg"
  5649. }
  5650. },
  5651. },
  5652. [
  5653. {
  5654. name: "Normal",
  5655. height: math.unit(6, "feet"),
  5656. default: true
  5657. },
  5658. {
  5659. name: "Macro Mayor",
  5660. height: math.unit(350, "meters")
  5661. },
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5666. {
  5667. front: {
  5668. height: math.unit(6, "feet"),
  5669. weight: math.unit(200, "lbs"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/akari/front.svg",
  5673. extra: 962 / 901,
  5674. bottom: 0.04
  5675. }
  5676. }
  5677. },
  5678. [
  5679. {
  5680. name: "Micro",
  5681. height: math.unit(5, "inches"),
  5682. default: true
  5683. },
  5684. {
  5685. name: "Normal",
  5686. height: math.unit(7, "feet")
  5687. },
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5692. {
  5693. front: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(140, "lbs"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/cynosura/front.svg",
  5699. extra: 896 / 847
  5700. }
  5701. },
  5702. back: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(140, "lbs"),
  5705. name: "Back",
  5706. image: {
  5707. source: "./media/characters/cynosura/back.svg",
  5708. extra: 1365 / 1250
  5709. }
  5710. },
  5711. },
  5712. [
  5713. {
  5714. name: "Micro",
  5715. height: math.unit(4, "inches")
  5716. },
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(5.75, "feet"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "Tall",
  5724. height: math.unit(10, "feet")
  5725. },
  5726. {
  5727. name: "Big",
  5728. height: math.unit(20, "feet")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(50, "feet")
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(13 + 2/12, "feet"),
  5741. weight: math.unit(800, "kg"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/gin/front.svg",
  5745. extra: 1312/1191,
  5746. bottom: 45/1357
  5747. }
  5748. },
  5749. mouth: {
  5750. height: math.unit(2.39 * 1.8, "feet"),
  5751. name: "Mouth",
  5752. image: {
  5753. source: "./media/characters/gin/mouth.svg"
  5754. }
  5755. },
  5756. hand: {
  5757. height: math.unit(1.57 * 2.19, "feet"),
  5758. name: "Hand",
  5759. image: {
  5760. source: "./media/characters/gin/hand.svg"
  5761. }
  5762. },
  5763. foot: {
  5764. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5765. name: "Foot",
  5766. image: {
  5767. source: "./media/characters/gin/foot.svg"
  5768. }
  5769. },
  5770. sole: {
  5771. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5772. name: "Sole",
  5773. image: {
  5774. source: "./media/characters/gin/sole.svg"
  5775. }
  5776. },
  5777. },
  5778. [
  5779. {
  5780. name: "Very Small",
  5781. height: math.unit(13 + 2 / 12, "feet")
  5782. },
  5783. {
  5784. name: "Micro",
  5785. height: math.unit(600, "miles")
  5786. },
  5787. {
  5788. name: "Regular",
  5789. height: math.unit(20, "earths"),
  5790. default: true
  5791. },
  5792. {
  5793. name: "Macro",
  5794. height: math.unit(2.2, "solarradii")
  5795. },
  5796. {
  5797. name: "Teramacro",
  5798. height: math.unit(1.2, "galaxies")
  5799. },
  5800. {
  5801. name: "Omegamacro",
  5802. height: math.unit(200, "universes")
  5803. },
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5808. {
  5809. front: {
  5810. height: math.unit(6 + 1 / 6, "feet"),
  5811. weight: math.unit(178, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/guy/front.svg"
  5815. }
  5816. }
  5817. },
  5818. [
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(6 + 1 / 6, "feet"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Large",
  5826. height: math.unit(25 + 7 / 12, "feet")
  5827. },
  5828. {
  5829. name: "Macro",
  5830. height: math.unit(60 + 9 / 12, "feet")
  5831. },
  5832. {
  5833. name: "Macro+",
  5834. height: math.unit(246, "feet")
  5835. },
  5836. {
  5837. name: "Macro++",
  5838. height: math.unit(878, "feet")
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(9, "feet"),
  5847. weight: math.unit(800, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/tiberius/front.svg",
  5851. extra: 2295 / 2071
  5852. }
  5853. },
  5854. back: {
  5855. height: math.unit(9, "feet"),
  5856. weight: math.unit(800, "lbs"),
  5857. name: "Back",
  5858. image: {
  5859. source: "./media/characters/tiberius/back.svg",
  5860. extra: 2373 / 2160
  5861. }
  5862. },
  5863. },
  5864. [
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(9, "feet"),
  5868. default: true
  5869. }
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5874. {
  5875. front: {
  5876. height: math.unit(6, "feet"),
  5877. weight: math.unit(600, "lbs"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/surgo/front.svg",
  5881. extra: 3591 / 2227
  5882. }
  5883. },
  5884. back: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(600, "lbs"),
  5887. name: "Back",
  5888. image: {
  5889. source: "./media/characters/surgo/back.svg",
  5890. extra: 3557 / 2228
  5891. }
  5892. },
  5893. laying: {
  5894. height: math.unit(6 * 0.85, "feet"),
  5895. weight: math.unit(600, "lbs"),
  5896. name: "Laying",
  5897. image: {
  5898. source: "./media/characters/surgo/laying.svg"
  5899. }
  5900. },
  5901. },
  5902. [
  5903. {
  5904. name: "Normal",
  5905. height: math.unit(6, "feet"),
  5906. default: true
  5907. }
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5912. {
  5913. side: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(150, "lbs"),
  5916. name: "Side",
  5917. image: {
  5918. source: "./media/characters/cibus/side.svg",
  5919. extra: 800 / 400
  5920. }
  5921. },
  5922. },
  5923. [
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(6, "feet"),
  5927. default: true
  5928. }
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(240, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/nibbles/front.svg"
  5940. }
  5941. },
  5942. side: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(240, "lbs"),
  5945. name: "Side",
  5946. image: {
  5947. source: "./media/characters/nibbles/side.svg"
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(9, "feet"),
  5955. default: true
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5961. {
  5962. side: {
  5963. height: math.unit(5 + 1 / 6, "feet"),
  5964. weight: math.unit(130, "lbs"),
  5965. name: "Side",
  5966. image: {
  5967. source: "./media/characters/rikky/side.svg",
  5968. extra: 851 / 801
  5969. }
  5970. },
  5971. },
  5972. [
  5973. {
  5974. name: "Normal",
  5975. height: math.unit(5 + 1 / 6, "feet")
  5976. },
  5977. {
  5978. name: "Macro",
  5979. height: math.unit(152, "feet"),
  5980. default: true
  5981. },
  5982. {
  5983. name: "Megamacro",
  5984. height: math.unit(7, "miles")
  5985. }
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5990. {
  5991. side: {
  5992. height: math.unit(370, "cm"),
  5993. weight: math.unit(350, "lbs"),
  5994. name: "Side",
  5995. image: {
  5996. source: "./media/characters/malfressa/side.svg"
  5997. }
  5998. },
  5999. walking: {
  6000. height: math.unit(370, "cm"),
  6001. weight: math.unit(350, "lbs"),
  6002. name: "Walking",
  6003. image: {
  6004. source: "./media/characters/malfressa/walking.svg"
  6005. }
  6006. },
  6007. feral: {
  6008. height: math.unit(2500, "cm"),
  6009. weight: math.unit(100000, "lbs"),
  6010. name: "Feral",
  6011. image: {
  6012. source: "./media/characters/malfressa/feral.svg",
  6013. extra: 2108 / 837,
  6014. bottom: 0.02
  6015. }
  6016. },
  6017. },
  6018. [
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(370, "cm")
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(300, "meters"),
  6026. default: true
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(60, "kg"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/jaro/front.svg"
  6039. }
  6040. },
  6041. back: {
  6042. height: math.unit(6, "feet"),
  6043. weight: math.unit(60, "kg"),
  6044. name: "Back",
  6045. image: {
  6046. source: "./media/characters/jaro/back.svg"
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Micro",
  6053. height: math.unit(7, "inches")
  6054. },
  6055. {
  6056. name: "Normal",
  6057. height: math.unit(5.5, "feet"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Minimacro",
  6062. height: math.unit(20, "feet")
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(200, "meters")
  6067. }
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(195, "lb"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/rogue/front.svg"
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Macro",
  6085. height: math.unit(90, "feet"),
  6086. default: true
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(5 + 8 / 12, "feet"),
  6095. weight: math.unit(140, "lb"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/piper/front.svg",
  6099. extra: 3948/3655,
  6100. bottom: 0/3948
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Micro",
  6107. height: math.unit(2, "inches")
  6108. },
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(5 + 8 / 12, "feet")
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(250, "feet"),
  6116. default: true
  6117. },
  6118. {
  6119. name: "Megamacro",
  6120. height: math.unit(7, "miles")
  6121. },
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6126. {
  6127. front: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(220, "lb"),
  6130. name: "Front",
  6131. image: {
  6132. source: "./media/characters/gemini/front.svg"
  6133. }
  6134. },
  6135. back: {
  6136. height: math.unit(6, "feet"),
  6137. weight: math.unit(220, "lb"),
  6138. name: "Back",
  6139. image: {
  6140. source: "./media/characters/gemini/back.svg"
  6141. }
  6142. },
  6143. kneeling: {
  6144. height: math.unit(6 / 1.5, "feet"),
  6145. weight: math.unit(220, "lb"),
  6146. name: "Kneeling",
  6147. image: {
  6148. source: "./media/characters/gemini/kneeling.svg",
  6149. bottom: 0.02
  6150. }
  6151. },
  6152. },
  6153. [
  6154. {
  6155. name: "Macro",
  6156. height: math.unit(300, "meters"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Megamacro",
  6161. height: math.unit(6900, "meters")
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6167. {
  6168. anthro: {
  6169. height: math.unit(2.35, "meters"),
  6170. weight: math.unit(73, "kg"),
  6171. name: "Anthro",
  6172. image: {
  6173. source: "./media/characters/alicia/anthro.svg",
  6174. extra: 2571 / 2385,
  6175. bottom: 75 / 2648
  6176. }
  6177. },
  6178. paw: {
  6179. height: math.unit(1.32, "feet"),
  6180. name: "Paw",
  6181. image: {
  6182. source: "./media/characters/alicia/paw.svg"
  6183. }
  6184. },
  6185. feral: {
  6186. height: math.unit(1.69, "meters"),
  6187. weight: math.unit(73, "kg"),
  6188. name: "Feral",
  6189. image: {
  6190. source: "./media/characters/alicia/feral.svg",
  6191. extra: 2123 / 1715,
  6192. bottom: 222 / 2349
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(2.35, "meters")
  6200. },
  6201. {
  6202. name: "Macro",
  6203. height: math.unit(60, "meters"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Megamacro",
  6208. height: math.unit(10000, "kilometers")
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(7, "feet"),
  6217. weight: math.unit(250, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/archy/front.svg"
  6221. }
  6222. }
  6223. },
  6224. [
  6225. {
  6226. name: "Micro",
  6227. height: math.unit(1, "inch")
  6228. },
  6229. {
  6230. name: "Shorty",
  6231. height: math.unit(5, "feet")
  6232. },
  6233. {
  6234. name: "Normal",
  6235. height: math.unit(7, "feet")
  6236. },
  6237. {
  6238. name: "Macro",
  6239. height: math.unit(600, "meters"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Megamacro",
  6244. height: math.unit(1, "mile")
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(1.65, "meters"),
  6253. weight: math.unit(74, "kg"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/berri/front.svg",
  6257. extra: 857 / 837,
  6258. bottom: 18 / 877
  6259. }
  6260. },
  6261. bum: {
  6262. height: math.unit(1.46, "feet"),
  6263. name: "Bum",
  6264. image: {
  6265. source: "./media/characters/berri/bum.svg"
  6266. }
  6267. },
  6268. mouth: {
  6269. height: math.unit(0.44, "feet"),
  6270. name: "Mouth",
  6271. image: {
  6272. source: "./media/characters/berri/mouth.svg"
  6273. }
  6274. },
  6275. paw: {
  6276. height: math.unit(0.826, "feet"),
  6277. name: "Paw",
  6278. image: {
  6279. source: "./media/characters/berri/paw.svg"
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(1.65, "meters")
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(60, "m"),
  6291. default: true
  6292. },
  6293. {
  6294. name: "Megamacro",
  6295. height: math.unit(9.213, "km")
  6296. },
  6297. {
  6298. name: "Planet Eater",
  6299. height: math.unit(489, "megameters")
  6300. },
  6301. {
  6302. name: "Teramacro",
  6303. height: math.unit(2471635000000, "meters")
  6304. },
  6305. {
  6306. name: "Examacro",
  6307. height: math.unit(8.0624e+26, "meters")
  6308. }
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6313. {
  6314. front: {
  6315. height: math.unit(1.72, "meters"),
  6316. weight: math.unit(68, "kg"),
  6317. name: "Front",
  6318. image: {
  6319. source: "./media/characters/lexi/front.svg"
  6320. }
  6321. }
  6322. },
  6323. [
  6324. {
  6325. name: "Very Smol",
  6326. height: math.unit(10, "mm")
  6327. },
  6328. {
  6329. name: "Micro",
  6330. height: math.unit(6.8, "cm"),
  6331. default: true
  6332. },
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(1.72, "m")
  6336. }
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6341. {
  6342. front: {
  6343. height: math.unit(1.69, "meters"),
  6344. weight: math.unit(68, "kg"),
  6345. name: "Front",
  6346. image: {
  6347. source: "./media/characters/martin/front.svg",
  6348. extra: 596 / 581
  6349. }
  6350. }
  6351. },
  6352. [
  6353. {
  6354. name: "Micro",
  6355. height: math.unit(6.85, "cm"),
  6356. default: true
  6357. },
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(1.69, "m")
  6361. }
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(1.69, "meters"),
  6369. weight: math.unit(68, "kg"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/juno/front.svg"
  6373. }
  6374. }
  6375. },
  6376. [
  6377. {
  6378. name: "Micro",
  6379. height: math.unit(7, "cm")
  6380. },
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(1.89, "m")
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(353, "meters"),
  6388. default: true
  6389. }
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(1.93, "meters"),
  6397. weight: math.unit(83, "kg"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/samantha/front.svg"
  6401. }
  6402. },
  6403. frontClothed: {
  6404. height: math.unit(1.93, "meters"),
  6405. weight: math.unit(83, "kg"),
  6406. name: "Front (Clothed)",
  6407. image: {
  6408. source: "./media/characters/samantha/front-clothed.svg"
  6409. }
  6410. },
  6411. back: {
  6412. height: math.unit(1.93, "meters"),
  6413. weight: math.unit(83, "kg"),
  6414. name: "Back",
  6415. image: {
  6416. source: "./media/characters/samantha/back.svg"
  6417. }
  6418. },
  6419. },
  6420. [
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(1.93, "m")
  6424. },
  6425. {
  6426. name: "Macro",
  6427. height: math.unit(74, "meters"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Macro+",
  6432. height: math.unit(223, "meters"),
  6433. },
  6434. {
  6435. name: "Megamacro",
  6436. height: math.unit(8381, "meters"),
  6437. },
  6438. {
  6439. name: "Megamacro+",
  6440. height: math.unit(12000, "kilometers")
  6441. },
  6442. ]
  6443. ))
  6444. characterMakers.push(() => makeCharacter(
  6445. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6446. {
  6447. front: {
  6448. height: math.unit(1.92, "meters"),
  6449. weight: math.unit(80, "kg"),
  6450. name: "Front",
  6451. image: {
  6452. source: "./media/characters/dr-clay/front.svg"
  6453. }
  6454. },
  6455. frontClothed: {
  6456. height: math.unit(1.92, "meters"),
  6457. weight: math.unit(80, "kg"),
  6458. name: "Front (Clothed)",
  6459. image: {
  6460. source: "./media/characters/dr-clay/front-clothed.svg"
  6461. }
  6462. }
  6463. },
  6464. [
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(1.92, "m")
  6468. },
  6469. {
  6470. name: "Macro",
  6471. height: math.unit(214, "meters"),
  6472. default: true
  6473. },
  6474. {
  6475. name: "Macro+",
  6476. height: math.unit(12.237, "meters"),
  6477. },
  6478. {
  6479. name: "Megamacro",
  6480. height: math.unit(557, "megameters"),
  6481. },
  6482. {
  6483. name: "Unimaginable",
  6484. height: math.unit(120e9, "lightyears")
  6485. },
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6490. {
  6491. front: {
  6492. height: math.unit(2, "meters"),
  6493. weight: math.unit(80, "kg"),
  6494. name: "Front",
  6495. image: {
  6496. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6497. }
  6498. }
  6499. },
  6500. [
  6501. {
  6502. name: "Teramacro",
  6503. height: math.unit(500000, "lightyears"),
  6504. default: true
  6505. },
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6510. {
  6511. crux: {
  6512. height: math.unit(2, "meters"),
  6513. weight: math.unit(150, "kg"),
  6514. name: "Crux",
  6515. image: {
  6516. source: "./media/characters/vemus/crux.svg",
  6517. extra: 1074/936,
  6518. bottom: 23/1097
  6519. }
  6520. },
  6521. skunkTanuki: {
  6522. height: math.unit(2, "meters"),
  6523. weight: math.unit(150, "kg"),
  6524. name: "Skunk-Tanuki",
  6525. image: {
  6526. source: "./media/characters/vemus/skunk-tanuki.svg",
  6527. extra: 926/893,
  6528. bottom: 20/946
  6529. }
  6530. },
  6531. },
  6532. [
  6533. {
  6534. name: "Normal",
  6535. height: math.unit(3.75, "meters"),
  6536. default: true
  6537. },
  6538. {
  6539. name: "Big",
  6540. height: math.unit(8, "meters")
  6541. },
  6542. {
  6543. name: "Macro",
  6544. height: math.unit(100, "meters")
  6545. },
  6546. {
  6547. name: "Macro+",
  6548. height: math.unit(1500, "meters")
  6549. },
  6550. {
  6551. name: "Stellar",
  6552. height: math.unit(14e8, "meters")
  6553. },
  6554. ]
  6555. ))
  6556. characterMakers.push(() => makeCharacter(
  6557. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6558. {
  6559. front: {
  6560. height: math.unit(2, "meters"),
  6561. weight: math.unit(70, "kg"),
  6562. name: "Front",
  6563. image: {
  6564. source: "./media/characters/beherit/front.svg",
  6565. extra: 1408 / 1242
  6566. }
  6567. }
  6568. },
  6569. [
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(6, "feet")
  6573. },
  6574. {
  6575. name: "Lorg",
  6576. height: math.unit(25, "feet"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Lorger",
  6581. height: math.unit(75, "feet")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(200, "meters")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(2, "meters"),
  6594. weight: math.unit(150, "kg"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/everett/front.svg",
  6598. extra: 2038 / 1737,
  6599. bottom: 0.03
  6600. }
  6601. },
  6602. paw: {
  6603. height: math.unit(2 / 3.6, "meters"),
  6604. name: "Paw",
  6605. image: {
  6606. source: "./media/characters/everett/paw.svg"
  6607. }
  6608. },
  6609. },
  6610. [
  6611. {
  6612. name: "Normal",
  6613. height: math.unit(15, "feet"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Lorg",
  6618. height: math.unit(70, "feet"),
  6619. default: true
  6620. },
  6621. {
  6622. name: "Lorger",
  6623. height: math.unit(250, "feet")
  6624. },
  6625. {
  6626. name: "Macro",
  6627. height: math.unit(500, "meters")
  6628. },
  6629. ]
  6630. ))
  6631. characterMakers.push(() => makeCharacter(
  6632. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6633. {
  6634. front: {
  6635. height: math.unit(2, "meters"),
  6636. weight: math.unit(86, "kg"),
  6637. name: "Front",
  6638. image: {
  6639. source: "./media/characters/rose/front.svg",
  6640. extra: 1785/1636,
  6641. bottom: 30/1815
  6642. }
  6643. },
  6644. frontSporty: {
  6645. height: math.unit(2, "meters"),
  6646. weight: math.unit(86, "kg"),
  6647. name: "Front (Sporty)",
  6648. image: {
  6649. source: "./media/characters/rose/front-sporty.svg",
  6650. extra: 350/335,
  6651. bottom: 10/360
  6652. }
  6653. },
  6654. frontAlt: {
  6655. height: math.unit(1.6, "meters"),
  6656. weight: math.unit(86, "kg"),
  6657. name: "Front (Alt)",
  6658. image: {
  6659. source: "./media/characters/rose/front-alt.svg",
  6660. extra: 299/283,
  6661. bottom: 3/302
  6662. }
  6663. },
  6664. plush: {
  6665. height: math.unit(2, "meters"),
  6666. weight: math.unit(86/3, "kg"),
  6667. name: "Plush",
  6668. image: {
  6669. source: "./media/characters/rose/plush.svg",
  6670. extra: 361/337,
  6671. bottom: 11/372
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "True Micro",
  6678. height: math.unit(9, "cm")
  6679. },
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(16, "cm")
  6683. },
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(1.85, "meters"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Mini-Macro",
  6691. height: math.unit(5, "meters")
  6692. },
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(15, "meters")
  6696. },
  6697. {
  6698. name: "True Macro",
  6699. height: math.unit(40, "meters")
  6700. },
  6701. {
  6702. name: "City Scale",
  6703. height: math.unit(1, "km")
  6704. },
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(2, "meters"),
  6712. weight: math.unit(350, "lbs"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/regal/front.svg"
  6716. }
  6717. },
  6718. back: {
  6719. height: math.unit(2, "meters"),
  6720. weight: math.unit(350, "lbs"),
  6721. name: "Back",
  6722. image: {
  6723. source: "./media/characters/regal/back.svg"
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(350, "feet"),
  6731. default: true
  6732. }
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(4 + 11 / 12, "feet"),
  6740. weight: math.unit(100, "lbs"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/opal/front.svg"
  6744. }
  6745. },
  6746. frontAlt: {
  6747. height: math.unit(4 + 11 / 12, "feet"),
  6748. weight: math.unit(100, "lbs"),
  6749. name: "Front (Alt)",
  6750. image: {
  6751. source: "./media/characters/opal/front-alt.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Small",
  6758. height: math.unit(4 + 11 / 12, "feet")
  6759. },
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(20, "feet"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Macro",
  6767. height: math.unit(120, "feet")
  6768. },
  6769. {
  6770. name: "Megamacro",
  6771. height: math.unit(80, "miles")
  6772. },
  6773. {
  6774. name: "True Size",
  6775. height: math.unit(100000, "lightyears")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(6, "feet"),
  6784. weight: math.unit(200, "lbs"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/vector-wuff/front.svg"
  6788. }
  6789. }
  6790. },
  6791. [
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(2.8, "meters")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(450, "meters"),
  6799. default: true
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(15, "kilometers")
  6804. }
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(6, "feet"),
  6812. weight: math.unit(256, "lbs"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/dannik/front.svg"
  6816. }
  6817. }
  6818. },
  6819. [
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(69.57, "meters"),
  6823. default: true
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(6, "feet"),
  6832. weight: math.unit(120, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/azura-saharah/front.svg"
  6836. }
  6837. },
  6838. back: {
  6839. height: math.unit(6, "feet"),
  6840. weight: math.unit(120, "lbs"),
  6841. name: "Back",
  6842. image: {
  6843. source: "./media/characters/azura-saharah/back.svg"
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(100, "feet"),
  6851. default: true
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6857. {
  6858. side: {
  6859. height: math.unit(5 + 4 / 12, "feet"),
  6860. weight: math.unit(163, "lbs"),
  6861. name: "Side",
  6862. image: {
  6863. source: "./media/characters/kennedy/side.svg"
  6864. }
  6865. }
  6866. },
  6867. [
  6868. {
  6869. name: "Standard Doggo",
  6870. height: math.unit(5 + 4 / 12, "feet")
  6871. },
  6872. {
  6873. name: "Big Doggo",
  6874. height: math.unit(25 + 3 / 12, "feet"),
  6875. default: true
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(90, "lbs"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/odi-lunar/front.svg"
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Micro",
  6894. height: math.unit(3, "inches"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(5.5, "feet")
  6900. }
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6905. {
  6906. back: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(220, "lbs"),
  6909. name: "Back",
  6910. image: {
  6911. source: "./media/characters/mandake/back.svg"
  6912. }
  6913. }
  6914. },
  6915. [
  6916. {
  6917. name: "Normal",
  6918. height: math.unit(7, "feet"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Macro",
  6923. height: math.unit(78, "feet")
  6924. },
  6925. {
  6926. name: "Macro+",
  6927. height: math.unit(300, "meters")
  6928. },
  6929. {
  6930. name: "Macro++",
  6931. height: math.unit(2400, "feet")
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(5167, "meters")
  6936. },
  6937. {
  6938. name: "Gigamacro",
  6939. height: math.unit(41769, "miles")
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(6, "feet"),
  6948. weight: math.unit(120, "lbs"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/yozey/front.svg"
  6952. }
  6953. },
  6954. frontAlt: {
  6955. height: math.unit(6, "feet"),
  6956. weight: math.unit(120, "lbs"),
  6957. name: "Front (Alt)",
  6958. image: {
  6959. source: "./media/characters/yozey/front-alt.svg"
  6960. }
  6961. },
  6962. side: {
  6963. height: math.unit(6, "feet"),
  6964. weight: math.unit(120, "lbs"),
  6965. name: "Side",
  6966. image: {
  6967. source: "./media/characters/yozey/side.svg"
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Micro",
  6974. height: math.unit(3, "inches"),
  6975. default: true
  6976. },
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(6, "feet")
  6980. }
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6985. {
  6986. front: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(103, "lbs"),
  6989. name: "Front",
  6990. image: {
  6991. source: "./media/characters/valeska-voss/front.svg"
  6992. }
  6993. }
  6994. },
  6995. [
  6996. {
  6997. name: "Mini-Sized Sub",
  6998. height: math.unit(3.1, "inches")
  6999. },
  7000. {
  7001. name: "Mid-Sized Sub",
  7002. height: math.unit(6.2, "inches")
  7003. },
  7004. {
  7005. name: "Full-Sized Sub",
  7006. height: math.unit(9.3, "inches")
  7007. },
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(5 + 2 / 12, "foot"),
  7011. default: true
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(160, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/gene-zeta/front.svg",
  7024. extra: 3006 / 2826,
  7025. bottom: 182 / 3188
  7026. }
  7027. }
  7028. },
  7029. [
  7030. {
  7031. name: "Micro",
  7032. height: math.unit(6, "inches")
  7033. },
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(5 + 11 / 12, "foot"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(140, "feet")
  7042. },
  7043. {
  7044. name: "Supercharged",
  7045. height: math.unit(2500, "feet")
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(350, "lbs"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/razinox/front.svg",
  7058. extra: 1686 / 1548,
  7059. bottom: 28.2 / 1868
  7060. }
  7061. },
  7062. back: {
  7063. height: math.unit(6, "feet"),
  7064. weight: math.unit(350, "lbs"),
  7065. name: "Back",
  7066. image: {
  7067. source: "./media/characters/razinox/back.svg",
  7068. extra: 1660 / 1590,
  7069. bottom: 15 / 1665
  7070. }
  7071. },
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(10 + 8 / 12, "foot")
  7077. },
  7078. {
  7079. name: "Minimacro",
  7080. height: math.unit(15, "foot")
  7081. },
  7082. {
  7083. name: "Macro",
  7084. height: math.unit(60, "foot"),
  7085. default: true
  7086. },
  7087. {
  7088. name: "Megamacro",
  7089. height: math.unit(5, "miles")
  7090. },
  7091. {
  7092. name: "Gigamacro",
  7093. height: math.unit(6000, "miles")
  7094. },
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(150, "lbs"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/cobalt/front.svg"
  7106. }
  7107. }
  7108. },
  7109. [
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(8 + 1 / 12, "foot")
  7113. },
  7114. {
  7115. name: "Macro",
  7116. height: math.unit(111, "foot"),
  7117. default: true
  7118. },
  7119. {
  7120. name: "Supracosmic",
  7121. height: math.unit(1e42, "feet")
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(140, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/amanda/front.svg"
  7134. }
  7135. }
  7136. },
  7137. [
  7138. {
  7139. name: "Micro",
  7140. height: math.unit(5, "inches"),
  7141. default: true
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(2.75, "meters"),
  7150. weight: math.unit(1200, "lb"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/teal/front.svg",
  7154. extra: 2463 / 2320,
  7155. bottom: 166 / 2629
  7156. }
  7157. },
  7158. back: {
  7159. height: math.unit(2.75, "meters"),
  7160. weight: math.unit(1200, "lb"),
  7161. name: "Back",
  7162. image: {
  7163. source: "./media/characters/teal/back.svg",
  7164. extra: 2580 / 2489,
  7165. bottom: 151 / 2731
  7166. }
  7167. },
  7168. sitting: {
  7169. height: math.unit(1.9, "meters"),
  7170. weight: math.unit(1200, "lb"),
  7171. name: "Sitting",
  7172. image: {
  7173. source: "./media/characters/teal/sitting.svg",
  7174. extra: 623 / 590,
  7175. bottom: 121 / 744
  7176. }
  7177. },
  7178. standing: {
  7179. height: math.unit(2.75, "meters"),
  7180. weight: math.unit(1200, "lb"),
  7181. name: "Standing",
  7182. image: {
  7183. source: "./media/characters/teal/standing.svg",
  7184. extra: 923 / 893,
  7185. bottom: 60 / 983
  7186. }
  7187. },
  7188. stretching: {
  7189. height: math.unit(3.65, "meters"),
  7190. weight: math.unit(1200, "lb"),
  7191. name: "Stretching",
  7192. image: {
  7193. source: "./media/characters/teal/stretching.svg",
  7194. extra: 1276 / 1244,
  7195. bottom: 0 / 1276
  7196. }
  7197. },
  7198. legged: {
  7199. height: math.unit(1.3, "meters"),
  7200. weight: math.unit(100, "lb"),
  7201. name: "Legged",
  7202. image: {
  7203. source: "./media/characters/teal/legged.svg",
  7204. extra: 462 / 437,
  7205. bottom: 24 / 486
  7206. }
  7207. },
  7208. naga: {
  7209. height: math.unit(5.4, "meters"),
  7210. weight: math.unit(4000, "lb"),
  7211. name: "Naga",
  7212. image: {
  7213. source: "./media/characters/teal/naga.svg",
  7214. extra: 1902 / 1858,
  7215. bottom: 0 / 1902
  7216. }
  7217. },
  7218. hand: {
  7219. height: math.unit(0.52, "meters"),
  7220. name: "Hand",
  7221. image: {
  7222. source: "./media/characters/teal/hand.svg"
  7223. }
  7224. },
  7225. maw: {
  7226. height: math.unit(0.43, "meters"),
  7227. name: "Maw",
  7228. image: {
  7229. source: "./media/characters/teal/maw.svg"
  7230. }
  7231. },
  7232. slit: {
  7233. height: math.unit(0.25, "meters"),
  7234. name: "Slit",
  7235. image: {
  7236. source: "./media/characters/teal/slit.svg"
  7237. }
  7238. },
  7239. },
  7240. [
  7241. {
  7242. name: "Normal",
  7243. height: math.unit(2.75, "meters"),
  7244. default: true
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(300, "feet")
  7249. },
  7250. {
  7251. name: "Macro+",
  7252. height: math.unit(2000, "feet")
  7253. },
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7258. {
  7259. frontCat: {
  7260. height: math.unit(6, "feet"),
  7261. weight: math.unit(180, "lbs"),
  7262. name: "Front (Cat)",
  7263. image: {
  7264. source: "./media/characters/ravin-amulet/front-cat.svg"
  7265. }
  7266. },
  7267. frontCatAlt: {
  7268. height: math.unit(6, "feet"),
  7269. weight: math.unit(180, "lbs"),
  7270. name: "Front (Alt, Cat)",
  7271. image: {
  7272. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7273. }
  7274. },
  7275. frontWerewolf: {
  7276. height: math.unit(6 * 1.2, "feet"),
  7277. weight: math.unit(225, "lbs"),
  7278. name: "Front (Werewolf)",
  7279. image: {
  7280. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7281. }
  7282. },
  7283. backWerewolf: {
  7284. height: math.unit(6 * 1.2, "feet"),
  7285. weight: math.unit(225, "lbs"),
  7286. name: "Back (Werewolf)",
  7287. image: {
  7288. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Nano",
  7295. height: math.unit(1, "micrometer")
  7296. },
  7297. {
  7298. name: "Micro",
  7299. height: math.unit(1, "inch")
  7300. },
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(6, "feet"),
  7304. default: true
  7305. },
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(60, "feet")
  7309. }
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(6, "feet"),
  7317. weight: math.unit(165, "lbs"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/fluoresce/front.svg"
  7321. }
  7322. }
  7323. },
  7324. [
  7325. {
  7326. name: "Micro",
  7327. height: math.unit(6, "cm")
  7328. },
  7329. {
  7330. name: "Normal",
  7331. height: math.unit(5 + 7 / 12, "feet"),
  7332. default: true
  7333. },
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(56, "feet")
  7337. },
  7338. {
  7339. name: "Megamacro",
  7340. height: math.unit(1.9, "miles")
  7341. },
  7342. ]
  7343. ))
  7344. characterMakers.push(() => makeCharacter(
  7345. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7346. {
  7347. front: {
  7348. height: math.unit(9 + 6 / 12, "feet"),
  7349. weight: math.unit(523, "lbs"),
  7350. name: "Side",
  7351. image: {
  7352. source: "./media/characters/aurora/side.svg"
  7353. }
  7354. }
  7355. },
  7356. [
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(9 + 6 / 12, "feet")
  7360. },
  7361. {
  7362. name: "Macro",
  7363. height: math.unit(96, "feet"),
  7364. default: true
  7365. },
  7366. {
  7367. name: "Macro+",
  7368. height: math.unit(243, "feet")
  7369. },
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7374. {
  7375. front: {
  7376. height: math.unit(194, "cm"),
  7377. weight: math.unit(90, "kg"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/ranek/front.svg"
  7381. }
  7382. },
  7383. side: {
  7384. height: math.unit(194, "cm"),
  7385. weight: math.unit(90, "kg"),
  7386. name: "Side",
  7387. image: {
  7388. source: "./media/characters/ranek/side.svg"
  7389. }
  7390. },
  7391. back: {
  7392. height: math.unit(194, "cm"),
  7393. weight: math.unit(90, "kg"),
  7394. name: "Back",
  7395. image: {
  7396. source: "./media/characters/ranek/back.svg"
  7397. }
  7398. },
  7399. feral: {
  7400. height: math.unit(30, "cm"),
  7401. weight: math.unit(1.6, "lbs"),
  7402. name: "Feral",
  7403. image: {
  7404. source: "./media/characters/ranek/feral.svg"
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(194, "cm"),
  7412. default: true
  7413. },
  7414. {
  7415. name: "Macro",
  7416. height: math.unit(100, "meters")
  7417. },
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(5 + 6 / 12, "feet"),
  7425. weight: math.unit(153, "lbs"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/andrew-cooper/front.svg"
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Nano",
  7435. height: math.unit(1, "mm")
  7436. },
  7437. {
  7438. name: "Micro",
  7439. height: math.unit(2, "inches")
  7440. },
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(5 + 6 / 12, "feet"),
  7444. default: true
  7445. }
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(6, "feet"),
  7453. weight: math.unit(180, "lbs"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/akane-sato/front.svg",
  7457. extra: 1219 / 1140
  7458. }
  7459. },
  7460. back: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(180, "lbs"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/akane-sato/back.svg",
  7466. extra: 1219 / 1170
  7467. }
  7468. },
  7469. },
  7470. [
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(2.5, "meters")
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(250, "meters"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Megamacro",
  7482. height: math.unit(25, "km")
  7483. },
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(6, "feet"),
  7491. weight: math.unit(65, "kg"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/rook/front.svg",
  7495. extra: 960 / 950
  7496. }
  7497. }
  7498. },
  7499. [
  7500. {
  7501. name: "Normal",
  7502. height: math.unit(8.8, "feet")
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(88, "feet"),
  7507. default: true
  7508. },
  7509. {
  7510. name: "Megamacro",
  7511. height: math.unit(8, "miles")
  7512. },
  7513. ]
  7514. ))
  7515. characterMakers.push(() => makeCharacter(
  7516. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7517. {
  7518. front: {
  7519. height: math.unit(12 + 2 / 12, "feet"),
  7520. weight: math.unit(808, "lbs"),
  7521. name: "Front",
  7522. image: {
  7523. source: "./media/characters/prodigy/front.svg"
  7524. }
  7525. }
  7526. },
  7527. [
  7528. {
  7529. name: "Normal",
  7530. height: math.unit(12 + 2 / 12, "feet"),
  7531. default: true
  7532. },
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(143, "feet")
  7536. },
  7537. {
  7538. name: "Macro+",
  7539. height: math.unit(400, "feet")
  7540. },
  7541. ]
  7542. ))
  7543. characterMakers.push(() => makeCharacter(
  7544. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7545. {
  7546. front: {
  7547. height: math.unit(6, "feet"),
  7548. weight: math.unit(225, "lbs"),
  7549. name: "Front",
  7550. image: {
  7551. source: "./media/characters/daniel/front.svg"
  7552. }
  7553. },
  7554. leaning: {
  7555. height: math.unit(6, "feet"),
  7556. weight: math.unit(225, "lbs"),
  7557. name: "Leaning",
  7558. image: {
  7559. source: "./media/characters/daniel/leaning.svg"
  7560. }
  7561. },
  7562. },
  7563. [
  7564. {
  7565. name: "Macro",
  7566. height: math.unit(1000, "feet"),
  7567. default: true
  7568. },
  7569. ]
  7570. ))
  7571. characterMakers.push(() => makeCharacter(
  7572. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7573. {
  7574. front: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(88, "lbs"),
  7577. name: "Front",
  7578. image: {
  7579. source: "./media/characters/chiros/front.svg",
  7580. extra: 306 / 226
  7581. }
  7582. },
  7583. side: {
  7584. height: math.unit(6, "feet"),
  7585. weight: math.unit(88, "lbs"),
  7586. name: "Side",
  7587. image: {
  7588. source: "./media/characters/chiros/side.svg",
  7589. extra: 306 / 226
  7590. }
  7591. },
  7592. },
  7593. [
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(6, "cm"),
  7597. default: true
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7603. {
  7604. front: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(100, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/selka/front.svg",
  7610. extra: 947 / 887
  7611. }
  7612. }
  7613. },
  7614. [
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(5, "cm"),
  7618. default: true
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(8 + 3 / 12, "feet"),
  7627. weight: math.unit(424, "lbs"),
  7628. name: "Front",
  7629. image: {
  7630. source: "./media/characters/verin/front.svg",
  7631. extra: 1845 / 1550
  7632. }
  7633. },
  7634. frontArmored: {
  7635. height: math.unit(8 + 3 / 12, "feet"),
  7636. weight: math.unit(424, "lbs"),
  7637. name: "Front (Armored)",
  7638. image: {
  7639. source: "./media/characters/verin/front-armor.svg",
  7640. extra: 1845 / 1550,
  7641. bottom: 0.01
  7642. }
  7643. },
  7644. back: {
  7645. height: math.unit(8 + 3 / 12, "feet"),
  7646. weight: math.unit(424, "lbs"),
  7647. name: "Back",
  7648. image: {
  7649. source: "./media/characters/verin/back.svg",
  7650. bottom: 0.1,
  7651. extra: 1
  7652. }
  7653. },
  7654. foot: {
  7655. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7656. name: "Foot",
  7657. image: {
  7658. source: "./media/characters/verin/foot.svg"
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(8 + 3 / 12, "feet")
  7666. },
  7667. {
  7668. name: "Minimacro",
  7669. height: math.unit(21, "feet"),
  7670. default: true
  7671. },
  7672. {
  7673. name: "Macro",
  7674. height: math.unit(626, "feet")
  7675. },
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(2.718, "meters"),
  7683. weight: math.unit(150, "lbs"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/sovrim-terraquian/front.svg"
  7687. }
  7688. },
  7689. back: {
  7690. height: math.unit(2.718, "meters"),
  7691. weight: math.unit(150, "lbs"),
  7692. name: "Back",
  7693. image: {
  7694. source: "./media/characters/sovrim-terraquian/back.svg"
  7695. }
  7696. }
  7697. },
  7698. [
  7699. {
  7700. name: "Micro",
  7701. height: math.unit(2, "inches")
  7702. },
  7703. {
  7704. name: "Small",
  7705. height: math.unit(1, "meter")
  7706. },
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(Math.E, "meters"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Macro",
  7714. height: math.unit(20, "meters")
  7715. },
  7716. {
  7717. name: "Macro+",
  7718. height: math.unit(400, "meters")
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(7, "feet"),
  7727. weight: math.unit(489, "lbs"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/reece-silvermane/front.svg",
  7731. bottom: 0.02,
  7732. extra: 1
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(1.5, "miles"),
  7740. default: true
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(6, "feet"),
  7749. weight: math.unit(78, "kg"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/kane/front.svg",
  7753. extra: 978 / 899
  7754. }
  7755. },
  7756. },
  7757. [
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(2.1, "m"),
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(1, "km"),
  7765. default: true
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(6, "feet"),
  7774. weight: math.unit(200, "kg"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/tegon/front.svg",
  7778. bottom: 0.01,
  7779. extra: 1
  7780. }
  7781. },
  7782. },
  7783. [
  7784. {
  7785. name: "Micro",
  7786. height: math.unit(1, "inch")
  7787. },
  7788. {
  7789. name: "Normal",
  7790. height: math.unit(6 + 3 / 12, "feet"),
  7791. default: true
  7792. },
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(300, "feet")
  7796. },
  7797. {
  7798. name: "Megamacro",
  7799. height: math.unit(69, "miles")
  7800. },
  7801. ]
  7802. ))
  7803. characterMakers.push(() => makeCharacter(
  7804. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7805. {
  7806. side: {
  7807. height: math.unit(6, "feet"),
  7808. weight: math.unit(2304, "lbs"),
  7809. name: "Side",
  7810. image: {
  7811. source: "./media/characters/arcturax/side.svg",
  7812. extra: 790 / 376,
  7813. bottom: 0.01
  7814. }
  7815. },
  7816. },
  7817. [
  7818. {
  7819. name: "Micro",
  7820. height: math.unit(2, "inch")
  7821. },
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(6, "feet")
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(39, "feet"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Megamacro",
  7833. height: math.unit(7, "miles")
  7834. },
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(6, "feet"),
  7842. weight: math.unit(50, "lbs"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/sentri/front.svg",
  7846. extra: 1750 / 1570,
  7847. bottom: 0.025
  7848. }
  7849. },
  7850. frontAlt: {
  7851. height: math.unit(6, "feet"),
  7852. weight: math.unit(50, "lbs"),
  7853. name: "Front (Alt)",
  7854. image: {
  7855. source: "./media/characters/sentri/front-alt.svg",
  7856. extra: 1750 / 1570,
  7857. bottom: 0.025
  7858. }
  7859. },
  7860. },
  7861. [
  7862. {
  7863. name: "Normal",
  7864. height: math.unit(15, "feet"),
  7865. default: true
  7866. },
  7867. {
  7868. name: "Macro",
  7869. height: math.unit(2500, "feet")
  7870. }
  7871. ]
  7872. ))
  7873. characterMakers.push(() => makeCharacter(
  7874. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7875. {
  7876. front: {
  7877. height: math.unit(5 + 8 / 12, "feet"),
  7878. weight: math.unit(130, "lbs"),
  7879. name: "Front",
  7880. image: {
  7881. source: "./media/characters/corvin/front.svg",
  7882. extra: 1803 / 1629
  7883. }
  7884. },
  7885. frontShirt: {
  7886. height: math.unit(5 + 8 / 12, "feet"),
  7887. weight: math.unit(130, "lbs"),
  7888. name: "Front (Shirt)",
  7889. image: {
  7890. source: "./media/characters/corvin/front-shirt.svg",
  7891. extra: 1803 / 1629
  7892. }
  7893. },
  7894. frontPoncho: {
  7895. height: math.unit(5 + 8 / 12, "feet"),
  7896. weight: math.unit(130, "lbs"),
  7897. name: "Front (Poncho)",
  7898. image: {
  7899. source: "./media/characters/corvin/front-poncho.svg",
  7900. extra: 1803 / 1629
  7901. }
  7902. },
  7903. side: {
  7904. height: math.unit(5 + 8 / 12, "feet"),
  7905. weight: math.unit(130, "lbs"),
  7906. name: "Side",
  7907. image: {
  7908. source: "./media/characters/corvin/side.svg",
  7909. extra: 1012 / 945
  7910. }
  7911. },
  7912. back: {
  7913. height: math.unit(5 + 8 / 12, "feet"),
  7914. weight: math.unit(130, "lbs"),
  7915. name: "Back",
  7916. image: {
  7917. source: "./media/characters/corvin/back.svg",
  7918. extra: 1803 / 1629
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Micro",
  7925. height: math.unit(3, "inches")
  7926. },
  7927. {
  7928. name: "Normal",
  7929. height: math.unit(5 + 8 / 12, "feet")
  7930. },
  7931. {
  7932. name: "Macro",
  7933. height: math.unit(300, "feet"),
  7934. default: true
  7935. },
  7936. {
  7937. name: "Megamacro",
  7938. height: math.unit(500, "miles")
  7939. }
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(135, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/q/front.svg",
  7951. extra: 854 / 752,
  7952. bottom: 0.005
  7953. }
  7954. },
  7955. back: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(130, "lbs"),
  7958. name: "Back",
  7959. image: {
  7960. source: "./media/characters/q/back.svg",
  7961. extra: 854 / 752
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(90, "feet"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Extra Macro",
  7973. height: math.unit(300, "feet"),
  7974. },
  7975. {
  7976. name: "BIG WALF",
  7977. height: math.unit(750, "feet"),
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(6, "feet"),
  7986. weight: math.unit(150, "lbs"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/carley/front.svg",
  7990. extra: 3927 / 3540,
  7991. bottom: 29.2 / 735
  7992. }
  7993. }
  7994. },
  7995. [
  7996. {
  7997. name: "Normal",
  7998. height: math.unit(6 + 3 / 12, "feet")
  7999. },
  8000. {
  8001. name: "Macro",
  8002. height: math.unit(185, "feet"),
  8003. default: true
  8004. },
  8005. {
  8006. name: "Megamacro",
  8007. height: math.unit(8, "miles"),
  8008. },
  8009. ]
  8010. ))
  8011. characterMakers.push(() => makeCharacter(
  8012. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8013. {
  8014. front: {
  8015. height: math.unit(3, "feet"),
  8016. weight: math.unit(28, "lbs"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/citrine/front.svg"
  8020. }
  8021. }
  8022. },
  8023. [
  8024. {
  8025. name: "Normal",
  8026. height: math.unit(3, "feet"),
  8027. default: true
  8028. }
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8033. {
  8034. front: {
  8035. height: math.unit(14, "feet"),
  8036. weight: math.unit(1450, "kg"),
  8037. capacity: math.unit(15, "people"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/aura-starwind/front.svg",
  8041. extra: 1455 / 1335
  8042. }
  8043. },
  8044. side: {
  8045. height: math.unit(14, "feet"),
  8046. weight: math.unit(1450, "kg"),
  8047. capacity: math.unit(15, "people"),
  8048. name: "Side",
  8049. image: {
  8050. source: "./media/characters/aura-starwind/side.svg",
  8051. extra: 1654 / 1497
  8052. }
  8053. },
  8054. taur: {
  8055. height: math.unit(18, "feet"),
  8056. weight: math.unit(5500, "kg"),
  8057. capacity: math.unit(50, "people"),
  8058. name: "Taur",
  8059. image: {
  8060. source: "./media/characters/aura-starwind/taur.svg",
  8061. extra: 1760 / 1650
  8062. }
  8063. },
  8064. feral: {
  8065. height: math.unit(46, "feet"),
  8066. weight: math.unit(25000, "kg"),
  8067. capacity: math.unit(120, "people"),
  8068. name: "Feral",
  8069. image: {
  8070. source: "./media/characters/aura-starwind/feral.svg"
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(14, "feet"),
  8078. default: true
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(50, "meters")
  8083. },
  8084. {
  8085. name: "Megamacro",
  8086. height: math.unit(5000, "meters")
  8087. },
  8088. {
  8089. name: "Gigamacro",
  8090. height: math.unit(100000, "kilometers")
  8091. },
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(2 + 7 / 12, "feet"),
  8099. weight: math.unit(32, "lbs"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/rivet/front.svg",
  8103. extra: 1716 / 1658,
  8104. bottom: 0.03
  8105. }
  8106. },
  8107. foot: {
  8108. height: math.unit(0.551, "feet"),
  8109. name: "Rivet's Foot",
  8110. image: {
  8111. source: "./media/characters/rivet/foot.svg"
  8112. },
  8113. rename: true
  8114. }
  8115. },
  8116. [
  8117. {
  8118. name: "Micro",
  8119. height: math.unit(1.5, "inches"),
  8120. },
  8121. {
  8122. name: "Normal",
  8123. height: math.unit(2 + 7 / 12, "feet"),
  8124. default: true
  8125. },
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(85, "feet")
  8129. },
  8130. {
  8131. name: "Megamacro",
  8132. height: math.unit(2.2, "km")
  8133. }
  8134. ]
  8135. ))
  8136. characterMakers.push(() => makeCharacter(
  8137. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8138. {
  8139. front: {
  8140. height: math.unit(5 + 9 / 12, "feet"),
  8141. weight: math.unit(150, "lbs"),
  8142. name: "Front",
  8143. image: {
  8144. source: "./media/characters/coffee/front.svg",
  8145. extra: 3666 / 3032,
  8146. bottom: 0.04
  8147. }
  8148. },
  8149. foot: {
  8150. height: math.unit(1.29, "feet"),
  8151. name: "Foot",
  8152. image: {
  8153. source: "./media/characters/coffee/foot.svg"
  8154. }
  8155. },
  8156. },
  8157. [
  8158. {
  8159. name: "Micro",
  8160. height: math.unit(2, "inches"),
  8161. },
  8162. {
  8163. name: "Normal",
  8164. height: math.unit(5 + 9 / 12, "feet"),
  8165. default: true
  8166. },
  8167. {
  8168. name: "Macro",
  8169. height: math.unit(800, "feet")
  8170. },
  8171. {
  8172. name: "Megamacro",
  8173. height: math.unit(25, "miles")
  8174. }
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8179. {
  8180. front: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(200, "lbs"),
  8183. name: "Front",
  8184. image: {
  8185. source: "./media/characters/chari-gal/front.svg",
  8186. extra: 1568 / 1385,
  8187. bottom: 0.047
  8188. }
  8189. },
  8190. gigantamax: {
  8191. height: math.unit(6 * 16, "feet"),
  8192. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8193. name: "Gigantamax",
  8194. image: {
  8195. source: "./media/characters/chari-gal/gigantamax.svg",
  8196. extra: 1124 / 888,
  8197. bottom: 0.03
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(5 + 7 / 12, "feet")
  8205. },
  8206. {
  8207. name: "Macro",
  8208. height: math.unit(200, "feet"),
  8209. default: true
  8210. }
  8211. ]
  8212. ))
  8213. characterMakers.push(() => makeCharacter(
  8214. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8215. {
  8216. front: {
  8217. height: math.unit(6, "feet"),
  8218. weight: math.unit(150, "lbs"),
  8219. name: "Front",
  8220. image: {
  8221. source: "./media/characters/nova/front.svg",
  8222. extra: 5000 / 4722,
  8223. bottom: 0.02
  8224. }
  8225. }
  8226. },
  8227. [
  8228. {
  8229. name: "Micro-",
  8230. height: math.unit(0.8, "inches")
  8231. },
  8232. {
  8233. name: "Micro",
  8234. height: math.unit(2, "inches"),
  8235. default: true
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(3 + 1 / 12, "feet"),
  8244. weight: math.unit(21.7, "lbs"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/argent/front.svg",
  8248. extra: 1471 / 1331,
  8249. bottom: 100.8 / 1575.5
  8250. }
  8251. }
  8252. },
  8253. [
  8254. {
  8255. name: "Micro",
  8256. height: math.unit(2, "inches")
  8257. },
  8258. {
  8259. name: "Normal",
  8260. height: math.unit(3 + 1 / 12, "feet"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(120, "feet")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8271. {
  8272. lamp: {
  8273. height: math.unit(7 * 1559 / 989, "feet"),
  8274. name: "Magic Lamp",
  8275. image: {
  8276. source: "./media/characters/mira-al-cul/lamp.svg",
  8277. extra: 1617 / 1559
  8278. }
  8279. },
  8280. front: {
  8281. height: math.unit(7, "feet"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/mira-al-cul/front.svg",
  8285. extra: 1044 / 990
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Heavily Restricted",
  8292. height: math.unit(7 * 1559 / 989, "feet")
  8293. },
  8294. {
  8295. name: "Freshly Freed",
  8296. height: math.unit(50 * 1559 / 989, "feet")
  8297. },
  8298. {
  8299. name: "World Encompassing",
  8300. height: math.unit(10000 * 1559 / 989, "miles")
  8301. },
  8302. {
  8303. name: "Galactic",
  8304. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8305. },
  8306. {
  8307. name: "Palmed Universe",
  8308. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Multiversal Matriarch",
  8313. height: math.unit(8.87e10, "yottameters")
  8314. },
  8315. {
  8316. name: "Void Mother",
  8317. height: math.unit(3.14e110, "yottaparsecs")
  8318. },
  8319. {
  8320. name: "Toying with Transcendence",
  8321. height: math.unit(1e307, "meters")
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8327. {
  8328. front: {
  8329. height: math.unit(17 + 1 / 12, "feet"),
  8330. weight: math.unit(476.2 * 5, "lbs"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/kuro-shi-uchū/front.svg",
  8334. extra: 2329 / 1835,
  8335. bottom: 0.02
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Micro",
  8342. height: math.unit(2, "inches")
  8343. },
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(12, "meters")
  8347. },
  8348. {
  8349. name: "Planetary",
  8350. height: math.unit(0.00929, "AU"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Universal",
  8355. height: math.unit(20, "gigaparsecs")
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(5 + 2 / 12, "feet"),
  8364. weight: math.unit(120, "lbs"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/katherine/front.svg",
  8368. extra: 2075 / 1969
  8369. }
  8370. },
  8371. dress: {
  8372. height: math.unit(5 + 2 / 12, "feet"),
  8373. weight: math.unit(120, "lbs"),
  8374. name: "Dress",
  8375. image: {
  8376. source: "./media/characters/katherine/dress.svg",
  8377. extra: 2258 / 2064
  8378. }
  8379. },
  8380. },
  8381. [
  8382. {
  8383. name: "Micro",
  8384. height: math.unit(1, "inches"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(5 + 2 / 12, "feet")
  8390. },
  8391. {
  8392. name: "Macro",
  8393. height: math.unit(100, "meters")
  8394. },
  8395. {
  8396. name: "Megamacro",
  8397. height: math.unit(80, "miles")
  8398. },
  8399. ]
  8400. ))
  8401. characterMakers.push(() => makeCharacter(
  8402. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8403. {
  8404. front: {
  8405. height: math.unit(7 + 8 / 12, "feet"),
  8406. weight: math.unit(250, "lbs"),
  8407. name: "Front",
  8408. image: {
  8409. source: "./media/characters/yevis/front.svg",
  8410. extra: 1938 / 1755
  8411. }
  8412. }
  8413. },
  8414. [
  8415. {
  8416. name: "Mortal",
  8417. height: math.unit(7 + 8 / 12, "feet")
  8418. },
  8419. {
  8420. name: "Battle",
  8421. height: math.unit(25 + 11 / 12, "feet")
  8422. },
  8423. {
  8424. name: "Wrath",
  8425. height: math.unit(1654 + 11 / 12, "feet")
  8426. },
  8427. {
  8428. name: "Planet Destroyer",
  8429. height: math.unit(12000, "miles")
  8430. },
  8431. {
  8432. name: "Galaxy Conqueror",
  8433. height: math.unit(1.45, "zettameters"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Universal War",
  8438. height: math.unit(184, "gigaparsecs")
  8439. },
  8440. {
  8441. name: "Eternity War",
  8442. height: math.unit(1.98e55, "yottaparsecs")
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(5 + 8 / 12, "feet"),
  8451. weight: math.unit(63, "kg"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/xavier/front.svg",
  8455. extra: 944 / 883
  8456. }
  8457. },
  8458. frontStretch: {
  8459. height: math.unit(5 + 8 / 12, "feet"),
  8460. weight: math.unit(63, "kg"),
  8461. name: "Stretching",
  8462. image: {
  8463. source: "./media/characters/xavier/front-stretch.svg",
  8464. extra: 962 / 820
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Normal",
  8471. height: math.unit(5 + 8 / 12, "feet")
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(100, "meters"),
  8476. default: true
  8477. },
  8478. {
  8479. name: "McLargeHuge",
  8480. height: math.unit(10, "miles")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8486. {
  8487. front: {
  8488. height: math.unit(5 + 5 / 12, "feet"),
  8489. weight: math.unit(150, "lb"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/joshii/front.svg",
  8493. extra: 765 / 653,
  8494. bottom: 51 / 816
  8495. }
  8496. },
  8497. foot: {
  8498. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8499. name: "Foot",
  8500. image: {
  8501. source: "./media/characters/joshii/foot.svg"
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Micro",
  8508. height: math.unit(2, "inches"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Normal",
  8513. height: math.unit(5 + 5 / 12, "feet")
  8514. },
  8515. {
  8516. name: "Macro",
  8517. height: math.unit(785, "feet")
  8518. },
  8519. {
  8520. name: "Megamacro",
  8521. height: math.unit(24.5, "miles")
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(6, "feet"),
  8530. weight: math.unit(150, "lb"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/goddess-elizabeth/front.svg",
  8534. extra: 1800 / 1525,
  8535. bottom: 0.005
  8536. }
  8537. },
  8538. foot: {
  8539. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8540. name: "Foot",
  8541. image: {
  8542. source: "./media/characters/goddess-elizabeth/foot.svg"
  8543. }
  8544. },
  8545. mouth: {
  8546. height: math.unit(6, "feet"),
  8547. name: "Mouth",
  8548. image: {
  8549. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Micro",
  8556. height: math.unit(12, "feet")
  8557. },
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(80, "miles"),
  8561. default: true
  8562. },
  8563. {
  8564. name: "Macro",
  8565. height: math.unit(15000, "parsecs")
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(5 + 9 / 12, "feet"),
  8574. weight: math.unit(144, "lb"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/kara/front.svg"
  8578. }
  8579. },
  8580. feet: {
  8581. height: math.unit(6 / 6.765, "feet"),
  8582. name: "Kara's Feet",
  8583. rename: true,
  8584. image: {
  8585. source: "./media/characters/kara/feet.svg"
  8586. }
  8587. },
  8588. },
  8589. [
  8590. {
  8591. name: "Normal",
  8592. height: math.unit(5 + 9 / 12, "feet")
  8593. },
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(174, "feet"),
  8597. default: true
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(18, "feet"),
  8606. weight: math.unit(4050, "lb"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/tyrone/front.svg",
  8610. extra: 2405 / 2270,
  8611. bottom: 182 / 2587
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(18, "feet"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(300, "feet")
  8624. },
  8625. {
  8626. name: "Megamacro",
  8627. height: math.unit(15, "km")
  8628. },
  8629. {
  8630. name: "Gigamacro",
  8631. height: math.unit(500, "km")
  8632. },
  8633. {
  8634. name: "Teramacro",
  8635. height: math.unit(0.5, "gigameters")
  8636. },
  8637. {
  8638. name: "Omnimacro",
  8639. height: math.unit(1e252, "yottauniverse")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(7 + 8 / 12, "feet"),
  8648. weight: math.unit(120, "lb"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/danny/front.svg",
  8652. extra: 1490 / 1350
  8653. }
  8654. },
  8655. back: {
  8656. height: math.unit(7 + 8 / 12, "feet"),
  8657. weight: math.unit(120, "lb"),
  8658. name: "Back",
  8659. image: {
  8660. source: "./media/characters/danny/back.svg",
  8661. extra: 1490 / 1350
  8662. }
  8663. },
  8664. },
  8665. [
  8666. {
  8667. name: "Normal",
  8668. height: math.unit(7 + 8 / 12, "feet"),
  8669. default: true
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(3.5, "inches"),
  8678. weight: math.unit(19, "grams"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/mallow/front.svg",
  8682. extra: 471 / 431
  8683. }
  8684. },
  8685. back: {
  8686. height: math.unit(3.5, "inches"),
  8687. weight: math.unit(19, "grams"),
  8688. name: "Back",
  8689. image: {
  8690. source: "./media/characters/mallow/back.svg",
  8691. extra: 471 / 431
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(3.5, "inches"),
  8699. default: true
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(9, "feet"),
  8708. weight: math.unit(230, "kg"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/starry-aqua/front.svg"
  8712. }
  8713. },
  8714. back: {
  8715. height: math.unit(9, "feet"),
  8716. weight: math.unit(230, "kg"),
  8717. name: "Back",
  8718. image: {
  8719. source: "./media/characters/starry-aqua/back.svg"
  8720. }
  8721. },
  8722. hand: {
  8723. height: math.unit(9 * 0.1168, "feet"),
  8724. name: "Hand",
  8725. image: {
  8726. source: "./media/characters/starry-aqua/hand.svg"
  8727. }
  8728. },
  8729. foot: {
  8730. height: math.unit(9 * 0.18, "feet"),
  8731. name: "Foot",
  8732. image: {
  8733. source: "./media/characters/starry-aqua/foot.svg"
  8734. }
  8735. }
  8736. },
  8737. [
  8738. {
  8739. name: "Micro",
  8740. height: math.unit(3, "inches")
  8741. },
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(9, "feet")
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(300, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Megamacro",
  8753. height: math.unit(3200, "feet")
  8754. }
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(6, "feet"),
  8762. weight: math.unit(230, "lb"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/luka/front.svg",
  8766. extra: 1,
  8767. bottom: 0.025
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(12 + 8 / 12, "feet"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Minimacro",
  8779. height: math.unit(20, "feet")
  8780. },
  8781. {
  8782. name: "Macro",
  8783. height: math.unit(250, "feet")
  8784. },
  8785. {
  8786. name: "Megamacro",
  8787. height: math.unit(5, "miles")
  8788. },
  8789. {
  8790. name: "Gigamacro",
  8791. height: math.unit(8000, "miles")
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(6, "feet"),
  8800. weight: math.unit(150, "lb"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/natalie-nightring/front.svg",
  8804. extra: 1,
  8805. bottom: 0.06
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Uh Oh",
  8812. height: math.unit(0.1, "mm")
  8813. },
  8814. {
  8815. name: "Small",
  8816. height: math.unit(3, "inches")
  8817. },
  8818. {
  8819. name: "Human Scale",
  8820. height: math.unit(6, "feet")
  8821. },
  8822. {
  8823. name: "Librarian",
  8824. height: math.unit(50, "feet"),
  8825. default: true
  8826. },
  8827. {
  8828. name: "Immense",
  8829. height: math.unit(200, "miles")
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(180, "lbs"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/danni-rosie/front.svg",
  8842. extra: 1260 / 1128,
  8843. bottom: 0.022
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Micro",
  8850. height: math.unit(2, "inches"),
  8851. default: true
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(5 + 9 / 12, "feet"),
  8860. weight: math.unit(220, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/samantha-kruse/front.svg",
  8864. extra: (985 / 935),
  8865. bottom: 0.03
  8866. }
  8867. },
  8868. frontUndressed: {
  8869. height: math.unit(5 + 9 / 12, "feet"),
  8870. weight: math.unit(220, "lb"),
  8871. name: "Front (Undressed)",
  8872. image: {
  8873. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8874. extra: (973 / 923),
  8875. bottom: 0.025
  8876. }
  8877. },
  8878. fat: {
  8879. height: math.unit(5 + 9 / 12, "feet"),
  8880. weight: math.unit(900, "lb"),
  8881. name: "Front (Fat)",
  8882. image: {
  8883. source: "./media/characters/samantha-kruse/fat.svg",
  8884. extra: 2688 / 2561
  8885. }
  8886. },
  8887. },
  8888. [
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(5 + 9 / 12, "feet"),
  8892. default: true
  8893. }
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8898. {
  8899. back: {
  8900. height: math.unit(5 + 4 / 12, "feet"),
  8901. weight: math.unit(4963, "lb"),
  8902. name: "Back",
  8903. image: {
  8904. source: "./media/characters/amelia-rosie/back.svg",
  8905. extra: 1113 / 963,
  8906. bottom: 0.01
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Level 0",
  8913. height: math.unit(5 + 4 / 12, "feet")
  8914. },
  8915. {
  8916. name: "Level 1",
  8917. height: math.unit(164597, "feet"),
  8918. default: true
  8919. },
  8920. {
  8921. name: "Level 2",
  8922. height: math.unit(956243, "miles")
  8923. },
  8924. {
  8925. name: "Level 3",
  8926. height: math.unit(29421709423, "miles")
  8927. },
  8928. {
  8929. name: "Level 4",
  8930. height: math.unit(154, "lightyears")
  8931. },
  8932. {
  8933. name: "Level 5",
  8934. height: math.unit(4738272, "lightyears")
  8935. },
  8936. {
  8937. name: "Level 6",
  8938. height: math.unit(145787152896, "lightyears")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(5 + 11 / 12, "feet"),
  8947. weight: math.unit(65, "kg"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/rook-kitara/front.svg",
  8951. extra: 1347 / 1274,
  8952. bottom: 0.005
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Totally Unfair",
  8959. height: math.unit(1.8, "mm")
  8960. },
  8961. {
  8962. name: "Lap Rookie",
  8963. height: math.unit(1.4, "feet")
  8964. },
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(5 + 11 / 12, "feet"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "How Did This Happen",
  8972. height: math.unit(80, "miles")
  8973. }
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(7, "feet"),
  8981. weight: math.unit(300, "lb"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/pisces/front.svg",
  8985. extra: 2255 / 2115,
  8986. bottom: 0.03
  8987. }
  8988. },
  8989. back: {
  8990. height: math.unit(7, "feet"),
  8991. weight: math.unit(300, "lb"),
  8992. name: "Back",
  8993. image: {
  8994. source: "./media/characters/pisces/back.svg",
  8995. extra: 2146 / 2055,
  8996. bottom: 0.04
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Normal",
  9003. height: math.unit(7, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Swimming Pool",
  9008. height: math.unit(12.2, "meters")
  9009. },
  9010. {
  9011. name: "Olympic Swimming Pool",
  9012. height: math.unit(56.3, "meters")
  9013. },
  9014. {
  9015. name: "Lake Superior",
  9016. height: math.unit(93900, "meters")
  9017. },
  9018. {
  9019. name: "Mediterranean Sea",
  9020. height: math.unit(644457, "meters")
  9021. },
  9022. {
  9023. name: "World's Oceans",
  9024. height: math.unit(4567491, "meters")
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(2.3, "meters"),
  9033. weight: math.unit(120, "kg"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/zelas/front.svg"
  9037. }
  9038. },
  9039. side: {
  9040. height: math.unit(2.3, "meters"),
  9041. weight: math.unit(120, "kg"),
  9042. name: "Side",
  9043. image: {
  9044. source: "./media/characters/zelas/side.svg"
  9045. }
  9046. },
  9047. back: {
  9048. height: math.unit(2.3, "meters"),
  9049. weight: math.unit(120, "kg"),
  9050. name: "Back",
  9051. image: {
  9052. source: "./media/characters/zelas/back.svg"
  9053. }
  9054. },
  9055. foot: {
  9056. height: math.unit(1.116, "feet"),
  9057. name: "Foot",
  9058. image: {
  9059. source: "./media/characters/zelas/foot.svg"
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(2.3, "meters")
  9067. },
  9068. {
  9069. name: "Macro",
  9070. height: math.unit(30, "meters"),
  9071. default: true
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(1, "inch"),
  9080. weight: math.unit(0.21, "grams"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/talbot/front.svg",
  9084. extra: 594 / 544
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Micro",
  9091. height: math.unit(1, "inch"),
  9092. default: true
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9098. {
  9099. front: {
  9100. height: math.unit(3 + 3 / 12, "feet"),
  9101. weight: math.unit(51.8, "lb"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/fliss/front.svg",
  9105. extra: 840 / 640
  9106. }
  9107. },
  9108. },
  9109. [
  9110. {
  9111. name: "Teeny Tiny",
  9112. height: math.unit(1, "mm")
  9113. },
  9114. {
  9115. name: "Small",
  9116. height: math.unit(1, "inch"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Standard Sylveon",
  9121. height: math.unit(3 + 3 / 12, "feet")
  9122. },
  9123. {
  9124. name: "Large Nuisance",
  9125. height: math.unit(33, "feet")
  9126. },
  9127. {
  9128. name: "City Filler",
  9129. height: math.unit(3000, "feet")
  9130. },
  9131. {
  9132. name: "New Horizon",
  9133. height: math.unit(6000, "miles")
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(5, "cm"),
  9142. weight: math.unit(1.94, "g"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/fleta/front.svg",
  9146. extra: 835 / 803
  9147. }
  9148. },
  9149. back: {
  9150. height: math.unit(5, "cm"),
  9151. weight: math.unit(1.94, "g"),
  9152. name: "Back",
  9153. image: {
  9154. source: "./media/characters/fleta/back.svg",
  9155. extra: 835 / 803
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Micro",
  9162. height: math.unit(5, "cm"),
  9163. default: true
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(6, "feet"),
  9172. weight: math.unit(225, "lb"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/dominic/front.svg",
  9176. extra: 1770 / 1620,
  9177. bottom: 0.025
  9178. }
  9179. },
  9180. back: {
  9181. height: math.unit(6, "feet"),
  9182. weight: math.unit(225, "lb"),
  9183. name: "Back",
  9184. image: {
  9185. source: "./media/characters/dominic/back.svg",
  9186. extra: 1745 / 1620,
  9187. bottom: 0.065
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Nano",
  9194. height: math.unit(0.1, "mm")
  9195. },
  9196. {
  9197. name: "Micro-",
  9198. height: math.unit(1, "mm")
  9199. },
  9200. {
  9201. name: "Micro",
  9202. height: math.unit(4, "inches")
  9203. },
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(6 + 4 / 12, "feet"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(115, "feet")
  9212. },
  9213. {
  9214. name: "Macro+",
  9215. height: math.unit(955, "feet")
  9216. },
  9217. {
  9218. name: "Megamacro",
  9219. height: math.unit(8990, "feet")
  9220. },
  9221. {
  9222. name: "Gigmacro",
  9223. height: math.unit(9310, "miles")
  9224. },
  9225. {
  9226. name: "Teramacro",
  9227. height: math.unit(1567005010, "miles")
  9228. },
  9229. {
  9230. name: "Examacro",
  9231. height: math.unit(1425, "parsecs")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(400, "feet"),
  9240. weight: math.unit(44444444, "lb"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/major-colonel/front.svg"
  9244. }
  9245. },
  9246. back: {
  9247. height: math.unit(400, "feet"),
  9248. weight: math.unit(44444444, "lb"),
  9249. name: "Back",
  9250. image: {
  9251. source: "./media/characters/major-colonel/back.svg"
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Macro",
  9258. height: math.unit(400, "feet"),
  9259. default: true
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9265. {
  9266. catFront: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(120, "lb"),
  9269. name: "Front (Cat Side)",
  9270. image: {
  9271. source: "./media/characters/axel-lycan/cat-front.svg",
  9272. extra: 430 / 402,
  9273. bottom: 43 / 472.35
  9274. }
  9275. },
  9276. catBack: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(120, "lb"),
  9279. name: "Back (Cat Side)",
  9280. image: {
  9281. source: "./media/characters/axel-lycan/cat-back.svg",
  9282. extra: 447 / 419,
  9283. bottom: 23.3 / 469
  9284. }
  9285. },
  9286. wolfFront: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(120, "lb"),
  9289. name: "Front (Wolf Side)",
  9290. image: {
  9291. source: "./media/characters/axel-lycan/wolf-front.svg",
  9292. extra: 485 / 456,
  9293. bottom: 19 / 504
  9294. }
  9295. },
  9296. wolfBack: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(120, "lb"),
  9299. name: "Back (Wolf Side)",
  9300. image: {
  9301. source: "./media/characters/axel-lycan/wolf-back.svg",
  9302. extra: 475 / 438,
  9303. bottom: 39.2 / 514
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(1, "km"),
  9311. default: true
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(5 + 9 / 12, "feet"),
  9320. weight: math.unit(175, "lb"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/vanrel-hyena/front.svg",
  9324. extra: 1086 / 1010,
  9325. bottom: 0.04
  9326. }
  9327. },
  9328. },
  9329. [
  9330. {
  9331. name: "Normal",
  9332. height: math.unit(5 + 9 / 12, "feet"),
  9333. default: true
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9339. {
  9340. front: {
  9341. height: math.unit(6, "feet"),
  9342. weight: math.unit(103, "lb"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/abbott-absol/front.svg",
  9346. extra: 2010 / 1842
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Megamicro",
  9353. height: math.unit(0.1, "mm")
  9354. },
  9355. {
  9356. name: "Micro",
  9357. height: math.unit(1, "inch")
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(6, "feet"),
  9362. default: true
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(264, "lb"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/hector/front.svg",
  9375. extra: 2280 / 2130,
  9376. bottom: 0.07
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(12.25, "foot"),
  9384. default: true
  9385. },
  9386. {
  9387. name: "Macro",
  9388. height: math.unit(160, "feet")
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9394. {
  9395. front: {
  9396. height: math.unit(6, "feet"),
  9397. weight: math.unit(150, "lb"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/sal/front.svg",
  9401. extra: 1846 / 1699,
  9402. bottom: 0.04
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Megamacro",
  9409. height: math.unit(10, "miles"),
  9410. default: true
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9416. {
  9417. front: {
  9418. height: math.unit(3, "meters"),
  9419. weight: math.unit(450, "kg"),
  9420. name: "front",
  9421. image: {
  9422. source: "./media/characters/ranger/front.svg",
  9423. extra: 2401 / 2243,
  9424. bottom: 0.05
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Normal",
  9431. height: math.unit(3, "meters"),
  9432. default: true
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9438. {
  9439. front: {
  9440. height: math.unit(14, "feet"),
  9441. weight: math.unit(800, "kg"),
  9442. name: "Front",
  9443. image: {
  9444. source: "./media/characters/theresa/front.svg",
  9445. extra: 3575 / 3346,
  9446. bottom: 0.03
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(14, "feet"),
  9454. default: true
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(3, "kg"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/ine/front.svg",
  9467. extra: 678 / 539,
  9468. bottom: 0.023
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Normal",
  9475. height: math.unit(2.265, "feet"),
  9476. default: true
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9482. {
  9483. front: {
  9484. height: math.unit(5, "feet"),
  9485. weight: math.unit(30, "kg"),
  9486. name: "Front",
  9487. image: {
  9488. source: "./media/characters/vial/front.svg",
  9489. extra: 1365 / 1277,
  9490. bottom: 0.04
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(5, "feet"),
  9498. default: true
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9504. {
  9505. side: {
  9506. height: math.unit(3.4, "meters"),
  9507. weight: math.unit(1000, "lb"),
  9508. name: "Side",
  9509. image: {
  9510. source: "./media/characters/rovoska/side.svg",
  9511. extra: 4403 / 1515
  9512. }
  9513. },
  9514. },
  9515. [
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(3.4, "meters"),
  9519. default: true
  9520. },
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9525. {
  9526. front: {
  9527. height: math.unit(8, "feet"),
  9528. weight: math.unit(315, "lb"),
  9529. name: "Front",
  9530. image: {
  9531. source: "./media/characters/gunner-rotthbauer/front.svg"
  9532. }
  9533. },
  9534. back: {
  9535. height: math.unit(8, "feet"),
  9536. weight: math.unit(315, "lb"),
  9537. name: "Back",
  9538. image: {
  9539. source: "./media/characters/gunner-rotthbauer/back.svg"
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Micro",
  9546. height: math.unit(3.5, "inches")
  9547. },
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(8, "feet"),
  9551. default: true
  9552. },
  9553. {
  9554. name: "Macro",
  9555. height: math.unit(250, "feet")
  9556. },
  9557. {
  9558. name: "Megamacro",
  9559. height: math.unit(1, "AU")
  9560. },
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9565. {
  9566. front: {
  9567. height: math.unit(5 + 5 / 12, "feet"),
  9568. weight: math.unit(140, "lb"),
  9569. name: "Front",
  9570. image: {
  9571. source: "./media/characters/allatia/front.svg",
  9572. extra: 1227 / 1180,
  9573. bottom: 0.027
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(5 + 5 / 12, "feet")
  9581. },
  9582. {
  9583. name: "Macro",
  9584. height: math.unit(250, "feet"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Megamacro",
  9589. height: math.unit(8, "miles")
  9590. }
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9595. {
  9596. front: {
  9597. height: math.unit(6, "feet"),
  9598. weight: math.unit(120, "lb"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/tene/front.svg",
  9602. extra: 1728 / 1578,
  9603. bottom: 0.022
  9604. }
  9605. },
  9606. stomping: {
  9607. height: math.unit(2.025, "meters"),
  9608. weight: math.unit(120, "lb"),
  9609. name: "Stomping",
  9610. image: {
  9611. source: "./media/characters/tene/stomping.svg",
  9612. extra: 938 / 873,
  9613. bottom: 0.01
  9614. }
  9615. },
  9616. sitting: {
  9617. height: math.unit(1, "meter"),
  9618. weight: math.unit(120, "lb"),
  9619. name: "Sitting",
  9620. image: {
  9621. source: "./media/characters/tene/sitting.svg",
  9622. extra: 437 / 415,
  9623. bottom: 0.1
  9624. }
  9625. },
  9626. feral: {
  9627. height: math.unit(3.9, "feet"),
  9628. weight: math.unit(250, "lb"),
  9629. name: "Feral",
  9630. image: {
  9631. source: "./media/characters/tene/feral.svg",
  9632. extra: 717 / 458,
  9633. bottom: 0.179
  9634. }
  9635. },
  9636. },
  9637. [
  9638. {
  9639. name: "Normal",
  9640. height: math.unit(6, "feet")
  9641. },
  9642. {
  9643. name: "Macro",
  9644. height: math.unit(300, "feet"),
  9645. default: true
  9646. },
  9647. {
  9648. name: "Megamacro",
  9649. height: math.unit(5, "miles")
  9650. },
  9651. ]
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9655. {
  9656. side: {
  9657. height: math.unit(6, "feet"),
  9658. name: "Side",
  9659. image: {
  9660. source: "./media/characters/evander/side.svg",
  9661. extra: 877 / 477
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(0.83, "meters"),
  9669. default: true
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(12, "feet"),
  9678. weight: math.unit(1000, "lb"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9682. extra: 1762 / 1611
  9683. }
  9684. },
  9685. back: {
  9686. height: math.unit(12, "feet"),
  9687. weight: math.unit(1000, "lb"),
  9688. name: "Back",
  9689. image: {
  9690. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9691. extra: 1762 / 1611
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(12, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Kaiju",
  9703. height: math.unit(150, "feet")
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(6, "feet"),
  9712. weight: math.unit(150, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/zero-alurus/front.svg"
  9716. }
  9717. },
  9718. back: {
  9719. height: math.unit(6, "feet"),
  9720. weight: math.unit(150, "lb"),
  9721. name: "Back",
  9722. image: {
  9723. source: "./media/characters/zero-alurus/back.svg"
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(5 + 10 / 12, "feet")
  9731. },
  9732. {
  9733. name: "Macro",
  9734. height: math.unit(60, "feet"),
  9735. default: true
  9736. },
  9737. {
  9738. name: "Macro+",
  9739. height: math.unit(450, "feet")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(6, "feet"),
  9748. weight: math.unit(200, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/mega-shi/front.svg",
  9752. extra: 1279 / 1250,
  9753. bottom: 0.02
  9754. }
  9755. },
  9756. back: {
  9757. height: math.unit(6, "feet"),
  9758. weight: math.unit(200, "lb"),
  9759. name: "Back",
  9760. image: {
  9761. source: "./media/characters/mega-shi/back.svg",
  9762. extra: 1279 / 1250,
  9763. bottom: 0.02
  9764. }
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Micro",
  9770. height: math.unit(16 + 6 / 12, "feet")
  9771. },
  9772. {
  9773. name: "Third Dimension",
  9774. height: math.unit(40, "meters")
  9775. },
  9776. {
  9777. name: "Normal",
  9778. height: math.unit(660, "feet"),
  9779. default: true
  9780. },
  9781. {
  9782. name: "Megamacro",
  9783. height: math.unit(10, "miles")
  9784. },
  9785. {
  9786. name: "Planetary Launch",
  9787. height: math.unit(500, "miles")
  9788. },
  9789. {
  9790. name: "Interstellar",
  9791. height: math.unit(1e9, "miles")
  9792. },
  9793. {
  9794. name: "Leaving the Universe",
  9795. height: math.unit(1, "gigaparsec")
  9796. },
  9797. {
  9798. name: "Travelling Universes",
  9799. height: math.unit(30e15, "parsecs")
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(6, "feet"),
  9808. weight: math.unit(150, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/odyssey/front.svg",
  9812. extra: 1782 / 1582,
  9813. bottom: 0.01
  9814. }
  9815. },
  9816. side: {
  9817. height: math.unit(5.7, "feet"),
  9818. weight: math.unit(140, "lb"),
  9819. name: "Side",
  9820. image: {
  9821. source: "./media/characters/odyssey/side.svg",
  9822. extra: 6462 / 5700
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(5 + 4 / 12, "feet")
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(1, "km")
  9834. },
  9835. {
  9836. name: "Megamacro",
  9837. height: math.unit(3000, "km")
  9838. },
  9839. {
  9840. name: "Gigamacro",
  9841. height: math.unit(1, "AU"),
  9842. default: true
  9843. },
  9844. {
  9845. name: "Omniversal",
  9846. height: math.unit(100e14, "lightyears")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(6, "feet"),
  9855. weight: math.unit(300, "lb"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/mekuto/front.svg",
  9859. extra: 921 / 832,
  9860. bottom: 0.03
  9861. }
  9862. },
  9863. hand: {
  9864. height: math.unit(6 / 10.24, "feet"),
  9865. name: "Hand",
  9866. image: {
  9867. source: "./media/characters/mekuto/hand.svg"
  9868. }
  9869. },
  9870. foot: {
  9871. height: math.unit(6 / 5.05, "feet"),
  9872. name: "Foot",
  9873. image: {
  9874. source: "./media/characters/mekuto/foot.svg"
  9875. }
  9876. },
  9877. },
  9878. [
  9879. {
  9880. name: "Minimicro",
  9881. height: math.unit(0.2, "inches")
  9882. },
  9883. {
  9884. name: "Micro",
  9885. height: math.unit(1.5, "inches")
  9886. },
  9887. {
  9888. name: "Normal",
  9889. height: math.unit(5 + 11 / 12, "feet"),
  9890. default: true
  9891. },
  9892. {
  9893. name: "Minimacro",
  9894. height: math.unit(17 + 9 / 12, "feet")
  9895. },
  9896. {
  9897. name: "Macro",
  9898. height: math.unit(177.5, "feet")
  9899. },
  9900. {
  9901. name: "Megamacro",
  9902. height: math.unit(152, "miles")
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(6.5, "inches"),
  9911. weight: math.unit(13, "oz"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/dafydd-tomos/front.svg",
  9915. extra: 2990 / 2603,
  9916. bottom: 0.03
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Micro",
  9923. height: math.unit(6.5, "inches"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(6, "feet"),
  9933. weight: math.unit(150, "lb"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/splinter/front.svg",
  9937. extra: 2990 / 2882,
  9938. bottom: 0.04
  9939. }
  9940. },
  9941. back: {
  9942. height: math.unit(6, "feet"),
  9943. weight: math.unit(150, "lb"),
  9944. name: "Back",
  9945. image: {
  9946. source: "./media/characters/splinter/back.svg",
  9947. extra: 2990 / 2882,
  9948. bottom: 0.04
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(6, "feet")
  9956. },
  9957. {
  9958. name: "Macro",
  9959. height: math.unit(230, "meters"),
  9960. default: true
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(4 + 10 / 12, "feet"),
  9969. weight: math.unit(480, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/snow-gabumon/front.svg",
  9973. extra: 1140 / 963,
  9974. bottom: 0.058
  9975. }
  9976. },
  9977. back: {
  9978. height: math.unit(4 + 10 / 12, "feet"),
  9979. weight: math.unit(480, "lb"),
  9980. name: "Back",
  9981. image: {
  9982. source: "./media/characters/snow-gabumon/back.svg",
  9983. extra: 1115 / 962,
  9984. bottom: 0.041
  9985. }
  9986. },
  9987. frontUndresed: {
  9988. height: math.unit(4 + 10 / 12, "feet"),
  9989. weight: math.unit(480, "lb"),
  9990. name: "Front (Undressed)",
  9991. image: {
  9992. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9993. extra: 1061 / 960,
  9994. bottom: 0.045
  9995. }
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Micro",
  10001. height: math.unit(1, "inch")
  10002. },
  10003. {
  10004. name: "Normal",
  10005. height: math.unit(4 + 10 / 12, "feet"),
  10006. default: true
  10007. },
  10008. {
  10009. name: "Macro",
  10010. height: math.unit(200, "feet")
  10011. },
  10012. {
  10013. name: "Megamacro",
  10014. height: math.unit(120, "miles")
  10015. },
  10016. {
  10017. name: "Gigamacro",
  10018. height: math.unit(9800, "miles")
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(1.7, "meters"),
  10027. weight: math.unit(140, "lb"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/moody/front.svg",
  10031. extra: 3226 / 3007,
  10032. bottom: 0.087
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Micro",
  10039. height: math.unit(1, "mm")
  10040. },
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(1.7, "meters"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(80, "meters")
  10049. },
  10050. {
  10051. name: "Macro+",
  10052. height: math.unit(500, "meters")
  10053. },
  10054. ]
  10055. ))
  10056. characterMakers.push(() => makeCharacter(
  10057. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10058. {
  10059. front: {
  10060. height: math.unit(6, "feet"),
  10061. weight: math.unit(150, "lb"),
  10062. name: "Front",
  10063. image: {
  10064. source: "./media/characters/zyas/front.svg",
  10065. extra: 1180 / 1120,
  10066. bottom: 0.045
  10067. }
  10068. },
  10069. },
  10070. [
  10071. {
  10072. name: "Normal",
  10073. height: math.unit(10, "feet"),
  10074. default: true
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(500, "feet")
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(5, "miles")
  10083. },
  10084. {
  10085. name: "Teramacro",
  10086. height: math.unit(150000, "miles")
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(150, "lb"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/cuon/front.svg",
  10099. extra: 1390 / 1320,
  10100. bottom: 0.008
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Micro",
  10107. height: math.unit(3, "inches")
  10108. },
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(18 + 9 / 12, "feet"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Macro",
  10116. height: math.unit(360, "feet")
  10117. },
  10118. {
  10119. name: "Megamacro",
  10120. height: math.unit(360, "miles")
  10121. },
  10122. ]
  10123. ))
  10124. characterMakers.push(() => makeCharacter(
  10125. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10126. {
  10127. front: {
  10128. height: math.unit(2.4, "meters"),
  10129. weight: math.unit(70, "kg"),
  10130. name: "Front",
  10131. image: {
  10132. source: "./media/characters/nyanuxk/front.svg",
  10133. extra: 1172 / 1084,
  10134. bottom: 0.065
  10135. }
  10136. },
  10137. side: {
  10138. height: math.unit(2.4, "meters"),
  10139. weight: math.unit(70, "kg"),
  10140. name: "Side",
  10141. image: {
  10142. source: "./media/characters/nyanuxk/side.svg",
  10143. extra: 1190 / 1132,
  10144. bottom: 0.007
  10145. }
  10146. },
  10147. back: {
  10148. height: math.unit(2.4, "meters"),
  10149. weight: math.unit(70, "kg"),
  10150. name: "Back",
  10151. image: {
  10152. source: "./media/characters/nyanuxk/back.svg",
  10153. extra: 1200 / 1141,
  10154. bottom: 0.015
  10155. }
  10156. },
  10157. foot: {
  10158. height: math.unit(0.52, "meters"),
  10159. name: "Foot",
  10160. image: {
  10161. source: "./media/characters/nyanuxk/foot.svg"
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Micro",
  10168. height: math.unit(2, "cm")
  10169. },
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(2.4, "meters"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Smaller Macro",
  10177. height: math.unit(120, "meters")
  10178. },
  10179. {
  10180. name: "Bigger Macro",
  10181. height: math.unit(1.2, "km")
  10182. },
  10183. {
  10184. name: "Megamacro",
  10185. height: math.unit(15, "kilometers")
  10186. },
  10187. {
  10188. name: "Gigamacro",
  10189. height: math.unit(2000, "km")
  10190. },
  10191. {
  10192. name: "Teramacro",
  10193. height: math.unit(500000, "km")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10199. {
  10200. side: {
  10201. height: math.unit(6, "feet"),
  10202. name: "Side",
  10203. image: {
  10204. source: "./media/characters/ailbhe/side.svg",
  10205. extra: 757 / 464,
  10206. bottom: 0.041
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(1.07, "meters"),
  10214. default: true
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6, "feet"),
  10223. weight: math.unit(120, "kg"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/zevulfius/front.svg",
  10227. extra: 965 / 903
  10228. }
  10229. },
  10230. side: {
  10231. height: math.unit(6, "feet"),
  10232. weight: math.unit(120, "kg"),
  10233. name: "Side",
  10234. image: {
  10235. source: "./media/characters/zevulfius/side.svg",
  10236. extra: 939 / 900
  10237. }
  10238. },
  10239. back: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(120, "kg"),
  10242. name: "Back",
  10243. image: {
  10244. source: "./media/characters/zevulfius/back.svg",
  10245. extra: 918 / 854,
  10246. bottom: 0.005
  10247. }
  10248. },
  10249. foot: {
  10250. height: math.unit(6 / 3.72, "feet"),
  10251. name: "Foot",
  10252. image: {
  10253. source: "./media/characters/zevulfius/foot.svg"
  10254. }
  10255. },
  10256. },
  10257. [
  10258. {
  10259. name: "Macro",
  10260. height: math.unit(750, "meters")
  10261. },
  10262. {
  10263. name: "Megamacro",
  10264. height: math.unit(20, "km"),
  10265. default: true
  10266. },
  10267. {
  10268. name: "Gigamacro",
  10269. height: math.unit(2000, "km")
  10270. },
  10271. {
  10272. name: "Teramacro",
  10273. height: math.unit(250000, "km")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10279. {
  10280. front: {
  10281. height: math.unit(100, "feet"),
  10282. weight: math.unit(350, "kg"),
  10283. name: "Front",
  10284. image: {
  10285. source: "./media/characters/rikes/front.svg",
  10286. extra: 1565 / 1483,
  10287. bottom: 0.017
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(100, "feet"),
  10295. default: true
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10301. {
  10302. anthro: {
  10303. height: math.unit(8, "feet"),
  10304. weight: math.unit(120, "kg"),
  10305. name: "Anthro",
  10306. image: {
  10307. source: "./media/characters/adam-silver-mane/anthro.svg",
  10308. extra: 5743 / 5339,
  10309. bottom: 0.07
  10310. }
  10311. },
  10312. taur: {
  10313. height: math.unit(16, "feet"),
  10314. weight: math.unit(1500, "kg"),
  10315. name: "Taur",
  10316. image: {
  10317. source: "./media/characters/adam-silver-mane/taur.svg",
  10318. extra: 1713 / 1571,
  10319. bottom: 0.01
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Normal",
  10326. height: math.unit(8, "feet")
  10327. },
  10328. {
  10329. name: "Minimacro",
  10330. height: math.unit(80, "feet")
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(800, "feet"),
  10335. default: true
  10336. },
  10337. {
  10338. name: "Megamacro",
  10339. height: math.unit(8000, "feet")
  10340. },
  10341. {
  10342. name: "Gigamacro",
  10343. height: math.unit(800, "miles")
  10344. },
  10345. {
  10346. name: "Teramacro",
  10347. height: math.unit(80000, "miles")
  10348. },
  10349. {
  10350. name: "Celestial",
  10351. height: math.unit(8e6, "miles")
  10352. },
  10353. {
  10354. name: "Star Dragon",
  10355. height: math.unit(800000, "parsecs")
  10356. },
  10357. {
  10358. name: "Godly",
  10359. height: math.unit(800, "teraparsecs")
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10365. {
  10366. front: {
  10367. height: math.unit(6, "feet"),
  10368. weight: math.unit(150, "lb"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/ky'owin/front.svg",
  10372. extra: 3888 / 3068,
  10373. bottom: 0.015
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(6 + 8 / 12, "feet")
  10381. },
  10382. {
  10383. name: "Large",
  10384. height: math.unit(68, "feet")
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(132, "feet")
  10389. },
  10390. {
  10391. name: "Macro+",
  10392. height: math.unit(340, "feet")
  10393. },
  10394. {
  10395. name: "Macro++",
  10396. height: math.unit(680, "feet"),
  10397. default: true
  10398. },
  10399. {
  10400. name: "Megamacro",
  10401. height: math.unit(1, "mile")
  10402. },
  10403. {
  10404. name: "Megamacro+",
  10405. height: math.unit(10, "miles")
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(4, "feet"),
  10414. weight: math.unit(50, "lb"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/mal/front.svg",
  10418. extra: 785 / 724,
  10419. bottom: 0.07
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Micro",
  10426. height: math.unit(4, "inches")
  10427. },
  10428. {
  10429. name: "Normal",
  10430. height: math.unit(4, "feet"),
  10431. default: true
  10432. },
  10433. {
  10434. name: "Macro",
  10435. height: math.unit(200, "feet")
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(6, "feet"),
  10444. weight: math.unit(150, "lb"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/jordan-deware/front.svg",
  10448. extra: 1191 / 1012
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Nano",
  10455. height: math.unit(0.01, "mm")
  10456. },
  10457. {
  10458. name: "Minimicro",
  10459. height: math.unit(1, "mm")
  10460. },
  10461. {
  10462. name: "Micro",
  10463. height: math.unit(0.5, "inches")
  10464. },
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(4, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Minimacro",
  10472. height: math.unit(40, "meters")
  10473. },
  10474. {
  10475. name: "Small Macro",
  10476. height: math.unit(400, "meters")
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(4, "miles")
  10481. },
  10482. {
  10483. name: "Megamacro",
  10484. height: math.unit(40, "miles")
  10485. },
  10486. {
  10487. name: "Megamacro+",
  10488. height: math.unit(400, "miles")
  10489. },
  10490. {
  10491. name: "Gigamacro",
  10492. height: math.unit(400000, "miles")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10498. {
  10499. side: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(150, "lb"),
  10502. name: "Side",
  10503. image: {
  10504. source: "./media/characters/kimiko/side.svg",
  10505. extra: 600 / 358
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(15, "feet"),
  10513. default: true
  10514. },
  10515. {
  10516. name: "Macro",
  10517. height: math.unit(220, "feet")
  10518. },
  10519. {
  10520. name: "Macro+",
  10521. height: math.unit(1450, "feet")
  10522. },
  10523. {
  10524. name: "Megamacro",
  10525. height: math.unit(11500, "feet")
  10526. },
  10527. {
  10528. name: "Gigamacro",
  10529. height: math.unit(9500, "miles")
  10530. },
  10531. {
  10532. name: "Teramacro",
  10533. height: math.unit(2208005005, "miles")
  10534. },
  10535. {
  10536. name: "Examacro",
  10537. height: math.unit(2750, "parsecs")
  10538. },
  10539. {
  10540. name: "Zettamacro",
  10541. height: math.unit(101500, "parsecs")
  10542. },
  10543. ]
  10544. ))
  10545. characterMakers.push(() => makeCharacter(
  10546. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10547. {
  10548. front: {
  10549. height: math.unit(6, "feet"),
  10550. weight: math.unit(70, "kg"),
  10551. name: "Front",
  10552. image: {
  10553. source: "./media/characters/andrew-sleepy/front.svg"
  10554. }
  10555. },
  10556. side: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(70, "kg"),
  10559. name: "Side",
  10560. image: {
  10561. source: "./media/characters/andrew-sleepy/side.svg"
  10562. }
  10563. },
  10564. },
  10565. [
  10566. {
  10567. name: "Micro",
  10568. height: math.unit(1, "mm"),
  10569. default: true
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10575. {
  10576. front: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(150, "lb"),
  10579. name: "Front",
  10580. image: {
  10581. source: "./media/characters/judio/front.svg",
  10582. extra: 1258 / 1110
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(5 + 6 / 12, "feet")
  10590. },
  10591. {
  10592. name: "Macro",
  10593. height: math.unit(1000, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(10, "miles")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(68, "kg"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/nomaxice/front.svg",
  10611. extra: 1498 / 1073,
  10612. bottom: 0.075
  10613. }
  10614. },
  10615. foot: {
  10616. height: math.unit(1.1, "feet"),
  10617. name: "Foot",
  10618. image: {
  10619. source: "./media/characters/nomaxice/foot.svg"
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Micro",
  10626. height: math.unit(8, "cm")
  10627. },
  10628. {
  10629. name: "Norm",
  10630. height: math.unit(1.82, "m")
  10631. },
  10632. {
  10633. name: "Norm+",
  10634. height: math.unit(8.8, "feet")
  10635. },
  10636. {
  10637. name: "Big",
  10638. height: math.unit(8, "meters"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Macro",
  10643. height: math.unit(18, "meters")
  10644. },
  10645. {
  10646. name: "Macro+",
  10647. height: math.unit(88, "meters")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(12, "feet"),
  10656. weight: math.unit(1.5, "tons"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/dydros/front.svg",
  10660. extra: 863 / 800,
  10661. bottom: 0.015
  10662. }
  10663. },
  10664. back: {
  10665. height: math.unit(12, "feet"),
  10666. weight: math.unit(1.5, "tons"),
  10667. name: "Back",
  10668. image: {
  10669. source: "./media/characters/dydros/back.svg",
  10670. extra: 900 / 843,
  10671. bottom: 0.005
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Normal",
  10678. height: math.unit(12, "feet"),
  10679. default: true
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(100, "kg"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/riggi/front.svg",
  10692. extra: 5787 / 5303
  10693. }
  10694. },
  10695. hyper: {
  10696. height: math.unit(6 * 5 / 3, "feet"),
  10697. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10698. name: "Hyper",
  10699. image: {
  10700. source: "./media/characters/riggi/hyper.svg",
  10701. extra: 3595 / 3485
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Small Macro",
  10708. height: math.unit(50, "feet")
  10709. },
  10710. {
  10711. name: "Default",
  10712. height: math.unit(200, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Loom",
  10717. height: math.unit(10000, "feet")
  10718. },
  10719. {
  10720. name: "Cruising Altitude",
  10721. height: math.unit(30000, "feet")
  10722. },
  10723. {
  10724. name: "Megamacro",
  10725. height: math.unit(100, "miles")
  10726. },
  10727. {
  10728. name: "Continent Sized",
  10729. height: math.unit(2800, "miles")
  10730. },
  10731. {
  10732. name: "Earth Sized",
  10733. height: math.unit(8000, "miles")
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(6, "feet"),
  10742. weight: math.unit(250, "lb"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/alexi/front.svg",
  10746. extra: 3483 / 3291,
  10747. bottom: 0.04
  10748. }
  10749. },
  10750. back: {
  10751. height: math.unit(6, "feet"),
  10752. weight: math.unit(250, "lb"),
  10753. name: "Back",
  10754. image: {
  10755. source: "./media/characters/alexi/back.svg",
  10756. extra: 3533 / 3356,
  10757. bottom: 0.021
  10758. }
  10759. },
  10760. frontTransforming: {
  10761. height: math.unit(8.58, "feet"),
  10762. weight: math.unit(1300, "lb"),
  10763. name: "Transforming",
  10764. image: {
  10765. source: "./media/characters/alexi/front-transforming.svg",
  10766. extra: 437 / 409,
  10767. bottom: 19 / 458.66
  10768. }
  10769. },
  10770. frontTransformed: {
  10771. height: math.unit(12.5, "feet"),
  10772. weight: math.unit(4000, "lb"),
  10773. name: "Transformed",
  10774. image: {
  10775. source: "./media/characters/alexi/front-transformed.svg",
  10776. extra: 639 / 614,
  10777. bottom: 30.55 / 671
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(14, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Minimacro",
  10789. height: math.unit(30, "meters")
  10790. },
  10791. {
  10792. name: "Macro",
  10793. height: math.unit(500, "meters")
  10794. },
  10795. {
  10796. name: "Megamacro",
  10797. height: math.unit(9000, "km")
  10798. },
  10799. {
  10800. name: "Teramacro",
  10801. height: math.unit(384000, "km")
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10807. {
  10808. front: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(150, "lb"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/kayroo/front.svg",
  10814. extra: 1153 / 1038,
  10815. bottom: 0.06
  10816. }
  10817. },
  10818. foot: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Foot",
  10822. image: {
  10823. source: "./media/characters/kayroo/foot.svg"
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Normal",
  10830. height: math.unit(8, "feet"),
  10831. default: true
  10832. },
  10833. {
  10834. name: "Minimacro",
  10835. height: math.unit(250, "feet")
  10836. },
  10837. {
  10838. name: "Macro",
  10839. height: math.unit(2800, "feet")
  10840. },
  10841. {
  10842. name: "Megamacro",
  10843. height: math.unit(5200, "feet")
  10844. },
  10845. {
  10846. name: "Gigamacro",
  10847. height: math.unit(27000, "feet")
  10848. },
  10849. {
  10850. name: "Omega",
  10851. height: math.unit(45000, "feet")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(18, "feet"),
  10860. weight: math.unit(5800, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/rhys/front.svg",
  10864. extra: 3386 / 3090,
  10865. bottom: 0.07
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(18, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Working Size",
  10877. height: math.unit(200, "feet")
  10878. },
  10879. {
  10880. name: "Demolition Size",
  10881. height: math.unit(2000, "feet")
  10882. },
  10883. {
  10884. name: "Maximum Licensed Size",
  10885. height: math.unit(5, "miles")
  10886. },
  10887. {
  10888. name: "Maximum Observed Size",
  10889. height: math.unit(10, "yottameters")
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(6, "feet"),
  10898. weight: math.unit(250, "lb"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/toto/front.svg",
  10902. extra: 527 / 479,
  10903. bottom: 0.05
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Micro",
  10910. height: math.unit(3, "feet")
  10911. },
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(10, "feet")
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(150, "feet"),
  10919. default: true
  10920. },
  10921. {
  10922. name: "Megamacro",
  10923. height: math.unit(1200, "feet")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "King", species: ["lion"], tags: ["anthro"] },
  10929. {
  10930. back: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Back",
  10934. image: {
  10935. source: "./media/characters/king/back.svg"
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Micro",
  10942. height: math.unit(2, "inches")
  10943. },
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(8, "feet")
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(200, "feet"),
  10951. default: true
  10952. },
  10953. {
  10954. name: "Megamacro",
  10955. height: math.unit(50, "miles")
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10961. {
  10962. anthro: {
  10963. height: math.unit(6 + 5 / 12, "feet"),
  10964. weight: math.unit(280, "lb"),
  10965. name: "Anthro",
  10966. image: {
  10967. source: "./media/characters/cordite/anthro.svg",
  10968. extra: 1986 / 1905,
  10969. bottom: 0.025
  10970. }
  10971. },
  10972. feral: {
  10973. height: math.unit(2, "feet"),
  10974. weight: math.unit(90, "lb"),
  10975. name: "Feral",
  10976. image: {
  10977. source: "./media/characters/cordite/feral.svg",
  10978. extra: 1260 / 755,
  10979. bottom: 0.05
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Normal",
  10986. height: math.unit(6 + 5 / 12, "feet"),
  10987. default: true
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10993. {
  10994. front: {
  10995. height: math.unit(6, "feet"),
  10996. weight: math.unit(150, "lb"),
  10997. name: "Front",
  10998. image: {
  10999. source: "./media/characters/pianostrong/front.svg",
  11000. extra: 6577 / 6254,
  11001. bottom: 0.02
  11002. }
  11003. },
  11004. side: {
  11005. height: math.unit(6, "feet"),
  11006. weight: math.unit(150, "lb"),
  11007. name: "Side",
  11008. image: {
  11009. source: "./media/characters/pianostrong/side.svg",
  11010. extra: 6106 / 5730
  11011. }
  11012. },
  11013. back: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(150, "lb"),
  11016. name: "Back",
  11017. image: {
  11018. source: "./media/characters/pianostrong/back.svg",
  11019. extra: 6085 / 5733,
  11020. bottom: 0.01
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Macro",
  11027. height: math.unit(100, "feet")
  11028. },
  11029. {
  11030. name: "Macro+",
  11031. height: math.unit(300, "feet"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Macro++",
  11036. height: math.unit(1000, "feet")
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11042. {
  11043. front: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(150, "lb"),
  11046. name: "Front",
  11047. image: {
  11048. source: "./media/characters/kona/front.svg",
  11049. extra: 2960 / 2629,
  11050. bottom: 0.005
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(11 + 8 / 12, "feet")
  11058. },
  11059. {
  11060. name: "Macro",
  11061. height: math.unit(850, "feet"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Macro+",
  11066. height: math.unit(1.5, "km"),
  11067. default: true
  11068. },
  11069. {
  11070. name: "Megamacro",
  11071. height: math.unit(80, "miles")
  11072. },
  11073. {
  11074. name: "Gigamacro",
  11075. height: math.unit(3500, "miles")
  11076. },
  11077. ]
  11078. ))
  11079. characterMakers.push(() => makeCharacter(
  11080. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11081. {
  11082. side: {
  11083. height: math.unit(1.9, "meters"),
  11084. weight: math.unit(326, "kg"),
  11085. name: "Side",
  11086. image: {
  11087. source: "./media/characters/levi/side.svg",
  11088. extra: 1704 / 1334,
  11089. bottom: 0.02
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(1.9, "meters"),
  11097. default: true
  11098. },
  11099. {
  11100. name: "Macro",
  11101. height: math.unit(20, "meters")
  11102. },
  11103. {
  11104. name: "Macro+",
  11105. height: math.unit(200, "meters")
  11106. },
  11107. {
  11108. name: "Megamacro",
  11109. height: math.unit(2, "km")
  11110. },
  11111. {
  11112. name: "Megamacro+",
  11113. height: math.unit(20, "km")
  11114. },
  11115. {
  11116. name: "Gigamacro",
  11117. height: math.unit(2500, "km")
  11118. },
  11119. {
  11120. name: "Gigamacro+",
  11121. height: math.unit(120000, "km")
  11122. },
  11123. {
  11124. name: "Teramacro",
  11125. height: math.unit(7.77e6, "km")
  11126. },
  11127. ]
  11128. ))
  11129. characterMakers.push(() => makeCharacter(
  11130. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11131. {
  11132. front: {
  11133. height: math.unit(6 + 4 / 12, "feet"),
  11134. weight: math.unit(188, "lb"),
  11135. name: "Front",
  11136. image: {
  11137. source: "./media/characters/bmc/front.svg",
  11138. extra: 1067 / 1022,
  11139. bottom: 0.047
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Human-sized",
  11146. height: math.unit(6 + 4 / 12, "feet")
  11147. },
  11148. {
  11149. name: "Small",
  11150. height: math.unit(250, "feet")
  11151. },
  11152. {
  11153. name: "Normal",
  11154. height: math.unit(1250, "feet"),
  11155. default: true
  11156. },
  11157. {
  11158. name: "Good Day",
  11159. height: math.unit(88, "miles")
  11160. },
  11161. {
  11162. name: "Largest Measured Size",
  11163. height: math.unit(11.2e6, "lightyears")
  11164. },
  11165. ]
  11166. ))
  11167. characterMakers.push(() => makeCharacter(
  11168. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11169. {
  11170. front: {
  11171. height: math.unit(20, "feet"),
  11172. weight: math.unit(2016, "kg"),
  11173. name: "Front",
  11174. image: {
  11175. source: "./media/characters/sven-the-kaiju/front.svg",
  11176. extra: 1277/1250,
  11177. bottom: 35/1312
  11178. }
  11179. },
  11180. mouth: {
  11181. height: math.unit(1.85, "feet"),
  11182. name: "Mouth",
  11183. image: {
  11184. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Fairy",
  11191. height: math.unit(6, "inches")
  11192. },
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(20, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Rampage",
  11200. height: math.unit(200, "feet")
  11201. },
  11202. {
  11203. name: "Archfey Forest Guardian",
  11204. height: math.unit(1, "mile")
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11210. {
  11211. front: {
  11212. height: math.unit(4, "meters"),
  11213. weight: math.unit(2, "tons"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/marik/front.svg",
  11217. extra: 1057 / 1003,
  11218. bottom: 0.08
  11219. }
  11220. },
  11221. },
  11222. [
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(4, "meters"),
  11226. default: true
  11227. },
  11228. {
  11229. name: "Macro",
  11230. height: math.unit(20, "meters")
  11231. },
  11232. {
  11233. name: "Megamacro",
  11234. height: math.unit(50, "km")
  11235. },
  11236. {
  11237. name: "Gigamacro",
  11238. height: math.unit(100, "km")
  11239. },
  11240. {
  11241. name: "Alpha Macro",
  11242. height: math.unit(7.88e7, "yottameters")
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11248. {
  11249. front: {
  11250. height: math.unit(6, "feet"),
  11251. weight: math.unit(110, "lb"),
  11252. name: "Front",
  11253. image: {
  11254. source: "./media/characters/mel/front.svg",
  11255. extra: 736 / 617,
  11256. bottom: 0.017
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Pico",
  11263. height: math.unit(3, "pm")
  11264. },
  11265. {
  11266. name: "Nano",
  11267. height: math.unit(3, "nm")
  11268. },
  11269. {
  11270. name: "Micro",
  11271. height: math.unit(0.3, "mm"),
  11272. default: true
  11273. },
  11274. {
  11275. name: "Micro+",
  11276. height: math.unit(3, "mm")
  11277. },
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(5 + 10.5 / 12, "feet")
  11281. },
  11282. ]
  11283. ))
  11284. characterMakers.push(() => makeCharacter(
  11285. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11286. {
  11287. kaiju: {
  11288. height: math.unit(1.75, "meters"),
  11289. weight: math.unit(55, "kg"),
  11290. name: "Kaiju",
  11291. image: {
  11292. source: "./media/characters/lykonous/kaiju.svg",
  11293. extra: 1055 / 946,
  11294. bottom: 0.135
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(2.5, "meters"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Kaiju Dragon",
  11306. height: math.unit(60, "meters")
  11307. },
  11308. {
  11309. name: "Mega Kaiju",
  11310. height: math.unit(120, "km")
  11311. },
  11312. {
  11313. name: "Giga Kaiju",
  11314. height: math.unit(200, "megameters")
  11315. },
  11316. {
  11317. name: "Terra Kaiju",
  11318. height: math.unit(400, "gigameters")
  11319. },
  11320. {
  11321. name: "Kaiju Dragon God",
  11322. height: math.unit(13000, "exaparsecs")
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11328. {
  11329. front: {
  11330. height: math.unit(6, "feet"),
  11331. weight: math.unit(150, "lb"),
  11332. name: "Front",
  11333. image: {
  11334. source: "./media/characters/blü/front.svg",
  11335. extra: 1883 / 1564,
  11336. bottom: 0.031
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Normal",
  11343. height: math.unit(13, "feet"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Big Boi",
  11348. height: math.unit(150, "meters")
  11349. },
  11350. {
  11351. name: "Mini Stomper",
  11352. height: math.unit(300, "meters")
  11353. },
  11354. {
  11355. name: "Macro",
  11356. height: math.unit(1000, "meters")
  11357. },
  11358. {
  11359. name: "Megamacro",
  11360. height: math.unit(11000, "meters")
  11361. },
  11362. {
  11363. name: "Gigamacro",
  11364. height: math.unit(11000, "km")
  11365. },
  11366. {
  11367. name: "Teramacro",
  11368. height: math.unit(420000, "km")
  11369. },
  11370. {
  11371. name: "Examacro",
  11372. height: math.unit(120, "parsecs")
  11373. },
  11374. {
  11375. name: "God Tho",
  11376. height: math.unit(98000000000, "parsecs")
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11382. {
  11383. taurFront: {
  11384. height: math.unit(6, "feet"),
  11385. weight: math.unit(200, "lb"),
  11386. name: "Taur (Front)",
  11387. image: {
  11388. source: "./media/characters/scales/taur-front.svg",
  11389. extra: 1,
  11390. bottom: 0.05
  11391. }
  11392. },
  11393. taurBack: {
  11394. height: math.unit(6, "feet"),
  11395. weight: math.unit(200, "lb"),
  11396. name: "Taur (Back)",
  11397. image: {
  11398. source: "./media/characters/scales/taur-back.svg",
  11399. extra: 1,
  11400. bottom: 0.08
  11401. }
  11402. },
  11403. anthro: {
  11404. height: math.unit(6 * 7 / 12, "feet"),
  11405. weight: math.unit(100, "lb"),
  11406. name: "Anthro",
  11407. image: {
  11408. source: "./media/characters/scales/anthro.svg",
  11409. extra: 1,
  11410. bottom: 0.06
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(12, "feet"),
  11418. default: true
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11424. {
  11425. front: {
  11426. height: math.unit(6, "feet"),
  11427. weight: math.unit(150, "lb"),
  11428. name: "Front",
  11429. image: {
  11430. source: "./media/characters/koragos/front.svg",
  11431. extra: 841 / 794,
  11432. bottom: 0.035
  11433. }
  11434. },
  11435. back: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(150, "lb"),
  11438. name: "Back",
  11439. image: {
  11440. source: "./media/characters/koragos/back.svg",
  11441. extra: 841 / 810,
  11442. bottom: 0.022
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(6 + 11 / 12, "feet"),
  11450. default: true
  11451. },
  11452. {
  11453. name: "Macro",
  11454. height: math.unit(490, "feet")
  11455. },
  11456. {
  11457. name: "Megamacro",
  11458. height: math.unit(10, "miles")
  11459. },
  11460. {
  11461. name: "Gigamacro",
  11462. height: math.unit(50, "miles")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11468. {
  11469. front: {
  11470. height: math.unit(6, "feet"),
  11471. weight: math.unit(250, "lb"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/xylrem/front.svg",
  11475. extra: 3323 / 3050,
  11476. bottom: 0.065
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Micro",
  11483. height: math.unit(4, "feet")
  11484. },
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(16, "feet"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(2720, "feet")
  11493. },
  11494. {
  11495. name: "Megamacro",
  11496. height: math.unit(25000, "miles")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(8, "feet"),
  11505. weight: math.unit(250, "kg"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/ikideru/front.svg",
  11509. extra: 930 / 870,
  11510. bottom: 0.087
  11511. }
  11512. },
  11513. back: {
  11514. height: math.unit(8, "feet"),
  11515. weight: math.unit(250, "kg"),
  11516. name: "Back",
  11517. image: {
  11518. source: "./media/characters/ikideru/back.svg",
  11519. extra: 919 / 852,
  11520. bottom: 0.055
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Rare",
  11527. height: math.unit(8, "feet"),
  11528. default: true
  11529. },
  11530. {
  11531. name: "Playful Loom",
  11532. height: math.unit(80, "feet")
  11533. },
  11534. {
  11535. name: "City Leaner",
  11536. height: math.unit(230, "feet")
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(2500, "feet")
  11541. },
  11542. {
  11543. name: "Gigamacro",
  11544. height: math.unit(26400, "feet")
  11545. },
  11546. {
  11547. name: "Tectonic Shifter",
  11548. height: math.unit(1.7, "megameters")
  11549. },
  11550. {
  11551. name: "Planet Carer",
  11552. height: math.unit(21, "megameters")
  11553. },
  11554. {
  11555. name: "God",
  11556. height: math.unit(11157.22, "parsecs")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(6, "feet"),
  11565. weight: math.unit(120, "lb"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/neo/front.svg"
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(2, "inches"),
  11576. default: true
  11577. },
  11578. {
  11579. name: "Human Size",
  11580. height: math.unit(5 + 8 / 12, "feet")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(13 + 10 / 12, "feet"),
  11589. weight: math.unit(5320, "lb"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/chauncey-chantz/front.svg",
  11593. extra: 1587 / 1435,
  11594. bottom: 0.02
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(13 + 10 / 12, "feet"),
  11602. default: true
  11603. },
  11604. {
  11605. name: "Macro",
  11606. height: math.unit(45, "feet")
  11607. },
  11608. {
  11609. name: "Megamacro",
  11610. height: math.unit(250, "miles")
  11611. },
  11612. {
  11613. name: "Planetary",
  11614. height: math.unit(10000, "miles")
  11615. },
  11616. {
  11617. name: "Galactic",
  11618. height: math.unit(40000, "parsecs")
  11619. },
  11620. {
  11621. name: "Universal",
  11622. height: math.unit(1, "yottameter")
  11623. },
  11624. ]
  11625. ))
  11626. characterMakers.push(() => makeCharacter(
  11627. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11628. {
  11629. front: {
  11630. height: math.unit(6, "feet"),
  11631. weight: math.unit(150, "lb"),
  11632. name: "Front",
  11633. image: {
  11634. source: "./media/characters/epifox/front.svg",
  11635. extra: 1,
  11636. bottom: 0.075
  11637. }
  11638. },
  11639. },
  11640. [
  11641. {
  11642. name: "Micro",
  11643. height: math.unit(6, "inches")
  11644. },
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(12, "feet"),
  11648. default: true
  11649. },
  11650. {
  11651. name: "Macro",
  11652. height: math.unit(3810, "feet")
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(500, "miles")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(1.8796, "m"),
  11665. weight: math.unit(230, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/colin-t/front.svg",
  11669. extra: 1272 / 1193,
  11670. bottom: 0.07
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Micro",
  11677. height: math.unit(0.571, "meters")
  11678. },
  11679. {
  11680. name: "Normal",
  11681. height: math.unit(1.8796, "meters"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Tall",
  11686. height: math.unit(4, "meters")
  11687. },
  11688. {
  11689. name: "Macro",
  11690. height: math.unit(67.241, "meters")
  11691. },
  11692. {
  11693. name: "Megamacro",
  11694. height: math.unit(371.856, "meters")
  11695. },
  11696. {
  11697. name: "Planetary",
  11698. height: math.unit(12631.5689, "km")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(1.85, "meters"),
  11707. weight: math.unit(80, "kg"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/matvei/front.svg",
  11711. extra: 614 / 594,
  11712. bottom: 0.01
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(1.85, "meters"),
  11720. default: true
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(5 + 9 / 12, "feet"),
  11729. weight: math.unit(70, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/quincy/front.svg",
  11733. extra: 3041 / 2751
  11734. }
  11735. },
  11736. back: {
  11737. height: math.unit(5 + 9 / 12, "feet"),
  11738. weight: math.unit(70, "lb"),
  11739. name: "Back",
  11740. image: {
  11741. source: "./media/characters/quincy/back.svg",
  11742. extra: 3041 / 2751
  11743. }
  11744. },
  11745. flying: {
  11746. height: math.unit(5 + 4 / 12, "feet"),
  11747. weight: math.unit(70, "lb"),
  11748. name: "Flying",
  11749. image: {
  11750. source: "./media/characters/quincy/flying.svg",
  11751. extra: 1044 / 930
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Micro",
  11758. height: math.unit(3, "cm")
  11759. },
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(5 + 9 / 12, "feet")
  11763. },
  11764. {
  11765. name: "Macro",
  11766. height: math.unit(200, "meters"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Megamacro",
  11771. height: math.unit(1000, "meters")
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11777. {
  11778. front: {
  11779. height: math.unit(4 + 7 / 12, "feet"),
  11780. weight: math.unit(50, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/vanrel/front.svg",
  11784. extra: 1,
  11785. bottom: 0.02
  11786. }
  11787. },
  11788. frontAlt: {
  11789. height: math.unit(4 + 7 / 12, "feet"),
  11790. weight: math.unit(50, "lb"),
  11791. name: "Front-alt",
  11792. image: {
  11793. source: "./media/characters/vanrel/front-alt.svg",
  11794. extra: 1,
  11795. bottom: 15 / 1511
  11796. }
  11797. },
  11798. elemental: {
  11799. height: math.unit(3, "feet"),
  11800. weight: math.unit(50, "lb"),
  11801. name: "Elemental",
  11802. image: {
  11803. source: "./media/characters/vanrel/elemental.svg",
  11804. extra: 192.3 / 162.8,
  11805. bottom: 1.79 / 194.17
  11806. }
  11807. },
  11808. side: {
  11809. height: math.unit(4 + 7 / 12, "feet"),
  11810. weight: math.unit(50, "lb"),
  11811. name: "Side",
  11812. image: {
  11813. source: "./media/characters/vanrel/side.svg",
  11814. extra: 1,
  11815. bottom: 0.025
  11816. }
  11817. },
  11818. tome: {
  11819. height: math.unit(1.35, "feet"),
  11820. weight: math.unit(10, "lb"),
  11821. name: "Vanrel's Tome",
  11822. rename: true,
  11823. image: {
  11824. source: "./media/characters/vanrel/tome.svg"
  11825. }
  11826. },
  11827. beans: {
  11828. height: math.unit(0.89, "feet"),
  11829. name: "Beans",
  11830. image: {
  11831. source: "./media/characters/vanrel/beans.svg"
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(4 + 7 / 12, "feet"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(7 + 5 / 12, "feet"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/kuiper-vanrel/front.svg",
  11851. extra: 1219/1169,
  11852. bottom: 69/1288
  11853. }
  11854. },
  11855. back: {
  11856. height: math.unit(7 + 5 / 12, "feet"),
  11857. name: "Back",
  11858. image: {
  11859. source: "./media/characters/kuiper-vanrel/back.svg",
  11860. extra: 1236/1193,
  11861. bottom: 27/1263
  11862. }
  11863. },
  11864. foot: {
  11865. height: math.unit(0.55, "meters"),
  11866. name: "Foot",
  11867. image: {
  11868. source: "./media/characters/kuiper-vanrel/foot.svg",
  11869. }
  11870. },
  11871. battle: {
  11872. height: math.unit(6.824, "feet"),
  11873. name: "Battle",
  11874. image: {
  11875. source: "./media/characters/kuiper-vanrel/battle.svg",
  11876. extra: 1466 / 1327,
  11877. bottom: 29 / 1492.5
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(7 + 5 / 12, "feet"),
  11885. default: true
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(8 + 5 / 12, "feet"),
  11894. weight: math.unit(150, "lb"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/keset-vanrel/front.svg",
  11898. extra: 1150 / 1084,
  11899. bottom: 0.05
  11900. }
  11901. },
  11902. hand: {
  11903. height: math.unit(0.6, "meters"),
  11904. name: "Hand",
  11905. image: {
  11906. source: "./media/characters/keset-vanrel/hand.svg"
  11907. }
  11908. },
  11909. foot: {
  11910. height: math.unit(0.94978, "meters"),
  11911. name: "Foot",
  11912. image: {
  11913. source: "./media/characters/keset-vanrel/foot.svg"
  11914. }
  11915. },
  11916. battle: {
  11917. height: math.unit(7.408, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Battle",
  11920. image: {
  11921. source: "./media/characters/keset-vanrel/battle.svg",
  11922. extra: 1890 / 1386,
  11923. bottom: 73.28 / 1970
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(8 + 5 / 12, "feet"),
  11931. default: true
  11932. },
  11933. ]
  11934. ))
  11935. characterMakers.push(() => makeCharacter(
  11936. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11937. {
  11938. front: {
  11939. height: math.unit(6, "feet"),
  11940. weight: math.unit(150, "lb"),
  11941. name: "Front",
  11942. image: {
  11943. source: "./media/characters/neos/front.svg",
  11944. extra: 1696 / 992,
  11945. bottom: 0.14
  11946. }
  11947. },
  11948. },
  11949. [
  11950. {
  11951. name: "Normal",
  11952. height: math.unit(54, "cm"),
  11953. default: true
  11954. },
  11955. {
  11956. name: "Macro",
  11957. height: math.unit(100, "m")
  11958. },
  11959. {
  11960. name: "Megamacro",
  11961. height: math.unit(10, "km")
  11962. },
  11963. {
  11964. name: "Megamacro+",
  11965. height: math.unit(100, "km")
  11966. },
  11967. {
  11968. name: "Gigamacro",
  11969. height: math.unit(100, "Mm")
  11970. },
  11971. {
  11972. name: "Teramacro",
  11973. height: math.unit(100, "Gm")
  11974. },
  11975. {
  11976. name: "Examacro",
  11977. height: math.unit(100, "Em")
  11978. },
  11979. {
  11980. name: "Godly",
  11981. height: math.unit(10000, "Ym")
  11982. },
  11983. {
  11984. name: "Beyond Godly",
  11985. height: math.unit(25, "multiverses")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11991. {
  11992. feminine: {
  11993. height: math.unit(5, "feet"),
  11994. weight: math.unit(100, "lb"),
  11995. name: "Feminine",
  11996. image: {
  11997. source: "./media/characters/sammy-mouse/feminine.svg",
  11998. extra: 2526 / 2425,
  11999. bottom: 0.123
  12000. }
  12001. },
  12002. masculine: {
  12003. height: math.unit(5, "feet"),
  12004. weight: math.unit(100, "lb"),
  12005. name: "Masculine",
  12006. image: {
  12007. source: "./media/characters/sammy-mouse/masculine.svg",
  12008. extra: 2526 / 2425,
  12009. bottom: 0.123
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Micro",
  12016. height: math.unit(5, "inches")
  12017. },
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(5, "feet"),
  12021. default: true
  12022. },
  12023. {
  12024. name: "Macro",
  12025. height: math.unit(60, "feet")
  12026. },
  12027. ]
  12028. ))
  12029. characterMakers.push(() => makeCharacter(
  12030. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12031. {
  12032. front: {
  12033. height: math.unit(4, "feet"),
  12034. weight: math.unit(50, "lb"),
  12035. name: "Front",
  12036. image: {
  12037. source: "./media/characters/kole/front.svg",
  12038. extra: 1423 / 1303,
  12039. bottom: 0.025
  12040. }
  12041. },
  12042. back: {
  12043. height: math.unit(4, "feet"),
  12044. weight: math.unit(50, "lb"),
  12045. name: "Back",
  12046. image: {
  12047. source: "./media/characters/kole/back.svg",
  12048. extra: 1426 / 1280,
  12049. bottom: 0.02
  12050. }
  12051. },
  12052. },
  12053. [
  12054. {
  12055. name: "Normal",
  12056. height: math.unit(4, "feet"),
  12057. default: true
  12058. },
  12059. ]
  12060. ))
  12061. characterMakers.push(() => makeCharacter(
  12062. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12063. {
  12064. front: {
  12065. height: math.unit(2 + 6 / 12, "feet"),
  12066. weight: math.unit(20, "lb"),
  12067. name: "Front",
  12068. image: {
  12069. source: "./media/characters/rufran/front.svg",
  12070. extra: 2041 / 1839,
  12071. bottom: 0.055
  12072. }
  12073. },
  12074. back: {
  12075. height: math.unit(2 + 6 / 12, "feet"),
  12076. weight: math.unit(20, "lb"),
  12077. name: "Back",
  12078. image: {
  12079. source: "./media/characters/rufran/back.svg",
  12080. extra: 2054 / 1839,
  12081. bottom: 0.01
  12082. }
  12083. },
  12084. hand: {
  12085. height: math.unit(0.2166, "meters"),
  12086. name: "Hand",
  12087. image: {
  12088. source: "./media/characters/rufran/hand.svg"
  12089. }
  12090. },
  12091. foot: {
  12092. height: math.unit(0.185, "meters"),
  12093. name: "Foot",
  12094. image: {
  12095. source: "./media/characters/rufran/foot.svg"
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Micro",
  12102. height: math.unit(1, "inch")
  12103. },
  12104. {
  12105. name: "Normal",
  12106. height: math.unit(2 + 6 / 12, "feet"),
  12107. default: true
  12108. },
  12109. {
  12110. name: "Big",
  12111. height: math.unit(60, "feet")
  12112. },
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(325, "feet")
  12116. },
  12117. ]
  12118. ))
  12119. characterMakers.push(() => makeCharacter(
  12120. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12121. {
  12122. front: {
  12123. height: math.unit(0.3, "meters"),
  12124. weight: math.unit(3.5, "kg"),
  12125. name: "Front",
  12126. image: {
  12127. source: "./media/characters/chip/front.svg",
  12128. extra: 748 / 674
  12129. }
  12130. },
  12131. },
  12132. [
  12133. {
  12134. name: "Micro",
  12135. height: math.unit(1, "inch"),
  12136. default: true
  12137. },
  12138. ]
  12139. ))
  12140. characterMakers.push(() => makeCharacter(
  12141. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12142. {
  12143. side: {
  12144. height: math.unit(2.3, "meters"),
  12145. weight: math.unit(3500, "lb"),
  12146. name: "Side",
  12147. image: {
  12148. source: "./media/characters/torvid/side.svg",
  12149. extra: 1972 / 722,
  12150. bottom: 0.035
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(2.3, "meters"),
  12158. default: true
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(2, "meters"),
  12167. weight: math.unit(150.5, "kg"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/susan/front.svg",
  12171. extra: 693 / 635,
  12172. bottom: 0.05
  12173. }
  12174. },
  12175. },
  12176. [
  12177. {
  12178. name: "Megamacro",
  12179. height: math.unit(505, "miles"),
  12180. default: true
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12186. {
  12187. front: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(150, "lb"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/raindrops/front.svg",
  12193. extra: 2655 / 2461,
  12194. bottom: 49 / 2705
  12195. }
  12196. },
  12197. back: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(150, "lb"),
  12200. name: "Back",
  12201. image: {
  12202. source: "./media/characters/raindrops/back.svg",
  12203. extra: 2574 / 2400,
  12204. bottom: 65 / 2634
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Micro",
  12211. height: math.unit(6, "inches")
  12212. },
  12213. {
  12214. name: "Normal",
  12215. height: math.unit(6 + 2 / 12, "feet")
  12216. },
  12217. {
  12218. name: "Macro",
  12219. height: math.unit(131, "feet"),
  12220. default: true
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(15, "miles")
  12225. },
  12226. {
  12227. name: "Gigamacro",
  12228. height: math.unit(4000, "miles")
  12229. },
  12230. {
  12231. name: "Teramacro",
  12232. height: math.unit(315000, "miles")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(2.794, "meters"),
  12241. weight: math.unit(325, "kg"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/tezwa/front.svg",
  12245. extra: 2083 / 1906,
  12246. bottom: 0.031
  12247. }
  12248. },
  12249. foot: {
  12250. height: math.unit(0.687, "meters"),
  12251. name: "Foot",
  12252. image: {
  12253. source: "./media/characters/tezwa/foot.svg"
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(9 + 2 / 12, "feet"),
  12261. default: true
  12262. },
  12263. ]
  12264. ))
  12265. characterMakers.push(() => makeCharacter(
  12266. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12267. {
  12268. front: {
  12269. height: math.unit(58, "feet"),
  12270. weight: math.unit(89000, "lb"),
  12271. name: "Front",
  12272. image: {
  12273. source: "./media/characters/typhus/front.svg",
  12274. extra: 816 / 800,
  12275. bottom: 0.065
  12276. }
  12277. },
  12278. },
  12279. [
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(58, "feet"),
  12283. default: true
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12289. {
  12290. front: {
  12291. height: math.unit(12, "feet"),
  12292. weight: math.unit(6, "tonnes"),
  12293. name: "Front",
  12294. image: {
  12295. source: "./media/characters/lyra-von-wulf/front.svg",
  12296. extra: 1,
  12297. bottom: 0.10
  12298. }
  12299. },
  12300. frontMecha: {
  12301. height: math.unit(12, "feet"),
  12302. weight: math.unit(12, "tonnes"),
  12303. name: "Front (Mecha)",
  12304. image: {
  12305. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12306. extra: 1,
  12307. bottom: 0.042
  12308. }
  12309. },
  12310. maw: {
  12311. height: math.unit(2.2, "feet"),
  12312. name: "Maw",
  12313. image: {
  12314. source: "./media/characters/lyra-von-wulf/maw.svg"
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Normal",
  12321. height: math.unit(12, "feet"),
  12322. default: true
  12323. },
  12324. {
  12325. name: "Classic",
  12326. height: math.unit(50, "feet")
  12327. },
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(500, "feet")
  12331. },
  12332. {
  12333. name: "Megamacro",
  12334. height: math.unit(1, "mile")
  12335. },
  12336. {
  12337. name: "Gigamacro",
  12338. height: math.unit(400, "miles")
  12339. },
  12340. {
  12341. name: "Teramacro",
  12342. height: math.unit(22000, "miles")
  12343. },
  12344. {
  12345. name: "Solarmacro",
  12346. height: math.unit(8600000, "miles")
  12347. },
  12348. {
  12349. name: "Galactic",
  12350. height: math.unit(1057000, "lightyears")
  12351. },
  12352. ]
  12353. ))
  12354. characterMakers.push(() => makeCharacter(
  12355. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12356. {
  12357. front: {
  12358. height: math.unit(6 + 10 / 12, "feet"),
  12359. weight: math.unit(150, "lb"),
  12360. name: "Front",
  12361. image: {
  12362. source: "./media/characters/dixon/front.svg",
  12363. extra: 3361 / 3209,
  12364. bottom: 0.01
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(6 + 10 / 12, "feet"),
  12372. default: true
  12373. },
  12374. {
  12375. name: "Big",
  12376. height: math.unit(12, "meters")
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(500, "meters")
  12381. },
  12382. {
  12383. name: "Megamacro",
  12384. height: math.unit(2, "km")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(185, "cm"),
  12393. weight: math.unit(68, "kg"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/kauko/front.svg",
  12397. extra: 1455 / 1421,
  12398. bottom: 0.03
  12399. }
  12400. },
  12401. back: {
  12402. height: math.unit(185, "cm"),
  12403. weight: math.unit(68, "kg"),
  12404. name: "Back",
  12405. image: {
  12406. source: "./media/characters/kauko/back.svg",
  12407. extra: 1455 / 1421,
  12408. bottom: 0.004
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(185, "cm"),
  12416. default: true
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(150, "kg"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/varg/front.svg",
  12429. extra: 1108 / 1018,
  12430. bottom: 0.0375
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(5, "meters")
  12438. },
  12439. {
  12440. name: "Macro",
  12441. height: math.unit(200, "meters")
  12442. },
  12443. {
  12444. name: "Megamacro",
  12445. height: math.unit(20, "kilometers")
  12446. },
  12447. {
  12448. name: "True Size",
  12449. height: math.unit(211, "km"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Gigamacro",
  12454. height: math.unit(1000, "km")
  12455. },
  12456. {
  12457. name: "Gigamacro+",
  12458. height: math.unit(8000, "km")
  12459. },
  12460. {
  12461. name: "Teramacro",
  12462. height: math.unit(1000000, "km")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(7 + 7 / 12, "feet"),
  12471. weight: math.unit(267, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/dayza/front.svg",
  12475. extra: 1262 / 1200,
  12476. bottom: 0.035
  12477. }
  12478. },
  12479. side: {
  12480. height: math.unit(7 + 7 / 12, "feet"),
  12481. weight: math.unit(267, "lb"),
  12482. name: "Side",
  12483. image: {
  12484. source: "./media/characters/dayza/side.svg",
  12485. extra: 1295 / 1245,
  12486. bottom: 0.05
  12487. }
  12488. },
  12489. back: {
  12490. height: math.unit(7 + 7 / 12, "feet"),
  12491. weight: math.unit(267, "lb"),
  12492. name: "Back",
  12493. image: {
  12494. source: "./media/characters/dayza/back.svg",
  12495. extra: 1241 / 1170
  12496. }
  12497. },
  12498. },
  12499. [
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(7 + 7 / 12, "feet"),
  12503. default: true
  12504. },
  12505. {
  12506. name: "Macro",
  12507. height: math.unit(155, "feet")
  12508. },
  12509. ]
  12510. ))
  12511. characterMakers.push(() => makeCharacter(
  12512. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12513. {
  12514. front: {
  12515. height: math.unit(6 + 5 / 12, "feet"),
  12516. weight: math.unit(160, "lb"),
  12517. name: "Front",
  12518. image: {
  12519. source: "./media/characters/xanthos/front.svg",
  12520. extra: 1,
  12521. bottom: 0.04
  12522. }
  12523. },
  12524. back: {
  12525. height: math.unit(6 + 5 / 12, "feet"),
  12526. weight: math.unit(160, "lb"),
  12527. name: "Back",
  12528. image: {
  12529. source: "./media/characters/xanthos/back.svg",
  12530. extra: 1,
  12531. bottom: 0.03
  12532. }
  12533. },
  12534. hand: {
  12535. height: math.unit(0.928, "feet"),
  12536. name: "Hand",
  12537. image: {
  12538. source: "./media/characters/xanthos/hand.svg"
  12539. }
  12540. },
  12541. foot: {
  12542. height: math.unit(1.286, "feet"),
  12543. name: "Foot",
  12544. image: {
  12545. source: "./media/characters/xanthos/foot.svg"
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Normal",
  12552. height: math.unit(6 + 5 / 12, "feet"),
  12553. default: true
  12554. },
  12555. {
  12556. name: "Normal+",
  12557. height: math.unit(6, "meters")
  12558. },
  12559. {
  12560. name: "Macro",
  12561. height: math.unit(40, "feet")
  12562. },
  12563. {
  12564. name: "Macro+",
  12565. height: math.unit(200, "meters")
  12566. },
  12567. {
  12568. name: "Megamacro",
  12569. height: math.unit(20, "km")
  12570. },
  12571. {
  12572. name: "Megamacro+",
  12573. height: math.unit(100, "km")
  12574. },
  12575. ]
  12576. ))
  12577. characterMakers.push(() => makeCharacter(
  12578. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12579. {
  12580. front: {
  12581. height: math.unit(6 + 3 / 12, "feet"),
  12582. weight: math.unit(215, "lb"),
  12583. name: "Front",
  12584. image: {
  12585. source: "./media/characters/grynn/front.svg",
  12586. extra: 4627 / 4209,
  12587. bottom: 0.047
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Micro",
  12594. height: math.unit(6, "inches")
  12595. },
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(6 + 3 / 12, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Big",
  12603. height: math.unit(104, "feet")
  12604. },
  12605. {
  12606. name: "Macro",
  12607. height: math.unit(944, "feet")
  12608. },
  12609. {
  12610. name: "Macro+",
  12611. height: math.unit(9480, "feet")
  12612. },
  12613. {
  12614. name: "Megamacro",
  12615. height: math.unit(78752, "feet")
  12616. },
  12617. {
  12618. name: "Megamacro+",
  12619. height: math.unit(630128, "feet")
  12620. },
  12621. {
  12622. name: "Megamacro++",
  12623. height: math.unit(3150695, "feet")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(7 + 5 / 12, "feet"),
  12632. weight: math.unit(450, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/mocha-aura/front.svg",
  12636. extra: 1907 / 1817,
  12637. bottom: 0.04
  12638. }
  12639. },
  12640. back: {
  12641. height: math.unit(7 + 5 / 12, "feet"),
  12642. weight: math.unit(450, "lb"),
  12643. name: "Back",
  12644. image: {
  12645. source: "./media/characters/mocha-aura/back.svg",
  12646. extra: 1900 / 1825,
  12647. bottom: 0.045
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Nano",
  12654. height: math.unit(1, "nm")
  12655. },
  12656. {
  12657. name: "Megamicro",
  12658. height: math.unit(1, "mm")
  12659. },
  12660. {
  12661. name: "Micro",
  12662. height: math.unit(3, "inches")
  12663. },
  12664. {
  12665. name: "Normal",
  12666. height: math.unit(7 + 5 / 12, "feet"),
  12667. default: true
  12668. },
  12669. {
  12670. name: "Macro",
  12671. height: math.unit(30, "feet")
  12672. },
  12673. {
  12674. name: "Megamacro",
  12675. height: math.unit(3500, "feet")
  12676. },
  12677. {
  12678. name: "Teramacro",
  12679. height: math.unit(500000, "miles")
  12680. },
  12681. {
  12682. name: "Petamacro",
  12683. height: math.unit(50000000000000000, "parsecs")
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/ilisha-devya/front.svg",
  12696. extra: 1,
  12697. bottom: 0.175
  12698. }
  12699. },
  12700. back: {
  12701. height: math.unit(6, "feet"),
  12702. weight: math.unit(150, "lb"),
  12703. name: "Back",
  12704. image: {
  12705. source: "./media/characters/ilisha-devya/back.svg",
  12706. extra: 1,
  12707. bottom: 0.015
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Macro",
  12714. height: math.unit(500, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Megamacro",
  12719. height: math.unit(10, "miles")
  12720. },
  12721. {
  12722. name: "Gigamacro",
  12723. height: math.unit(100000, "miles")
  12724. },
  12725. {
  12726. name: "Examacro",
  12727. height: math.unit(1e9, "lightyears")
  12728. },
  12729. {
  12730. name: "Omniversal",
  12731. height: math.unit(1e33, "lightyears")
  12732. },
  12733. {
  12734. name: "Beyond Infinite",
  12735. height: math.unit(1e100, "lightyears")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12741. {
  12742. Side: {
  12743. height: math.unit(6, "feet"),
  12744. weight: math.unit(150, "lb"),
  12745. name: "Side",
  12746. image: {
  12747. source: "./media/characters/mira/side.svg",
  12748. extra: 900 / 799,
  12749. bottom: 0.02
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Human Size",
  12756. height: math.unit(6, "feet")
  12757. },
  12758. {
  12759. name: "Macro",
  12760. height: math.unit(100, "feet"),
  12761. default: true
  12762. },
  12763. {
  12764. name: "Megamacro",
  12765. height: math.unit(10, "miles")
  12766. },
  12767. {
  12768. name: "Gigamacro",
  12769. height: math.unit(25000, "miles")
  12770. },
  12771. {
  12772. name: "Teramacro",
  12773. height: math.unit(300, "AU")
  12774. },
  12775. {
  12776. name: "Full Size",
  12777. height: math.unit(4.5e10, "lightyears")
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(150, "lb"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/holly/front.svg",
  12790. extra: 639 / 606
  12791. }
  12792. },
  12793. back: {
  12794. height: math.unit(6, "feet"),
  12795. weight: math.unit(150, "lb"),
  12796. name: "Back",
  12797. image: {
  12798. source: "./media/characters/holly/back.svg",
  12799. extra: 623 / 598
  12800. }
  12801. },
  12802. frontWorking: {
  12803. height: math.unit(6, "feet"),
  12804. weight: math.unit(150, "lb"),
  12805. name: "Front (Working)",
  12806. image: {
  12807. source: "./media/characters/holly/front-working.svg",
  12808. extra: 607 / 577,
  12809. bottom: 0.048
  12810. }
  12811. },
  12812. },
  12813. [
  12814. {
  12815. name: "Normal",
  12816. height: math.unit(12 + 3 / 12, "feet"),
  12817. default: true
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12823. {
  12824. front: {
  12825. height: math.unit(6, "feet"),
  12826. weight: math.unit(150, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/porter/front.svg",
  12830. extra: 1,
  12831. bottom: 0.01
  12832. }
  12833. },
  12834. frontRobes: {
  12835. height: math.unit(6, "feet"),
  12836. weight: math.unit(150, "lb"),
  12837. name: "Front (Robes)",
  12838. image: {
  12839. source: "./media/characters/porter/front-robes.svg",
  12840. extra: 1.01,
  12841. bottom: 0.01
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Normal",
  12848. height: math.unit(11 + 9 / 12, "feet"),
  12849. default: true
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12855. {
  12856. legendary: {
  12857. height: math.unit(6, "feet"),
  12858. weight: math.unit(150, "lb"),
  12859. name: "Legendary",
  12860. image: {
  12861. source: "./media/characters/lucy/legendary.svg",
  12862. extra: 1355 / 1100,
  12863. bottom: 0.045
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Legendary",
  12870. height: math.unit(86882 * 2, "miles"),
  12871. default: true
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(6, "feet"),
  12880. weight: math.unit(150, "lb"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/drusilla/front.svg",
  12884. extra: 678 / 635,
  12885. bottom: 0.03
  12886. }
  12887. },
  12888. back: {
  12889. height: math.unit(6, "feet"),
  12890. weight: math.unit(150, "lb"),
  12891. name: "Back",
  12892. image: {
  12893. source: "./media/characters/drusilla/back.svg",
  12894. extra: 678 / 635,
  12895. bottom: 0.005
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Macro",
  12902. height: math.unit(100, "feet")
  12903. },
  12904. {
  12905. name: "Canon Height",
  12906. height: math.unit(2000, "feet"),
  12907. default: true
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(6, "feet"),
  12916. weight: math.unit(180, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/renard-thatch/front.svg",
  12920. extra: 2411 / 2275,
  12921. bottom: 0.01
  12922. }
  12923. },
  12924. frontPosing: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(180, "lb"),
  12927. name: "Front (Posing)",
  12928. image: {
  12929. source: "./media/characters/renard-thatch/front-posing.svg",
  12930. extra: 2381 / 2261,
  12931. bottom: 0.01
  12932. }
  12933. },
  12934. back: {
  12935. height: math.unit(6, "feet"),
  12936. weight: math.unit(180, "lb"),
  12937. name: "Back",
  12938. image: {
  12939. source: "./media/characters/renard-thatch/back.svg",
  12940. extra: 2428 / 2288
  12941. }
  12942. },
  12943. },
  12944. [
  12945. {
  12946. name: "Micro",
  12947. height: math.unit(3, "inches")
  12948. },
  12949. {
  12950. name: "Default",
  12951. height: math.unit(6, "feet"),
  12952. default: true
  12953. },
  12954. {
  12955. name: "Macro",
  12956. height: math.unit(75, "feet")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(1450, "feet"),
  12965. weight: math.unit(1.21e6, "tons"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/sekvra/front.svg",
  12969. extra: 1,
  12970. bottom: 0.03
  12971. }
  12972. },
  12973. frontClothed: {
  12974. height: math.unit(1450, "feet"),
  12975. weight: math.unit(1.21e6, "tons"),
  12976. name: "Front (Clothed)",
  12977. image: {
  12978. source: "./media/characters/sekvra/front-clothed.svg",
  12979. extra: 1,
  12980. bottom: 0.03
  12981. }
  12982. },
  12983. side: {
  12984. height: math.unit(1450, "feet"),
  12985. weight: math.unit(1.21e6, "tons"),
  12986. name: "Side",
  12987. image: {
  12988. source: "./media/characters/sekvra/side.svg",
  12989. extra: 1,
  12990. bottom: 0.025
  12991. }
  12992. },
  12993. back: {
  12994. height: math.unit(1450, "feet"),
  12995. weight: math.unit(1.21e6, "tons"),
  12996. name: "Back",
  12997. image: {
  12998. source: "./media/characters/sekvra/back.svg",
  12999. extra: 1,
  13000. bottom: 0.005
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(1450, "feet"),
  13008. default: true
  13009. },
  13010. {
  13011. name: "Megamacro",
  13012. height: math.unit(15000, "feet")
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(6, "feet"),
  13021. weight: math.unit(150, "lb"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/carmine/front.svg",
  13025. extra: 1,
  13026. bottom: 0.035
  13027. }
  13028. },
  13029. frontArmor: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(150, "lb"),
  13032. name: "Front (Armor)",
  13033. image: {
  13034. source: "./media/characters/carmine/front-armor.svg",
  13035. extra: 1,
  13036. bottom: 0.035
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Large",
  13043. height: math.unit(1, "mile")
  13044. },
  13045. {
  13046. name: "Huge",
  13047. height: math.unit(40, "miles"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Colossal",
  13052. height: math.unit(2500, "miles")
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13058. {
  13059. front: {
  13060. height: math.unit(6, "feet"),
  13061. weight: math.unit(150, "lb"),
  13062. name: "Front",
  13063. image: {
  13064. source: "./media/characters/elyssia/front.svg",
  13065. extra: 2201 / 2035,
  13066. bottom: 0.05
  13067. }
  13068. },
  13069. frontClothed: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(150, "lb"),
  13072. name: "Front (Clothed)",
  13073. image: {
  13074. source: "./media/characters/elyssia/front-clothed.svg",
  13075. extra: 2201 / 2035,
  13076. bottom: 0.05
  13077. }
  13078. },
  13079. back: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(150, "lb"),
  13082. name: "Back",
  13083. image: {
  13084. source: "./media/characters/elyssia/back.svg",
  13085. extra: 2201 / 2035,
  13086. bottom: 0.013
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Smaller",
  13093. height: math.unit(150, "feet")
  13094. },
  13095. {
  13096. name: "Standard",
  13097. height: math.unit(1400, "feet"),
  13098. default: true
  13099. },
  13100. {
  13101. name: "Distracted",
  13102. height: math.unit(15000, "feet")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(7 + 4 / 12, "feet"),
  13111. weight: math.unit(500, "lb"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/geno-maxwell/front.svg",
  13115. extra: 2207 / 2040,
  13116. bottom: 0.015
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Micro",
  13123. height: math.unit(3, "inches")
  13124. },
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(7 + 4 / 12, "feet"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Macro",
  13132. height: math.unit(220, "feet")
  13133. },
  13134. {
  13135. name: "Megamacro",
  13136. height: math.unit(11, "miles")
  13137. },
  13138. ]
  13139. ))
  13140. characterMakers.push(() => makeCharacter(
  13141. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13142. {
  13143. front: {
  13144. height: math.unit(7 + 4 / 12, "feet"),
  13145. weight: math.unit(500, "lb"),
  13146. name: "Front",
  13147. image: {
  13148. source: "./media/characters/regena-maxwell/front.svg",
  13149. extra: 3115 / 2770,
  13150. bottom: 0.02
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Normal",
  13157. height: math.unit(7 + 4 / 12, "feet"),
  13158. default: true
  13159. },
  13160. {
  13161. name: "Macro",
  13162. height: math.unit(220, "feet")
  13163. },
  13164. {
  13165. name: "Megamacro",
  13166. height: math.unit(11, "miles")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13179. extra: 860 / 690,
  13180. bottom: 0.03
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Normal",
  13187. height: math.unit(1.7, "meters"),
  13188. default: true
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/quilly/front.svg",
  13201. extra: 890 / 776
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Gigamacro",
  13208. height: math.unit(404090, "miles"),
  13209. default: true
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(7 + 8 / 12, "feet"),
  13218. weight: math.unit(350, "lb"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/tempest/front.svg",
  13222. extra: 1175 / 1086,
  13223. bottom: 0.02
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Normal",
  13230. height: math.unit(7 + 8 / 12, "feet"),
  13231. default: true
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13237. {
  13238. side: {
  13239. height: math.unit(4 + 5 / 12, "feet"),
  13240. weight: math.unit(80, "lb"),
  13241. name: "Side",
  13242. image: {
  13243. source: "./media/characters/rodger/side.svg",
  13244. extra: 1235 / 1118
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Micro",
  13251. height: math.unit(1, "inch")
  13252. },
  13253. {
  13254. name: "Normal",
  13255. height: math.unit(4 + 5 / 12, "feet"),
  13256. default: true
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(120, "feet")
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/danyel/front.svg",
  13273. extra: 1185 / 1123,
  13274. bottom: 0.05
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Shrunken",
  13281. height: math.unit(0.5, "mm")
  13282. },
  13283. {
  13284. name: "Micro",
  13285. height: math.unit(1, "mm"),
  13286. default: true
  13287. },
  13288. {
  13289. name: "Upsized",
  13290. height: math.unit(5 + 5 / 12, "feet")
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(5 + 6 / 12, "feet"),
  13299. weight: math.unit(200, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/vivian-bijoux/front.svg",
  13303. extra: 1,
  13304. bottom: 0.072
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(5 + 6 / 12, "feet"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Bad Dream",
  13316. height: math.unit(500, "feet")
  13317. },
  13318. {
  13319. name: "Nightmare",
  13320. height: math.unit(500, "miles")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6 + 1 / 12, "feet"),
  13329. weight: math.unit(260, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/zeta/front.svg",
  13333. extra: 1968 / 1889,
  13334. bottom: 0.06
  13335. }
  13336. },
  13337. back: {
  13338. height: math.unit(6 + 1 / 12, "feet"),
  13339. weight: math.unit(260, "lb"),
  13340. name: "Back",
  13341. image: {
  13342. source: "./media/characters/zeta/back.svg",
  13343. extra: 1944 / 1858,
  13344. bottom: 0.03
  13345. }
  13346. },
  13347. hand: {
  13348. height: math.unit(1.112, "feet"),
  13349. name: "Hand",
  13350. image: {
  13351. source: "./media/characters/zeta/hand.svg"
  13352. }
  13353. },
  13354. foot: {
  13355. height: math.unit(1.48, "feet"),
  13356. name: "Foot",
  13357. image: {
  13358. source: "./media/characters/zeta/foot.svg"
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Micro",
  13365. height: math.unit(6, "inches")
  13366. },
  13367. {
  13368. name: "Normal",
  13369. height: math.unit(6 + 1 / 12, "feet"),
  13370. default: true
  13371. },
  13372. {
  13373. name: "Macro",
  13374. height: math.unit(20, "feet")
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(6, "feet"),
  13383. weight: math.unit(150, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/jamie-larsen/front.svg",
  13387. extra: 962 / 933,
  13388. bottom: 0.02
  13389. }
  13390. },
  13391. back: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(150, "lb"),
  13394. name: "Back",
  13395. image: {
  13396. source: "./media/characters/jamie-larsen/back.svg",
  13397. extra: 997 / 946
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Macro",
  13404. height: math.unit(28 + 7 / 12, "feet"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Macro+",
  13409. height: math.unit(180, "feet")
  13410. },
  13411. {
  13412. name: "Megamacro",
  13413. height: math.unit(10, "miles")
  13414. },
  13415. {
  13416. name: "Gigamacro",
  13417. height: math.unit(200000, "miles")
  13418. },
  13419. ]
  13420. ))
  13421. characterMakers.push(() => makeCharacter(
  13422. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13423. {
  13424. front: {
  13425. height: math.unit(6, "feet"),
  13426. weight: math.unit(120, "lb"),
  13427. name: "Front",
  13428. image: {
  13429. source: "./media/characters/vance/front.svg",
  13430. extra: 1980 / 1890,
  13431. bottom: 0.09
  13432. }
  13433. },
  13434. back: {
  13435. height: math.unit(6, "feet"),
  13436. weight: math.unit(120, "lb"),
  13437. name: "Back",
  13438. image: {
  13439. source: "./media/characters/vance/back.svg",
  13440. extra: 2081 / 1994,
  13441. bottom: 0.014
  13442. }
  13443. },
  13444. hand: {
  13445. height: math.unit(0.88, "feet"),
  13446. name: "Hand",
  13447. image: {
  13448. source: "./media/characters/vance/hand.svg"
  13449. }
  13450. },
  13451. foot: {
  13452. height: math.unit(0.64, "feet"),
  13453. name: "Foot",
  13454. image: {
  13455. source: "./media/characters/vance/foot.svg"
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Small",
  13462. height: math.unit(90, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(100, "meters")
  13468. },
  13469. {
  13470. name: "Megamacro",
  13471. height: math.unit(15, "miles")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(180, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/xochitl/front.svg",
  13484. extra: 2297 / 2261,
  13485. bottom: 0.065
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(180, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/xochitl/back.svg",
  13494. extra: 2386 / 2354,
  13495. bottom: 0.01
  13496. }
  13497. },
  13498. foot: {
  13499. height: math.unit(6 / 5 * 1.15, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Foot",
  13502. image: {
  13503. source: "./media/characters/xochitl/foot.svg"
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(80, "feet")
  13511. },
  13512. {
  13513. name: "Macro+",
  13514. height: math.unit(400, "feet"),
  13515. default: true
  13516. },
  13517. {
  13518. name: "Gigamacro",
  13519. height: math.unit(80000, "miles")
  13520. },
  13521. {
  13522. name: "Gigamacro+",
  13523. height: math.unit(400000, "miles")
  13524. },
  13525. {
  13526. name: "Teramacro",
  13527. height: math.unit(300, "AU")
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(6, "feet"),
  13536. weight: math.unit(150, "lb"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/vincent/front.svg",
  13540. extra: 1130 / 1080,
  13541. bottom: 0.055
  13542. }
  13543. },
  13544. beak: {
  13545. height: math.unit(6 * 0.1, "feet"),
  13546. name: "Beak",
  13547. image: {
  13548. source: "./media/characters/vincent/beak.svg"
  13549. }
  13550. },
  13551. hand: {
  13552. height: math.unit(6 * 0.85, "feet"),
  13553. weight: math.unit(150, "lb"),
  13554. name: "Hand",
  13555. image: {
  13556. source: "./media/characters/vincent/hand.svg"
  13557. }
  13558. },
  13559. foot: {
  13560. height: math.unit(6 * 0.19, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Foot",
  13563. image: {
  13564. source: "./media/characters/vincent/foot.svg"
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Base",
  13571. height: math.unit(6 + 5 / 12, "feet"),
  13572. default: true
  13573. },
  13574. {
  13575. name: "Macro",
  13576. height: math.unit(300, "feet")
  13577. },
  13578. {
  13579. name: "Megamacro",
  13580. height: math.unit(2, "miles")
  13581. },
  13582. {
  13583. name: "Gigamacro",
  13584. height: math.unit(1000, "miles")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(2, "meters"),
  13593. weight: math.unit(500, "kg"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/coatl/front.svg",
  13597. extra: 3948 / 3500,
  13598. bottom: 0.082
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(4, "meters")
  13606. },
  13607. {
  13608. name: "Macro",
  13609. height: math.unit(100, "meters"),
  13610. default: true
  13611. },
  13612. {
  13613. name: "Macro+",
  13614. height: math.unit(300, "meters")
  13615. },
  13616. {
  13617. name: "Megamacro",
  13618. height: math.unit(3, "gigameters")
  13619. },
  13620. {
  13621. name: "Megamacro+",
  13622. height: math.unit(300, "terameters")
  13623. },
  13624. {
  13625. name: "Megamacro++",
  13626. height: math.unit(3, "lightyears")
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13632. {
  13633. front: {
  13634. height: math.unit(6, "feet"),
  13635. weight: math.unit(50, "kg"),
  13636. name: "front",
  13637. image: {
  13638. source: "./media/characters/shiroryu/front.svg",
  13639. extra: 1990 / 1935
  13640. }
  13641. },
  13642. },
  13643. [
  13644. {
  13645. name: "Mortal Mingling",
  13646. height: math.unit(3, "meters")
  13647. },
  13648. {
  13649. name: "Kaiju-ish",
  13650. height: math.unit(250, "meters")
  13651. },
  13652. {
  13653. name: "Somewhat Godly",
  13654. height: math.unit(400, "km"),
  13655. default: true
  13656. },
  13657. {
  13658. name: "Planetary",
  13659. height: math.unit(300, "megameters")
  13660. },
  13661. {
  13662. name: "Galaxy-dwarfing",
  13663. height: math.unit(450, "kiloparsecs")
  13664. },
  13665. {
  13666. name: "Universe Eater",
  13667. height: math.unit(150, "gigaparsecs")
  13668. },
  13669. {
  13670. name: "Almost Immeasurable",
  13671. height: math.unit(1.3e266, "yottaparsecs")
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(150, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/umeko/front.svg",
  13684. extra: 1,
  13685. bottom: 0.019
  13686. }
  13687. },
  13688. frontArmored: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(150, "lb"),
  13691. name: "Front (Armored)",
  13692. image: {
  13693. source: "./media/characters/umeko/front-armored.svg",
  13694. extra: 1,
  13695. bottom: 0.021
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Macro",
  13702. height: math.unit(220, "feet"),
  13703. default: true
  13704. },
  13705. {
  13706. name: "Guardian Dragon",
  13707. height: math.unit(50, "miles")
  13708. },
  13709. {
  13710. name: "Cosmic",
  13711. height: math.unit(800000, "miles")
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(150, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/cassidy/front.svg",
  13724. extra: 1,
  13725. bottom: 0.043
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Canon Height",
  13732. height: math.unit(120, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Macro+",
  13737. height: math.unit(400, "feet")
  13738. },
  13739. {
  13740. name: "Macro++",
  13741. height: math.unit(4000, "feet")
  13742. },
  13743. {
  13744. name: "Megamacro",
  13745. height: math.unit(3, "miles")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(150, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/isaac/front.svg",
  13758. extra: 896 / 815,
  13759. bottom: 0.11
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Human Size",
  13766. height: math.unit(8, "feet"),
  13767. default: true
  13768. },
  13769. {
  13770. name: "Macro",
  13771. height: math.unit(400, "feet")
  13772. },
  13773. {
  13774. name: "Megamacro",
  13775. height: math.unit(50, "miles")
  13776. },
  13777. {
  13778. name: "Canon Height",
  13779. height: math.unit(200, "AU")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(72, "kg"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/sleekit/front.svg",
  13792. extra: 4693 / 4487,
  13793. bottom: 0.012
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Minimum Height",
  13800. height: math.unit(10, "meters")
  13801. },
  13802. {
  13803. name: "Smaller",
  13804. height: math.unit(25, "meters")
  13805. },
  13806. {
  13807. name: "Larger",
  13808. height: math.unit(38, "meters"),
  13809. default: true
  13810. },
  13811. {
  13812. name: "Maximum height",
  13813. height: math.unit(100, "meters")
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13819. {
  13820. front: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(150, "lb"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/nillia/front.svg",
  13826. extra: 2195 / 2037,
  13827. bottom: 0.005
  13828. }
  13829. },
  13830. back: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Back",
  13834. image: {
  13835. source: "./media/characters/nillia/back.svg",
  13836. extra: 2195 / 2037,
  13837. bottom: 0.005
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Canon Height",
  13844. height: math.unit(489, "feet"),
  13845. default: true
  13846. }
  13847. ]
  13848. ))
  13849. characterMakers.push(() => makeCharacter(
  13850. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13851. {
  13852. front: {
  13853. height: math.unit(6, "feet"),
  13854. weight: math.unit(150, "lb"),
  13855. name: "Front",
  13856. image: {
  13857. source: "./media/characters/mesmyriza/front.svg",
  13858. extra: 2067 / 1784,
  13859. bottom: 0.035
  13860. }
  13861. },
  13862. foot: {
  13863. height: math.unit(6 / (250 / 35), "feet"),
  13864. name: "Foot",
  13865. image: {
  13866. source: "./media/characters/mesmyriza/foot.svg"
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Macro",
  13873. height: math.unit(457, "meters"),
  13874. default: true
  13875. },
  13876. {
  13877. name: "Megamacro",
  13878. height: math.unit(8, "megameters")
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(250, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/saudade/front.svg",
  13891. extra: 1172 / 1139,
  13892. bottom: 0.035
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Micro",
  13899. height: math.unit(3, "inches")
  13900. },
  13901. {
  13902. name: "Normal",
  13903. height: math.unit(6, "feet"),
  13904. default: true
  13905. },
  13906. {
  13907. name: "Macro",
  13908. height: math.unit(50, "feet")
  13909. },
  13910. {
  13911. name: "Megamacro",
  13912. height: math.unit(2800, "feet")
  13913. },
  13914. ]
  13915. ))
  13916. characterMakers.push(() => makeCharacter(
  13917. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13918. {
  13919. front: {
  13920. height: math.unit(5 + 4 / 12, "feet"),
  13921. weight: math.unit(100, "lb"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/keireer/front.svg",
  13925. extra: 716 / 666,
  13926. bottom: 0.05
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(5 + 4 / 12, "feet"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13940. {
  13941. front: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(90, "kg"),
  13944. name: "Front",
  13945. image: {
  13946. source: "./media/characters/mirja/front.svg",
  13947. extra: 1789 / 1683,
  13948. bottom: 0.05
  13949. }
  13950. },
  13951. frontDressed: {
  13952. height: math.unit(6, "feet"),
  13953. weight: math.unit(90, "lb"),
  13954. name: "Front (Dressed)",
  13955. image: {
  13956. source: "./media/characters/mirja/front-dressed.svg",
  13957. extra: 1789 / 1683,
  13958. bottom: 0.05
  13959. }
  13960. },
  13961. back: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(90, "lb"),
  13964. name: "Back",
  13965. image: {
  13966. source: "./media/characters/mirja/back.svg",
  13967. extra: 953 / 917,
  13968. bottom: 0.017
  13969. }
  13970. },
  13971. },
  13972. [
  13973. {
  13974. name: "\"Incognito\"",
  13975. height: math.unit(3, "meters")
  13976. },
  13977. {
  13978. name: "Strolling Size",
  13979. height: math.unit(15, "km")
  13980. },
  13981. {
  13982. name: "Larger Strolling Size",
  13983. height: math.unit(400, "km")
  13984. },
  13985. {
  13986. name: "Preferred Size",
  13987. height: math.unit(5000, "km")
  13988. },
  13989. {
  13990. name: "True Size",
  13991. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(15, "feet"),
  14001. weight: math.unit(880, "kg"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/nightraver/front.svg",
  14005. extra: 2444 / 2160,
  14006. bottom: 0.027
  14007. }
  14008. },
  14009. back: {
  14010. height: math.unit(15, "feet"),
  14011. weight: math.unit(880, "kg"),
  14012. name: "Back",
  14013. image: {
  14014. source: "./media/characters/nightraver/back.svg",
  14015. extra: 2309 / 2180,
  14016. bottom: 0.005
  14017. }
  14018. },
  14019. sole: {
  14020. height: math.unit(2.878, "feet"),
  14021. name: "Sole",
  14022. image: {
  14023. source: "./media/characters/nightraver/sole.svg"
  14024. }
  14025. },
  14026. foot: {
  14027. height: math.unit(2.285, "feet"),
  14028. name: "Foot",
  14029. image: {
  14030. source: "./media/characters/nightraver/foot.svg"
  14031. }
  14032. },
  14033. maw: {
  14034. height: math.unit(2.67, "feet"),
  14035. name: "Maw",
  14036. image: {
  14037. source: "./media/characters/nightraver/maw.svg"
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Micro",
  14044. height: math.unit(1, "cm")
  14045. },
  14046. {
  14047. name: "Normal",
  14048. height: math.unit(15, "feet"),
  14049. default: true
  14050. },
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(300, "feet")
  14054. },
  14055. {
  14056. name: "Megamacro",
  14057. height: math.unit(300, "miles")
  14058. },
  14059. {
  14060. name: "Gigamacro",
  14061. height: math.unit(10000, "miles")
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14067. {
  14068. side: {
  14069. height: math.unit(2, "inches"),
  14070. weight: math.unit(5, "grams"),
  14071. name: "Side",
  14072. image: {
  14073. source: "./media/characters/arc/side.svg"
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Micro",
  14080. height: math.unit(2, "inches"),
  14081. default: true
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(1.1938, "meters"),
  14090. weight: math.unit(54, "kg"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/nebula-shahar/front.svg",
  14094. extra: 1642 / 1436,
  14095. bottom: 0.06
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Megamicro",
  14102. height: math.unit(0.3, "mm")
  14103. },
  14104. {
  14105. name: "Micro",
  14106. height: math.unit(3, "cm")
  14107. },
  14108. {
  14109. name: "Normal",
  14110. height: math.unit(138, "cm"),
  14111. default: true
  14112. },
  14113. {
  14114. name: "Macro",
  14115. height: math.unit(30, "m")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(5.24, "feet"),
  14124. weight: math.unit(150, "lb"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/shayla/front.svg",
  14128. extra: 1512 / 1414,
  14129. bottom: 0.01
  14130. }
  14131. },
  14132. back: {
  14133. height: math.unit(5.24, "feet"),
  14134. weight: math.unit(150, "lb"),
  14135. name: "Back",
  14136. image: {
  14137. source: "./media/characters/shayla/back.svg",
  14138. extra: 1512 / 1414
  14139. }
  14140. },
  14141. hand: {
  14142. height: math.unit(0.7781496062992126, "feet"),
  14143. name: "Hand",
  14144. image: {
  14145. source: "./media/characters/shayla/hand.svg"
  14146. }
  14147. },
  14148. foot: {
  14149. height: math.unit(1.4206036745406823, "feet"),
  14150. name: "Foot",
  14151. image: {
  14152. source: "./media/characters/shayla/foot.svg"
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Micro",
  14159. height: math.unit(0.32, "feet")
  14160. },
  14161. {
  14162. name: "Normal",
  14163. height: math.unit(5.24, "feet"),
  14164. default: true
  14165. },
  14166. {
  14167. name: "Macro",
  14168. height: math.unit(492.12, "feet")
  14169. },
  14170. {
  14171. name: "Megamacro",
  14172. height: math.unit(186.41, "miles")
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14178. {
  14179. front: {
  14180. height: math.unit(2.2, "m"),
  14181. weight: math.unit(120, "kg"),
  14182. name: "Front",
  14183. image: {
  14184. source: "./media/characters/pia-jr/front.svg",
  14185. extra: 1000 / 970,
  14186. bottom: 0.035
  14187. }
  14188. },
  14189. hand: {
  14190. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14191. name: "Hand",
  14192. image: {
  14193. source: "./media/characters/pia-jr/hand.svg"
  14194. }
  14195. },
  14196. paw: {
  14197. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14198. name: "Paw",
  14199. image: {
  14200. source: "./media/characters/pia-jr/paw.svg"
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Micro",
  14207. height: math.unit(1.2, "cm")
  14208. },
  14209. {
  14210. name: "Normal",
  14211. height: math.unit(2.2, "m"),
  14212. default: true
  14213. },
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(180, "m")
  14217. },
  14218. {
  14219. name: "Megamacro",
  14220. height: math.unit(420, "km")
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(2, "m"),
  14229. weight: math.unit(115, "kg"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/pia-sr/front.svg",
  14233. extra: 760 / 730,
  14234. bottom: 0.015
  14235. }
  14236. },
  14237. back: {
  14238. height: math.unit(2, "m"),
  14239. weight: math.unit(115, "kg"),
  14240. name: "Back",
  14241. image: {
  14242. source: "./media/characters/pia-sr/back.svg",
  14243. extra: 760 / 730,
  14244. bottom: 0.01
  14245. }
  14246. },
  14247. hand: {
  14248. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14249. name: "Hand",
  14250. image: {
  14251. source: "./media/characters/pia-sr/hand.svg"
  14252. }
  14253. },
  14254. foot: {
  14255. height: math.unit(1.83, "feet"),
  14256. name: "Foot",
  14257. image: {
  14258. source: "./media/characters/pia-sr/foot.svg"
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Micro",
  14265. height: math.unit(88, "mm")
  14266. },
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(2, "m"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Macro",
  14274. height: math.unit(200, "m")
  14275. },
  14276. {
  14277. name: "Megamacro",
  14278. height: math.unit(420, "km")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(8 + 2 / 12, "feet"),
  14287. weight: math.unit(300, "lb"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/kibibyte/front.svg",
  14291. extra: 2221 / 2098,
  14292. bottom: 0.04
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Normal",
  14299. height: math.unit(8 + 2 / 12, "feet"),
  14300. default: true
  14301. },
  14302. {
  14303. name: "Socialable Macro",
  14304. height: math.unit(50, "feet")
  14305. },
  14306. {
  14307. name: "Macro",
  14308. height: math.unit(300, "feet")
  14309. },
  14310. {
  14311. name: "Megamacro",
  14312. height: math.unit(500, "miles")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(150, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/felix/front.svg",
  14325. extra: 762 / 722,
  14326. bottom: 0.02
  14327. }
  14328. },
  14329. frontClothed: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(150, "lb"),
  14332. name: "Front (Clothed)",
  14333. image: {
  14334. source: "./media/characters/felix/front-clothed.svg",
  14335. extra: 762 / 722,
  14336. bottom: 0.02
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Normal",
  14343. height: math.unit(6 + 8 / 12, "feet"),
  14344. default: true
  14345. },
  14346. {
  14347. name: "Macro",
  14348. height: math.unit(2600, "feet")
  14349. },
  14350. {
  14351. name: "Megamacro",
  14352. height: math.unit(450, "miles")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(6 + 1 / 12, "feet"),
  14361. weight: math.unit(250, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/tobo/front.svg",
  14365. extra: 608 / 586,
  14366. bottom: 0.023
  14367. }
  14368. },
  14369. back: {
  14370. height: math.unit(6 + 1 / 12, "feet"),
  14371. weight: math.unit(250, "lb"),
  14372. name: "Back",
  14373. image: {
  14374. source: "./media/characters/tobo/back.svg",
  14375. extra: 608 / 586
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Nano",
  14382. height: math.unit(2, "nm")
  14383. },
  14384. {
  14385. name: "Megamicro",
  14386. height: math.unit(0.1, "mm")
  14387. },
  14388. {
  14389. name: "Micro",
  14390. height: math.unit(1, "inch"),
  14391. default: true
  14392. },
  14393. {
  14394. name: "Human-sized",
  14395. height: math.unit(6 + 1 / 12, "feet")
  14396. },
  14397. {
  14398. name: "Macro",
  14399. height: math.unit(250, "feet")
  14400. },
  14401. {
  14402. name: "Megamacro",
  14403. height: math.unit(75, "miles")
  14404. },
  14405. {
  14406. name: "Texas-sized",
  14407. height: math.unit(750, "miles")
  14408. },
  14409. {
  14410. name: "Teramacro",
  14411. height: math.unit(50000, "miles")
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(6, "feet"),
  14420. weight: math.unit(269, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/danny-kapowsky/front.svg",
  14424. extra: 766 / 736,
  14425. bottom: 0.044
  14426. }
  14427. },
  14428. back: {
  14429. height: math.unit(6, "feet"),
  14430. weight: math.unit(269, "lb"),
  14431. name: "Back",
  14432. image: {
  14433. source: "./media/characters/danny-kapowsky/back.svg",
  14434. extra: 797 / 760,
  14435. bottom: 0.025
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Macro",
  14442. height: math.unit(150, "feet"),
  14443. default: true
  14444. },
  14445. {
  14446. name: "Macro+",
  14447. height: math.unit(200, "feet")
  14448. },
  14449. {
  14450. name: "Macro++",
  14451. height: math.unit(300, "feet")
  14452. },
  14453. {
  14454. name: "Macro+++",
  14455. height: math.unit(400, "feet")
  14456. },
  14457. ]
  14458. ))
  14459. characterMakers.push(() => makeCharacter(
  14460. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14461. {
  14462. side: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(170, "lb"),
  14465. name: "Side",
  14466. image: {
  14467. source: "./media/characters/finn/side.svg",
  14468. extra: 1953 / 1807,
  14469. bottom: 0.057
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Megamacro",
  14476. height: math.unit(14445, "feet"),
  14477. default: true
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(5 + 6 / 12, "feet"),
  14486. weight: math.unit(125, "lb"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/roy/front.svg",
  14490. extra: 1,
  14491. bottom: 0.11
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Micro",
  14498. height: math.unit(3, "inches"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(5 + 6 / 12, "feet")
  14504. },
  14505. {
  14506. name: "Lesser Macro",
  14507. height: math.unit(60, "feet")
  14508. },
  14509. {
  14510. name: "Greater Macro",
  14511. height: math.unit(120, "feet")
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14517. {
  14518. front: {
  14519. height: math.unit(6, "feet"),
  14520. weight: math.unit(100, "lb"),
  14521. name: "Front",
  14522. image: {
  14523. source: "./media/characters/aevsivs/front.svg",
  14524. extra: 1,
  14525. bottom: 0.03
  14526. }
  14527. },
  14528. back: {
  14529. height: math.unit(6, "feet"),
  14530. weight: math.unit(100, "lb"),
  14531. name: "Back",
  14532. image: {
  14533. source: "./media/characters/aevsivs/back.svg"
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Micro",
  14540. height: math.unit(2, "inches"),
  14541. default: true
  14542. },
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(5, "feet")
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14551. {
  14552. front: {
  14553. height: math.unit(5 + 7 / 12, "feet"),
  14554. weight: math.unit(159, "lb"),
  14555. name: "Front",
  14556. image: {
  14557. source: "./media/characters/hildegard/front.svg",
  14558. extra: 289 / 269,
  14559. bottom: 7.63 / 297.8
  14560. }
  14561. },
  14562. back: {
  14563. height: math.unit(5 + 7 / 12, "feet"),
  14564. weight: math.unit(159, "lb"),
  14565. name: "Back",
  14566. image: {
  14567. source: "./media/characters/hildegard/back.svg",
  14568. extra: 280 / 260,
  14569. bottom: 2.3 / 282
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(5 + 7 / 12, "feet"),
  14577. default: true
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14583. {
  14584. bernard: {
  14585. height: math.unit(2 + 7 / 12, "feet"),
  14586. weight: math.unit(66, "lb"),
  14587. name: "Bernard",
  14588. rename: true,
  14589. image: {
  14590. source: "./media/characters/bernard-wilder/bernard.svg",
  14591. extra: 192 / 128,
  14592. bottom: 0.05
  14593. }
  14594. },
  14595. wilder: {
  14596. height: math.unit(5 + 8 / 12, "feet"),
  14597. weight: math.unit(143, "lb"),
  14598. name: "Wilder",
  14599. rename: true,
  14600. image: {
  14601. source: "./media/characters/bernard-wilder/wilder.svg",
  14602. extra: 361 / 312,
  14603. bottom: 0.02
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(2 + 7 / 12, "feet"),
  14611. default: true
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14617. {
  14618. anthro: {
  14619. height: math.unit(6 + 1 / 12, "feet"),
  14620. weight: math.unit(155, "lb"),
  14621. name: "Anthro",
  14622. image: {
  14623. source: "./media/characters/hearth/anthro.svg",
  14624. extra: 260 / 250,
  14625. bottom: 0.02
  14626. }
  14627. },
  14628. feral: {
  14629. height: math.unit(3.78, "feet"),
  14630. weight: math.unit(35, "kg"),
  14631. name: "Feral",
  14632. image: {
  14633. source: "./media/characters/hearth/feral.svg",
  14634. extra: 153 / 135,
  14635. bottom: 0.03
  14636. }
  14637. },
  14638. },
  14639. [
  14640. {
  14641. name: "Normal",
  14642. height: math.unit(6 + 1 / 12, "feet"),
  14643. default: true
  14644. },
  14645. ]
  14646. ))
  14647. characterMakers.push(() => makeCharacter(
  14648. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14649. {
  14650. front: {
  14651. height: math.unit(6, "feet"),
  14652. weight: math.unit(182, "lb"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/ingrid/front.svg",
  14656. extra: 294 / 268,
  14657. bottom: 0.027
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(6, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14671. {
  14672. eevee: {
  14673. height: math.unit(2 + 10 / 12, "feet"),
  14674. weight: math.unit(86, "lb"),
  14675. name: "Malgam",
  14676. image: {
  14677. source: "./media/characters/malgam/eevee.svg",
  14678. extra: 218 / 180,
  14679. bottom: 0.2
  14680. }
  14681. },
  14682. sylveon: {
  14683. height: math.unit(4, "feet"),
  14684. weight: math.unit(101, "lb"),
  14685. name: "Future Malgam",
  14686. rename: true,
  14687. image: {
  14688. source: "./media/characters/malgam/sylveon.svg",
  14689. extra: 371 / 325,
  14690. bottom: 0.015
  14691. }
  14692. },
  14693. gigantamax: {
  14694. height: math.unit(50, "feet"),
  14695. name: "Gigantamax Malgam",
  14696. rename: true,
  14697. image: {
  14698. source: "./media/characters/malgam/gigantamax.svg"
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(2 + 10 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(5 + 11 / 12, "feet"),
  14715. weight: math.unit(188, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/fleur/front.svg",
  14719. extra: 309 / 283,
  14720. bottom: 0.007
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(5 + 11 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(5 + 4 / 12, "feet"),
  14737. weight: math.unit(122, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/jude/front.svg",
  14741. extra: 288 / 273,
  14742. bottom: 0.03
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(5 + 4 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(5 + 11 / 12, "feet"),
  14759. weight: math.unit(190, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/seara/front.svg",
  14763. extra: 1,
  14764. bottom: 0.05
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(5 + 11 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(16 + 5 / 12, "feet"),
  14781. weight: math.unit(524, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/caspian/front.svg",
  14785. extra: 1,
  14786. bottom: 0.04
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(16 + 5 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(5 + 7 / 12, "feet"),
  14803. weight: math.unit(170, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/mika/front.svg",
  14807. extra: 1,
  14808. bottom: 0.016
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(5 + 7 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(6 + 2 / 12, "feet"),
  14825. weight: math.unit(268, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/sol/front.svg",
  14829. extra: 247 / 231,
  14830. bottom: 0.05
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(6 + 2 / 12, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14844. {
  14845. buizel: {
  14846. height: math.unit(2 + 5 / 12, "feet"),
  14847. weight: math.unit(87, "lb"),
  14848. name: "Buizel",
  14849. image: {
  14850. source: "./media/characters/umiko/buizel.svg",
  14851. extra: 172 / 157,
  14852. bottom: 0.01
  14853. }
  14854. },
  14855. floatzel: {
  14856. height: math.unit(5 + 9 / 12, "feet"),
  14857. weight: math.unit(250, "lb"),
  14858. name: "Floatzel",
  14859. image: {
  14860. source: "./media/characters/umiko/floatzel.svg",
  14861. extra: 262 / 248
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(2 + 5 / 12, "feet"),
  14869. default: true
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(6 + 2 / 12, "feet"),
  14878. weight: math.unit(146, "lb"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/iliac/front.svg",
  14882. extra: 389 / 365,
  14883. bottom: 0.035
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(6 + 2 / 12, "feet"),
  14891. default: true
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14897. {
  14898. front: {
  14899. height: math.unit(6, "feet"),
  14900. weight: math.unit(170, "lb"),
  14901. name: "Front",
  14902. image: {
  14903. source: "./media/characters/topaz/front.svg",
  14904. extra: 317 / 303,
  14905. bottom: 0.055
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(6, "feet"),
  14913. default: true
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(5 + 11 / 12, "feet"),
  14922. weight: math.unit(144, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/gabriel/front.svg",
  14926. extra: 285 / 262,
  14927. bottom: 0.004
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(5 + 11 / 12, "feet"),
  14935. default: true
  14936. },
  14937. ]
  14938. ))
  14939. characterMakers.push(() => makeCharacter(
  14940. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14941. {
  14942. side: {
  14943. height: math.unit(6 + 5 / 12, "feet"),
  14944. weight: math.unit(300, "lb"),
  14945. name: "Side",
  14946. image: {
  14947. source: "./media/characters/tempest-suicune/side.svg",
  14948. extra: 195 / 154,
  14949. bottom: 0.04
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(6 + 5 / 12, "feet"),
  14957. default: true
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14963. {
  14964. front: {
  14965. height: math.unit(7 + 2 / 12, "feet"),
  14966. weight: math.unit(322, "lb"),
  14967. name: "Front",
  14968. image: {
  14969. source: "./media/characters/vulcan/front.svg",
  14970. extra: 154 / 147,
  14971. bottom: 0.04
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(7 + 2 / 12, "feet"),
  14979. default: true
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14985. {
  14986. front: {
  14987. height: math.unit(5 + 10 / 12, "feet"),
  14988. weight: math.unit(264, "lb"),
  14989. name: "Front",
  14990. image: {
  14991. source: "./media/characters/gault/front.svg",
  14992. extra: 161 / 140,
  14993. bottom: 0.028
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Normal",
  15000. height: math.unit(5 + 10 / 12, "feet"),
  15001. default: true
  15002. },
  15003. ]
  15004. ))
  15005. characterMakers.push(() => makeCharacter(
  15006. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15007. {
  15008. front: {
  15009. height: math.unit(6, "feet"),
  15010. weight: math.unit(150, "lb"),
  15011. name: "Front",
  15012. image: {
  15013. source: "./media/characters/shard/front.svg",
  15014. extra: 273 / 238,
  15015. bottom: 0.02
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Normal",
  15022. height: math.unit(3 + 6 / 12, "feet"),
  15023. default: true
  15024. },
  15025. ]
  15026. ))
  15027. characterMakers.push(() => makeCharacter(
  15028. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15029. {
  15030. front: {
  15031. height: math.unit(5 + 11 / 12, "feet"),
  15032. weight: math.unit(146, "lb"),
  15033. name: "Front",
  15034. image: {
  15035. source: "./media/characters/ashe/front.svg",
  15036. extra: 400 / 373,
  15037. bottom: 0.01
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(5 + 11 / 12, "feet"),
  15045. default: true
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(5 + 5 / 12, "feet"),
  15054. weight: math.unit(135, "lb"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/beatrix/front.svg",
  15058. extra: 392 / 379,
  15059. bottom: 0.01
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Normal",
  15066. height: math.unit(6, "feet"),
  15067. default: true
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(6, "feet"),
  15076. weight: math.unit(150, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/ignatius/front.svg",
  15080. extra: 245 / 222,
  15081. bottom: 0.01
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Normal",
  15088. height: math.unit(5 + 5 / 12, "feet"),
  15089. default: true
  15090. },
  15091. ]
  15092. ))
  15093. characterMakers.push(() => makeCharacter(
  15094. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15095. {
  15096. front: {
  15097. height: math.unit(6 + 2 / 12, "feet"),
  15098. weight: math.unit(138, "lb"),
  15099. name: "Front",
  15100. image: {
  15101. source: "./media/characters/mei-li/front.svg",
  15102. extra: 237 / 229,
  15103. bottom: 0.03
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(6 + 2 / 12, "feet"),
  15111. default: true
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15117. {
  15118. front: {
  15119. height: math.unit(2 + 4 / 12, "feet"),
  15120. weight: math.unit(62, "lb"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/puru/front.svg",
  15124. extra: 206 / 149,
  15125. bottom: 0.06
  15126. }
  15127. },
  15128. },
  15129. [
  15130. {
  15131. name: "Normal",
  15132. height: math.unit(2 + 4 / 12, "feet"),
  15133. default: true
  15134. },
  15135. ]
  15136. ))
  15137. characterMakers.push(() => makeCharacter(
  15138. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15139. {
  15140. anthro: {
  15141. height: math.unit(5 + 8/12, "feet"),
  15142. weight: math.unit(200, "lb"),
  15143. energyNeed: math.unit(2000, "kcal"),
  15144. name: "Anthro",
  15145. image: {
  15146. source: "./media/characters/kee/anthro.svg",
  15147. extra: 3251/3184,
  15148. bottom: 250/3501
  15149. }
  15150. },
  15151. taur: {
  15152. height: math.unit(11, "feet"),
  15153. weight: math.unit(500, "lb"),
  15154. energyNeed: math.unit(5000, "kcal"),
  15155. name: "Taur",
  15156. image: {
  15157. source: "./media/characters/kee/taur.svg",
  15158. extra: 1362/1320,
  15159. bottom: 83/1445
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(5 + 8/12, "feet"),
  15167. default: true
  15168. },
  15169. {
  15170. name: "Macro",
  15171. height: math.unit(35, "feet")
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15177. {
  15178. anthro: {
  15179. height: math.unit(7, "feet"),
  15180. weight: math.unit(190, "lb"),
  15181. name: "Anthro",
  15182. image: {
  15183. source: "./media/characters/cobalt-dracha/anthro.svg",
  15184. extra: 231 / 225,
  15185. bottom: 0.04
  15186. }
  15187. },
  15188. feral: {
  15189. height: math.unit(9 + 7 / 12, "feet"),
  15190. weight: math.unit(294, "lb"),
  15191. name: "Feral",
  15192. image: {
  15193. source: "./media/characters/cobalt-dracha/feral.svg",
  15194. extra: 692 / 633,
  15195. bottom: 0.05
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(7, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15209. {
  15210. fallen: {
  15211. height: math.unit(11 + 8 / 12, "feet"),
  15212. weight: math.unit(485, "lb"),
  15213. name: "Java (Fallen)",
  15214. rename: true,
  15215. image: {
  15216. source: "./media/characters/java/fallen.svg",
  15217. extra: 226 / 208,
  15218. bottom: 0.005
  15219. }
  15220. },
  15221. godkin: {
  15222. height: math.unit(10 + 6 / 12, "feet"),
  15223. weight: math.unit(328, "lb"),
  15224. name: "Java (Godkin)",
  15225. rename: true,
  15226. image: {
  15227. source: "./media/characters/java/godkin.svg",
  15228. extra: 270 / 262,
  15229. bottom: 0.02
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Normal",
  15236. height: math.unit(11 + 8 / 12, "feet"),
  15237. default: true
  15238. },
  15239. ]
  15240. ))
  15241. characterMakers.push(() => makeCharacter(
  15242. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15243. {
  15244. front: {
  15245. height: math.unit(7 + 8 / 12, "feet"),
  15246. weight: math.unit(320, "lb"),
  15247. name: "Front",
  15248. image: {
  15249. source: "./media/characters/skoll/front.svg",
  15250. extra: 232 / 220,
  15251. bottom: 0.02
  15252. }
  15253. },
  15254. },
  15255. [
  15256. {
  15257. name: "Normal",
  15258. height: math.unit(7 + 8 / 12, "feet"),
  15259. default: true
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(5 + 9 / 12, "feet"),
  15268. weight: math.unit(170, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/purna/front.svg",
  15272. extra: 239 / 229,
  15273. bottom: 0.01
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Normal",
  15280. height: math.unit(5 + 9 / 12, "feet"),
  15281. default: true
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15287. {
  15288. front: {
  15289. height: math.unit(5 + 9 / 12, "feet"),
  15290. weight: math.unit(142, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/kuva/front.svg",
  15294. extra: 281 / 271,
  15295. bottom: 0.006
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Normal",
  15302. height: math.unit(5 + 9 / 12, "feet"),
  15303. default: true
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15309. {
  15310. anthro: {
  15311. height: math.unit(9 + 2 / 12, "feet"),
  15312. weight: math.unit(270, "lb"),
  15313. name: "Anthro",
  15314. image: {
  15315. source: "./media/characters/embra/anthro.svg",
  15316. extra: 200 / 187,
  15317. bottom: 0.02
  15318. }
  15319. },
  15320. feral: {
  15321. height: math.unit(18 + 8 / 12, "feet"),
  15322. weight: math.unit(576, "lb"),
  15323. name: "Feral",
  15324. image: {
  15325. source: "./media/characters/embra/feral.svg",
  15326. extra: 152 / 137,
  15327. bottom: 0.037
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Normal",
  15334. height: math.unit(9 + 2 / 12, "feet"),
  15335. default: true
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15341. {
  15342. anthro: {
  15343. height: math.unit(10 + 9 / 12, "feet"),
  15344. weight: math.unit(224, "lb"),
  15345. name: "Anthro",
  15346. image: {
  15347. source: "./media/characters/grottos/anthro.svg",
  15348. extra: 350 / 332,
  15349. bottom: 0.045
  15350. }
  15351. },
  15352. feral: {
  15353. height: math.unit(20 + 7 / 12, "feet"),
  15354. weight: math.unit(629, "lb"),
  15355. name: "Feral",
  15356. image: {
  15357. source: "./media/characters/grottos/feral.svg",
  15358. extra: 207 / 190,
  15359. bottom: 0.05
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(10 + 9 / 12, "feet"),
  15367. default: true
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15373. {
  15374. anthro: {
  15375. height: math.unit(9 + 6 / 12, "feet"),
  15376. weight: math.unit(298, "lb"),
  15377. name: "Anthro",
  15378. image: {
  15379. source: "./media/characters/frifna/anthro.svg",
  15380. extra: 282 / 269,
  15381. bottom: 0.015
  15382. }
  15383. },
  15384. feral: {
  15385. height: math.unit(16 + 2 / 12, "feet"),
  15386. weight: math.unit(624, "lb"),
  15387. name: "Feral",
  15388. image: {
  15389. source: "./media/characters/frifna/feral.svg"
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(9 + 6 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(6 + 2 / 12, "feet"),
  15406. weight: math.unit(168, "lb"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/elise/front.svg",
  15410. extra: 276 / 271
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(6 + 2 / 12, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(5 + 10 / 12, "feet"),
  15427. weight: math.unit(210, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/glade/front.svg",
  15431. extra: 258 / 247,
  15432. bottom: 0.008
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(5 + 10 / 12, "feet"),
  15440. default: true
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(5 + 10 / 12, "feet"),
  15449. weight: math.unit(129, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/rina/front.svg",
  15453. extra: 266 / 255,
  15454. bottom: 0.005
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(5 + 10 / 12, "feet"),
  15462. default: true
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15468. {
  15469. front: {
  15470. height: math.unit(6 + 1 / 12, "feet"),
  15471. weight: math.unit(192, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/veronica/front.svg",
  15475. extra: 319 / 309,
  15476. bottom: 0.005
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(6 + 1 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(9 + 3 / 12, "feet"),
  15493. weight: math.unit(1100, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/braxton/front.svg",
  15497. extra: 1057 / 984,
  15498. bottom: 0.05
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Normal",
  15505. height: math.unit(9 + 3 / 12, "feet")
  15506. },
  15507. {
  15508. name: "Giant",
  15509. height: math.unit(300, "feet"),
  15510. default: true
  15511. },
  15512. {
  15513. name: "Macro",
  15514. height: math.unit(700, "feet")
  15515. },
  15516. {
  15517. name: "Megamacro",
  15518. height: math.unit(6000, "feet")
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(6 + 7 / 12, "feet"),
  15527. weight: math.unit(150, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/blue-feyonics/front.svg",
  15531. extra: 1403 / 1306,
  15532. bottom: 0.047
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(6 + 7 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(1.8, "meters"),
  15549. weight: math.unit(60, "kg"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/maxwell/front.svg",
  15553. extra: 2060 / 1873
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Micro",
  15560. height: math.unit(1, "mm")
  15561. },
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(1.8, "meter"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Macro",
  15569. height: math.unit(30, "meters")
  15570. },
  15571. {
  15572. name: "Megamacro",
  15573. height: math.unit(10, "km")
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/jack/front.svg",
  15586. extra: 1754 / 1640,
  15587. bottom: 0.01
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(80000, "feet"),
  15595. default: true
  15596. },
  15597. {
  15598. name: "Max size",
  15599. height: math.unit(10, "lightyears")
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15605. {
  15606. urban: {
  15607. height: math.unit(5, "feet"),
  15608. weight: math.unit(240, "lb"),
  15609. name: "Urban",
  15610. image: {
  15611. source: "./media/characters/cafat/urban.svg",
  15612. extra: 1223/1126,
  15613. bottom: 205/1428
  15614. }
  15615. },
  15616. summer: {
  15617. height: math.unit(5, "feet"),
  15618. weight: math.unit(240, "lb"),
  15619. name: "Summer",
  15620. image: {
  15621. source: "./media/characters/cafat/summer.svg",
  15622. extra: 1223/1126,
  15623. bottom: 205/1428
  15624. }
  15625. },
  15626. winter: {
  15627. height: math.unit(5, "feet"),
  15628. weight: math.unit(240, "lb"),
  15629. name: "Winter",
  15630. image: {
  15631. source: "./media/characters/cafat/winter.svg",
  15632. extra: 1223/1126,
  15633. bottom: 205/1428
  15634. }
  15635. },
  15636. lingerie: {
  15637. height: math.unit(5, "feet"),
  15638. weight: math.unit(240, "lb"),
  15639. name: "Lingerie",
  15640. image: {
  15641. source: "./media/characters/cafat/lingerie.svg",
  15642. extra: 1223/1126,
  15643. bottom: 205/1428
  15644. }
  15645. },
  15646. upright: {
  15647. height: math.unit(6.3, "feet"),
  15648. weight: math.unit(240, "lb"),
  15649. name: "Upright",
  15650. image: {
  15651. source: "./media/characters/cafat/upright.svg",
  15652. bottom: 0.01
  15653. }
  15654. },
  15655. uprightFull: {
  15656. height: math.unit(6.3, "feet"),
  15657. weight: math.unit(240, "lb"),
  15658. name: "Upright (Full)",
  15659. image: {
  15660. source: "./media/characters/cafat/upright-full.svg",
  15661. bottom: 0.01
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Small",
  15668. height: math.unit(5, "feet"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Large",
  15673. height: math.unit(13, "feet")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(6, "feet"),
  15682. weight: math.unit(150, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/verin-raharra/front.svg",
  15686. extra: 5019 / 4835,
  15687. bottom: 0.023
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(7 + 5 / 12, "feet"),
  15695. default: true
  15696. },
  15697. {
  15698. name: "Upsized",
  15699. height: math.unit(20, "feet")
  15700. },
  15701. ]
  15702. ))
  15703. characterMakers.push(() => makeCharacter(
  15704. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15705. {
  15706. front: {
  15707. height: math.unit(7, "feet"),
  15708. weight: math.unit(230, "lb"),
  15709. name: "Front",
  15710. image: {
  15711. source: "./media/characters/nakata/front.svg",
  15712. extra: 1.005,
  15713. bottom: 0.01
  15714. }
  15715. },
  15716. },
  15717. [
  15718. {
  15719. name: "Normal",
  15720. height: math.unit(7, "feet"),
  15721. default: true
  15722. },
  15723. {
  15724. name: "Big",
  15725. height: math.unit(14, "feet")
  15726. },
  15727. {
  15728. name: "Macro",
  15729. height: math.unit(400, "feet")
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15735. {
  15736. front: {
  15737. height: math.unit(4.91, "feet"),
  15738. weight: math.unit(100, "lb"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/lily/front.svg",
  15742. extra: 1585 / 1415,
  15743. bottom: 0.02
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(4.91, "feet"),
  15751. default: true
  15752. },
  15753. ]
  15754. ))
  15755. characterMakers.push(() => makeCharacter(
  15756. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15757. {
  15758. laying: {
  15759. height: math.unit(4 + 4 / 12, "feet"),
  15760. weight: math.unit(600, "lb"),
  15761. name: "Laying",
  15762. image: {
  15763. source: "./media/characters/sheila/laying.svg",
  15764. extra: 1333 / 1265,
  15765. bottom: 0.16
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Normal",
  15772. height: math.unit(4 + 4 / 12, "feet"),
  15773. default: true
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15779. {
  15780. front: {
  15781. height: math.unit(6, "feet"),
  15782. weight: math.unit(190, "lb"),
  15783. name: "Front",
  15784. image: {
  15785. source: "./media/characters/sax/front.svg",
  15786. extra: 1187 / 973,
  15787. bottom: 0.042
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Micro",
  15794. height: math.unit(4, "inches"),
  15795. default: true
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15801. {
  15802. front: {
  15803. height: math.unit(6, "feet"),
  15804. weight: math.unit(150, "lb"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/pandora/front.svg",
  15808. extra: 2720 / 2556,
  15809. bottom: 0.015
  15810. }
  15811. },
  15812. back: {
  15813. height: math.unit(6, "feet"),
  15814. weight: math.unit(150, "lb"),
  15815. name: "Back",
  15816. image: {
  15817. source: "./media/characters/pandora/back.svg",
  15818. extra: 2720 / 2556,
  15819. bottom: 0.01
  15820. }
  15821. },
  15822. beans: {
  15823. height: math.unit(6 / 8, "feet"),
  15824. name: "Beans",
  15825. image: {
  15826. source: "./media/characters/pandora/beans.svg"
  15827. }
  15828. },
  15829. collar: {
  15830. height: math.unit(0.31, "feet"),
  15831. name: "Collar",
  15832. image: {
  15833. source: "./media/characters/pandora/collar.svg"
  15834. }
  15835. },
  15836. skirt: {
  15837. height: math.unit(6, "feet"),
  15838. weight: math.unit(150, "lb"),
  15839. name: "Skirt",
  15840. image: {
  15841. source: "./media/characters/pandora/skirt.svg",
  15842. extra: 1622 / 1525,
  15843. bottom: 0.015
  15844. }
  15845. },
  15846. hoodie: {
  15847. height: math.unit(6, "feet"),
  15848. weight: math.unit(150, "lb"),
  15849. name: "Hoodie",
  15850. image: {
  15851. source: "./media/characters/pandora/hoodie.svg",
  15852. extra: 1622 / 1525,
  15853. bottom: 0.015
  15854. }
  15855. },
  15856. casual: {
  15857. height: math.unit(6, "feet"),
  15858. weight: math.unit(150, "lb"),
  15859. name: "Casual",
  15860. image: {
  15861. source: "./media/characters/pandora/casual.svg",
  15862. extra: 1622 / 1525,
  15863. bottom: 0.015
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(6, "feet")
  15871. },
  15872. {
  15873. name: "Big Steppy",
  15874. height: math.unit(1, "km"),
  15875. default: true
  15876. },
  15877. {
  15878. name: "Galactic Steppy",
  15879. height: math.unit(2, "gigameters")
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15885. {
  15886. side: {
  15887. height: math.unit(10, "feet"),
  15888. weight: math.unit(800, "kg"),
  15889. name: "Side",
  15890. image: {
  15891. source: "./media/characters/venio-darcony/side.svg",
  15892. extra: 1373 / 1003,
  15893. bottom: 0.037
  15894. }
  15895. },
  15896. front: {
  15897. height: math.unit(19, "feet"),
  15898. weight: math.unit(800, "kg"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/venio-darcony/front.svg"
  15902. }
  15903. },
  15904. back: {
  15905. height: math.unit(19, "feet"),
  15906. weight: math.unit(800, "kg"),
  15907. name: "Back",
  15908. image: {
  15909. source: "./media/characters/venio-darcony/back.svg"
  15910. }
  15911. },
  15912. sideNsfw: {
  15913. height: math.unit(10, "feet"),
  15914. weight: math.unit(800, "kg"),
  15915. name: "Side (NSFW)",
  15916. image: {
  15917. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15918. extra: 1373 / 1003,
  15919. bottom: 0.037
  15920. }
  15921. },
  15922. frontNsfw: {
  15923. height: math.unit(19, "feet"),
  15924. weight: math.unit(800, "kg"),
  15925. name: "Front (NSFW)",
  15926. image: {
  15927. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15928. }
  15929. },
  15930. backNsfw: {
  15931. height: math.unit(19, "feet"),
  15932. weight: math.unit(800, "kg"),
  15933. name: "Back (NSFW)",
  15934. image: {
  15935. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15936. }
  15937. },
  15938. sideArmored: {
  15939. height: math.unit(10, "feet"),
  15940. weight: math.unit(800, "kg"),
  15941. name: "Side (Armored)",
  15942. image: {
  15943. source: "./media/characters/venio-darcony/side-armored.svg",
  15944. extra: 1373 / 1003,
  15945. bottom: 0.037
  15946. }
  15947. },
  15948. frontArmored: {
  15949. height: math.unit(19, "feet"),
  15950. weight: math.unit(900, "kg"),
  15951. name: "Front (Armored)",
  15952. image: {
  15953. source: "./media/characters/venio-darcony/front-armored.svg"
  15954. }
  15955. },
  15956. backArmored: {
  15957. height: math.unit(19, "feet"),
  15958. weight: math.unit(900, "kg"),
  15959. name: "Back (Armored)",
  15960. image: {
  15961. source: "./media/characters/venio-darcony/back-armored.svg"
  15962. }
  15963. },
  15964. sword: {
  15965. height: math.unit(10, "feet"),
  15966. weight: math.unit(50, "lb"),
  15967. name: "Sword",
  15968. image: {
  15969. source: "./media/characters/venio-darcony/sword.svg"
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(10, "feet")
  15977. },
  15978. {
  15979. name: "Macro",
  15980. height: math.unit(130, "feet"),
  15981. default: true
  15982. },
  15983. {
  15984. name: "Macro+",
  15985. height: math.unit(240, "feet")
  15986. },
  15987. ]
  15988. ))
  15989. characterMakers.push(() => makeCharacter(
  15990. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15991. {
  15992. front: {
  15993. height: math.unit(6, "feet"),
  15994. weight: math.unit(150, "lb"),
  15995. name: "Front",
  15996. image: {
  15997. source: "./media/characters/veski/front.svg",
  15998. extra: 1299 / 1225,
  15999. bottom: 0.04
  16000. }
  16001. },
  16002. back: {
  16003. height: math.unit(6, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Back",
  16006. image: {
  16007. source: "./media/characters/veski/back.svg",
  16008. extra: 1299 / 1225,
  16009. bottom: 0.008
  16010. }
  16011. },
  16012. maw: {
  16013. height: math.unit(1.5 * 1.21, "feet"),
  16014. name: "Maw",
  16015. image: {
  16016. source: "./media/characters/veski/maw.svg"
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Macro",
  16023. height: math.unit(2, "km"),
  16024. default: true
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(5 + 7 / 12, "feet"),
  16033. name: "Front",
  16034. image: {
  16035. source: "./media/characters/isabelle/front.svg",
  16036. extra: 2130 / 1976,
  16037. bottom: 0.05
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Supermicro",
  16044. height: math.unit(10, "micrometers")
  16045. },
  16046. {
  16047. name: "Micro",
  16048. height: math.unit(1, "inch")
  16049. },
  16050. {
  16051. name: "Tiny",
  16052. height: math.unit(5, "inches")
  16053. },
  16054. {
  16055. name: "Standard",
  16056. height: math.unit(5 + 7 / 12, "inches")
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(80, "meters"),
  16061. default: true
  16062. },
  16063. {
  16064. name: "Megamacro",
  16065. height: math.unit(250, "meters")
  16066. },
  16067. {
  16068. name: "Gigamacro",
  16069. height: math.unit(5, "km")
  16070. },
  16071. {
  16072. name: "Cosmic",
  16073. height: math.unit(2.5e6, "miles")
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(6, "feet"),
  16082. weight: math.unit(150, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/hanzo/front.svg",
  16086. extra: 374 / 344,
  16087. bottom: 0.02
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(8, "feet"),
  16095. default: true
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(7, "feet"),
  16104. weight: math.unit(130, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/anna/front.svg",
  16108. extra: 169 / 145,
  16109. bottom: 0.06
  16110. }
  16111. },
  16112. full: {
  16113. height: math.unit(4.96, "feet"),
  16114. weight: math.unit(220, "lb"),
  16115. name: "Full",
  16116. image: {
  16117. source: "./media/characters/anna/full.svg",
  16118. extra: 138 / 114,
  16119. bottom: 0.15
  16120. }
  16121. },
  16122. tongue: {
  16123. height: math.unit(2.53, "feet"),
  16124. name: "Tongue",
  16125. image: {
  16126. source: "./media/characters/anna/tongue.svg"
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(7, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(7, "feet"),
  16143. weight: math.unit(150, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/ian-corvid/front.svg",
  16147. extra: 150 / 142,
  16148. bottom: 0.02
  16149. }
  16150. },
  16151. back: {
  16152. height: math.unit(7, "feet"),
  16153. weight: math.unit(150, "lb"),
  16154. name: "Back",
  16155. image: {
  16156. source: "./media/characters/ian-corvid/back.svg",
  16157. extra: 150 / 143,
  16158. bottom: 0.01
  16159. }
  16160. },
  16161. stomping: {
  16162. height: math.unit(7, "feet"),
  16163. weight: math.unit(150, "lb"),
  16164. name: "Stomping",
  16165. image: {
  16166. source: "./media/characters/ian-corvid/stomping.svg",
  16167. extra: 76 / 72
  16168. }
  16169. },
  16170. sitting: {
  16171. height: math.unit(7 / 1.8, "feet"),
  16172. weight: math.unit(150, "lb"),
  16173. name: "Sitting",
  16174. image: {
  16175. source: "./media/characters/ian-corvid/sitting.svg",
  16176. extra: 1400 / 1269,
  16177. bottom: 0.15
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Tiny Microw",
  16184. height: math.unit(1, "inch")
  16185. },
  16186. {
  16187. name: "Microw",
  16188. height: math.unit(6, "inches")
  16189. },
  16190. {
  16191. name: "Crow",
  16192. height: math.unit(7 + 1 / 12, "feet"),
  16193. default: true
  16194. },
  16195. {
  16196. name: "Macrow",
  16197. height: math.unit(176, "feet")
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(5 + 7 / 12, "feet"),
  16206. weight: math.unit(147, "lb"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/natalie-kellon/front.svg",
  16210. extra: 1214 / 1141,
  16211. bottom: 0.02
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Micro",
  16218. height: math.unit(1 / 16, "inch")
  16219. },
  16220. {
  16221. name: "Tiny",
  16222. height: math.unit(4, "inches")
  16223. },
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(5 + 7 / 12, "feet"),
  16227. default: true
  16228. },
  16229. {
  16230. name: "Amazon",
  16231. height: math.unit(12, "feet")
  16232. },
  16233. {
  16234. name: "Giantess",
  16235. height: math.unit(160, "meters")
  16236. },
  16237. {
  16238. name: "Titaness",
  16239. height: math.unit(800, "meters")
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16245. {
  16246. front: {
  16247. height: math.unit(6, "feet"),
  16248. weight: math.unit(150, "lb"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/alluria/front.svg",
  16252. extra: 806 / 738,
  16253. bottom: 0.01
  16254. }
  16255. },
  16256. side: {
  16257. height: math.unit(6, "feet"),
  16258. weight: math.unit(150, "lb"),
  16259. name: "Side",
  16260. image: {
  16261. source: "./media/characters/alluria/side.svg",
  16262. extra: 800 / 750,
  16263. }
  16264. },
  16265. back: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Back",
  16269. image: {
  16270. source: "./media/characters/alluria/back.svg",
  16271. extra: 806 / 738,
  16272. }
  16273. },
  16274. frontMaid: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(150, "lb"),
  16277. name: "Front (Maid)",
  16278. image: {
  16279. source: "./media/characters/alluria/front-maid.svg",
  16280. extra: 806 / 738,
  16281. bottom: 0.01
  16282. }
  16283. },
  16284. sideMaid: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Side (Maid)",
  16288. image: {
  16289. source: "./media/characters/alluria/side-maid.svg",
  16290. extra: 800 / 750,
  16291. bottom: 0.005
  16292. }
  16293. },
  16294. backMaid: {
  16295. height: math.unit(6, "feet"),
  16296. weight: math.unit(150, "lb"),
  16297. name: "Back (Maid)",
  16298. image: {
  16299. source: "./media/characters/alluria/back-maid.svg",
  16300. extra: 806 / 738,
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Micro",
  16307. height: math.unit(6, "inches"),
  16308. default: true
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(150, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/kyle/front.svg",
  16321. extra: 1069 / 962,
  16322. bottom: 77.228 / 1727.45
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Macro",
  16329. height: math.unit(150, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(300, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/duncan/front.svg",
  16343. extra: 1650 / 1482,
  16344. bottom: 0.05
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Macro",
  16351. height: math.unit(100, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(5 + 4 / 12, "feet"),
  16361. weight: math.unit(220, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/memory/front.svg",
  16365. extra: 3641 / 3545,
  16366. bottom: 0.03
  16367. }
  16368. },
  16369. back: {
  16370. height: math.unit(5 + 4 / 12, "feet"),
  16371. weight: math.unit(220, "lb"),
  16372. name: "Back",
  16373. image: {
  16374. source: "./media/characters/memory/back.svg",
  16375. extra: 3641 / 3545,
  16376. bottom: 0.025
  16377. }
  16378. },
  16379. frontSkirt: {
  16380. height: math.unit(5 + 4 / 12, "feet"),
  16381. weight: math.unit(220, "lb"),
  16382. name: "Front (Skirt)",
  16383. image: {
  16384. source: "./media/characters/memory/front-skirt.svg",
  16385. extra: 3641 / 3545,
  16386. bottom: 0.03
  16387. }
  16388. },
  16389. frontDress: {
  16390. height: math.unit(5 + 4 / 12, "feet"),
  16391. weight: math.unit(220, "lb"),
  16392. name: "Front (Dress)",
  16393. image: {
  16394. source: "./media/characters/memory/front-dress.svg",
  16395. extra: 3641 / 3545,
  16396. bottom: 0.03
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Micro",
  16403. height: math.unit(6, "inches"),
  16404. default: true
  16405. },
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(5 + 4 / 12, "feet")
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16414. {
  16415. front: {
  16416. height: math.unit(4 + 11 / 12, "feet"),
  16417. weight: math.unit(100, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/luno/front.svg",
  16421. extra: 1535 / 1487,
  16422. bottom: 0.03
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Micro",
  16429. height: math.unit(3, "inches")
  16430. },
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(4 + 11 / 12, "feet"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro",
  16438. height: math.unit(300, "feet")
  16439. },
  16440. {
  16441. name: "Megamacro",
  16442. height: math.unit(700, "miles")
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16448. {
  16449. front: {
  16450. height: math.unit(6 + 2 / 12, "feet"),
  16451. weight: math.unit(170, "lb"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/jamesy/front.svg",
  16455. extra: 440 / 382,
  16456. bottom: 0.005
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Micro",
  16463. height: math.unit(3, "inches")
  16464. },
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(6 + 2 / 12, "feet"),
  16468. default: true
  16469. },
  16470. {
  16471. name: "Macro",
  16472. height: math.unit(300, "feet")
  16473. },
  16474. {
  16475. name: "Megamacro",
  16476. height: math.unit(700, "miles")
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(6, "feet"),
  16485. weight: math.unit(160, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/mark/front.svg",
  16489. extra: 3300 / 3100,
  16490. bottom: 136.42 / 3440.47
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Macro",
  16497. height: math.unit(120, "meters")
  16498. },
  16499. {
  16500. name: "Bigger Macro",
  16501. height: math.unit(350, "meters")
  16502. },
  16503. {
  16504. name: "Megamacro",
  16505. height: math.unit(8, "km"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Continental",
  16510. height: math.unit(4550, "km")
  16511. },
  16512. {
  16513. name: "Planetary",
  16514. height: math.unit(65000, "km")
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(6, "feet"),
  16523. weight: math.unit(400, "lb"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/mac/front.svg",
  16527. extra: 1048 / 987.7,
  16528. bottom: 60 / 1107.6,
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Macro",
  16535. height: math.unit(500, "feet"),
  16536. default: true
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16542. {
  16543. front: {
  16544. height: math.unit(5 + 2 / 12, "feet"),
  16545. weight: math.unit(190, "lb"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/bari/front.svg",
  16549. extra: 3156 / 2880,
  16550. bottom: 0.03
  16551. }
  16552. },
  16553. back: {
  16554. height: math.unit(5 + 2 / 12, "feet"),
  16555. weight: math.unit(190, "lb"),
  16556. name: "Back",
  16557. image: {
  16558. source: "./media/characters/bari/back.svg",
  16559. extra: 3260 / 2834,
  16560. bottom: 0.025
  16561. }
  16562. },
  16563. frontPlush: {
  16564. height: math.unit(5 + 2 / 12, "feet"),
  16565. weight: math.unit(190, "lb"),
  16566. name: "Front (Plush)",
  16567. image: {
  16568. source: "./media/characters/bari/front-plush.svg",
  16569. extra: 1112 / 1061,
  16570. bottom: 0.002
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Micro",
  16577. height: math.unit(3, "inches")
  16578. },
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(5 + 2 / 12, "feet"),
  16582. default: true
  16583. },
  16584. {
  16585. name: "Macro",
  16586. height: math.unit(20, "feet")
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(6 + 1 / 12, "feet"),
  16595. weight: math.unit(275, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/hunter-misha-raven/front.svg"
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Mortal",
  16605. height: math.unit(6 + 1 / 12, "feet")
  16606. },
  16607. {
  16608. name: "Divine",
  16609. height: math.unit(1.12134e34, "parsecs"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16616. {
  16617. front: {
  16618. height: math.unit(6 + 3 / 12, "feet"),
  16619. weight: math.unit(220, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/max-calore/front.svg",
  16623. extra: 1700 / 1648,
  16624. bottom: 0.01
  16625. }
  16626. },
  16627. back: {
  16628. height: math.unit(6 + 3 / 12, "feet"),
  16629. weight: math.unit(220, "lb"),
  16630. name: "Back",
  16631. image: {
  16632. source: "./media/characters/max-calore/back.svg",
  16633. extra: 1700 / 1648,
  16634. bottom: 0.01
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(6 + 3 / 12, "feet"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16648. {
  16649. side: {
  16650. height: math.unit(2 + 8 / 12, "feet"),
  16651. weight: math.unit(99, "lb"),
  16652. name: "Side",
  16653. image: {
  16654. source: "./media/characters/aspen/side.svg",
  16655. extra: 152 / 138,
  16656. bottom: 0.032
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(2 + 8 / 12, "feet"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16670. {
  16671. side: {
  16672. height: math.unit(3 + 2 / 12, "feet"),
  16673. weight: math.unit(224, "lb"),
  16674. name: "Side",
  16675. image: {
  16676. source: "./media/characters/sheila-feral-wolf/side.svg",
  16677. extra: 179 / 166,
  16678. bottom: 0.03
  16679. }
  16680. },
  16681. },
  16682. [
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(3 + 2 / 12, "feet"),
  16686. default: true
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16692. {
  16693. side: {
  16694. height: math.unit(1 + 9 / 12, "feet"),
  16695. weight: math.unit(38, "lb"),
  16696. name: "Side",
  16697. image: {
  16698. source: "./media/characters/michelle/side.svg",
  16699. extra: 147 / 136.7,
  16700. bottom: 0.03
  16701. }
  16702. },
  16703. },
  16704. [
  16705. {
  16706. name: "Normal",
  16707. height: math.unit(1 + 9 / 12, "feet"),
  16708. default: true
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(1 + 1 / 12, "feet"),
  16717. weight: math.unit(18, "lb"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/nino/front.svg"
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(1 + 1 / 12, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(1, "feet"),
  16737. weight: math.unit(16, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/viola/front.svg"
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(1, "feet"),
  16748. default: true
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16754. {
  16755. front: {
  16756. height: math.unit(6 + 5 / 12, "feet"),
  16757. weight: math.unit(580, "lb"),
  16758. name: "Front",
  16759. image: {
  16760. source: "./media/characters/atlas/front.svg",
  16761. extra: 298.5 / 290,
  16762. bottom: 0.015
  16763. }
  16764. },
  16765. },
  16766. [
  16767. {
  16768. name: "Normal",
  16769. height: math.unit(6 + 5 / 12, "feet"),
  16770. default: true
  16771. },
  16772. ]
  16773. ))
  16774. characterMakers.push(() => makeCharacter(
  16775. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16776. {
  16777. side: {
  16778. height: math.unit(1 + 10 / 12, "feet"),
  16779. weight: math.unit(25, "lb"),
  16780. name: "Side",
  16781. image: {
  16782. source: "./media/characters/davy/side.svg",
  16783. extra: 200 / 170,
  16784. bottom: 0.01
  16785. }
  16786. },
  16787. },
  16788. [
  16789. {
  16790. name: "Normal",
  16791. height: math.unit(1 + 10 / 12, "feet"),
  16792. default: true
  16793. },
  16794. ]
  16795. ))
  16796. characterMakers.push(() => makeCharacter(
  16797. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16798. {
  16799. side: {
  16800. height: math.unit(4 + 8 / 12, "feet"),
  16801. weight: math.unit(166, "lb"),
  16802. name: "Side",
  16803. image: {
  16804. source: "./media/characters/fiona/side.svg",
  16805. extra: 232 / 220,
  16806. bottom: 0.03
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(4 + 8 / 12, "feet"),
  16814. default: true
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16820. {
  16821. front: {
  16822. height: math.unit(2, "feet"),
  16823. weight: math.unit(62, "lb"),
  16824. name: "Front",
  16825. image: {
  16826. source: "./media/characters/lyla/front.svg",
  16827. bottom: 0.1
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(2, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16841. {
  16842. side: {
  16843. height: math.unit(1.8, "feet"),
  16844. weight: math.unit(44, "lb"),
  16845. name: "Side",
  16846. image: {
  16847. source: "./media/characters/perseus/side.svg",
  16848. bottom: 0.21
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(1.8, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16862. {
  16863. side: {
  16864. height: math.unit(4 + 2 / 12, "feet"),
  16865. weight: math.unit(20, "lb"),
  16866. name: "Side",
  16867. image: {
  16868. source: "./media/characters/remus/side.svg"
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(4 + 2 / 12, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16882. {
  16883. front: {
  16884. height: math.unit(4 + 11 / 12, "feet"),
  16885. weight: math.unit(114, "lb"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/raf/front.svg",
  16889. bottom: 20.5 / 1863
  16890. }
  16891. },
  16892. side: {
  16893. height: math.unit(4 + 11 / 12, "feet"),
  16894. weight: math.unit(114, "lb"),
  16895. name: "Side",
  16896. image: {
  16897. source: "./media/characters/raf/side.svg",
  16898. bottom: 22 / 1822
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Micro",
  16905. height: math.unit(2, "inches")
  16906. },
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(4 + 11 / 12, "feet"),
  16910. default: true
  16911. },
  16912. {
  16913. name: "Macro",
  16914. height: math.unit(70, "feet")
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16920. {
  16921. front: {
  16922. height: math.unit(1.5, "meters"),
  16923. weight: math.unit(68, "kg"),
  16924. name: "Front",
  16925. image: {
  16926. source: "./media/characters/liam-einarr/front.svg",
  16927. extra: 2822 / 2666
  16928. }
  16929. },
  16930. back: {
  16931. height: math.unit(1.5, "meters"),
  16932. weight: math.unit(68, "kg"),
  16933. name: "Back",
  16934. image: {
  16935. source: "./media/characters/liam-einarr/back.svg",
  16936. extra: 2822 / 2666,
  16937. bottom: 0.015
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(1.5, "meters"),
  16945. default: true
  16946. },
  16947. {
  16948. name: "Macro",
  16949. height: math.unit(150, "meters")
  16950. },
  16951. {
  16952. name: "Megamacro",
  16953. height: math.unit(35, "km")
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(6, "feet"),
  16962. weight: math.unit(75, "kg"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/linda/front.svg",
  16966. extra: 930 / 874,
  16967. bottom: 0.004
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(6, "feet"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16981. {
  16982. front: {
  16983. height: math.unit(6 + 8 / 12, "feet"),
  16984. weight: math.unit(220, "lb"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/caylex/front.svg",
  16988. extra: 821 / 772,
  16989. bottom: 0.07
  16990. }
  16991. },
  16992. back: {
  16993. height: math.unit(6 + 8 / 12, "feet"),
  16994. weight: math.unit(220, "lb"),
  16995. name: "Back",
  16996. image: {
  16997. source: "./media/characters/caylex/back.svg",
  16998. extra: 821 / 772,
  16999. bottom: 0.022
  17000. }
  17001. },
  17002. hand: {
  17003. height: math.unit(1.25, "feet"),
  17004. name: "Hand",
  17005. image: {
  17006. source: "./media/characters/caylex/hand.svg"
  17007. }
  17008. },
  17009. foot: {
  17010. height: math.unit(1.6, "feet"),
  17011. name: "Foot",
  17012. image: {
  17013. source: "./media/characters/caylex/foot.svg"
  17014. }
  17015. },
  17016. armored: {
  17017. height: math.unit(6 + 8 / 12, "feet"),
  17018. weight: math.unit(250, "lb"),
  17019. name: "Armored",
  17020. image: {
  17021. source: "./media/characters/caylex/armored.svg",
  17022. extra: 1420 / 1310,
  17023. bottom: 0.045
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(6 + 8 / 12, "feet"),
  17031. default: true
  17032. },
  17033. {
  17034. name: "Normal+",
  17035. height: math.unit(12, "feet")
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(7 + 6 / 12, "feet"),
  17044. weight: math.unit(288, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/alana/front.svg",
  17048. extra: 679 / 653,
  17049. bottom: 22.5 / 701
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(7 + 6 / 12, "feet")
  17057. },
  17058. {
  17059. name: "Large",
  17060. height: math.unit(50, "feet")
  17061. },
  17062. {
  17063. name: "Macro",
  17064. height: math.unit(100, "feet"),
  17065. default: true
  17066. },
  17067. {
  17068. name: "Macro+",
  17069. height: math.unit(200, "feet")
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(6 + 1 / 12, "feet"),
  17078. weight: math.unit(210, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/hasani/front.svg",
  17082. extra: 244 / 232,
  17083. bottom: 0.01
  17084. }
  17085. },
  17086. back: {
  17087. height: math.unit(6 + 1 / 12, "feet"),
  17088. weight: math.unit(210, "lb"),
  17089. name: "Back",
  17090. image: {
  17091. source: "./media/characters/hasani/back.svg",
  17092. extra: 244 / 232,
  17093. bottom: 0.01
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(6 + 1 / 12, "feet")
  17101. },
  17102. {
  17103. name: "Macro",
  17104. height: math.unit(175, "feet"),
  17105. default: true
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17111. {
  17112. front: {
  17113. height: math.unit(1.82, "meters"),
  17114. weight: math.unit(140, "lb"),
  17115. name: "Front",
  17116. image: {
  17117. source: "./media/characters/nita/front.svg",
  17118. extra: 2473 / 2363,
  17119. bottom: 0.01
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Normal",
  17126. height: math.unit(1.82, "m")
  17127. },
  17128. {
  17129. name: "Macro",
  17130. height: math.unit(300, "m")
  17131. },
  17132. {
  17133. name: "Mistake Canon",
  17134. height: math.unit(0.5, "miles"),
  17135. default: true
  17136. },
  17137. {
  17138. name: "Big Mistake",
  17139. height: math.unit(13, "miles")
  17140. },
  17141. {
  17142. name: "Playing God",
  17143. height: math.unit(2450, "miles")
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17149. {
  17150. front: {
  17151. height: math.unit(4, "feet"),
  17152. weight: math.unit(120, "lb"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/shiriko/front.svg",
  17156. extra: 195 / 188
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(4, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17170. {
  17171. front: {
  17172. height: math.unit(6, "feet"),
  17173. name: "front",
  17174. image: {
  17175. source: "./media/characters/deja/front.svg",
  17176. extra: 926 / 840,
  17177. bottom: 0.07
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Planck Length",
  17184. height: math.unit(1.6e-35, "meters")
  17185. },
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(30.48, "meters"),
  17189. default: true
  17190. },
  17191. {
  17192. name: "Universal",
  17193. height: math.unit(8.8e26, "meters")
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17199. {
  17200. side: {
  17201. height: math.unit(8, "feet"),
  17202. weight: math.unit(6300, "lb"),
  17203. name: "Side",
  17204. image: {
  17205. source: "./media/characters/anima/side.svg",
  17206. bottom: 0.035
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(8, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(8, "feet"),
  17223. weight: math.unit(350, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/bianca/front.svg",
  17227. extra: 234 / 225,
  17228. bottom: 0.03
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(8, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17242. {
  17243. front: {
  17244. height: math.unit(6, "feet"),
  17245. weight: math.unit(150, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/adinia/front.svg",
  17249. extra: 1845 / 1672,
  17250. bottom: 0.02
  17251. }
  17252. },
  17253. back: {
  17254. height: math.unit(6, "feet"),
  17255. weight: math.unit(150, "lb"),
  17256. name: "Back",
  17257. image: {
  17258. source: "./media/characters/adinia/back.svg",
  17259. extra: 1845 / 1672,
  17260. bottom: 0.002
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(11 + 5 / 12, "feet"),
  17268. default: true
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(3, "meters"),
  17277. weight: math.unit(200, "kg"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/lykasa/front.svg",
  17281. extra: 1076 / 976,
  17282. bottom: 0.06
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Normal",
  17289. height: math.unit(3, "meters")
  17290. },
  17291. {
  17292. name: "Kaiju",
  17293. height: math.unit(120, "meters"),
  17294. default: true
  17295. },
  17296. {
  17297. name: "Mega Kaiju",
  17298. height: math.unit(240, "km")
  17299. },
  17300. {
  17301. name: "Giga Kaiju",
  17302. height: math.unit(400, "megameters")
  17303. },
  17304. {
  17305. name: "Tera Kaiju",
  17306. height: math.unit(800, "gigameters")
  17307. },
  17308. {
  17309. name: "Kaiju Dragon Goddess",
  17310. height: math.unit(26, "zettaparsecs")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17316. {
  17317. side: {
  17318. height: math.unit(283 / 124 * 6, "feet"),
  17319. weight: math.unit(35000, "lb"),
  17320. name: "Side",
  17321. image: {
  17322. source: "./media/characters/malfaren/side.svg",
  17323. extra: 2500 / 1010,
  17324. bottom: 0.01
  17325. }
  17326. },
  17327. front: {
  17328. height: math.unit(22.36, "feet"),
  17329. weight: math.unit(35000, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/malfaren/front.svg",
  17333. extra: 1631 / 1476,
  17334. bottom: 0.01
  17335. }
  17336. },
  17337. maw: {
  17338. height: math.unit(6.9, "feet"),
  17339. name: "Maw",
  17340. image: {
  17341. source: "./media/characters/malfaren/maw.svg"
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Big",
  17348. height: math.unit(283 / 162 * 6, "feet"),
  17349. },
  17350. {
  17351. name: "Bigger",
  17352. height: math.unit(283 / 124 * 6, "feet")
  17353. },
  17354. {
  17355. name: "Massive",
  17356. height: math.unit(283 / 92 * 6, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "👀💦",
  17361. height: math.unit(283 / 73 * 6, "feet"),
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(1.7, "m"),
  17370. weight: math.unit(70, "kg"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/kernel/front.svg",
  17374. extra: 222 / 210,
  17375. bottom: 0.007
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Nano",
  17382. height: math.unit(17, "micrometers")
  17383. },
  17384. {
  17385. name: "Micro",
  17386. height: math.unit(1.7, "mm")
  17387. },
  17388. {
  17389. name: "Small",
  17390. height: math.unit(1.7, "cm")
  17391. },
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(1.7, "m"),
  17395. default: true
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(1.75, "meters"),
  17404. weight: math.unit(65, "kg"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/jayne-folest/front.svg",
  17408. extra: 2115 / 2007,
  17409. bottom: 0.02
  17410. }
  17411. },
  17412. back: {
  17413. height: math.unit(1.75, "meters"),
  17414. weight: math.unit(65, "kg"),
  17415. name: "Back",
  17416. image: {
  17417. source: "./media/characters/jayne-folest/back.svg",
  17418. extra: 2115 / 2007,
  17419. bottom: 0.005
  17420. }
  17421. },
  17422. frontClothed: {
  17423. height: math.unit(1.75, "meters"),
  17424. weight: math.unit(65, "kg"),
  17425. name: "Front (Clothed)",
  17426. image: {
  17427. source: "./media/characters/jayne-folest/front-clothed.svg",
  17428. extra: 2115 / 2007,
  17429. bottom: 0.035
  17430. }
  17431. },
  17432. hand: {
  17433. height: math.unit(1 / 1.260, "feet"),
  17434. name: "Hand",
  17435. image: {
  17436. source: "./media/characters/jayne-folest/hand.svg"
  17437. }
  17438. },
  17439. foot: {
  17440. height: math.unit(1 / 0.918, "feet"),
  17441. name: "Foot",
  17442. image: {
  17443. source: "./media/characters/jayne-folest/foot.svg"
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Micro",
  17450. height: math.unit(4, "cm")
  17451. },
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(1.75, "meters")
  17455. },
  17456. {
  17457. name: "Macro",
  17458. height: math.unit(47.5, "meters"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(180, "cm"),
  17468. weight: math.unit(70, "kg"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/algier/front.svg",
  17472. extra: 596 / 572,
  17473. bottom: 0.04
  17474. }
  17475. },
  17476. back: {
  17477. height: math.unit(180, "cm"),
  17478. weight: math.unit(70, "kg"),
  17479. name: "Back",
  17480. image: {
  17481. source: "./media/characters/algier/back.svg",
  17482. extra: 596 / 572,
  17483. bottom: 0.025
  17484. }
  17485. },
  17486. frontdressed: {
  17487. height: math.unit(180, "cm"),
  17488. weight: math.unit(150, "kg"),
  17489. name: "Front-dressed",
  17490. image: {
  17491. source: "./media/characters/algier/front-dressed.svg",
  17492. extra: 596 / 572,
  17493. bottom: 0.038
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Micro",
  17500. height: math.unit(5, "cm")
  17501. },
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(180, "cm"),
  17505. default: true
  17506. },
  17507. {
  17508. name: "Macro",
  17509. height: math.unit(64, "m")
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17515. {
  17516. upright: {
  17517. height: math.unit(7, "feet"),
  17518. weight: math.unit(300, "lb"),
  17519. name: "Upright",
  17520. image: {
  17521. source: "./media/characters/pretzel/upright.svg",
  17522. extra: 534 / 522,
  17523. bottom: 0.065
  17524. }
  17525. },
  17526. sprawling: {
  17527. height: math.unit(3.75, "feet"),
  17528. weight: math.unit(300, "lb"),
  17529. name: "Sprawling",
  17530. image: {
  17531. source: "./media/characters/pretzel/sprawling.svg",
  17532. extra: 314 / 281,
  17533. bottom: 0.1
  17534. }
  17535. },
  17536. tongue: {
  17537. height: math.unit(2, "feet"),
  17538. name: "Tongue",
  17539. image: {
  17540. source: "./media/characters/pretzel/tongue.svg"
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(7, "feet"),
  17548. default: true
  17549. },
  17550. {
  17551. name: "Oversized",
  17552. height: math.unit(15, "feet")
  17553. },
  17554. {
  17555. name: "Huge",
  17556. height: math.unit(30, "feet")
  17557. },
  17558. {
  17559. name: "Macro",
  17560. height: math.unit(250, "feet")
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17566. {
  17567. sideFront: {
  17568. height: math.unit(5 + 2 / 12, "feet"),
  17569. weight: math.unit(120, "lb"),
  17570. name: "Front Side",
  17571. image: {
  17572. source: "./media/characters/roxi/side-front.svg",
  17573. extra: 2924 / 2717,
  17574. bottom: 0.08
  17575. }
  17576. },
  17577. sideBack: {
  17578. height: math.unit(5 + 2 / 12, "feet"),
  17579. weight: math.unit(120, "lb"),
  17580. name: "Back Side",
  17581. image: {
  17582. source: "./media/characters/roxi/side-back.svg",
  17583. extra: 2904 / 2693,
  17584. bottom: 0.06
  17585. }
  17586. },
  17587. front: {
  17588. height: math.unit(5 + 2 / 12, "feet"),
  17589. weight: math.unit(120, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/roxi/front.svg",
  17593. extra: 2028 / 1907,
  17594. bottom: 0.01
  17595. }
  17596. },
  17597. frontAlt: {
  17598. height: math.unit(5 + 2 / 12, "feet"),
  17599. weight: math.unit(120, "lb"),
  17600. name: "Front (Alt)",
  17601. image: {
  17602. source: "./media/characters/roxi/front-alt.svg",
  17603. extra: 1828 / 1798,
  17604. bottom: 0.01
  17605. }
  17606. },
  17607. sitting: {
  17608. height: math.unit(2.8, "feet"),
  17609. weight: math.unit(120, "lb"),
  17610. name: "Sitting",
  17611. image: {
  17612. source: "./media/characters/roxi/sitting.svg",
  17613. extra: 2660 / 2462,
  17614. bottom: 0.1
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(5 + 2 / 12, "feet"),
  17622. default: true
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17628. {
  17629. side: {
  17630. height: math.unit(55, "feet"),
  17631. weight: math.unit(153, "tons"),
  17632. name: "Side",
  17633. image: {
  17634. source: "./media/characters/shadow/side.svg",
  17635. extra: 701 / 628,
  17636. bottom: 0.02
  17637. }
  17638. },
  17639. flying: {
  17640. height: math.unit(145, "feet"),
  17641. weight: math.unit(153, "tons"),
  17642. name: "Flying",
  17643. image: {
  17644. source: "./media/characters/shadow/flying.svg"
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(55, "feet"),
  17652. default: true
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17658. {
  17659. front: {
  17660. height: math.unit(6, "feet"),
  17661. weight: math.unit(200, "lb"),
  17662. name: "Front",
  17663. image: {
  17664. source: "./media/characters/marcie/front.svg",
  17665. extra: 960 / 876,
  17666. bottom: 58 / 1017.87
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Macro",
  17673. height: math.unit(1, "mile"),
  17674. default: true
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17680. {
  17681. front: {
  17682. height: math.unit(7, "feet"),
  17683. weight: math.unit(200, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/kachina/front.svg",
  17687. extra: 1290.68 / 1119,
  17688. bottom: 36.5 / 1327.18
  17689. }
  17690. },
  17691. },
  17692. [
  17693. {
  17694. name: "Normal",
  17695. height: math.unit(7, "feet"),
  17696. default: true
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17702. {
  17703. looking: {
  17704. height: math.unit(2, "meters"),
  17705. weight: math.unit(300, "kg"),
  17706. name: "Looking",
  17707. image: {
  17708. source: "./media/characters/kash/looking.svg",
  17709. extra: 474 / 344,
  17710. bottom: 0.03
  17711. }
  17712. },
  17713. side: {
  17714. height: math.unit(2, "meters"),
  17715. weight: math.unit(300, "kg"),
  17716. name: "Side",
  17717. image: {
  17718. source: "./media/characters/kash/side.svg",
  17719. extra: 302 / 251,
  17720. bottom: 0.03
  17721. }
  17722. },
  17723. front: {
  17724. height: math.unit(2, "meters"),
  17725. weight: math.unit(300, "kg"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/kash/front.svg",
  17729. extra: 495 / 360,
  17730. bottom: 0.015
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(2, "meters"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Big",
  17742. height: math.unit(3, "meters")
  17743. },
  17744. {
  17745. name: "Large",
  17746. height: math.unit(5, "meters")
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17752. {
  17753. feeding: {
  17754. height: math.unit(6.7, "feet"),
  17755. weight: math.unit(350, "lb"),
  17756. name: "Feeding",
  17757. image: {
  17758. source: "./media/characters/lalim/feeding.svg",
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(6.7, "feet"),
  17766. default: true
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17772. {
  17773. front: {
  17774. height: math.unit(9.5, "feet"),
  17775. weight: math.unit(600, "lb"),
  17776. name: "Front",
  17777. image: {
  17778. source: "./media/characters/de'vout/front.svg",
  17779. extra: 1443 / 1328,
  17780. bottom: 0.025
  17781. }
  17782. },
  17783. back: {
  17784. height: math.unit(9.5, "feet"),
  17785. weight: math.unit(600, "lb"),
  17786. name: "Back",
  17787. image: {
  17788. source: "./media/characters/de'vout/back.svg",
  17789. extra: 1443 / 1328
  17790. }
  17791. },
  17792. frontDressed: {
  17793. height: math.unit(9.5, "feet"),
  17794. weight: math.unit(600, "lb"),
  17795. name: "Front (Dressed",
  17796. image: {
  17797. source: "./media/characters/de'vout/front-dressed.svg",
  17798. extra: 1443 / 1328,
  17799. bottom: 0.025
  17800. }
  17801. },
  17802. backDressed: {
  17803. height: math.unit(9.5, "feet"),
  17804. weight: math.unit(600, "lb"),
  17805. name: "Back (Dressed",
  17806. image: {
  17807. source: "./media/characters/de'vout/back-dressed.svg",
  17808. extra: 1443 / 1328
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Normal",
  17815. height: math.unit(9.5, "feet"),
  17816. default: true
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(8, "feet"),
  17825. weight: math.unit(225, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/talana/front.svg",
  17829. extra: 1410 / 1300,
  17830. bottom: 0.015
  17831. }
  17832. },
  17833. frontDressed: {
  17834. height: math.unit(8, "feet"),
  17835. weight: math.unit(225, "lb"),
  17836. name: "Front (Dressed",
  17837. image: {
  17838. source: "./media/characters/talana/front-dressed.svg",
  17839. extra: 1410 / 1300,
  17840. bottom: 0.015
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(8, "feet"),
  17848. default: true
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17854. {
  17855. side: {
  17856. height: math.unit(7.2, "feet"),
  17857. weight: math.unit(150, "lb"),
  17858. name: "Side",
  17859. image: {
  17860. source: "./media/characters/xeauvok/side.svg",
  17861. extra: 1975 / 1523,
  17862. bottom: 0.07
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(7.2, "feet"),
  17870. default: true
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17876. {
  17877. side: {
  17878. height: math.unit(10, "feet"),
  17879. weight: math.unit(900, "kg"),
  17880. name: "Side",
  17881. image: {
  17882. source: "./media/characters/zara/side.svg",
  17883. extra: 504 / 498
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Normal",
  17890. height: math.unit(10, "feet"),
  17891. default: true
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17897. {
  17898. side: {
  17899. height: math.unit(6, "feet"),
  17900. weight: math.unit(150, "lb"),
  17901. name: "Side",
  17902. image: {
  17903. source: "./media/characters/richard-dragon/side.svg",
  17904. extra: 845 / 340,
  17905. bottom: 0.017
  17906. }
  17907. },
  17908. maw: {
  17909. height: math.unit(2.97, "feet"),
  17910. name: "Maw",
  17911. image: {
  17912. source: "./media/characters/richard-dragon/maw.svg"
  17913. }
  17914. },
  17915. },
  17916. [
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17921. {
  17922. front: {
  17923. height: math.unit(4, "feet"),
  17924. weight: math.unit(100, "lb"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/richard-smeargle/front.svg",
  17928. extra: 2952 / 2820,
  17929. bottom: 0.028
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Normal",
  17936. height: math.unit(4, "feet"),
  17937. default: true
  17938. },
  17939. {
  17940. name: "Dynamax",
  17941. height: math.unit(20, "meters")
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(6, "feet"),
  17950. weight: math.unit(110, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/klay/front.svg",
  17954. extra: 962 / 883,
  17955. bottom: 0.04
  17956. }
  17957. },
  17958. back: {
  17959. height: math.unit(6, "feet"),
  17960. weight: math.unit(110, "lb"),
  17961. name: "Back",
  17962. image: {
  17963. source: "./media/characters/klay/back.svg",
  17964. extra: 962 / 883
  17965. }
  17966. },
  17967. beans: {
  17968. height: math.unit(1.15, "feet"),
  17969. name: "Beans",
  17970. image: {
  17971. source: "./media/characters/klay/beans.svg"
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Micro",
  17978. height: math.unit(6, "inches")
  17979. },
  17980. {
  17981. name: "Mini",
  17982. height: math.unit(3, "feet")
  17983. },
  17984. {
  17985. name: "Normal",
  17986. height: math.unit(6, "feet"),
  17987. default: true
  17988. },
  17989. {
  17990. name: "Big",
  17991. height: math.unit(25, "feet")
  17992. },
  17993. {
  17994. name: "Macro",
  17995. height: math.unit(100, "feet")
  17996. },
  17997. {
  17998. name: "Megamacro",
  17999. height: math.unit(400, "feet")
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18005. {
  18006. front: {
  18007. height: math.unit(6, "feet"),
  18008. weight: math.unit(160, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/marcus/front.svg",
  18012. extra: 734 / 676,
  18013. bottom: 0.03
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Little",
  18020. height: math.unit(6, "feet")
  18021. },
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(110, "feet"),
  18025. default: true
  18026. },
  18027. {
  18028. name: "Macro",
  18029. height: math.unit(250, "feet")
  18030. },
  18031. {
  18032. name: "Megamacro",
  18033. height: math.unit(1000, "feet")
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18039. {
  18040. front: {
  18041. height: math.unit(7, "feet"),
  18042. weight: math.unit(275, "lb"),
  18043. name: "Front",
  18044. image: {
  18045. source: "./media/characters/claude-delroute/front.svg",
  18046. extra: 230 / 214,
  18047. bottom: 0.007
  18048. }
  18049. },
  18050. side: {
  18051. height: math.unit(7, "feet"),
  18052. weight: math.unit(275, "lb"),
  18053. name: "Side",
  18054. image: {
  18055. source: "./media/characters/claude-delroute/side.svg",
  18056. extra: 222 / 214,
  18057. bottom: 0.01
  18058. }
  18059. },
  18060. back: {
  18061. height: math.unit(7, "feet"),
  18062. weight: math.unit(275, "lb"),
  18063. name: "Back",
  18064. image: {
  18065. source: "./media/characters/claude-delroute/back.svg",
  18066. extra: 230 / 214,
  18067. bottom: 0.015
  18068. }
  18069. },
  18070. maw: {
  18071. height: math.unit(0.6407, "meters"),
  18072. name: "Maw",
  18073. image: {
  18074. source: "./media/characters/claude-delroute/maw.svg"
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(7, "feet"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Lorge",
  18086. height: math.unit(20, "feet")
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(8 + 4 / 12, "feet"),
  18095. weight: math.unit(600, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/dragonien/front.svg",
  18099. extra: 100 / 94,
  18100. bottom: 3.3 / 103.3445
  18101. }
  18102. },
  18103. back: {
  18104. height: math.unit(8 + 4 / 12, "feet"),
  18105. weight: math.unit(600, "lb"),
  18106. name: "Back",
  18107. image: {
  18108. source: "./media/characters/dragonien/back.svg",
  18109. extra: 776 / 746,
  18110. bottom: 6.4 / 782.0616
  18111. }
  18112. },
  18113. foot: {
  18114. height: math.unit(1.54, "feet"),
  18115. name: "Foot",
  18116. image: {
  18117. source: "./media/characters/dragonien/foot.svg",
  18118. }
  18119. },
  18120. },
  18121. [
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(8 + 4 / 12, "feet"),
  18125. default: true
  18126. },
  18127. {
  18128. name: "Macro",
  18129. height: math.unit(200, "feet")
  18130. },
  18131. {
  18132. name: "Megamacro",
  18133. height: math.unit(1, "mile")
  18134. },
  18135. {
  18136. name: "Gigamacro",
  18137. height: math.unit(1000, "miles")
  18138. },
  18139. ]
  18140. ))
  18141. characterMakers.push(() => makeCharacter(
  18142. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18143. {
  18144. front: {
  18145. height: math.unit(5 + 2 / 12, "feet"),
  18146. weight: math.unit(110, "lb"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/desta/front.svg",
  18150. extra: 767 / 726,
  18151. bottom: 11.7 / 779
  18152. }
  18153. },
  18154. back: {
  18155. height: math.unit(5 + 2 / 12, "feet"),
  18156. weight: math.unit(110, "lb"),
  18157. name: "Back",
  18158. image: {
  18159. source: "./media/characters/desta/back.svg",
  18160. extra: 777 / 728,
  18161. bottom: 6 / 784
  18162. }
  18163. },
  18164. frontAlt: {
  18165. height: math.unit(5 + 2 / 12, "feet"),
  18166. weight: math.unit(110, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/desta/front-alt.svg",
  18170. extra: 1482 / 1417
  18171. }
  18172. },
  18173. side: {
  18174. height: math.unit(5 + 2 / 12, "feet"),
  18175. weight: math.unit(110, "lb"),
  18176. name: "Side",
  18177. image: {
  18178. source: "./media/characters/desta/side.svg",
  18179. extra: 2579 / 2491,
  18180. bottom: 0.053
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Micro",
  18187. height: math.unit(6, "inches")
  18188. },
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(5 + 2 / 12, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Macro",
  18196. height: math.unit(62, "feet")
  18197. },
  18198. {
  18199. name: "Megamacro",
  18200. height: math.unit(1800, "feet")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(10, "feet"),
  18209. weight: math.unit(700, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/storm-alystar/front.svg",
  18213. extra: 2112 / 1898,
  18214. bottom: 0.034
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Micro",
  18221. height: math.unit(3.5, "inches")
  18222. },
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(10, "feet"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Macro",
  18230. height: math.unit(400, "feet")
  18231. },
  18232. {
  18233. name: "Deific",
  18234. height: math.unit(60, "miles")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(2.35, "meters"),
  18243. weight: math.unit(119, "kg"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/ilia/front.svg",
  18247. extra: 1285 / 1255,
  18248. bottom: 0.06
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(2.35, "meters")
  18256. },
  18257. {
  18258. name: "Macro",
  18259. height: math.unit(140, "meters"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Megamacro",
  18264. height: math.unit(100, "miles")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(6 + 5 / 12, "feet"),
  18273. weight: math.unit(190, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/kingdead/front.svg",
  18277. extra: 1228 / 1177
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Micro",
  18284. height: math.unit(7, "inches")
  18285. },
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(6 + 5 / 12, "feet")
  18289. },
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(150, "feet"),
  18293. default: true
  18294. },
  18295. {
  18296. name: "Megamacro",
  18297. height: math.unit(200, "miles")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(8, "feet"),
  18306. weight: math.unit(600, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/kyrehx/front.svg",
  18310. extra: 1195 / 1095,
  18311. bottom: 0.034
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Micro",
  18318. height: math.unit(2, "inches")
  18319. },
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(8, "feet"),
  18323. default: true
  18324. },
  18325. {
  18326. name: "Macro",
  18327. height: math.unit(255, "feet")
  18328. },
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18333. {
  18334. front: {
  18335. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18336. weight: math.unit(184, "lb"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/xang/front.svg",
  18340. extra: 845 / 755
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Normal",
  18347. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18348. default: true
  18349. },
  18350. {
  18351. name: "Macro",
  18352. height: math.unit(0.935 * 146, "feet")
  18353. },
  18354. {
  18355. name: "Megamacro",
  18356. height: math.unit(0.935 * 3, "miles")
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18362. {
  18363. frontDressed: {
  18364. height: math.unit(5 + 7 / 12, "feet"),
  18365. weight: math.unit(140, "lb"),
  18366. name: "Front (Dressed)",
  18367. image: {
  18368. source: "./media/characters/doc-weardno/front-dressed.svg",
  18369. extra: 263 / 234
  18370. }
  18371. },
  18372. backDressed: {
  18373. height: math.unit(5 + 7 / 12, "feet"),
  18374. weight: math.unit(140, "lb"),
  18375. name: "Back (Dressed)",
  18376. image: {
  18377. source: "./media/characters/doc-weardno/back-dressed.svg",
  18378. extra: 266 / 238
  18379. }
  18380. },
  18381. front: {
  18382. height: math.unit(5 + 7 / 12, "feet"),
  18383. weight: math.unit(140, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/doc-weardno/front.svg",
  18387. extra: 254 / 233
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Micro",
  18394. height: math.unit(3, "inches")
  18395. },
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(5 + 7 / 12, "feet"),
  18399. default: true
  18400. },
  18401. {
  18402. name: "Macro",
  18403. height: math.unit(25, "feet")
  18404. },
  18405. {
  18406. name: "Megamacro",
  18407. height: math.unit(2, "miles")
  18408. },
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18413. {
  18414. front: {
  18415. height: math.unit(6 + 2 / 12, "feet"),
  18416. weight: math.unit(153, "lb"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/seth-whilst/front.svg",
  18420. bottom: 0.07
  18421. }
  18422. },
  18423. },
  18424. [
  18425. {
  18426. name: "Micro",
  18427. height: math.unit(5, "inches")
  18428. },
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(6 + 2 / 12, "feet"),
  18432. default: true
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18438. {
  18439. front: {
  18440. height: math.unit(3, "inches"),
  18441. weight: math.unit(8, "grams"),
  18442. name: "Front",
  18443. image: {
  18444. source: "./media/characters/pocket-jabari/front.svg",
  18445. extra: 1024 / 974,
  18446. bottom: 0.039
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Minimicro",
  18453. height: math.unit(8, "mm")
  18454. },
  18455. {
  18456. name: "Micro",
  18457. height: math.unit(3, "inches"),
  18458. default: true
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(3, "feet")
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18468. {
  18469. front: {
  18470. height: math.unit(15, "feet"),
  18471. weight: math.unit(3280, "lb"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/sapphy/front.svg",
  18475. extra: 671 / 577,
  18476. bottom: 0.085
  18477. }
  18478. },
  18479. back: {
  18480. height: math.unit(15, "feet"),
  18481. weight: math.unit(3280, "lb"),
  18482. name: "Back",
  18483. image: {
  18484. source: "./media/characters/sapphy/back.svg",
  18485. extra: 631 / 607,
  18486. bottom: 0.045
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(15, "feet")
  18494. },
  18495. {
  18496. name: "Casual Macro",
  18497. height: math.unit(120, "feet")
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(2150, "feet"),
  18502. default: true
  18503. },
  18504. {
  18505. name: "Megamacro",
  18506. height: math.unit(8, "miles")
  18507. },
  18508. {
  18509. name: "Galaxy Mom",
  18510. height: math.unit(6, "megalightyears")
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18516. {
  18517. front: {
  18518. height: math.unit(6, "feet"),
  18519. weight: math.unit(170, "lb"),
  18520. name: "Front",
  18521. image: {
  18522. source: "./media/characters/kiro/front.svg",
  18523. extra: 1064 / 1012,
  18524. bottom: 0.052
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Micro",
  18531. height: math.unit(6, "inches")
  18532. },
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(6, "feet"),
  18536. default: true
  18537. },
  18538. {
  18539. name: "Macro",
  18540. height: math.unit(72, "feet")
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18546. {
  18547. front: {
  18548. height: math.unit(5 + 9 / 12, "feet"),
  18549. weight: math.unit(175, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/irishfox/front.svg",
  18553. extra: 1912 / 1680,
  18554. bottom: 0.02
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Nano",
  18561. height: math.unit(1, "mm")
  18562. },
  18563. {
  18564. name: "Micro",
  18565. height: math.unit(2, "inches")
  18566. },
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(5 + 9 / 12, "feet"),
  18570. default: true
  18571. },
  18572. {
  18573. name: "Macro",
  18574. height: math.unit(45, "feet")
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(6 + 1 / 12, "feet"),
  18583. weight: math.unit(75, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/aronai-sieyes/front.svg",
  18587. extra: 1556 / 1480,
  18588. bottom: 0.015
  18589. }
  18590. },
  18591. side: {
  18592. height: math.unit(6 + 1 / 12, "feet"),
  18593. weight: math.unit(75, "lb"),
  18594. name: "Side",
  18595. image: {
  18596. source: "./media/characters/aronai-sieyes/side.svg",
  18597. extra: 1433 / 1390,
  18598. bottom: 0.0393
  18599. }
  18600. },
  18601. back: {
  18602. height: math.unit(6 + 1 / 12, "feet"),
  18603. weight: math.unit(75, "lb"),
  18604. name: "Back",
  18605. image: {
  18606. source: "./media/characters/aronai-sieyes/back.svg",
  18607. extra: 1544 / 1494,
  18608. bottom: 0.02
  18609. }
  18610. },
  18611. frontClothed: {
  18612. height: math.unit(6 + 1 / 12, "feet"),
  18613. weight: math.unit(75, "lb"),
  18614. name: "Front (Clothed)",
  18615. image: {
  18616. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18617. extra: 1582 / 1527
  18618. }
  18619. },
  18620. feral: {
  18621. height: math.unit(18, "feet"),
  18622. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18623. name: "Feral",
  18624. image: {
  18625. source: "./media/characters/aronai-sieyes/feral.svg",
  18626. extra: 1530 / 1240,
  18627. bottom: 0.035
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Micro",
  18634. height: math.unit(2, "inches")
  18635. },
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(6 + 1 / 12, "feet"),
  18639. default: true
  18640. }
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18645. {
  18646. front: {
  18647. height: math.unit(12, "feet"),
  18648. weight: math.unit(410, "kg"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/xuna/front.svg",
  18652. extra: 2184 / 1980
  18653. }
  18654. },
  18655. side: {
  18656. height: math.unit(12, "feet"),
  18657. weight: math.unit(410, "kg"),
  18658. name: "Side",
  18659. image: {
  18660. source: "./media/characters/xuna/side.svg",
  18661. extra: 2184 / 1980
  18662. }
  18663. },
  18664. back: {
  18665. height: math.unit(12, "feet"),
  18666. weight: math.unit(410, "kg"),
  18667. name: "Back",
  18668. image: {
  18669. source: "./media/characters/xuna/back.svg",
  18670. extra: 2184 / 1980
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Nano glow",
  18677. height: math.unit(10, "nm")
  18678. },
  18679. {
  18680. name: "Micro floof",
  18681. height: math.unit(0.3, "m")
  18682. },
  18683. {
  18684. name: "Huggable softy boi",
  18685. height: math.unit(3.6576, "m"),
  18686. default: true
  18687. },
  18688. {
  18689. name: "Admirable floof",
  18690. height: math.unit(80, "meters")
  18691. },
  18692. {
  18693. name: "Gentle macro",
  18694. height: math.unit(300, "meters")
  18695. },
  18696. {
  18697. name: "Very careful floof",
  18698. height: math.unit(3200, "meters")
  18699. },
  18700. {
  18701. name: "The mega floof",
  18702. height: math.unit(36000, "meters")
  18703. },
  18704. {
  18705. name: "Giga-fur-Wicker",
  18706. height: math.unit(4800000, "meters")
  18707. },
  18708. {
  18709. name: "Licky world",
  18710. height: math.unit(20000000, "meters")
  18711. },
  18712. {
  18713. name: "Floofy cyan sun",
  18714. height: math.unit(1500000000, "meters")
  18715. },
  18716. {
  18717. name: "Milky Wicker",
  18718. height: math.unit(1000000000000000000000, "meters")
  18719. },
  18720. {
  18721. name: "The observing Wicker",
  18722. height: math.unit(999999999999999999999999999, "meters")
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18728. {
  18729. front: {
  18730. height: math.unit(5 + 9 / 12, "feet"),
  18731. weight: math.unit(150, "lb"),
  18732. name: "Front",
  18733. image: {
  18734. source: "./media/characters/arokha-sieyes/front.svg",
  18735. extra: 1425 / 1284,
  18736. bottom: 0.05
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(5 + 9 / 12, "feet")
  18744. },
  18745. {
  18746. name: "Macro",
  18747. height: math.unit(30, "meters"),
  18748. default: true
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(6, "feet"),
  18757. weight: math.unit(180, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/arokh-sieyes/front.svg",
  18761. extra: 1830 / 1769,
  18762. bottom: 0.01
  18763. }
  18764. },
  18765. },
  18766. [
  18767. {
  18768. name: "Normal",
  18769. height: math.unit(6, "feet")
  18770. },
  18771. {
  18772. name: "Macro",
  18773. height: math.unit(30, "meters"),
  18774. default: true
  18775. },
  18776. ]
  18777. ))
  18778. characterMakers.push(() => makeCharacter(
  18779. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18780. {
  18781. side: {
  18782. height: math.unit(13 + 1 / 12, "feet"),
  18783. weight: math.unit(8.5, "tonnes"),
  18784. name: "Side",
  18785. image: {
  18786. source: "./media/characters/goldeneye/side.svg",
  18787. extra: 1182 / 778,
  18788. bottom: 0.067
  18789. }
  18790. },
  18791. paw: {
  18792. height: math.unit(3.4, "feet"),
  18793. name: "Paw",
  18794. image: {
  18795. source: "./media/characters/goldeneye/paw.svg"
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(13 + 1 / 12, "feet"),
  18803. default: true
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18809. {
  18810. front: {
  18811. height: math.unit(6 + 1 / 12, "feet"),
  18812. weight: math.unit(210, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/leonardo-lycheborne/front.svg",
  18816. extra: 390 / 365,
  18817. bottom: 0.032
  18818. }
  18819. },
  18820. side: {
  18821. height: math.unit(6 + 1 / 12, "feet"),
  18822. weight: math.unit(210, "lb"),
  18823. name: "Side",
  18824. image: {
  18825. source: "./media/characters/leonardo-lycheborne/side.svg",
  18826. extra: 390 / 365,
  18827. bottom: 0.005
  18828. }
  18829. },
  18830. back: {
  18831. height: math.unit(6 + 1 / 12, "feet"),
  18832. weight: math.unit(210, "lb"),
  18833. name: "Back",
  18834. image: {
  18835. source: "./media/characters/leonardo-lycheborne/back.svg",
  18836. extra: 392 / 366,
  18837. bottom: 0.01
  18838. }
  18839. },
  18840. hand: {
  18841. height: math.unit(1.08, "feet"),
  18842. name: "Hand",
  18843. image: {
  18844. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18845. }
  18846. },
  18847. foot: {
  18848. height: math.unit(1.32, "feet"),
  18849. name: "Foot",
  18850. image: {
  18851. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18852. }
  18853. },
  18854. were: {
  18855. height: math.unit(20, "feet"),
  18856. weight: math.unit(7800, "lb"),
  18857. name: "Were",
  18858. image: {
  18859. source: "./media/characters/leonardo-lycheborne/were.svg",
  18860. extra: 308 / 294,
  18861. bottom: 0.048
  18862. }
  18863. },
  18864. feral: {
  18865. height: math.unit(7.5, "feet"),
  18866. weight: math.unit(600, "lb"),
  18867. name: "Feral",
  18868. image: {
  18869. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18870. extra: 210 / 186,
  18871. bottom: 0.108
  18872. }
  18873. },
  18874. taur: {
  18875. height: math.unit(11, "feet"),
  18876. weight: math.unit(3300, "lb"),
  18877. name: "Taur",
  18878. image: {
  18879. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18880. extra: 320 / 303,
  18881. bottom: 0.025
  18882. }
  18883. },
  18884. barghest: {
  18885. height: math.unit(11, "feet"),
  18886. weight: math.unit(1300, "lb"),
  18887. name: "Barghest",
  18888. image: {
  18889. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18890. extra: 323 / 302,
  18891. bottom: 0.027
  18892. }
  18893. },
  18894. dick: {
  18895. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18896. name: "Dick",
  18897. image: {
  18898. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18899. }
  18900. },
  18901. dickWere: {
  18902. height: math.unit((20) / 3.8, "feet"),
  18903. name: "Dick (Were)",
  18904. image: {
  18905. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(6 + 1 / 12, "feet"),
  18913. default: true
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(10, "feet"),
  18922. weight: math.unit(350, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/jet/front.svg",
  18926. extra: 2050 / 1980,
  18927. bottom: 0.013
  18928. }
  18929. },
  18930. back: {
  18931. height: math.unit(10, "feet"),
  18932. weight: math.unit(350, "lb"),
  18933. name: "Back",
  18934. image: {
  18935. source: "./media/characters/jet/back.svg",
  18936. extra: 2050 / 1980,
  18937. bottom: 0.013
  18938. }
  18939. },
  18940. },
  18941. [
  18942. {
  18943. name: "Micro",
  18944. height: math.unit(6, "inches")
  18945. },
  18946. {
  18947. name: "Normal",
  18948. height: math.unit(10, "feet"),
  18949. default: true
  18950. },
  18951. {
  18952. name: "Macro",
  18953. height: math.unit(100, "feet")
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(15, "feet"),
  18962. weight: math.unit(2800, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/tanarath/front.svg",
  18966. extra: 2392 / 2220,
  18967. bottom: 0.03
  18968. }
  18969. },
  18970. back: {
  18971. height: math.unit(15, "feet"),
  18972. weight: math.unit(2800, "lb"),
  18973. name: "Back",
  18974. image: {
  18975. source: "./media/characters/tanarath/back.svg",
  18976. extra: 2392 / 2220,
  18977. bottom: 0.03
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(15, "feet"),
  18985. default: true
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18991. {
  18992. front: {
  18993. height: math.unit(7 + 1 / 12, "feet"),
  18994. weight: math.unit(175, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/patty-cattybatty/front.svg",
  18998. extra: 908 / 874,
  18999. bottom: 0.025
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Micro",
  19006. height: math.unit(1, "inch")
  19007. },
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(7 + 1 / 12, "feet")
  19011. },
  19012. {
  19013. name: "Mini Macro",
  19014. height: math.unit(155, "feet")
  19015. },
  19016. {
  19017. name: "Macro",
  19018. height: math.unit(1077, "feet")
  19019. },
  19020. {
  19021. name: "Mega Macro",
  19022. height: math.unit(47650, "feet"),
  19023. default: true
  19024. },
  19025. {
  19026. name: "Giga Macro",
  19027. height: math.unit(440, "miles")
  19028. },
  19029. {
  19030. name: "Tera Macro",
  19031. height: math.unit(8700, "miles")
  19032. },
  19033. {
  19034. name: "Planetary Macro",
  19035. height: math.unit(32700, "miles")
  19036. },
  19037. {
  19038. name: "Solar Macro",
  19039. height: math.unit(550000, "miles")
  19040. },
  19041. {
  19042. name: "Celestial Macro",
  19043. height: math.unit(2.5, "AU")
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(4 + 5 / 12, "feet"),
  19052. weight: math.unit(90, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/cappu/front.svg",
  19056. extra: 1247 / 1152,
  19057. bottom: 0.012
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(4 + 5 / 12, "feet"),
  19065. default: true
  19066. },
  19067. ]
  19068. ))
  19069. characterMakers.push(() => makeCharacter(
  19070. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19071. {
  19072. frontDressed: {
  19073. height: math.unit(70, "cm"),
  19074. weight: math.unit(6, "kg"),
  19075. name: "Front (Dressed)",
  19076. image: {
  19077. source: "./media/characters/sebi/front-dressed.svg",
  19078. extra: 713.5 / 686.5,
  19079. bottom: 0.003
  19080. }
  19081. },
  19082. front: {
  19083. height: math.unit(70, "cm"),
  19084. weight: math.unit(5, "kg"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/sebi/front.svg",
  19088. extra: 713.5 / 686.5,
  19089. bottom: 0.003
  19090. }
  19091. }
  19092. },
  19093. [
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(70, "cm"),
  19097. default: true
  19098. },
  19099. {
  19100. name: "Macro",
  19101. height: math.unit(8, "meters")
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(6, "feet"),
  19110. weight: math.unit(150, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/typhek/front.svg",
  19114. extra: 1948 / 1929,
  19115. bottom: 0.025
  19116. }
  19117. },
  19118. side: {
  19119. height: math.unit(6, "feet"),
  19120. weight: math.unit(150, "lb"),
  19121. name: "Side",
  19122. image: {
  19123. source: "./media/characters/typhek/side.svg",
  19124. extra: 2034 / 2010,
  19125. bottom: 0.003
  19126. }
  19127. },
  19128. back: {
  19129. height: math.unit(6, "feet"),
  19130. weight: math.unit(150, "lb"),
  19131. name: "Back",
  19132. image: {
  19133. source: "./media/characters/typhek/back.svg",
  19134. extra: 2005 / 1978,
  19135. bottom: 0.004
  19136. }
  19137. },
  19138. palm: {
  19139. height: math.unit(1.2, "feet"),
  19140. name: "Palm",
  19141. image: {
  19142. source: "./media/characters/typhek/palm.svg"
  19143. }
  19144. },
  19145. fist: {
  19146. height: math.unit(1.1, "feet"),
  19147. name: "Fist",
  19148. image: {
  19149. source: "./media/characters/typhek/fist.svg"
  19150. }
  19151. },
  19152. foot: {
  19153. height: math.unit(1.57, "feet"),
  19154. name: "Foot",
  19155. image: {
  19156. source: "./media/characters/typhek/foot.svg"
  19157. }
  19158. },
  19159. sole: {
  19160. height: math.unit(2.05, "feet"),
  19161. name: "Sole",
  19162. image: {
  19163. source: "./media/characters/typhek/sole.svg"
  19164. }
  19165. },
  19166. },
  19167. [
  19168. {
  19169. name: "Macro",
  19170. height: math.unit(40, "stories"),
  19171. default: true
  19172. },
  19173. {
  19174. name: "Megamacro",
  19175. height: math.unit(1, "mile")
  19176. },
  19177. {
  19178. name: "Gigamacro",
  19179. height: math.unit(4000, "solarradii")
  19180. },
  19181. {
  19182. name: "Universal",
  19183. height: math.unit(1.1, "universes")
  19184. }
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19189. {
  19190. side: {
  19191. height: math.unit(5 + 7 / 12, "feet"),
  19192. weight: math.unit(150, "lb"),
  19193. name: "Side",
  19194. image: {
  19195. source: "./media/characters/kassy/side.svg",
  19196. extra: 1280 / 1225,
  19197. bottom: 0.002
  19198. }
  19199. },
  19200. front: {
  19201. height: math.unit(5 + 7 / 12, "feet"),
  19202. weight: math.unit(150, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/kassy/front.svg",
  19206. extra: 1280 / 1225,
  19207. bottom: 0.025
  19208. }
  19209. },
  19210. back: {
  19211. height: math.unit(5 + 7 / 12, "feet"),
  19212. weight: math.unit(150, "lb"),
  19213. name: "Back",
  19214. image: {
  19215. source: "./media/characters/kassy/back.svg",
  19216. extra: 1280 / 1225,
  19217. bottom: 0.002
  19218. }
  19219. },
  19220. foot: {
  19221. height: math.unit(1.266, "feet"),
  19222. name: "Foot",
  19223. image: {
  19224. source: "./media/characters/kassy/foot.svg"
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(5 + 7 / 12, "feet")
  19232. },
  19233. {
  19234. name: "Macro",
  19235. height: math.unit(137, "feet"),
  19236. default: true
  19237. },
  19238. {
  19239. name: "Megamacro",
  19240. height: math.unit(1, "mile")
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(6 + 1 / 12, "feet"),
  19249. weight: math.unit(200, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/neil/front.svg",
  19253. extra: 1326 / 1250,
  19254. bottom: 0.023
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(6 + 1 / 12, "feet"),
  19262. default: true
  19263. },
  19264. {
  19265. name: "Macro",
  19266. height: math.unit(200, "feet")
  19267. },
  19268. ]
  19269. ))
  19270. characterMakers.push(() => makeCharacter(
  19271. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19272. {
  19273. front: {
  19274. height: math.unit(5 + 9 / 12, "feet"),
  19275. weight: math.unit(190, "lb"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/atticus/front.svg",
  19279. extra: 2934 / 2785,
  19280. bottom: 0.025
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(5 + 9 / 12, "feet"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Macro",
  19292. height: math.unit(180, "feet")
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19298. {
  19299. side: {
  19300. height: math.unit(9, "feet"),
  19301. weight: math.unit(650, "lb"),
  19302. name: "Side",
  19303. image: {
  19304. source: "./media/characters/milo/side.svg",
  19305. extra: 2644 / 2310,
  19306. bottom: 0.032
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(9, "feet"),
  19314. default: true
  19315. },
  19316. {
  19317. name: "Macro",
  19318. height: math.unit(300, "feet")
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19324. {
  19325. side: {
  19326. height: math.unit(8, "meters"),
  19327. weight: math.unit(90000, "kg"),
  19328. name: "Side",
  19329. image: {
  19330. source: "./media/characters/ijzer/side.svg",
  19331. extra: 2756 / 1600,
  19332. bottom: 0.01
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Small",
  19339. height: math.unit(3, "meters")
  19340. },
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(8, "meters"),
  19344. default: true
  19345. },
  19346. {
  19347. name: "Normal+",
  19348. height: math.unit(10, "meters")
  19349. },
  19350. {
  19351. name: "Bigger",
  19352. height: math.unit(24, "meters")
  19353. },
  19354. {
  19355. name: "Huge",
  19356. height: math.unit(80, "meters")
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19362. {
  19363. front: {
  19364. height: math.unit(6 + 2 / 12, "feet"),
  19365. weight: math.unit(153, "lb"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/luca-cervicum/front.svg",
  19369. extra: 370 / 327,
  19370. bottom: 0.015
  19371. }
  19372. },
  19373. back: {
  19374. height: math.unit(6 + 2 / 12, "feet"),
  19375. weight: math.unit(153, "lb"),
  19376. name: "Back",
  19377. image: {
  19378. source: "./media/characters/luca-cervicum/back.svg",
  19379. extra: 367 / 333,
  19380. bottom: 0.005
  19381. }
  19382. },
  19383. frontGear: {
  19384. height: math.unit(6 + 2 / 12, "feet"),
  19385. weight: math.unit(173, "lb"),
  19386. name: "Front (Gear)",
  19387. image: {
  19388. source: "./media/characters/luca-cervicum/front-gear.svg",
  19389. extra: 377 / 333,
  19390. bottom: 0.006
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Normal",
  19397. height: math.unit(6 + 2 / 12, "feet"),
  19398. default: true
  19399. },
  19400. ]
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19404. {
  19405. front: {
  19406. height: math.unit(6 + 1 / 12, "feet"),
  19407. weight: math.unit(304, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/oliver/front.svg",
  19411. extra: 157 / 143,
  19412. bottom: 0.08
  19413. }
  19414. },
  19415. },
  19416. [
  19417. {
  19418. name: "Normal",
  19419. height: math.unit(6 + 1 / 12, "feet"),
  19420. default: true
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(5 + 7 / 12, "feet"),
  19429. weight: math.unit(140, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/shane/front.svg",
  19433. extra: 304 / 289,
  19434. bottom: 0.005
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(5 + 7 / 12, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19448. {
  19449. front: {
  19450. height: math.unit(5 + 9 / 12, "feet"),
  19451. weight: math.unit(178, "lb"),
  19452. name: "Front",
  19453. image: {
  19454. source: "./media/characters/shin/front.svg",
  19455. extra: 159 / 151,
  19456. bottom: 0.015
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(5 + 9 / 12, "feet"),
  19464. default: true
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19470. {
  19471. front: {
  19472. height: math.unit(5 + 10 / 12, "feet"),
  19473. weight: math.unit(168, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/xerxes/front.svg",
  19477. extra: 282 / 260,
  19478. bottom: 0.045
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(5 + 10 / 12, "feet"),
  19486. default: true
  19487. },
  19488. ]
  19489. ))
  19490. characterMakers.push(() => makeCharacter(
  19491. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19492. {
  19493. front: {
  19494. height: math.unit(6 + 7 / 12, "feet"),
  19495. weight: math.unit(208, "lb"),
  19496. name: "Front",
  19497. image: {
  19498. source: "./media/characters/chaska/front.svg",
  19499. extra: 332 / 319,
  19500. bottom: 0.015
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Normal",
  19507. height: math.unit(6 + 7 / 12, "feet"),
  19508. default: true
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19514. {
  19515. front: {
  19516. height: math.unit(5 + 8 / 12, "feet"),
  19517. weight: math.unit(208, "lb"),
  19518. name: "Front",
  19519. image: {
  19520. source: "./media/characters/enuk/front.svg",
  19521. extra: 437 / 406,
  19522. bottom: 0.02
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(5 + 8 / 12, "feet"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(5 + 10 / 12, "feet"),
  19539. weight: math.unit(252, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/bruun/front.svg",
  19543. extra: 197 / 187,
  19544. bottom: 0.012
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(5 + 10 / 12, "feet"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(6 + 10 / 12, "feet"),
  19561. weight: math.unit(255, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/alexeev/front.svg",
  19565. extra: 213 / 200,
  19566. bottom: 0.05
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(6 + 10 / 12, "feet"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(2 + 8 / 12, "feet"),
  19583. weight: math.unit(22, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/evelyn/front.svg",
  19587. extra: 208 / 180
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(2 + 8 / 12, "feet"),
  19595. default: true
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19601. {
  19602. front: {
  19603. height: math.unit(5 + 9 / 12, "feet"),
  19604. weight: math.unit(139, "lb"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/inca/front.svg",
  19608. extra: 294 / 291,
  19609. bottom: 0.03
  19610. }
  19611. },
  19612. },
  19613. [
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(5 + 9 / 12, "feet"),
  19617. default: true
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(5 + 1 / 12, "feet"),
  19626. weight: math.unit(84, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/magdalene/front.svg",
  19630. extra: 293 / 273
  19631. }
  19632. },
  19633. },
  19634. [
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(5 + 1 / 12, "feet"),
  19638. default: true
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(6 + 3 / 12, "feet"),
  19647. weight: math.unit(185, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/mera/front.svg",
  19651. extra: 291 / 277,
  19652. bottom: 0.03
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(6 + 3 / 12, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(6 + 7 / 12, "feet"),
  19669. weight: math.unit(160, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/ceres/front.svg",
  19673. extra: 1023 / 950,
  19674. bottom: 0.027
  19675. }
  19676. },
  19677. back: {
  19678. height: math.unit(6 + 7 / 12, "feet"),
  19679. weight: math.unit(160, "lb"),
  19680. name: "Back",
  19681. image: {
  19682. source: "./media/characters/ceres/back.svg",
  19683. extra: 1023 / 950
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(6 + 7 / 12, "feet"),
  19691. default: true
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19697. {
  19698. front: {
  19699. height: math.unit(5 + 10 / 12, "feet"),
  19700. weight: math.unit(150, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/kris/front.svg",
  19704. extra: 885 / 803,
  19705. bottom: 0.03
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(5 + 10 / 12, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(7, "feet"),
  19722. weight: math.unit(120, "kg"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/taluthus/front.svg",
  19726. extra: 903 / 833,
  19727. bottom: 0.015
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(7, "feet"),
  19735. default: true
  19736. },
  19737. {
  19738. name: "Macro",
  19739. height: math.unit(300, "feet")
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(5 + 9 / 12, "feet"),
  19748. weight: math.unit(145, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/dawn/front.svg",
  19752. extra: 2094 / 2016,
  19753. bottom: 0.025
  19754. }
  19755. },
  19756. back: {
  19757. height: math.unit(5 + 9 / 12, "feet"),
  19758. weight: math.unit(160, "lb"),
  19759. name: "Back",
  19760. image: {
  19761. source: "./media/characters/dawn/back.svg",
  19762. extra: 2112 / 2080,
  19763. bottom: 0.005
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(6 + 7 / 12, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19777. {
  19778. anthro: {
  19779. height: math.unit(8 + 3 / 12, "feet"),
  19780. weight: math.unit(450, "lb"),
  19781. name: "Anthro",
  19782. image: {
  19783. source: "./media/characters/arador/anthro.svg",
  19784. extra: 1835 / 1718,
  19785. bottom: 0.025
  19786. }
  19787. },
  19788. feral: {
  19789. height: math.unit(4, "feet"),
  19790. weight: math.unit(200, "lb"),
  19791. name: "Feral",
  19792. image: {
  19793. source: "./media/characters/arador/feral.svg",
  19794. extra: 1683 / 1514,
  19795. bottom: 0.07
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(8 + 3 / 12, "feet")
  19803. },
  19804. {
  19805. name: "Macro",
  19806. height: math.unit(82.5, "feet"),
  19807. default: true
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19813. {
  19814. front: {
  19815. height: math.unit(5 + 10 / 12, "feet"),
  19816. weight: math.unit(125, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/dharsi/front.svg",
  19820. extra: 716 / 630,
  19821. bottom: 0.035
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Nano",
  19828. height: math.unit(100, "nm")
  19829. },
  19830. {
  19831. name: "Micro",
  19832. height: math.unit(2, "inches")
  19833. },
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(5 + 10 / 12, "feet"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "Macro",
  19841. height: math.unit(1000, "feet")
  19842. },
  19843. {
  19844. name: "Megamacro",
  19845. height: math.unit(10, "miles")
  19846. },
  19847. {
  19848. name: "Gigamacro",
  19849. height: math.unit(3000, "miles")
  19850. },
  19851. {
  19852. name: "Teramacro",
  19853. height: math.unit(500000, "miles")
  19854. },
  19855. {
  19856. name: "Teramacro+",
  19857. height: math.unit(30, "galaxies")
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(6, "feet"),
  19866. weight: math.unit(150, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/deathy/front.svg",
  19870. extra: 1552 / 1463,
  19871. bottom: 0.025
  19872. }
  19873. },
  19874. side: {
  19875. height: math.unit(6, "feet"),
  19876. weight: math.unit(150, "lb"),
  19877. name: "Side",
  19878. image: {
  19879. source: "./media/characters/deathy/side.svg",
  19880. extra: 1604 / 1455,
  19881. bottom: 0.025
  19882. }
  19883. },
  19884. back: {
  19885. height: math.unit(6, "feet"),
  19886. weight: math.unit(150, "lb"),
  19887. name: "Back",
  19888. image: {
  19889. source: "./media/characters/deathy/back.svg",
  19890. extra: 1580 / 1463,
  19891. bottom: 0.005
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Micro",
  19898. height: math.unit(5, "millimeters")
  19899. },
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(6 + 5 / 12, "feet"),
  19903. default: true
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19909. {
  19910. front: {
  19911. height: math.unit(16, "feet"),
  19912. weight: math.unit(4000, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/juniper/front.svg",
  19916. bottom: 0.04
  19917. }
  19918. },
  19919. },
  19920. [
  19921. {
  19922. name: "Normal",
  19923. height: math.unit(16, "feet"),
  19924. default: true
  19925. },
  19926. ]
  19927. ))
  19928. characterMakers.push(() => makeCharacter(
  19929. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19930. {
  19931. front: {
  19932. height: math.unit(6, "feet"),
  19933. weight: math.unit(150, "lb"),
  19934. name: "Front",
  19935. image: {
  19936. source: "./media/characters/hipster/front.svg",
  19937. extra: 1312 / 1209,
  19938. bottom: 0.025
  19939. }
  19940. },
  19941. back: {
  19942. height: math.unit(6, "feet"),
  19943. weight: math.unit(150, "lb"),
  19944. name: "Back",
  19945. image: {
  19946. source: "./media/characters/hipster/back.svg",
  19947. extra: 1281 / 1196,
  19948. bottom: 0.01
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Micro",
  19955. height: math.unit(1, "mm")
  19956. },
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(4, "inches"),
  19960. default: true
  19961. },
  19962. {
  19963. name: "Macro",
  19964. height: math.unit(500, "feet")
  19965. },
  19966. {
  19967. name: "Megamacro",
  19968. height: math.unit(1000, "miles")
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19974. {
  19975. front: {
  19976. height: math.unit(6, "feet"),
  19977. weight: math.unit(150, "lb"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/tendirmuldr/front.svg",
  19981. extra: 1878 / 1772,
  19982. bottom: 0.015
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Megamacro",
  19989. height: math.unit(1500, "miles"),
  19990. default: true
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19996. {
  19997. front: {
  19998. height: math.unit(14, "feet"),
  19999. weight: math.unit(12000, "lb"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/mort/front.svg",
  20003. extra: 365 / 318,
  20004. bottom: 0.01
  20005. }
  20006. },
  20007. side: {
  20008. height: math.unit(14, "feet"),
  20009. weight: math.unit(12000, "lb"),
  20010. name: "Side",
  20011. image: {
  20012. source: "./media/characters/mort/side.svg",
  20013. extra: 365 / 318,
  20014. bottom: 0.052
  20015. },
  20016. default: true
  20017. },
  20018. back: {
  20019. height: math.unit(14, "feet"),
  20020. weight: math.unit(12000, "lb"),
  20021. name: "Back",
  20022. image: {
  20023. source: "./media/characters/mort/back.svg",
  20024. extra: 371 / 332,
  20025. bottom: 0.18
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(14, "feet"),
  20033. default: true
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20039. {
  20040. front: {
  20041. height: math.unit(8, "feet"),
  20042. weight: math.unit(1, "ton"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/lycoa/front.svg",
  20046. extra: 1875 / 1789,
  20047. bottom: 0.022
  20048. }
  20049. },
  20050. back: {
  20051. height: math.unit(8, "feet"),
  20052. weight: math.unit(1, "ton"),
  20053. name: "Back",
  20054. image: {
  20055. source: "./media/characters/lycoa/back.svg",
  20056. extra: 1835 / 1781,
  20057. bottom: 0.03
  20058. }
  20059. },
  20060. head: {
  20061. height: math.unit(2.1, "feet"),
  20062. name: "Head",
  20063. image: {
  20064. source: "./media/characters/lycoa/head.svg"
  20065. }
  20066. },
  20067. tailmaw: {
  20068. height: math.unit(1.9, "feet"),
  20069. name: "Tailmaw",
  20070. image: {
  20071. source: "./media/characters/lycoa/tailmaw.svg"
  20072. }
  20073. },
  20074. tentacles: {
  20075. height: math.unit(2.1, "feet"),
  20076. name: "Tentacles",
  20077. image: {
  20078. source: "./media/characters/lycoa/tentacles.svg"
  20079. }
  20080. },
  20081. dick: {
  20082. height: math.unit(1.73, "feet"),
  20083. name: "Dick",
  20084. image: {
  20085. source: "./media/characters/lycoa/dick.svg"
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(8, "feet"),
  20093. default: true
  20094. },
  20095. {
  20096. name: "Macro",
  20097. height: math.unit(30, "feet")
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20103. {
  20104. front: {
  20105. height: math.unit(4 + 2 / 12, "feet"),
  20106. weight: math.unit(70, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/naldara/front.svg",
  20110. extra: 841 / 720,
  20111. bottom: 0.04
  20112. }
  20113. },
  20114. naga: {
  20115. height: math.unit(23, "feet"),
  20116. weight: math.unit(15000, "kg"),
  20117. name: "Naga",
  20118. image: {
  20119. source: "./media/characters/naldara/naga.svg",
  20120. extra: 3290 / 2959,
  20121. bottom: 124 / 3432
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(4 + 2 / 12, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(13 + 7 / 12, "feet"),
  20138. weight: math.unit(1500, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/briar/front.svg",
  20142. extra: 626 / 596,
  20143. bottom: 0.08
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(13 + 7 / 12, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20157. {
  20158. side: {
  20159. height: math.unit(10, "feet"),
  20160. weight: math.unit(500, "lb"),
  20161. name: "Side",
  20162. image: {
  20163. source: "./media/characters/vanguard/side.svg",
  20164. extra: 502 / 425,
  20165. bottom: 0.087
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(10, "feet"),
  20173. default: true
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20179. {
  20180. front: {
  20181. height: math.unit(7.5, "feet"),
  20182. weight: math.unit(2, "lb"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/artemis/front.svg",
  20186. extra: 1192 / 1075,
  20187. bottom: 0.07
  20188. }
  20189. },
  20190. frontNsfw: {
  20191. height: math.unit(7.5, "feet"),
  20192. weight: math.unit(2, "lb"),
  20193. name: "Front (NSFW)",
  20194. image: {
  20195. source: "./media/characters/artemis/front-nsfw.svg",
  20196. extra: 1192 / 1075,
  20197. bottom: 0.07
  20198. }
  20199. },
  20200. frontNsfwer: {
  20201. height: math.unit(7.5, "feet"),
  20202. weight: math.unit(2, "lb"),
  20203. name: "Front (NSFW-er)",
  20204. image: {
  20205. source: "./media/characters/artemis/front-nsfwer.svg",
  20206. extra: 1192 / 1075,
  20207. bottom: 0.07
  20208. }
  20209. },
  20210. side: {
  20211. height: math.unit(7.5, "feet"),
  20212. weight: math.unit(2, "lb"),
  20213. name: "Side",
  20214. image: {
  20215. source: "./media/characters/artemis/side.svg",
  20216. extra: 1192 / 1075,
  20217. bottom: 0.07
  20218. }
  20219. },
  20220. sideNsfw: {
  20221. height: math.unit(7.5, "feet"),
  20222. weight: math.unit(2, "lb"),
  20223. name: "Side (NSFW)",
  20224. image: {
  20225. source: "./media/characters/artemis/side-nsfw.svg",
  20226. extra: 1192 / 1075,
  20227. bottom: 0.07
  20228. }
  20229. },
  20230. sideNsfwer: {
  20231. height: math.unit(7.5, "feet"),
  20232. weight: math.unit(2, "lb"),
  20233. name: "Side (NSFW-er)",
  20234. image: {
  20235. source: "./media/characters/artemis/side-nsfwer.svg",
  20236. extra: 1192 / 1075,
  20237. bottom: 0.07
  20238. }
  20239. },
  20240. maw: {
  20241. height: math.unit(1.1, "feet"),
  20242. name: "Maw",
  20243. image: {
  20244. source: "./media/characters/artemis/maw.svg"
  20245. }
  20246. },
  20247. stomach: {
  20248. height: math.unit(0.95, "feet"),
  20249. name: "Stomach",
  20250. image: {
  20251. source: "./media/characters/artemis/stomach.svg"
  20252. }
  20253. },
  20254. dickCanine: {
  20255. height: math.unit(1, "feet"),
  20256. name: "Dick (Canine)",
  20257. image: {
  20258. source: "./media/characters/artemis/dick-canine.svg"
  20259. }
  20260. },
  20261. dickEquine: {
  20262. height: math.unit(0.85, "feet"),
  20263. name: "Dick (Equine)",
  20264. image: {
  20265. source: "./media/characters/artemis/dick-equine.svg"
  20266. }
  20267. },
  20268. dickExotic: {
  20269. height: math.unit(0.85, "feet"),
  20270. name: "Dick (Exotic)",
  20271. image: {
  20272. source: "./media/characters/artemis/dick-exotic.svg"
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(7.5, "feet"),
  20280. default: true
  20281. },
  20282. {
  20283. name: "Enlarged",
  20284. height: math.unit(12, "feet")
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20290. {
  20291. front: {
  20292. height: math.unit(5 + 3 / 12, "feet"),
  20293. weight: math.unit(160, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/kira/front.svg",
  20297. extra: 906 / 786,
  20298. bottom: 0.01
  20299. }
  20300. },
  20301. back: {
  20302. height: math.unit(5 + 3 / 12, "feet"),
  20303. weight: math.unit(160, "lb"),
  20304. name: "Back",
  20305. image: {
  20306. source: "./media/characters/kira/back.svg",
  20307. extra: 882 / 757,
  20308. bottom: 0.005
  20309. }
  20310. },
  20311. frontDressed: {
  20312. height: math.unit(5 + 3 / 12, "feet"),
  20313. weight: math.unit(160, "lb"),
  20314. name: "Front (Dressed)",
  20315. image: {
  20316. source: "./media/characters/kira/front-dressed.svg",
  20317. extra: 906 / 786,
  20318. bottom: 0.01
  20319. }
  20320. },
  20321. beans: {
  20322. height: math.unit(0.92, "feet"),
  20323. name: "Beans",
  20324. image: {
  20325. source: "./media/characters/kira/beans.svg"
  20326. }
  20327. },
  20328. },
  20329. [
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(5 + 3 / 12, "feet"),
  20333. default: true
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20339. {
  20340. front: {
  20341. height: math.unit(5 + 4 / 12, "feet"),
  20342. weight: math.unit(145, "lb"),
  20343. name: "Front",
  20344. image: {
  20345. source: "./media/characters/scramble/front.svg",
  20346. extra: 763 / 727,
  20347. bottom: 0.05
  20348. }
  20349. },
  20350. back: {
  20351. height: math.unit(5 + 4 / 12, "feet"),
  20352. weight: math.unit(145, "lb"),
  20353. name: "Back",
  20354. image: {
  20355. source: "./media/characters/scramble/back.svg",
  20356. extra: 826 / 737,
  20357. bottom: 0.002
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(5 + 4 / 12, "feet"),
  20365. default: true
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20371. {
  20372. side: {
  20373. height: math.unit(6 + 2 / 12, "feet"),
  20374. weight: math.unit(190, "lb"),
  20375. name: "Side",
  20376. image: {
  20377. source: "./media/characters/biscuit/side.svg",
  20378. extra: 858 / 791,
  20379. bottom: 0.044
  20380. }
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Normal",
  20386. height: math.unit(6 + 2 / 12, "feet"),
  20387. default: true
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20393. {
  20394. front: {
  20395. height: math.unit(5 + 2 / 12, "feet"),
  20396. weight: math.unit(120, "lb"),
  20397. name: "Front",
  20398. image: {
  20399. source: "./media/characters/poffin/front.svg",
  20400. extra: 786 / 680,
  20401. bottom: 0.005
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(5 + 2 / 12, "feet"),
  20409. default: true
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20415. {
  20416. front: {
  20417. height: math.unit(6 + 3 / 12, "feet"),
  20418. weight: math.unit(519, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/dhari/front.svg",
  20422. extra: 1048 / 946,
  20423. bottom: 0.015
  20424. }
  20425. },
  20426. back: {
  20427. height: math.unit(6 + 3 / 12, "feet"),
  20428. weight: math.unit(519, "lb"),
  20429. name: "Back",
  20430. image: {
  20431. source: "./media/characters/dhari/back.svg",
  20432. extra: 1048 / 931,
  20433. bottom: 0.005
  20434. }
  20435. },
  20436. frontDressed: {
  20437. height: math.unit(6 + 3 / 12, "feet"),
  20438. weight: math.unit(519, "lb"),
  20439. name: "Front (Dressed)",
  20440. image: {
  20441. source: "./media/characters/dhari/front-dressed.svg",
  20442. extra: 1713 / 1546,
  20443. bottom: 0.02
  20444. }
  20445. },
  20446. backDressed: {
  20447. height: math.unit(6 + 3 / 12, "feet"),
  20448. weight: math.unit(519, "lb"),
  20449. name: "Back (Dressed)",
  20450. image: {
  20451. source: "./media/characters/dhari/back-dressed.svg",
  20452. extra: 1699 / 1537,
  20453. bottom: 0.01
  20454. }
  20455. },
  20456. maw: {
  20457. height: math.unit(0.95, "feet"),
  20458. name: "Maw",
  20459. image: {
  20460. source: "./media/characters/dhari/maw.svg"
  20461. }
  20462. },
  20463. wereFront: {
  20464. height: math.unit(12 + 8 / 12, "feet"),
  20465. weight: math.unit(4000, "lb"),
  20466. name: "Front (Were)",
  20467. image: {
  20468. source: "./media/characters/dhari/were-front.svg",
  20469. extra: 1065 / 969,
  20470. bottom: 0.015
  20471. }
  20472. },
  20473. wereBack: {
  20474. height: math.unit(12 + 8 / 12, "feet"),
  20475. weight: math.unit(4000, "lb"),
  20476. name: "Back (Were)",
  20477. image: {
  20478. source: "./media/characters/dhari/were-back.svg",
  20479. extra: 1065 / 969,
  20480. bottom: 0.012
  20481. }
  20482. },
  20483. wereMaw: {
  20484. height: math.unit(0.625, "meters"),
  20485. name: "Maw (Were)",
  20486. image: {
  20487. source: "./media/characters/dhari/were-maw.svg"
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(6 + 3 / 12, "feet"),
  20495. default: true
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20501. {
  20502. anthro: {
  20503. height: math.unit(5 + 7 / 12, "feet"),
  20504. weight: math.unit(175, "lb"),
  20505. name: "Anthro",
  20506. image: {
  20507. source: "./media/characters/rena-dyne/anthro.svg",
  20508. extra: 1849 / 1785,
  20509. bottom: 0.005
  20510. }
  20511. },
  20512. taur: {
  20513. height: math.unit(15 + 6 / 12, "feet"),
  20514. weight: math.unit(8000, "lb"),
  20515. name: "Taur",
  20516. image: {
  20517. source: "./media/characters/rena-dyne/taur.svg",
  20518. extra: 2315 / 2234,
  20519. bottom: 0.033
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(5 + 7 / 12, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(8, "feet"),
  20536. weight: math.unit(600, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/weremeep/front.svg",
  20540. extra: 967 / 862,
  20541. bottom: 0.01
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(8, "feet"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Lorg",
  20553. height: math.unit(12, "feet")
  20554. },
  20555. {
  20556. name: "Oh Lawd She Comin'",
  20557. height: math.unit(20, "feet")
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20563. {
  20564. front: {
  20565. height: math.unit(4, "feet"),
  20566. weight: math.unit(90, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/reza/front.svg",
  20570. extra: 1183 / 1111,
  20571. bottom: 0.017
  20572. }
  20573. },
  20574. back: {
  20575. height: math.unit(4, "feet"),
  20576. weight: math.unit(90, "lb"),
  20577. name: "Back",
  20578. image: {
  20579. source: "./media/characters/reza/back.svg",
  20580. extra: 1183 / 1111,
  20581. bottom: 0.01
  20582. }
  20583. },
  20584. drake: {
  20585. height: math.unit(30, "feet"),
  20586. weight: math.unit(246960, "lb"),
  20587. name: "Drake",
  20588. image: {
  20589. source: "./media/characters/reza/drake.svg",
  20590. extra: 2350 / 2024,
  20591. bottom: 60.7 / 2403
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(4, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20605. {
  20606. side: {
  20607. height: math.unit(15, "feet"),
  20608. weight: math.unit(14, "tons"),
  20609. name: "Side",
  20610. image: {
  20611. source: "./media/characters/athea/side.svg",
  20612. extra: 960 / 540,
  20613. bottom: 0.003
  20614. }
  20615. },
  20616. sitting: {
  20617. height: math.unit(6 * 2.85, "feet"),
  20618. weight: math.unit(14, "tons"),
  20619. name: "Sitting",
  20620. image: {
  20621. source: "./media/characters/athea/sitting.svg",
  20622. extra: 621 / 581,
  20623. bottom: 0.075
  20624. }
  20625. },
  20626. maw: {
  20627. height: math.unit(7.59498031496063, "feet"),
  20628. name: "Maw",
  20629. image: {
  20630. source: "./media/characters/athea/maw.svg"
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Lap Cat",
  20637. height: math.unit(2.5, "feet")
  20638. },
  20639. {
  20640. name: "Minimacro",
  20641. height: math.unit(15, "feet"),
  20642. default: true
  20643. },
  20644. {
  20645. name: "Macro",
  20646. height: math.unit(120, "feet")
  20647. },
  20648. {
  20649. name: "Macro+",
  20650. height: math.unit(640, "feet")
  20651. },
  20652. {
  20653. name: "Colossus",
  20654. height: math.unit(2.2, "miles")
  20655. },
  20656. ]
  20657. ))
  20658. characterMakers.push(() => makeCharacter(
  20659. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20660. {
  20661. front: {
  20662. height: math.unit(8 + 8 / 12, "feet"),
  20663. weight: math.unit(130, "kg"),
  20664. name: "Front",
  20665. image: {
  20666. source: "./media/characters/seroko/front.svg",
  20667. extra: 1385 / 1280,
  20668. bottom: 0.025
  20669. }
  20670. },
  20671. back: {
  20672. height: math.unit(8 + 8 / 12, "feet"),
  20673. weight: math.unit(130, "kg"),
  20674. name: "Back",
  20675. image: {
  20676. source: "./media/characters/seroko/back.svg",
  20677. extra: 1369 / 1238,
  20678. bottom: 0.018
  20679. }
  20680. },
  20681. frontDressed: {
  20682. height: math.unit(8 + 8 / 12, "feet"),
  20683. weight: math.unit(130, "kg"),
  20684. name: "Front (Dressed)",
  20685. image: {
  20686. source: "./media/characters/seroko/front-dressed.svg",
  20687. extra: 1366 / 1275,
  20688. bottom: 0.03
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(8 + 8 / 12, "feet"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(5.5, "feet"),
  20705. weight: math.unit(160, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/quatzi/front.svg",
  20709. extra: 2346 / 2242,
  20710. bottom: 0.015
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(5.5, "feet"),
  20718. default: true
  20719. },
  20720. {
  20721. name: "Big",
  20722. height: math.unit(7.7, "feet")
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(5 + 11 / 12, "feet"),
  20731. weight: math.unit(180, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/sen/front.svg",
  20735. extra: 1321 / 1254,
  20736. bottom: 0.015
  20737. }
  20738. },
  20739. side: {
  20740. height: math.unit(5 + 11 / 12, "feet"),
  20741. weight: math.unit(180, "lb"),
  20742. name: "Side",
  20743. image: {
  20744. source: "./media/characters/sen/side.svg",
  20745. extra: 1321 / 1254,
  20746. bottom: 0.007
  20747. }
  20748. },
  20749. back: {
  20750. height: math.unit(5 + 11 / 12, "feet"),
  20751. weight: math.unit(180, "lb"),
  20752. name: "Back",
  20753. image: {
  20754. source: "./media/characters/sen/back.svg",
  20755. extra: 1321 / 1254
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(5 + 11 / 12, "feet"),
  20763. default: true
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(166.6, "cm"),
  20772. weight: math.unit(66.6, "kg"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/fruity/front.svg",
  20776. extra: 1510 / 1386,
  20777. bottom: 0.04
  20778. }
  20779. },
  20780. back: {
  20781. height: math.unit(166.6, "cm"),
  20782. weight: math.unit(66.6, "lb"),
  20783. name: "Back",
  20784. image: {
  20785. source: "./media/characters/fruity/back.svg",
  20786. extra: 1563 / 1435,
  20787. bottom: 0.005
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(166.6, "cm"),
  20795. default: true
  20796. },
  20797. {
  20798. name: "Demonic",
  20799. height: math.unit(166.6, "feet")
  20800. },
  20801. ]
  20802. ))
  20803. characterMakers.push(() => makeCharacter(
  20804. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20805. {
  20806. side: {
  20807. height: math.unit(10, "feet"),
  20808. weight: math.unit(500, "lb"),
  20809. name: "Side",
  20810. image: {
  20811. source: "./media/characters/zost/side.svg",
  20812. extra: 966 / 880,
  20813. bottom: 0.075
  20814. }
  20815. },
  20816. mawFront: {
  20817. height: math.unit(1.08, "meters"),
  20818. name: "Maw (Front)",
  20819. image: {
  20820. source: "./media/characters/zost/maw-front.svg"
  20821. }
  20822. },
  20823. mawSide: {
  20824. height: math.unit(2.66, "feet"),
  20825. name: "Maw (Side)",
  20826. image: {
  20827. source: "./media/characters/zost/maw-side.svg"
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(10, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(5 + 4 / 12, "feet"),
  20844. weight: math.unit(120, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/luci/front.svg",
  20848. extra: 1985 / 1884,
  20849. bottom: 0.04
  20850. }
  20851. },
  20852. back: {
  20853. height: math.unit(5 + 4 / 12, "feet"),
  20854. weight: math.unit(120, "lb"),
  20855. name: "Back",
  20856. image: {
  20857. source: "./media/characters/luci/back.svg",
  20858. extra: 1892 / 1791,
  20859. bottom: 0.002
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Normal",
  20866. height: math.unit(5 + 4 / 12, "feet"),
  20867. default: true
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(1500, "feet"),
  20876. weight: math.unit(3.8e6, "tons"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/2th/front.svg",
  20880. extra: 3489 / 3350,
  20881. bottom: 0.1
  20882. }
  20883. },
  20884. foot: {
  20885. height: math.unit(461, "feet"),
  20886. name: "Foot",
  20887. image: {
  20888. source: "./media/characters/2th/foot.svg"
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "\"Micro\"",
  20895. height: math.unit(15 + 7 / 12, "feet")
  20896. },
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(1500, "feet"),
  20900. default: true
  20901. },
  20902. {
  20903. name: "Macro",
  20904. height: math.unit(5000, "feet")
  20905. },
  20906. {
  20907. name: "Megamacro",
  20908. height: math.unit(15, "miles")
  20909. },
  20910. {
  20911. name: "Gigamacro",
  20912. height: math.unit(4000, "miles")
  20913. },
  20914. {
  20915. name: "Galactic",
  20916. height: math.unit(50, "AU")
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(5 + 6 / 12, "feet"),
  20925. weight: math.unit(220, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/amethyst/front.svg",
  20929. extra: 2078 / 2040,
  20930. bottom: 0.045
  20931. }
  20932. },
  20933. back: {
  20934. height: math.unit(5 + 6 / 12, "feet"),
  20935. weight: math.unit(220, "lb"),
  20936. name: "Back",
  20937. image: {
  20938. source: "./media/characters/amethyst/back.svg",
  20939. extra: 2021 / 1989,
  20940. bottom: 0.02
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "Normal",
  20947. height: math.unit(5 + 6 / 12, "feet"),
  20948. default: true
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20954. {
  20955. front: {
  20956. height: math.unit(4 + 11 / 12, "feet"),
  20957. weight: math.unit(120, "lb"),
  20958. name: "Front",
  20959. image: {
  20960. source: "./media/characters/yumi-akiyama/front.svg",
  20961. extra: 1327 / 1235,
  20962. bottom: 0.02
  20963. }
  20964. },
  20965. back: {
  20966. height: math.unit(4 + 11 / 12, "feet"),
  20967. weight: math.unit(120, "lb"),
  20968. name: "Back",
  20969. image: {
  20970. source: "./media/characters/yumi-akiyama/back.svg",
  20971. extra: 1287 / 1245,
  20972. bottom: 0.002
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Galactic",
  20979. height: math.unit(50, "galaxies"),
  20980. default: true
  20981. },
  20982. {
  20983. name: "Universal",
  20984. height: math.unit(100, "universes")
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(8, "feet"),
  20993. weight: math.unit(500, "lb"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/rifter-yrmori/front.svg",
  20997. extra: 1180 / 1125,
  20998. bottom: 0.02
  20999. }
  21000. },
  21001. back: {
  21002. height: math.unit(8, "feet"),
  21003. weight: math.unit(500, "lb"),
  21004. name: "Back",
  21005. image: {
  21006. source: "./media/characters/rifter-yrmori/back.svg",
  21007. extra: 1190 / 1145,
  21008. bottom: 0.001
  21009. }
  21010. },
  21011. wings: {
  21012. height: math.unit(7.75, "feet"),
  21013. weight: math.unit(500, "lb"),
  21014. name: "Wings",
  21015. image: {
  21016. source: "./media/characters/rifter-yrmori/wings.svg",
  21017. extra: 1357 / 1285
  21018. }
  21019. },
  21020. maw: {
  21021. height: math.unit(0.8, "feet"),
  21022. name: "Maw",
  21023. image: {
  21024. source: "./media/characters/rifter-yrmori/maw.svg"
  21025. }
  21026. },
  21027. mawfront: {
  21028. height: math.unit(1.45, "feet"),
  21029. name: "Maw (Front)",
  21030. image: {
  21031. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21032. }
  21033. },
  21034. },
  21035. [
  21036. {
  21037. name: "Normal",
  21038. height: math.unit(8, "feet"),
  21039. default: true
  21040. },
  21041. {
  21042. name: "Macro",
  21043. height: math.unit(42, "meters")
  21044. },
  21045. ]
  21046. ))
  21047. characterMakers.push(() => makeCharacter(
  21048. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21049. {
  21050. were: {
  21051. height: math.unit(25 + 6 / 12, "feet"),
  21052. weight: math.unit(10000, "lb"),
  21053. name: "Were",
  21054. image: {
  21055. source: "./media/characters/tahajin/were.svg",
  21056. extra: 801 / 770,
  21057. bottom: 0.042
  21058. }
  21059. },
  21060. aquatic: {
  21061. height: math.unit(6 + 4 / 12, "feet"),
  21062. weight: math.unit(160, "lb"),
  21063. name: "Aquatic",
  21064. image: {
  21065. source: "./media/characters/tahajin/aquatic.svg",
  21066. extra: 572 / 542,
  21067. bottom: 0.04
  21068. }
  21069. },
  21070. chow: {
  21071. height: math.unit(8 + 11 / 12, "feet"),
  21072. weight: math.unit(450, "lb"),
  21073. name: "Chow",
  21074. image: {
  21075. source: "./media/characters/tahajin/chow.svg",
  21076. extra: 660 / 640,
  21077. bottom: 0.015
  21078. }
  21079. },
  21080. demiNaga: {
  21081. height: math.unit(6 + 8 / 12, "feet"),
  21082. weight: math.unit(300, "lb"),
  21083. name: "Demi Naga",
  21084. image: {
  21085. source: "./media/characters/tahajin/demi-naga.svg",
  21086. extra: 643 / 615,
  21087. bottom: 0.1
  21088. }
  21089. },
  21090. data: {
  21091. height: math.unit(5, "inches"),
  21092. weight: math.unit(0.1, "lb"),
  21093. name: "Data",
  21094. image: {
  21095. source: "./media/characters/tahajin/data.svg"
  21096. }
  21097. },
  21098. fluu: {
  21099. height: math.unit(5 + 7 / 12, "feet"),
  21100. weight: math.unit(140, "lb"),
  21101. name: "Fluu",
  21102. image: {
  21103. source: "./media/characters/tahajin/fluu.svg",
  21104. extra: 628 / 592,
  21105. bottom: 0.02
  21106. }
  21107. },
  21108. starWarrior: {
  21109. height: math.unit(4 + 5 / 12, "feet"),
  21110. weight: math.unit(50, "lb"),
  21111. name: "Star Warrior",
  21112. image: {
  21113. source: "./media/characters/tahajin/star-warrior.svg"
  21114. }
  21115. },
  21116. },
  21117. [
  21118. {
  21119. name: "Normal",
  21120. height: math.unit(25 + 6 / 12, "feet"),
  21121. default: true
  21122. },
  21123. ]
  21124. ))
  21125. characterMakers.push(() => makeCharacter(
  21126. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21127. {
  21128. front: {
  21129. height: math.unit(8, "feet"),
  21130. weight: math.unit(350, "lb"),
  21131. name: "Front",
  21132. image: {
  21133. source: "./media/characters/gabira/front.svg",
  21134. extra: 608 / 580,
  21135. bottom: 0.03
  21136. }
  21137. },
  21138. back: {
  21139. height: math.unit(8, "feet"),
  21140. weight: math.unit(350, "lb"),
  21141. name: "Back",
  21142. image: {
  21143. source: "./media/characters/gabira/back.svg",
  21144. extra: 608 / 580,
  21145. bottom: 0.03
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Normal",
  21152. height: math.unit(8, "feet"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(5 + 3 / 12, "feet"),
  21162. weight: math.unit(137, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/sasha-katraine/front.svg",
  21166. bottom: 0.045
  21167. }
  21168. },
  21169. },
  21170. [
  21171. {
  21172. name: "Micro",
  21173. height: math.unit(5, "inches")
  21174. },
  21175. {
  21176. name: "Normal",
  21177. height: math.unit(5 + 3 / 12, "feet"),
  21178. default: true
  21179. },
  21180. ]
  21181. ))
  21182. characterMakers.push(() => makeCharacter(
  21183. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21184. {
  21185. side: {
  21186. height: math.unit(4, "inches"),
  21187. weight: math.unit(200, "grams"),
  21188. name: "Side",
  21189. image: {
  21190. source: "./media/characters/der/side.svg",
  21191. extra: 719 / 400,
  21192. bottom: 30.6 / 749.9187
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Micro",
  21199. height: math.unit(4, "inches"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21206. {
  21207. side: {
  21208. height: math.unit(30, "meters"),
  21209. weight: math.unit(700, "tonnes"),
  21210. name: "Side",
  21211. image: {
  21212. source: "./media/characters/fixerdragon/side.svg",
  21213. extra: (1293.0514 - 116.03) / 1106.86,
  21214. bottom: 116.03 / 1293.0514
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Planck",
  21221. height: math.unit(1.6e-35, "meters")
  21222. },
  21223. {
  21224. name: "Micro",
  21225. height: math.unit(0.4, "meters")
  21226. },
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(30, "meters"),
  21230. default: true
  21231. },
  21232. {
  21233. name: "Megamacro",
  21234. height: math.unit(1.2, "megameters")
  21235. },
  21236. {
  21237. name: "Teramacro",
  21238. height: math.unit(130, "terameters")
  21239. },
  21240. {
  21241. name: "Yottamacro",
  21242. height: math.unit(6200, "yottameters")
  21243. },
  21244. ]
  21245. ));
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21248. {
  21249. front: {
  21250. height: math.unit(8, "feet"),
  21251. weight: math.unit(250, "lb"),
  21252. name: "Front",
  21253. image: {
  21254. source: "./media/characters/kite/front.svg",
  21255. extra: 2796 / 2659,
  21256. bottom: 0.002
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(8, "feet"),
  21264. default: true
  21265. },
  21266. {
  21267. name: "Macro",
  21268. height: math.unit(360, "feet")
  21269. },
  21270. {
  21271. name: "Megamacro",
  21272. height: math.unit(1500, "feet")
  21273. },
  21274. ]
  21275. ))
  21276. characterMakers.push(() => makeCharacter(
  21277. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21278. {
  21279. front: {
  21280. height: math.unit(5 + 10 / 12, "feet"),
  21281. weight: math.unit(150, "lb"),
  21282. name: "Front",
  21283. image: {
  21284. source: "./media/characters/poojawa-vynar/front.svg",
  21285. extra: (1506.1547 - 55) / 1356.6,
  21286. bottom: 55 / 1506.1547
  21287. }
  21288. },
  21289. frontTailless: {
  21290. height: math.unit(5 + 10 / 12, "feet"),
  21291. weight: math.unit(150, "lb"),
  21292. name: "Front (Tailless)",
  21293. image: {
  21294. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21295. extra: (1506.1547 - 55) / 1356.6,
  21296. bottom: 55 / 1506.1547
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(5 + 10 / 12, "feet"),
  21304. default: true
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21310. {
  21311. front: {
  21312. height: math.unit(293, "meters"),
  21313. weight: math.unit(70400, "tons"),
  21314. name: "Front",
  21315. image: {
  21316. source: "./media/characters/violette/front.svg",
  21317. extra: 1227 / 1180,
  21318. bottom: 0.005
  21319. }
  21320. },
  21321. back: {
  21322. height: math.unit(293, "meters"),
  21323. weight: math.unit(70400, "tons"),
  21324. name: "Back",
  21325. image: {
  21326. source: "./media/characters/violette/back.svg",
  21327. extra: 1227 / 1180,
  21328. bottom: 0.005
  21329. }
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Macro",
  21335. height: math.unit(293, "meters"),
  21336. default: true
  21337. },
  21338. ]
  21339. ))
  21340. characterMakers.push(() => makeCharacter(
  21341. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21342. {
  21343. front: {
  21344. height: math.unit(1050, "feet"),
  21345. weight: math.unit(200000, "tons"),
  21346. name: "Front",
  21347. image: {
  21348. source: "./media/characters/alessandra/front.svg",
  21349. extra: 960 / 912,
  21350. bottom: 0.06
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Macro",
  21357. height: math.unit(1050, "feet")
  21358. },
  21359. {
  21360. name: "Macro+",
  21361. height: math.unit(900, "meters"),
  21362. default: true
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21368. {
  21369. front: {
  21370. height: math.unit(5, "feet"),
  21371. weight: math.unit(187, "lb"),
  21372. name: "Front",
  21373. image: {
  21374. source: "./media/characters/person/front.svg",
  21375. extra: 3087 / 2945,
  21376. bottom: 91 / 3181
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Micro",
  21383. height: math.unit(3, "inches")
  21384. },
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(5, "feet"),
  21388. default: true
  21389. },
  21390. {
  21391. name: "Macro",
  21392. height: math.unit(90, "feet")
  21393. },
  21394. {
  21395. name: "Max Size",
  21396. height: math.unit(280, "feet")
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21402. {
  21403. front: {
  21404. height: math.unit(4.5, "meters"),
  21405. weight: math.unit(3200, "lb"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/ty/front.svg",
  21409. extra: 1038 / 960,
  21410. bottom: 31.156 / 1068
  21411. }
  21412. },
  21413. back: {
  21414. height: math.unit(4.5, "meters"),
  21415. weight: math.unit(3200, "lb"),
  21416. name: "Back",
  21417. image: {
  21418. source: "./media/characters/ty/back.svg",
  21419. extra: 1044 / 966,
  21420. bottom: 7.48 / 1049
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(4.5, "meters"),
  21428. default: true
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(5 + 4 / 12, "feet"),
  21437. weight: math.unit(115, "lb"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/rocky/front.svg",
  21441. extra: 1012 / 975,
  21442. bottom: 54 / 1066
  21443. }
  21444. },
  21445. },
  21446. [
  21447. {
  21448. name: "Normal",
  21449. height: math.unit(5 + 4 / 12, "feet"),
  21450. default: true
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21456. {
  21457. upright: {
  21458. height: math.unit(6, "meters"),
  21459. weight: math.unit(4000, "kg"),
  21460. name: "Upright",
  21461. image: {
  21462. source: "./media/characters/ruin/upright.svg",
  21463. extra: 668 / 661,
  21464. bottom: 42 / 799.8396
  21465. }
  21466. },
  21467. },
  21468. [
  21469. {
  21470. name: "Normal",
  21471. height: math.unit(6, "meters"),
  21472. default: true
  21473. },
  21474. ]
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21478. {
  21479. front: {
  21480. height: math.unit(5, "feet"),
  21481. weight: math.unit(106, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/robin/front.svg",
  21485. extra: 862 / 799,
  21486. bottom: 42.4 / 914.8856
  21487. }
  21488. },
  21489. },
  21490. [
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(5, "feet"),
  21494. default: true
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21500. {
  21501. side: {
  21502. height: math.unit(3, "feet"),
  21503. weight: math.unit(225, "lb"),
  21504. name: "Side",
  21505. image: {
  21506. source: "./media/characters/saian/side.svg",
  21507. extra: 566 / 356,
  21508. bottom: 79.7 / 643
  21509. }
  21510. },
  21511. maw: {
  21512. height: math.unit(2.85, "feet"),
  21513. name: "Maw",
  21514. image: {
  21515. source: "./media/characters/saian/maw.svg"
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(3, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21529. {
  21530. side: {
  21531. height: math.unit(8, "feet"),
  21532. weight: math.unit(300, "lb"),
  21533. name: "Side",
  21534. image: {
  21535. source: "./media/characters/equus-silvermane/side.svg",
  21536. extra: 2176 / 2050,
  21537. bottom: 65.7 / 2245
  21538. }
  21539. },
  21540. front: {
  21541. height: math.unit(8, "feet"),
  21542. weight: math.unit(300, "lb"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/equus-silvermane/front.svg",
  21546. extra: 4633 / 4400,
  21547. bottom: 71.3 / 4706.915
  21548. }
  21549. },
  21550. sideStepping: {
  21551. height: math.unit(8, "feet"),
  21552. weight: math.unit(300, "lb"),
  21553. name: "Side (Stepping)",
  21554. image: {
  21555. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21556. extra: 1968 / 1860,
  21557. bottom: 16.4 / 1989
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Normal",
  21564. height: math.unit(8, "feet")
  21565. },
  21566. {
  21567. name: "Minimacro",
  21568. height: math.unit(75, "feet"),
  21569. default: true
  21570. },
  21571. {
  21572. name: "Macro",
  21573. height: math.unit(150, "feet")
  21574. },
  21575. {
  21576. name: "Macro+",
  21577. height: math.unit(1000, "feet")
  21578. },
  21579. {
  21580. name: "Megamacro",
  21581. height: math.unit(1, "mile")
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21587. {
  21588. side: {
  21589. height: math.unit(20, "feet"),
  21590. weight: math.unit(30000, "kg"),
  21591. name: "Side",
  21592. image: {
  21593. source: "./media/characters/windar/side.svg",
  21594. extra: 1491 / 1248,
  21595. bottom: 82.56 / 1568
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Normal",
  21602. height: math.unit(20, "feet"),
  21603. default: true
  21604. },
  21605. ]
  21606. ))
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21609. {
  21610. side: {
  21611. height: math.unit(15.66, "feet"),
  21612. weight: math.unit(150, "lb"),
  21613. name: "Side",
  21614. image: {
  21615. source: "./media/characters/melody/side.svg",
  21616. extra: 1097 / 944,
  21617. bottom: 11.8 / 1109
  21618. }
  21619. },
  21620. sideOutfit: {
  21621. height: math.unit(15.66, "feet"),
  21622. weight: math.unit(150, "lb"),
  21623. name: "Side (Outfit)",
  21624. image: {
  21625. source: "./media/characters/melody/side-outfit.svg",
  21626. extra: 1097 / 944,
  21627. bottom: 11.8 / 1109
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Normal",
  21634. height: math.unit(15.66, "feet"),
  21635. default: true
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21641. {
  21642. front: {
  21643. height: math.unit(8, "feet"),
  21644. weight: math.unit(325, "lb"),
  21645. name: "Front",
  21646. image: {
  21647. source: "./media/characters/windera/front.svg",
  21648. extra: 3180 / 2845,
  21649. bottom: 178 / 3365
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(8, "feet"),
  21657. default: true
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21663. {
  21664. front: {
  21665. height: math.unit(28.75, "feet"),
  21666. weight: math.unit(2000, "kg"),
  21667. name: "Front",
  21668. image: {
  21669. source: "./media/characters/sonear/front.svg",
  21670. extra: 1041.1 / 964.9,
  21671. bottom: 53.7 / 1096.6
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Normal",
  21678. height: math.unit(28.75, "feet"),
  21679. default: true
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21685. {
  21686. side: {
  21687. height: math.unit(25.5, "feet"),
  21688. weight: math.unit(23000, "kg"),
  21689. name: "Side",
  21690. image: {
  21691. source: "./media/characters/kanara/side.svg"
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(25.5, "feet"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21705. {
  21706. side: {
  21707. height: math.unit(10, "feet"),
  21708. weight: math.unit(1000, "kg"),
  21709. name: "Side",
  21710. image: {
  21711. source: "./media/characters/ereus/side.svg",
  21712. extra: 1157 / 959,
  21713. bottom: 153 / 1312.5
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(10, "feet"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21727. {
  21728. side: {
  21729. height: math.unit(4.5, "feet"),
  21730. weight: math.unit(500, "lb"),
  21731. name: "Side",
  21732. image: {
  21733. source: "./media/characters/e-ter/side.svg",
  21734. extra: 1550 / 1248,
  21735. bottom: 146 / 1694
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(4.5, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21749. {
  21750. side: {
  21751. height: math.unit(9.7, "feet"),
  21752. weight: math.unit(4000, "kg"),
  21753. name: "Side",
  21754. image: {
  21755. source: "./media/characters/yamie/side.svg"
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(9.7, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(50, "feet"),
  21772. weight: math.unit(50000, "kg"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/anders/front.svg",
  21776. extra: 570 / 539,
  21777. bottom: 14.7 / 586.7
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Large",
  21784. height: math.unit(50, "feet")
  21785. },
  21786. {
  21787. name: "Macro",
  21788. height: math.unit(2000, "feet"),
  21789. default: true
  21790. },
  21791. {
  21792. name: "Megamacro",
  21793. height: math.unit(12, "miles")
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(7 + 2 / 12, "feet"),
  21802. weight: math.unit(300, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/reban/front.svg",
  21806. extra: 516 / 487,
  21807. bottom: 42.82 / 558.356
  21808. }
  21809. },
  21810. dick: {
  21811. height: math.unit(7 / 5, "feet"),
  21812. name: "Dick",
  21813. image: {
  21814. source: "./media/characters/reban/dick.svg"
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Natural Height",
  21821. height: math.unit(7 + 2 / 12, "feet")
  21822. },
  21823. {
  21824. name: "Macro",
  21825. height: math.unit(500, "feet"),
  21826. default: true
  21827. },
  21828. {
  21829. name: "Canon Height",
  21830. height: math.unit(50, "AU")
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(6, "feet"),
  21839. weight: math.unit(150, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/terrance-keayes/front.svg",
  21843. extra: 1.005,
  21844. bottom: 151 / 1615
  21845. }
  21846. },
  21847. side: {
  21848. height: math.unit(6, "feet"),
  21849. weight: math.unit(150, "lb"),
  21850. name: "Side",
  21851. image: {
  21852. source: "./media/characters/terrance-keayes/side.svg",
  21853. extra: 1.005,
  21854. bottom: 129.4 / 1544
  21855. }
  21856. },
  21857. back: {
  21858. height: math.unit(6, "feet"),
  21859. weight: math.unit(150, "lb"),
  21860. name: "Back",
  21861. image: {
  21862. source: "./media/characters/terrance-keayes/back.svg",
  21863. extra: 1.005,
  21864. bottom: 58.4 / 1557.3
  21865. }
  21866. },
  21867. dick: {
  21868. height: math.unit(6 * 0.208, "feet"),
  21869. name: "Dick",
  21870. image: {
  21871. source: "./media/characters/terrance-keayes/dick.svg"
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Canon Height",
  21878. height: math.unit(35, "miles"),
  21879. default: true
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(6, "feet"),
  21888. weight: math.unit(150, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/ofelia/front.svg",
  21892. extra: 546 / 541,
  21893. bottom: 39 / 583
  21894. }
  21895. },
  21896. back: {
  21897. height: math.unit(6, "feet"),
  21898. weight: math.unit(150, "lb"),
  21899. name: "Back",
  21900. image: {
  21901. source: "./media/characters/ofelia/back.svg",
  21902. extra: 564 / 559.5,
  21903. bottom: 8.69 / 573.02
  21904. }
  21905. },
  21906. maw: {
  21907. height: math.unit(1, "feet"),
  21908. name: "Maw",
  21909. image: {
  21910. source: "./media/characters/ofelia/maw.svg"
  21911. }
  21912. },
  21913. foot: {
  21914. height: math.unit(1.949, "feet"),
  21915. name: "Foot",
  21916. image: {
  21917. source: "./media/characters/ofelia/foot.svg"
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Canon Height",
  21924. height: math.unit(2000, "miles"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(6, "feet"),
  21934. weight: math.unit(150, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/samuel/front.svg",
  21938. extra: 265 / 258,
  21939. bottom: 2 / 266.1566
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Macro",
  21946. height: math.unit(100, "feet"),
  21947. default: true
  21948. },
  21949. {
  21950. name: "Full Size",
  21951. height: math.unit(1000, "miles")
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(6, "feet"),
  21960. weight: math.unit(300, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/beishir-kiel/front.svg",
  21964. extra: 569 / 547,
  21965. bottom: 41.9 / 609
  21966. }
  21967. },
  21968. maw: {
  21969. height: math.unit(6 * 0.202, "feet"),
  21970. name: "Maw",
  21971. image: {
  21972. source: "./media/characters/beishir-kiel/maw.svg"
  21973. }
  21974. },
  21975. },
  21976. [
  21977. {
  21978. name: "Macro",
  21979. height: math.unit(300, "feet"),
  21980. default: true
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(5 + 7/12, "feet"),
  21989. weight: math.unit(120, "lb"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/logan-grey/front.svg",
  21993. extra: 1836/1738,
  21994. bottom: 108/1944
  21995. }
  21996. },
  21997. back: {
  21998. height: math.unit(5 + 7/12, "feet"),
  21999. weight: math.unit(120, "lb"),
  22000. name: "Back",
  22001. image: {
  22002. source: "./media/characters/logan-grey/back.svg",
  22003. extra: 1880/1794,
  22004. bottom: 24/1904
  22005. }
  22006. },
  22007. frontSfw: {
  22008. height: math.unit(5 + 7/12, "feet"),
  22009. weight: math.unit(120, "lb"),
  22010. name: "Front (SFW)",
  22011. image: {
  22012. source: "./media/characters/logan-grey/front-sfw.svg",
  22013. extra: 1836/1738,
  22014. bottom: 108/1944
  22015. }
  22016. },
  22017. backSfw: {
  22018. height: math.unit(5 + 7/12, "feet"),
  22019. weight: math.unit(120, "lb"),
  22020. name: "Back (SFW)",
  22021. image: {
  22022. source: "./media/characters/logan-grey/back-sfw.svg",
  22023. extra: 1880/1794,
  22024. bottom: 24/1904
  22025. }
  22026. },
  22027. hands: {
  22028. height: math.unit(0.84, "feet"),
  22029. name: "Hands",
  22030. image: {
  22031. source: "./media/characters/logan-grey/hands.svg"
  22032. }
  22033. },
  22034. paws: {
  22035. height: math.unit(0.72, "feet"),
  22036. name: "Paws",
  22037. image: {
  22038. source: "./media/characters/logan-grey/paws.svg"
  22039. }
  22040. },
  22041. cock: {
  22042. height: math.unit(1.45, "feet"),
  22043. name: "Cock",
  22044. image: {
  22045. source: "./media/characters/logan-grey/cock.svg"
  22046. }
  22047. },
  22048. cockAlt: {
  22049. height: math.unit(1.437, "feet"),
  22050. name: "Cock (alt)",
  22051. image: {
  22052. source: "./media/characters/logan-grey/cock-alt.svg"
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Normal",
  22059. height: math.unit(5 + 8 / 12, "feet")
  22060. },
  22061. {
  22062. name: "The 500 Foot Femboy",
  22063. height: math.unit(500, "feet"),
  22064. default: true
  22065. },
  22066. {
  22067. name: "Megmacro",
  22068. height: math.unit(20, "miles")
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(8 + 2 / 12, "feet"),
  22077. weight: math.unit(275, "lb"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/draganta/front.svg",
  22081. extra: 1177 / 1135,
  22082. bottom: 33.46 / 1212.1
  22083. }
  22084. },
  22085. },
  22086. [
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(8 + 6 / 12, "feet"),
  22090. default: true
  22091. },
  22092. {
  22093. name: "Macro",
  22094. height: math.unit(150, "feet")
  22095. },
  22096. {
  22097. name: "Megamacro",
  22098. height: math.unit(1000, "miles")
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(1.72, "m"),
  22107. weight: math.unit(80, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/voski/front.svg",
  22111. extra: 2076.22 / 2022.4,
  22112. bottom: 102.7 / 2177.3866
  22113. }
  22114. },
  22115. frontNsfw: {
  22116. height: math.unit(1.72, "m"),
  22117. weight: math.unit(80, "lb"),
  22118. name: "Front (NSFW)",
  22119. image: {
  22120. source: "./media/characters/voski/front-nsfw.svg",
  22121. extra: 2076.22 / 2022.4,
  22122. bottom: 102.7 / 2177.3866
  22123. }
  22124. },
  22125. back: {
  22126. height: math.unit(1.72, "m"),
  22127. weight: math.unit(80, "lb"),
  22128. name: "Back",
  22129. image: {
  22130. source: "./media/characters/voski/back.svg",
  22131. extra: 2104 / 2051,
  22132. bottom: 10.45 / 2113.63
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Normal",
  22139. height: math.unit(1.72, "m")
  22140. },
  22141. {
  22142. name: "Macro",
  22143. height: math.unit(55, "m"),
  22144. default: true
  22145. },
  22146. {
  22147. name: "Macro+",
  22148. height: math.unit(300, "m")
  22149. },
  22150. {
  22151. name: "Macro++",
  22152. height: math.unit(700, "m")
  22153. },
  22154. {
  22155. name: "Macro+++",
  22156. height: math.unit(4500, "m")
  22157. },
  22158. {
  22159. name: "Macro++++",
  22160. height: math.unit(45, "km")
  22161. },
  22162. {
  22163. name: "Macro+++++",
  22164. height: math.unit(1220, "km")
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22170. {
  22171. front: {
  22172. height: math.unit(2.3, "m"),
  22173. weight: math.unit(304, "kg"),
  22174. name: "Front",
  22175. image: {
  22176. source: "./media/characters/icowom-lee/front.svg",
  22177. extra: 985 / 955,
  22178. bottom: 25.4 / 1012
  22179. }
  22180. },
  22181. fronttentacles: {
  22182. height: math.unit(2.3, "m"),
  22183. weight: math.unit(304, "kg"),
  22184. name: "Front-tentacles",
  22185. image: {
  22186. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22187. extra: 985 / 955,
  22188. bottom: 25.4 / 1012
  22189. }
  22190. },
  22191. back: {
  22192. height: math.unit(2.3, "m"),
  22193. weight: math.unit(304, "kg"),
  22194. name: "Back",
  22195. image: {
  22196. source: "./media/characters/icowom-lee/back.svg",
  22197. extra: 975 / 954,
  22198. bottom: 9.5 / 985
  22199. }
  22200. },
  22201. backtentacles: {
  22202. height: math.unit(2.3, "m"),
  22203. weight: math.unit(304, "kg"),
  22204. name: "Back-tentacles",
  22205. image: {
  22206. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22207. extra: 975 / 954,
  22208. bottom: 9.5 / 985
  22209. }
  22210. },
  22211. frontDressed: {
  22212. height: math.unit(2.3, "m"),
  22213. weight: math.unit(304, "kg"),
  22214. name: "Front (Dressed)",
  22215. image: {
  22216. source: "./media/characters/icowom-lee/front-dressed.svg",
  22217. extra: 3076 / 2933,
  22218. bottom: 51.4 / 3125.1889
  22219. }
  22220. },
  22221. rump: {
  22222. height: math.unit(0.776, "meters"),
  22223. name: "Rump",
  22224. image: {
  22225. source: "./media/characters/icowom-lee/rump.svg"
  22226. }
  22227. },
  22228. genitals: {
  22229. height: math.unit(0.78, "meters"),
  22230. name: "Genitals",
  22231. image: {
  22232. source: "./media/characters/icowom-lee/genitals.svg"
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(2.3, "meters"),
  22240. default: true
  22241. },
  22242. {
  22243. name: "Macro",
  22244. height: math.unit(94, "meters"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(22, "meters"),
  22254. weight: math.unit(21000, "kg"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/shock-diamond/front.svg",
  22258. extra: 2204 / 2053,
  22259. bottom: 65 / 2239.47
  22260. }
  22261. },
  22262. frontNude: {
  22263. height: math.unit(22, "meters"),
  22264. weight: math.unit(21000, "kg"),
  22265. name: "Front (Nude)",
  22266. image: {
  22267. source: "./media/characters/shock-diamond/front-nude.svg",
  22268. extra: 2514 / 2285,
  22269. bottom: 13 / 2527.56
  22270. }
  22271. },
  22272. },
  22273. [
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(3, "meters")
  22277. },
  22278. {
  22279. name: "Macro",
  22280. height: math.unit(22, "meters"),
  22281. default: true
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22287. {
  22288. front: {
  22289. height: math.unit(5 + 4 / 12, "feet"),
  22290. weight: math.unit(120, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/rory/front.svg",
  22294. extra: 1318/1241,
  22295. bottom: 42/1360
  22296. }
  22297. },
  22298. back: {
  22299. height: math.unit(5 + 4 / 12, "feet"),
  22300. weight: math.unit(120, "lb"),
  22301. name: "Back",
  22302. image: {
  22303. source: "./media/characters/rory/back.svg",
  22304. extra: 1318/1241,
  22305. bottom: 42/1360
  22306. }
  22307. },
  22308. butt: {
  22309. height: math.unit(1.74, "feet"),
  22310. name: "Butt",
  22311. image: {
  22312. source: "./media/characters/rory/butt.svg"
  22313. }
  22314. },
  22315. dick: {
  22316. height: math.unit(1.02, "feet"),
  22317. name: "Dick",
  22318. image: {
  22319. source: "./media/characters/rory/dick.svg"
  22320. }
  22321. },
  22322. paws: {
  22323. height: math.unit(1, "feet"),
  22324. name: "Paws",
  22325. image: {
  22326. source: "./media/characters/rory/paws.svg"
  22327. }
  22328. },
  22329. frontAlt: {
  22330. height: math.unit(5 + 4 / 12, "feet"),
  22331. weight: math.unit(120, "lb"),
  22332. name: "Front (Alt)",
  22333. image: {
  22334. source: "./media/characters/rory/front-alt.svg",
  22335. extra: 589 / 556,
  22336. bottom: 45.7 / 635.76
  22337. }
  22338. },
  22339. frontAltNude: {
  22340. height: math.unit(5 + 4 / 12, "feet"),
  22341. weight: math.unit(120, "lb"),
  22342. name: "Front (Alt, Nude)",
  22343. image: {
  22344. source: "./media/characters/rory/front-alt-nude.svg",
  22345. extra: 589 / 556,
  22346. bottom: 45.7 / 635.76
  22347. }
  22348. },
  22349. side: {
  22350. height: math.unit(5 + 4 / 12, "feet"),
  22351. weight: math.unit(120, "lb"),
  22352. name: "Side",
  22353. image: {
  22354. source: "./media/characters/rory/side.svg",
  22355. extra: 597 / 564,
  22356. bottom: 55 / 653
  22357. }
  22358. },
  22359. backAlt: {
  22360. height: math.unit(5 + 4 / 12, "feet"),
  22361. weight: math.unit(120, "lb"),
  22362. name: "Back (Alt)",
  22363. image: {
  22364. source: "./media/characters/rory/back-alt.svg",
  22365. extra: 620 / 585,
  22366. bottom: 8.86 / 630.43
  22367. }
  22368. },
  22369. dickAlt: {
  22370. height: math.unit(0.86, "feet"),
  22371. name: "Dick (Alt)",
  22372. image: {
  22373. source: "./media/characters/rory/dick-alt.svg"
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Normal",
  22380. height: math.unit(5 + 4 / 12, "feet"),
  22381. default: true
  22382. },
  22383. {
  22384. name: "Macro",
  22385. height: math.unit(100, "feet")
  22386. },
  22387. {
  22388. name: "Macro+",
  22389. height: math.unit(140, "feet")
  22390. },
  22391. {
  22392. name: "Macro++",
  22393. height: math.unit(300, "feet")
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22399. {
  22400. front: {
  22401. height: math.unit(5 + 9 / 12, "feet"),
  22402. weight: math.unit(190, "lb"),
  22403. name: "Front",
  22404. image: {
  22405. source: "./media/characters/sprisk/front.svg",
  22406. extra: 1225 / 1180,
  22407. bottom: 42.7 / 1266.4
  22408. }
  22409. },
  22410. frontNsfw: {
  22411. height: math.unit(5 + 9 / 12, "feet"),
  22412. weight: math.unit(190, "lb"),
  22413. name: "Front (NSFW)",
  22414. image: {
  22415. source: "./media/characters/sprisk/front-nsfw.svg",
  22416. extra: 1225 / 1180,
  22417. bottom: 42.7 / 1266.4
  22418. }
  22419. },
  22420. back: {
  22421. height: math.unit(5 + 9 / 12, "feet"),
  22422. weight: math.unit(190, "lb"),
  22423. name: "Back",
  22424. image: {
  22425. source: "./media/characters/sprisk/back.svg",
  22426. extra: 1247 / 1200,
  22427. bottom: 5.6 / 1253.04
  22428. }
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Tiny",
  22434. height: math.unit(2, "inches")
  22435. },
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(5 + 9 / 12, "feet"),
  22439. default: true
  22440. },
  22441. {
  22442. name: "Mini Macro",
  22443. height: math.unit(18, "feet")
  22444. },
  22445. {
  22446. name: "Macro",
  22447. height: math.unit(100, "feet")
  22448. },
  22449. {
  22450. name: "MACRO",
  22451. height: math.unit(50, "miles")
  22452. },
  22453. {
  22454. name: "M A C R O",
  22455. height: math.unit(300, "miles")
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22461. {
  22462. side: {
  22463. height: math.unit(15.6, "meters"),
  22464. weight: math.unit(700000, "kg"),
  22465. name: "Side",
  22466. image: {
  22467. source: "./media/characters/bunsen/side.svg",
  22468. extra: 1644 / 358
  22469. }
  22470. },
  22471. foot: {
  22472. height: math.unit(1.611 * 1644 / 358, "meter"),
  22473. name: "Foot",
  22474. image: {
  22475. source: "./media/characters/bunsen/foot.svg"
  22476. }
  22477. },
  22478. },
  22479. [
  22480. {
  22481. name: "Small",
  22482. height: math.unit(10, "feet")
  22483. },
  22484. {
  22485. name: "Normal",
  22486. height: math.unit(15.6, "meters"),
  22487. default: true
  22488. },
  22489. ]
  22490. ))
  22491. characterMakers.push(() => makeCharacter(
  22492. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22493. {
  22494. front: {
  22495. height: math.unit(4 + 11 / 12, "feet"),
  22496. weight: math.unit(140, "lb"),
  22497. name: "Front",
  22498. image: {
  22499. source: "./media/characters/sesh/front.svg",
  22500. extra: 3420 / 3231,
  22501. bottom: 72 / 3949.5
  22502. }
  22503. },
  22504. },
  22505. [
  22506. {
  22507. name: "Normal",
  22508. height: math.unit(4 + 11 / 12, "feet")
  22509. },
  22510. {
  22511. name: "Grown",
  22512. height: math.unit(15, "feet"),
  22513. default: true
  22514. },
  22515. {
  22516. name: "Macro",
  22517. height: math.unit(1500, "feet")
  22518. },
  22519. {
  22520. name: "Megamacro",
  22521. height: math.unit(30, "miles")
  22522. },
  22523. {
  22524. name: "Continental",
  22525. height: math.unit(3000, "miles")
  22526. },
  22527. {
  22528. name: "Gravity Mass",
  22529. height: math.unit(300000, "miles")
  22530. },
  22531. {
  22532. name: "Planet Buster",
  22533. height: math.unit(30000000, "miles")
  22534. },
  22535. {
  22536. name: "Big",
  22537. height: math.unit(3000000000, "miles")
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22543. {
  22544. front: {
  22545. height: math.unit(9, "feet"),
  22546. weight: math.unit(350, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/pepper/front.svg",
  22550. extra: 1448 / 1312,
  22551. bottom: 9.4 / 1457.88
  22552. }
  22553. },
  22554. back: {
  22555. height: math.unit(9, "feet"),
  22556. weight: math.unit(350, "lb"),
  22557. name: "Back",
  22558. image: {
  22559. source: "./media/characters/pepper/back.svg",
  22560. extra: 1423 / 1300,
  22561. bottom: 4.6 / 1429
  22562. }
  22563. },
  22564. maw: {
  22565. height: math.unit(0.932, "feet"),
  22566. name: "Maw",
  22567. image: {
  22568. source: "./media/characters/pepper/maw.svg"
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(9, "feet"),
  22576. default: true
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(6, "feet"),
  22585. weight: math.unit(150, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/maelstrom/front.svg",
  22589. extra: 2100 / 1883,
  22590. bottom: 94 / 2196.7
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Less Kaiju",
  22597. height: math.unit(200, "feet")
  22598. },
  22599. {
  22600. name: "Kaiju",
  22601. height: math.unit(400, "feet"),
  22602. default: true
  22603. },
  22604. {
  22605. name: "Kaiju-er",
  22606. height: math.unit(600, "feet")
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22612. {
  22613. front: {
  22614. height: math.unit(6 + 5 / 12, "feet"),
  22615. weight: math.unit(180, "lb"),
  22616. name: "Front",
  22617. image: {
  22618. source: "./media/characters/lexir/front.svg",
  22619. extra: 180 / 172,
  22620. bottom: 12 / 192
  22621. }
  22622. },
  22623. back: {
  22624. height: math.unit(6 + 5 / 12, "feet"),
  22625. weight: math.unit(180, "lb"),
  22626. name: "Back",
  22627. image: {
  22628. source: "./media/characters/lexir/back.svg",
  22629. extra: 183.84 / 175.5,
  22630. bottom: 3.1 / 187
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Very Smal",
  22637. height: math.unit(1, "nm")
  22638. },
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(6 + 5 / 12, "feet"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Macro",
  22646. height: math.unit(1, "mile")
  22647. },
  22648. {
  22649. name: "Megamacro",
  22650. height: math.unit(50, "miles")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22656. {
  22657. front: {
  22658. height: math.unit(1.5, "meters"),
  22659. weight: math.unit(100, "lb"),
  22660. name: "Front",
  22661. image: {
  22662. source: "./media/characters/maksio/front.svg",
  22663. extra: 1549 / 1531,
  22664. bottom: 123.7 / 1674.5429
  22665. }
  22666. },
  22667. back: {
  22668. height: math.unit(1.5, "meters"),
  22669. weight: math.unit(100, "lb"),
  22670. name: "Back",
  22671. image: {
  22672. source: "./media/characters/maksio/back.svg",
  22673. extra: 1541 / 1509,
  22674. bottom: 97 / 1639
  22675. }
  22676. },
  22677. hand: {
  22678. height: math.unit(0.621, "feet"),
  22679. name: "Hand",
  22680. image: {
  22681. source: "./media/characters/maksio/hand.svg"
  22682. }
  22683. },
  22684. foot: {
  22685. height: math.unit(1.611, "feet"),
  22686. name: "Foot",
  22687. image: {
  22688. source: "./media/characters/maksio/foot.svg"
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Shrunken",
  22695. height: math.unit(10, "cm")
  22696. },
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(150, "cm"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(100, "feet"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/erza-bear/front.svg",
  22712. extra: 2449 / 2390,
  22713. bottom: 46 / 2494
  22714. }
  22715. },
  22716. back: {
  22717. height: math.unit(100, "feet"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/erza-bear/back.svg",
  22721. extra: 2489 / 2430,
  22722. bottom: 85.4 / 2480
  22723. }
  22724. },
  22725. tail: {
  22726. height: math.unit(42, "feet"),
  22727. name: "Tail",
  22728. image: {
  22729. source: "./media/characters/erza-bear/tail.svg"
  22730. }
  22731. },
  22732. tongue: {
  22733. height: math.unit(8, "feet"),
  22734. name: "Tongue",
  22735. image: {
  22736. source: "./media/characters/erza-bear/tongue.svg"
  22737. }
  22738. },
  22739. dick: {
  22740. height: math.unit(10.5, "feet"),
  22741. name: "Dick",
  22742. image: {
  22743. source: "./media/characters/erza-bear/dick.svg"
  22744. }
  22745. },
  22746. dickVertical: {
  22747. height: math.unit(16.9, "feet"),
  22748. name: "Dick (Vertical)",
  22749. image: {
  22750. source: "./media/characters/erza-bear/dick-vertical.svg"
  22751. }
  22752. },
  22753. },
  22754. [
  22755. {
  22756. name: "Macro",
  22757. height: math.unit(100, "feet"),
  22758. default: true
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(172, "cm"),
  22767. weight: math.unit(73, "kg"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/violet-flor/front.svg",
  22771. extra: 1530 / 1442,
  22772. bottom: 61.9 / 1588.8
  22773. }
  22774. },
  22775. back: {
  22776. height: math.unit(180, "cm"),
  22777. weight: math.unit(73, "kg"),
  22778. name: "Back",
  22779. image: {
  22780. source: "./media/characters/violet-flor/back.svg",
  22781. extra: 1692 / 1630,
  22782. bottom: 20 / 1712
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Normal",
  22789. height: math.unit(172, "cm"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(6, "feet"),
  22799. weight: math.unit(220, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/lynn-rhea/front.svg",
  22803. extra: 310 / 273
  22804. }
  22805. },
  22806. back: {
  22807. height: math.unit(6, "feet"),
  22808. weight: math.unit(220, "lb"),
  22809. name: "Back",
  22810. image: {
  22811. source: "./media/characters/lynn-rhea/back.svg",
  22812. extra: 310 / 273
  22813. }
  22814. },
  22815. dicks: {
  22816. height: math.unit(0.9, "feet"),
  22817. name: "Dicks",
  22818. image: {
  22819. source: "./media/characters/lynn-rhea/dicks.svg"
  22820. }
  22821. },
  22822. slit: {
  22823. height: math.unit(0.4, "feet"),
  22824. name: "Slit",
  22825. image: {
  22826. source: "./media/characters/lynn-rhea/slit.svg"
  22827. }
  22828. },
  22829. },
  22830. [
  22831. {
  22832. name: "Micro",
  22833. height: math.unit(1, "inch")
  22834. },
  22835. {
  22836. name: "Macro",
  22837. height: math.unit(60, "feet"),
  22838. default: true
  22839. },
  22840. {
  22841. name: "Megamacro",
  22842. height: math.unit(2, "miles")
  22843. },
  22844. {
  22845. name: "Gigamacro",
  22846. height: math.unit(3, "earths")
  22847. },
  22848. {
  22849. name: "Galactic",
  22850. height: math.unit(0.8, "galaxies")
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22856. {
  22857. front: {
  22858. height: math.unit(1600, "feet"),
  22859. weight: math.unit(85758785169, "kg"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/valathos/front.svg",
  22863. extra: 1451 / 1339
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Macro",
  22870. height: math.unit(1600, "feet"),
  22871. default: true
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(7 + 5 / 12, "feet"),
  22880. weight: math.unit(300, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/azula/front.svg",
  22884. extra: 3208 / 2880,
  22885. bottom: 80.2 / 3277
  22886. }
  22887. },
  22888. back: {
  22889. height: math.unit(7 + 5 / 12, "feet"),
  22890. weight: math.unit(300, "lb"),
  22891. name: "Back",
  22892. image: {
  22893. source: "./media/characters/azula/back.svg",
  22894. extra: 3169 / 2822,
  22895. bottom: 150.6 / 3321
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(7 + 5 / 12, "feet"),
  22903. default: true
  22904. },
  22905. {
  22906. name: "Big",
  22907. height: math.unit(20, "feet")
  22908. },
  22909. ]
  22910. ))
  22911. characterMakers.push(() => makeCharacter(
  22912. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22913. {
  22914. front: {
  22915. height: math.unit(5 + 1 / 12, "feet"),
  22916. weight: math.unit(110, "lb"),
  22917. name: "Front",
  22918. image: {
  22919. source: "./media/characters/rupert/front.svg",
  22920. extra: 1549 / 1495,
  22921. bottom: 54.2 / 1604.4
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(5 + 1 / 12, "feet"),
  22929. default: true
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22935. {
  22936. front: {
  22937. height: math.unit(8 + 4 / 12, "feet"),
  22938. weight: math.unit(350, "lb"),
  22939. name: "Front",
  22940. image: {
  22941. source: "./media/characters/sheera-castellar/front.svg",
  22942. extra: 1957 / 1894,
  22943. bottom: 26.97 / 1975.017
  22944. }
  22945. },
  22946. side: {
  22947. height: math.unit(8 + 4 / 12, "feet"),
  22948. weight: math.unit(350, "lb"),
  22949. name: "Side",
  22950. image: {
  22951. source: "./media/characters/sheera-castellar/side.svg",
  22952. extra: 1957 / 1894
  22953. }
  22954. },
  22955. back: {
  22956. height: math.unit(8 + 4 / 12, "feet"),
  22957. weight: math.unit(350, "lb"),
  22958. name: "Back",
  22959. image: {
  22960. source: "./media/characters/sheera-castellar/back.svg",
  22961. extra: 1957 / 1894
  22962. }
  22963. },
  22964. angled: {
  22965. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22966. weight: math.unit(350, "lb"),
  22967. name: "Angled",
  22968. image: {
  22969. source: "./media/characters/sheera-castellar/angled.svg",
  22970. extra: 1807 / 1707,
  22971. bottom: 68 / 1875
  22972. }
  22973. },
  22974. genitals: {
  22975. height: math.unit(2.2, "feet"),
  22976. name: "Genitals",
  22977. image: {
  22978. source: "./media/characters/sheera-castellar/genitals.svg"
  22979. }
  22980. },
  22981. taur: {
  22982. height: math.unit(10 + 6/12, "feet"),
  22983. name: "Taur",
  22984. image: {
  22985. source: "./media/characters/sheera-castellar/taur.svg",
  22986. extra: 2017/1909,
  22987. bottom: 185/2202
  22988. }
  22989. },
  22990. },
  22991. [
  22992. {
  22993. name: "Normal",
  22994. height: math.unit(8 + 4 / 12, "feet")
  22995. },
  22996. {
  22997. name: "Macro",
  22998. height: math.unit(150, "feet"),
  22999. default: true
  23000. },
  23001. {
  23002. name: "Macro+",
  23003. height: math.unit(800, "feet")
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23009. {
  23010. front: {
  23011. height: math.unit(6, "feet"),
  23012. weight: math.unit(150, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/jaipur/front.svg",
  23016. extra: 3860 / 3731,
  23017. bottom: 287 / 4140
  23018. }
  23019. },
  23020. back: {
  23021. height: math.unit(6, "feet"),
  23022. weight: math.unit(150, "lb"),
  23023. name: "Back",
  23024. image: {
  23025. source: "./media/characters/jaipur/back.svg",
  23026. extra: 4060 / 3930,
  23027. bottom: 151 / 4200
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(1.85, "meters"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Macro",
  23039. height: math.unit(150, "meters")
  23040. },
  23041. {
  23042. name: "Macro+",
  23043. height: math.unit(0.5, "miles")
  23044. },
  23045. {
  23046. name: "Macro++",
  23047. height: math.unit(2.5, "miles")
  23048. },
  23049. {
  23050. name: "Macro+++",
  23051. height: math.unit(12, "miles")
  23052. },
  23053. {
  23054. name: "Macro++++",
  23055. height: math.unit(120, "miles")
  23056. },
  23057. {
  23058. name: "Macro+++++",
  23059. height: math.unit(1200, "miles")
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(6, "feet"),
  23068. weight: math.unit(150, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/sheila-wolf/front.svg",
  23072. extra: 1931 / 1808,
  23073. bottom: 29.5 / 1960
  23074. }
  23075. },
  23076. dick: {
  23077. height: math.unit(1.464, "feet"),
  23078. name: "Dick",
  23079. image: {
  23080. source: "./media/characters/sheila-wolf/dick.svg"
  23081. }
  23082. },
  23083. muzzle: {
  23084. height: math.unit(0.513, "feet"),
  23085. name: "Muzzle",
  23086. image: {
  23087. source: "./media/characters/sheila-wolf/muzzle.svg"
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Macro",
  23094. height: math.unit(70, "feet"),
  23095. default: true
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23101. {
  23102. front: {
  23103. height: math.unit(32, "meters"),
  23104. weight: math.unit(300000, "kg"),
  23105. name: "Front",
  23106. image: {
  23107. source: "./media/characters/almor/front.svg",
  23108. extra: 1408 / 1322,
  23109. bottom: 94.6 / 1506.5
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Macro",
  23116. height: math.unit(32, "meters"),
  23117. default: true
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23123. {
  23124. front: {
  23125. height: math.unit(7, "feet"),
  23126. weight: math.unit(200, "lb"),
  23127. name: "Front",
  23128. image: {
  23129. source: "./media/characters/silver/front.svg",
  23130. extra: 472.1 / 450.5,
  23131. bottom: 26.5 / 499.424
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Normal",
  23138. height: math.unit(7, "feet"),
  23139. default: true
  23140. },
  23141. {
  23142. name: "Macro",
  23143. height: math.unit(800, "feet")
  23144. },
  23145. {
  23146. name: "Megamacro",
  23147. height: math.unit(250, "miles")
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23153. {
  23154. front: {
  23155. height: math.unit(6, "feet"),
  23156. weight: math.unit(150, "lb"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/pliskin/front.svg",
  23160. extra: 1469 / 1359,
  23161. bottom: 70 / 1540
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Micro",
  23168. height: math.unit(3, "inches")
  23169. },
  23170. {
  23171. name: "Normal",
  23172. height: math.unit(5 + 11 / 12, "feet"),
  23173. default: true
  23174. },
  23175. {
  23176. name: "Macro",
  23177. height: math.unit(120, "feet")
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(6, "feet"),
  23186. weight: math.unit(150, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/sammy/front.svg",
  23190. extra: 1193 / 1089,
  23191. bottom: 30.5 / 1226
  23192. }
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Macro",
  23198. height: math.unit(1700, "feet"),
  23199. default: true
  23200. },
  23201. {
  23202. name: "Examacro",
  23203. height: math.unit(2.5e9, "lightyears")
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(21, "meters"),
  23212. weight: math.unit(12, "tonnes"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/kuru/front.svg",
  23216. extra: 4301 / 3785,
  23217. bottom: 371.3 / 4691
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Macro",
  23224. height: math.unit(21, "meters"),
  23225. default: true
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(23, "meters"),
  23234. weight: math.unit(12.2, "tonnes"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/rakka/front.svg",
  23238. extra: 4670 / 4169,
  23239. bottom: 301 / 4968.7
  23240. }
  23241. },
  23242. },
  23243. [
  23244. {
  23245. name: "Macro",
  23246. height: math.unit(23, "meters"),
  23247. default: true
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23253. {
  23254. front: {
  23255. height: math.unit(6, "feet"),
  23256. weight: math.unit(150, "lb"),
  23257. name: "Front",
  23258. image: {
  23259. source: "./media/characters/rhys-feline/front.svg",
  23260. extra: 2488 / 2308,
  23261. bottom: 35.67 / 2519.19
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Really Small",
  23268. height: math.unit(1, "nm")
  23269. },
  23270. {
  23271. name: "Micro",
  23272. height: math.unit(4, "inches")
  23273. },
  23274. {
  23275. name: "Normal",
  23276. height: math.unit(4 + 10 / 12, "feet"),
  23277. default: true
  23278. },
  23279. {
  23280. name: "Macro",
  23281. height: math.unit(100, "feet")
  23282. },
  23283. {
  23284. name: "Megamacto",
  23285. height: math.unit(50, "miles")
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23291. {
  23292. side: {
  23293. height: math.unit(30, "feet"),
  23294. weight: math.unit(35000, "kg"),
  23295. name: "Side",
  23296. image: {
  23297. source: "./media/characters/alydar/side.svg",
  23298. extra: 234 / 222,
  23299. bottom: 6.5 / 241
  23300. }
  23301. },
  23302. front: {
  23303. height: math.unit(30, "feet"),
  23304. weight: math.unit(35000, "kg"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/alydar/front.svg",
  23308. extra: 223.37 / 210.2,
  23309. bottom: 22.3 / 246.76
  23310. }
  23311. },
  23312. top: {
  23313. height: math.unit(64.54, "feet"),
  23314. weight: math.unit(35000, "kg"),
  23315. name: "Top",
  23316. image: {
  23317. source: "./media/characters/alydar/top.svg"
  23318. }
  23319. },
  23320. anthro: {
  23321. height: math.unit(30, "feet"),
  23322. weight: math.unit(9000, "kg"),
  23323. name: "Anthro",
  23324. image: {
  23325. source: "./media/characters/alydar/anthro.svg",
  23326. extra: 432 / 421,
  23327. bottom: 7.18 / 440
  23328. }
  23329. },
  23330. maw: {
  23331. height: math.unit(11.693, "feet"),
  23332. name: "Maw",
  23333. image: {
  23334. source: "./media/characters/alydar/maw.svg"
  23335. }
  23336. },
  23337. head: {
  23338. height: math.unit(11.693, "feet"),
  23339. name: "Head",
  23340. image: {
  23341. source: "./media/characters/alydar/head.svg"
  23342. }
  23343. },
  23344. headAlt: {
  23345. height: math.unit(12.861, "feet"),
  23346. name: "Head (Alt)",
  23347. image: {
  23348. source: "./media/characters/alydar/head-alt.svg"
  23349. }
  23350. },
  23351. wing: {
  23352. height: math.unit(20.712, "feet"),
  23353. name: "Wing",
  23354. image: {
  23355. source: "./media/characters/alydar/wing.svg"
  23356. }
  23357. },
  23358. wingFeather: {
  23359. height: math.unit(9.662, "feet"),
  23360. name: "Wing Feather",
  23361. image: {
  23362. source: "./media/characters/alydar/wing-feather.svg"
  23363. }
  23364. },
  23365. countourFeather: {
  23366. height: math.unit(4.154, "feet"),
  23367. name: "Contour Feather",
  23368. image: {
  23369. source: "./media/characters/alydar/contour-feather.svg"
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Diplomatic",
  23376. height: math.unit(13, "feet"),
  23377. default: true
  23378. },
  23379. {
  23380. name: "Small",
  23381. height: math.unit(30, "feet")
  23382. },
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(95, "feet"),
  23386. default: true
  23387. },
  23388. {
  23389. name: "Large",
  23390. height: math.unit(285, "feet")
  23391. },
  23392. {
  23393. name: "Incomprehensible",
  23394. height: math.unit(450, "megameters")
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23400. {
  23401. side: {
  23402. height: math.unit(11, "feet"),
  23403. weight: math.unit(1750, "kg"),
  23404. name: "Side",
  23405. image: {
  23406. source: "./media/characters/selicia/side.svg",
  23407. extra: 440 / 396,
  23408. bottom: 24.8 / 465.979
  23409. }
  23410. },
  23411. maw: {
  23412. height: math.unit(4.665, "feet"),
  23413. name: "Maw",
  23414. image: {
  23415. source: "./media/characters/selicia/maw.svg"
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(11, "feet"),
  23423. default: true
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23429. {
  23430. side: {
  23431. height: math.unit(2 + 6 / 12, "feet"),
  23432. weight: math.unit(30, "lb"),
  23433. name: "Side",
  23434. image: {
  23435. source: "./media/characters/layla/side.svg",
  23436. extra: 244 / 188,
  23437. bottom: 18.2 / 262.1
  23438. }
  23439. },
  23440. back: {
  23441. height: math.unit(2 + 6 / 12, "feet"),
  23442. weight: math.unit(30, "lb"),
  23443. name: "Back",
  23444. image: {
  23445. source: "./media/characters/layla/back.svg",
  23446. extra: 308 / 241.5,
  23447. bottom: 8.9 / 316.8
  23448. }
  23449. },
  23450. cumming: {
  23451. height: math.unit(2 + 6 / 12, "feet"),
  23452. weight: math.unit(30, "lb"),
  23453. name: "Cumming",
  23454. image: {
  23455. source: "./media/characters/layla/cumming.svg",
  23456. extra: 342 / 279,
  23457. bottom: 595 / 938
  23458. }
  23459. },
  23460. dickFlaccid: {
  23461. height: math.unit(2.595, "feet"),
  23462. name: "Flaccid Genitals",
  23463. image: {
  23464. source: "./media/characters/layla/dick-flaccid.svg"
  23465. }
  23466. },
  23467. dickErect: {
  23468. height: math.unit(2.359, "feet"),
  23469. name: "Erect Genitals",
  23470. image: {
  23471. source: "./media/characters/layla/dick-erect.svg"
  23472. }
  23473. },
  23474. dragon: {
  23475. height: math.unit(40, "feet"),
  23476. name: "Dragon",
  23477. image: {
  23478. source: "./media/characters/layla/dragon.svg",
  23479. extra: 610/535,
  23480. bottom: 367/977
  23481. }
  23482. },
  23483. taur: {
  23484. height: math.unit(30, "feet"),
  23485. name: "Taur",
  23486. image: {
  23487. source: "./media/characters/layla/taur.svg",
  23488. extra: 1268/1199,
  23489. bottom: 112/1380
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Micro",
  23496. height: math.unit(1, "inch")
  23497. },
  23498. {
  23499. name: "Small",
  23500. height: math.unit(1, "foot")
  23501. },
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(2 + 6 / 12, "feet"),
  23505. default: true
  23506. },
  23507. {
  23508. name: "Macro",
  23509. height: math.unit(200, "feet")
  23510. },
  23511. {
  23512. name: "Megamacro",
  23513. height: math.unit(1000, "miles")
  23514. },
  23515. {
  23516. name: "Planetary",
  23517. height: math.unit(8000, "miles")
  23518. },
  23519. {
  23520. name: "True Layla",
  23521. height: math.unit(200000 * 7, "multiverses")
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23527. {
  23528. back: {
  23529. height: math.unit(10.5, "feet"),
  23530. weight: math.unit(800, "lb"),
  23531. name: "Back",
  23532. image: {
  23533. source: "./media/characters/knox/back.svg",
  23534. extra: 1486 / 1089,
  23535. bottom: 107 / 1601.4
  23536. }
  23537. },
  23538. side: {
  23539. height: math.unit(10.5, "feet"),
  23540. weight: math.unit(800, "lb"),
  23541. name: "Side",
  23542. image: {
  23543. source: "./media/characters/knox/side.svg",
  23544. extra: 244 / 218,
  23545. bottom: 14 / 260
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Compact",
  23552. height: math.unit(10.5, "feet"),
  23553. default: true
  23554. },
  23555. {
  23556. name: "Dynamax",
  23557. height: math.unit(210, "feet")
  23558. },
  23559. {
  23560. name: "Full Macro",
  23561. height: math.unit(850, "feet")
  23562. },
  23563. ]
  23564. ))
  23565. characterMakers.push(() => makeCharacter(
  23566. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23567. {
  23568. front: {
  23569. height: math.unit(6, "feet"),
  23570. weight: math.unit(152, "lb"),
  23571. name: "Front",
  23572. image: {
  23573. source: "./media/characters/shin-pikachu/front.svg",
  23574. extra: 1854/1602,
  23575. bottom: 166/2020
  23576. }
  23577. },
  23578. hand: {
  23579. height: math.unit(1.055, "feet"),
  23580. name: "Hand",
  23581. image: {
  23582. source: "./media/characters/shin-pikachu/hand.svg"
  23583. }
  23584. },
  23585. foot: {
  23586. height: math.unit(1.1, "feet"),
  23587. name: "Foot",
  23588. image: {
  23589. source: "./media/characters/shin-pikachu/foot.svg"
  23590. }
  23591. },
  23592. collar: {
  23593. height: math.unit(0.386, "feet"),
  23594. name: "Collar",
  23595. image: {
  23596. source: "./media/characters/shin-pikachu/collar.svg"
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Smallest",
  23603. height: math.unit(0.5, "inches")
  23604. },
  23605. {
  23606. name: "Micro",
  23607. height: math.unit(6, "inches")
  23608. },
  23609. {
  23610. name: "Normal",
  23611. height: math.unit(6, "feet"),
  23612. default: true
  23613. },
  23614. {
  23615. name: "Macro",
  23616. height: math.unit(150, "feet")
  23617. },
  23618. ]
  23619. ))
  23620. characterMakers.push(() => makeCharacter(
  23621. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23622. {
  23623. front: {
  23624. height: math.unit(28, "feet"),
  23625. weight: math.unit(10500, "lb"),
  23626. name: "Front",
  23627. image: {
  23628. source: "./media/characters/kayda/front.svg",
  23629. extra: 1536 / 1428,
  23630. bottom: 68.7 / 1603
  23631. }
  23632. },
  23633. back: {
  23634. height: math.unit(28, "feet"),
  23635. weight: math.unit(10500, "lb"),
  23636. name: "Back",
  23637. image: {
  23638. source: "./media/characters/kayda/back.svg",
  23639. extra: 1557 / 1464,
  23640. bottom: 39.5 / 1597.49
  23641. }
  23642. },
  23643. dick: {
  23644. height: math.unit(3.858, "feet"),
  23645. name: "Dick",
  23646. image: {
  23647. source: "./media/characters/kayda/dick.svg"
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Macro",
  23654. height: math.unit(28, "feet"),
  23655. default: true
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(10 + 11 / 12, "feet"),
  23664. weight: math.unit(1400, "lb"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/brian/front.svg",
  23668. extra: 737 / 692,
  23669. bottom: 55.4 / 785
  23670. }
  23671. },
  23672. },
  23673. [
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(10 + 11 / 12, "feet"),
  23677. default: true
  23678. },
  23679. ]
  23680. ))
  23681. characterMakers.push(() => makeCharacter(
  23682. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23683. {
  23684. front: {
  23685. height: math.unit(5 + 8 / 12, "feet"),
  23686. weight: math.unit(140, "lb"),
  23687. name: "Front",
  23688. image: {
  23689. source: "./media/characters/khemri/front.svg",
  23690. extra: 4780 / 4059,
  23691. bottom: 80.1 / 4859.25
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Micro",
  23698. height: math.unit(6, "inches")
  23699. },
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(5 + 8 / 12, "feet"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23709. {
  23710. front: {
  23711. height: math.unit(13, "feet"),
  23712. weight: math.unit(1700, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/felix-braveheart/front.svg",
  23716. extra: 1222 / 1157,
  23717. bottom: 53.2 / 1280
  23718. }
  23719. },
  23720. back: {
  23721. height: math.unit(13, "feet"),
  23722. weight: math.unit(1700, "lb"),
  23723. name: "Back",
  23724. image: {
  23725. source: "./media/characters/felix-braveheart/back.svg",
  23726. extra: 1277 / 1203,
  23727. bottom: 50.2 / 1327
  23728. }
  23729. },
  23730. feral: {
  23731. height: math.unit(6, "feet"),
  23732. weight: math.unit(400, "lb"),
  23733. name: "Feral",
  23734. image: {
  23735. source: "./media/characters/felix-braveheart/feral.svg",
  23736. extra: 682 / 625,
  23737. bottom: 6.9 / 688
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Normal",
  23744. height: math.unit(13, "feet"),
  23745. default: true
  23746. },
  23747. ]
  23748. ))
  23749. characterMakers.push(() => makeCharacter(
  23750. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23751. {
  23752. side: {
  23753. height: math.unit(5 + 11 / 12, "feet"),
  23754. weight: math.unit(1400, "lb"),
  23755. name: "Side",
  23756. image: {
  23757. source: "./media/characters/shadow-blade/side.svg",
  23758. extra: 1726 / 1267,
  23759. bottom: 58.4 / 1785
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Normal",
  23766. height: math.unit(5 + 11 / 12, "feet"),
  23767. default: true
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(1 + 6 / 12, "feet"),
  23776. weight: math.unit(25, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/karla-halldor/front.svg",
  23780. extra: 1459 / 1383,
  23781. bottom: 12 / 1472
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Normal",
  23788. height: math.unit(1 + 6 / 12, "feet"),
  23789. default: true
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23795. {
  23796. front: {
  23797. height: math.unit(6 + 2 / 12, "feet"),
  23798. weight: math.unit(160, "lb"),
  23799. name: "Front",
  23800. image: {
  23801. source: "./media/characters/ariam/front.svg",
  23802. extra: 714 / 617,
  23803. bottom: 23.4 / 737,
  23804. }
  23805. },
  23806. squatting: {
  23807. height: math.unit(4.1, "feet"),
  23808. weight: math.unit(160, "lb"),
  23809. name: "Squatting",
  23810. image: {
  23811. source: "./media/characters/ariam/squatting.svg",
  23812. extra: 2617 / 2112,
  23813. bottom: 61.2 / 2681,
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(6 + 2 / 12, "feet"),
  23821. default: true
  23822. },
  23823. {
  23824. name: "Normal+",
  23825. height: math.unit(4, "meters")
  23826. },
  23827. {
  23828. name: "Macro",
  23829. height: math.unit(50, "meters")
  23830. },
  23831. {
  23832. name: "Macro+",
  23833. height: math.unit(100, "meters")
  23834. },
  23835. {
  23836. name: "Megamacro",
  23837. height: math.unit(20, "km")
  23838. },
  23839. ]
  23840. ))
  23841. characterMakers.push(() => makeCharacter(
  23842. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23843. {
  23844. front: {
  23845. height: math.unit(1.67, "meters"),
  23846. weight: math.unit(140, "lb"),
  23847. name: "Front",
  23848. image: {
  23849. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23850. extra: 438 / 410,
  23851. bottom: 0.75 / 439
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Shrunken",
  23858. height: math.unit(7.6, "cm")
  23859. },
  23860. {
  23861. name: "Human Scale",
  23862. height: math.unit(1.67, "meters")
  23863. },
  23864. {
  23865. name: "Wolxi Scale",
  23866. height: math.unit(36.7, "meters"),
  23867. default: true
  23868. },
  23869. ]
  23870. ))
  23871. characterMakers.push(() => makeCharacter(
  23872. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23873. {
  23874. front: {
  23875. height: math.unit(1.73, "meters"),
  23876. weight: math.unit(240, "lb"),
  23877. name: "Front",
  23878. image: {
  23879. source: "./media/characters/izue-two-mothers/front.svg",
  23880. extra: 469 / 437,
  23881. bottom: 1.24 / 470.6
  23882. }
  23883. },
  23884. },
  23885. [
  23886. {
  23887. name: "Shrunken",
  23888. height: math.unit(7.86, "cm")
  23889. },
  23890. {
  23891. name: "Human Scale",
  23892. height: math.unit(1.73, "meters")
  23893. },
  23894. {
  23895. name: "Wolxi Scale",
  23896. height: math.unit(38, "meters"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(1.55, "meters"),
  23906. weight: math.unit(120, "lb"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/teeku-love-shack/front.svg",
  23910. extra: 387 / 362,
  23911. bottom: 1.51 / 388
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Shrunken",
  23918. height: math.unit(7, "cm")
  23919. },
  23920. {
  23921. name: "Human Scale",
  23922. height: math.unit(1.55, "meters")
  23923. },
  23924. {
  23925. name: "Wolxi Scale",
  23926. height: math.unit(34.1, "meters"),
  23927. default: true
  23928. },
  23929. ]
  23930. ))
  23931. characterMakers.push(() => makeCharacter(
  23932. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23933. {
  23934. front: {
  23935. height: math.unit(1.83, "meters"),
  23936. weight: math.unit(135, "lb"),
  23937. name: "Front",
  23938. image: {
  23939. source: "./media/characters/dejma-the-red/front.svg",
  23940. extra: 480 / 458,
  23941. bottom: 1.8 / 482
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Shrunken",
  23948. height: math.unit(8.3, "cm")
  23949. },
  23950. {
  23951. name: "Human Scale",
  23952. height: math.unit(1.83, "meters")
  23953. },
  23954. {
  23955. name: "Wolxi Scale",
  23956. height: math.unit(40, "meters"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(1.78, "meters"),
  23966. weight: math.unit(65, "kg"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/aki/front.svg",
  23970. extra: 452 / 415
  23971. }
  23972. },
  23973. frontNsfw: {
  23974. height: math.unit(1.78, "meters"),
  23975. weight: math.unit(65, "kg"),
  23976. name: "Front (NSFW)",
  23977. image: {
  23978. source: "./media/characters/aki/front-nsfw.svg",
  23979. extra: 452 / 415
  23980. }
  23981. },
  23982. back: {
  23983. height: math.unit(1.78, "meters"),
  23984. weight: math.unit(65, "kg"),
  23985. name: "Back",
  23986. image: {
  23987. source: "./media/characters/aki/back.svg",
  23988. extra: 452 / 415
  23989. }
  23990. },
  23991. rump: {
  23992. height: math.unit(2.05, "feet"),
  23993. name: "Rump",
  23994. image: {
  23995. source: "./media/characters/aki/rump.svg"
  23996. }
  23997. },
  23998. dick: {
  23999. height: math.unit(0.95, "feet"),
  24000. name: "Dick",
  24001. image: {
  24002. source: "./media/characters/aki/dick.svg"
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Micro",
  24009. height: math.unit(15, "cm")
  24010. },
  24011. {
  24012. name: "Normal",
  24013. height: math.unit(178, "cm"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Macro",
  24018. height: math.unit(214, "m")
  24019. },
  24020. {
  24021. name: "Macro+",
  24022. height: math.unit(534, "m")
  24023. },
  24024. ]
  24025. ))
  24026. characterMakers.push(() => makeCharacter(
  24027. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24028. {
  24029. front: {
  24030. height: math.unit(5 + 5 / 12, "feet"),
  24031. weight: math.unit(120, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/ari/front.svg",
  24035. extra: 714.5 / 682,
  24036. bottom: 8 / 722.5
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Normal",
  24043. height: math.unit(5 + 5 / 12, "feet")
  24044. },
  24045. {
  24046. name: "Macro",
  24047. height: math.unit(100, "feet"),
  24048. default: true
  24049. },
  24050. {
  24051. name: "Megamacro",
  24052. height: math.unit(100, "miles")
  24053. },
  24054. {
  24055. name: "Gigamacro",
  24056. height: math.unit(80000, "miles")
  24057. },
  24058. ]
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24062. {
  24063. side: {
  24064. height: math.unit(9, "feet"),
  24065. weight: math.unit(400, "kg"),
  24066. name: "Side",
  24067. image: {
  24068. source: "./media/characters/bolt/side.svg",
  24069. extra: 1126 / 896,
  24070. bottom: 60 / 1187.3,
  24071. }
  24072. },
  24073. },
  24074. [
  24075. {
  24076. name: "Micro",
  24077. height: math.unit(5, "inches")
  24078. },
  24079. {
  24080. name: "Normal",
  24081. height: math.unit(9, "feet"),
  24082. default: true
  24083. },
  24084. {
  24085. name: "Macro",
  24086. height: math.unit(700, "feet")
  24087. },
  24088. {
  24089. name: "Max Size",
  24090. height: math.unit(1.52e22, "yottameters")
  24091. },
  24092. ]
  24093. ))
  24094. characterMakers.push(() => makeCharacter(
  24095. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24096. {
  24097. front: {
  24098. height: math.unit(4.53, "meters"),
  24099. weight: math.unit(3, "tons"),
  24100. name: "Front",
  24101. image: {
  24102. source: "./media/characters/draekon-sylviar/front.svg",
  24103. extra: 1228 / 1068,
  24104. bottom: 41 / 1270
  24105. }
  24106. },
  24107. tail: {
  24108. height: math.unit(1.772, "meter"),
  24109. name: "Tail",
  24110. image: {
  24111. source: "./media/characters/draekon-sylviar/tail.svg"
  24112. }
  24113. },
  24114. head: {
  24115. height: math.unit(1.331, "meter"),
  24116. name: "Head",
  24117. image: {
  24118. source: "./media/characters/draekon-sylviar/head.svg"
  24119. }
  24120. },
  24121. hand: {
  24122. height: math.unit(0.564, "meter"),
  24123. name: "Hand",
  24124. image: {
  24125. source: "./media/characters/draekon-sylviar/hand.svg"
  24126. }
  24127. },
  24128. foot: {
  24129. height: math.unit(0.621, "meter"),
  24130. name: "Foot",
  24131. image: {
  24132. source: "./media/characters/draekon-sylviar/foot.svg",
  24133. bottom: 32 / 324
  24134. }
  24135. },
  24136. dick: {
  24137. height: math.unit(61, "cm"),
  24138. name: "Dick",
  24139. image: {
  24140. source: "./media/characters/draekon-sylviar/dick.svg"
  24141. }
  24142. },
  24143. dickseparated: {
  24144. height: math.unit(61, "cm"),
  24145. name: "Dick-separated",
  24146. image: {
  24147. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Small",
  24154. height: math.unit(4.53 / 2, "meters"),
  24155. default: true
  24156. },
  24157. {
  24158. name: "Normal",
  24159. height: math.unit(4.53, "meters"),
  24160. default: true
  24161. },
  24162. {
  24163. name: "Large",
  24164. height: math.unit(4.53 * 2, "meters"),
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(6 + 2 / 12, "feet"),
  24173. weight: math.unit(180, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/brawler/front.svg",
  24177. extra: 3301 / 3027,
  24178. bottom: 138 / 3439
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Normal",
  24185. height: math.unit(6 + 2 / 12, "feet"),
  24186. default: true
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(11, "feet"),
  24195. weight: math.unit(1000, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/alex/front.svg",
  24199. bottom: 44.5 / 620
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Micro",
  24206. height: math.unit(5, "inches")
  24207. },
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(11, "feet"),
  24211. default: true
  24212. },
  24213. {
  24214. name: "Macro",
  24215. height: math.unit(9.5e9, "feet")
  24216. },
  24217. {
  24218. name: "Max Size",
  24219. height: math.unit(1.4e283, "yottameters")
  24220. },
  24221. ]
  24222. ))
  24223. characterMakers.push(() => makeCharacter(
  24224. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24225. {
  24226. female: {
  24227. height: math.unit(29.9, "m"),
  24228. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24229. name: "Female",
  24230. image: {
  24231. source: "./media/characters/zenari/female.svg",
  24232. extra: 3281.6 / 3217,
  24233. bottom: 72.2 / 3353
  24234. }
  24235. },
  24236. male: {
  24237. height: math.unit(27.7, "m"),
  24238. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24239. name: "Male",
  24240. image: {
  24241. source: "./media/characters/zenari/male.svg",
  24242. extra: 3008 / 2991,
  24243. bottom: 54.6 / 3069
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "Macro",
  24250. height: math.unit(29.7, "meters"),
  24251. default: true
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24257. {
  24258. female: {
  24259. height: math.unit(23.8, "m"),
  24260. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24261. name: "Female",
  24262. image: {
  24263. source: "./media/characters/mactarian/female.svg",
  24264. extra: 2662 / 2569,
  24265. bottom: 73 / 2736
  24266. }
  24267. },
  24268. male: {
  24269. height: math.unit(23.8, "m"),
  24270. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24271. name: "Male",
  24272. image: {
  24273. source: "./media/characters/mactarian/male.svg",
  24274. extra: 2673 / 2600,
  24275. bottom: 76 / 2750
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Macro",
  24282. height: math.unit(23.8, "meters"),
  24283. default: true
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24289. {
  24290. female: {
  24291. height: math.unit(19.3, "m"),
  24292. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24293. name: "Female",
  24294. image: {
  24295. source: "./media/characters/umok/female.svg",
  24296. extra: 2186 / 2078,
  24297. bottom: 87 / 2277
  24298. }
  24299. },
  24300. male: {
  24301. height: math.unit(19.5, "m"),
  24302. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24303. name: "Male",
  24304. image: {
  24305. source: "./media/characters/umok/male.svg",
  24306. extra: 2233 / 2140,
  24307. bottom: 24.4 / 2258
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Macro",
  24314. height: math.unit(19.3, "meters"),
  24315. default: true
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24321. {
  24322. female: {
  24323. height: math.unit(26.15, "m"),
  24324. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24325. name: "Female",
  24326. image: {
  24327. source: "./media/characters/joraxian/female.svg",
  24328. extra: 2912 / 2824,
  24329. bottom: 36 / 2956
  24330. }
  24331. },
  24332. male: {
  24333. height: math.unit(25.4, "m"),
  24334. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24335. name: "Male",
  24336. image: {
  24337. source: "./media/characters/joraxian/male.svg",
  24338. extra: 2877 / 2721,
  24339. bottom: 82 / 2967
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Macro",
  24346. height: math.unit(26.15, "meters"),
  24347. default: true
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24353. {
  24354. female: {
  24355. height: math.unit(21.6, "m"),
  24356. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24357. name: "Female",
  24358. image: {
  24359. source: "./media/characters/sthara/female.svg",
  24360. extra: 2516 / 2347,
  24361. bottom: 21.5 / 2537
  24362. }
  24363. },
  24364. male: {
  24365. height: math.unit(24, "m"),
  24366. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24367. name: "Male",
  24368. image: {
  24369. source: "./media/characters/sthara/male.svg",
  24370. extra: 2732 / 2607,
  24371. bottom: 23 / 2732
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Macro",
  24378. height: math.unit(21.6, "meters"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(6 + 4 / 12, "feet"),
  24388. weight: math.unit(175, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/luka-bryzant/front.svg",
  24392. extra: 311 / 289,
  24393. bottom: 4 / 315
  24394. }
  24395. },
  24396. back: {
  24397. height: math.unit(6 + 4 / 12, "feet"),
  24398. weight: math.unit(175, "lb"),
  24399. name: "Back",
  24400. image: {
  24401. source: "./media/characters/luka-bryzant/back.svg",
  24402. extra: 311 / 289,
  24403. bottom: 3.8 / 313.7
  24404. }
  24405. },
  24406. },
  24407. [
  24408. {
  24409. name: "Micro",
  24410. height: math.unit(10, "inches")
  24411. },
  24412. {
  24413. name: "Normal",
  24414. height: math.unit(6 + 4 / 12, "feet"),
  24415. default: true
  24416. },
  24417. {
  24418. name: "Large",
  24419. height: math.unit(12, "feet")
  24420. },
  24421. ]
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24425. {
  24426. front: {
  24427. height: math.unit(5 + 7 / 12, "feet"),
  24428. weight: math.unit(185, "lb"),
  24429. name: "Front",
  24430. image: {
  24431. source: "./media/characters/aman-aquila/front.svg",
  24432. extra: 1013 / 976,
  24433. bottom: 45.6 / 1057
  24434. }
  24435. },
  24436. side: {
  24437. height: math.unit(5 + 7 / 12, "feet"),
  24438. weight: math.unit(185, "lb"),
  24439. name: "Side",
  24440. image: {
  24441. source: "./media/characters/aman-aquila/side.svg",
  24442. extra: 1054 / 1011,
  24443. bottom: 15 / 1070
  24444. }
  24445. },
  24446. back: {
  24447. height: math.unit(5 + 7 / 12, "feet"),
  24448. weight: math.unit(185, "lb"),
  24449. name: "Back",
  24450. image: {
  24451. source: "./media/characters/aman-aquila/back.svg",
  24452. extra: 1026 / 970,
  24453. bottom: 12 / 1039
  24454. }
  24455. },
  24456. head: {
  24457. height: math.unit(1.211, "feet"),
  24458. name: "Head",
  24459. image: {
  24460. source: "./media/characters/aman-aquila/head.svg",
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Minimicro",
  24467. height: math.unit(0.057, "inches")
  24468. },
  24469. {
  24470. name: "Micro",
  24471. height: math.unit(7, "inches")
  24472. },
  24473. {
  24474. name: "Mini",
  24475. height: math.unit(3 + 7 / 12, "feet")
  24476. },
  24477. {
  24478. name: "Normal",
  24479. height: math.unit(5 + 7 / 12, "feet"),
  24480. default: true
  24481. },
  24482. {
  24483. name: "Macro",
  24484. height: math.unit(157 + 7 / 12, "feet")
  24485. },
  24486. {
  24487. name: "Megamacro",
  24488. height: math.unit(1557 + 7 / 12, "feet")
  24489. },
  24490. {
  24491. name: "Gigamacro",
  24492. height: math.unit(15557 + 7 / 12, "feet")
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(3 + 2 / 12, "inches"),
  24501. weight: math.unit(0.3, "ounces"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/hiphae/front.svg",
  24505. extra: 1931 / 1683,
  24506. bottom: 24 / 1955
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(3 + 1 / 2, "inches"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(5 + 10 / 12, "feet"),
  24523. weight: math.unit(165, "lb"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/nicky/front.svg",
  24527. extra: 3144 / 2886,
  24528. bottom: 45.6 / 3192
  24529. }
  24530. },
  24531. back: {
  24532. height: math.unit(5 + 10 / 12, "feet"),
  24533. weight: math.unit(165, "lb"),
  24534. name: "Back",
  24535. image: {
  24536. source: "./media/characters/nicky/back.svg",
  24537. extra: 3055 / 2804,
  24538. bottom: 28.4 / 3087
  24539. }
  24540. },
  24541. frontclothed: {
  24542. height: math.unit(5 + 10 / 12, "feet"),
  24543. weight: math.unit(165, "lb"),
  24544. name: "Front-clothed",
  24545. image: {
  24546. source: "./media/characters/nicky/front-clothed.svg",
  24547. extra: 3184.9 / 2926.9,
  24548. bottom: 86.5 / 3239.9
  24549. }
  24550. },
  24551. foot: {
  24552. height: math.unit(1.16, "feet"),
  24553. name: "Foot",
  24554. image: {
  24555. source: "./media/characters/nicky/foot.svg"
  24556. }
  24557. },
  24558. feet: {
  24559. height: math.unit(1.34, "feet"),
  24560. name: "Feet",
  24561. image: {
  24562. source: "./media/characters/nicky/feet.svg"
  24563. }
  24564. },
  24565. maw: {
  24566. height: math.unit(0.9, "feet"),
  24567. name: "Maw",
  24568. image: {
  24569. source: "./media/characters/nicky/maw.svg"
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(5 + 10 / 12, "feet"),
  24577. default: true
  24578. },
  24579. {
  24580. name: "Macro",
  24581. height: math.unit(60, "feet")
  24582. },
  24583. {
  24584. name: "Megamacro",
  24585. height: math.unit(1, "mile")
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24591. {
  24592. side: {
  24593. height: math.unit(10, "feet"),
  24594. weight: math.unit(600, "lb"),
  24595. name: "Side",
  24596. image: {
  24597. source: "./media/characters/blair/side.svg",
  24598. bottom: 16.6 / 475,
  24599. extra: 458 / 431
  24600. }
  24601. },
  24602. },
  24603. [
  24604. {
  24605. name: "Micro",
  24606. height: math.unit(8, "inches")
  24607. },
  24608. {
  24609. name: "Normal",
  24610. height: math.unit(10, "feet"),
  24611. default: true
  24612. },
  24613. {
  24614. name: "Macro",
  24615. height: math.unit(180, "feet")
  24616. },
  24617. ]
  24618. ))
  24619. characterMakers.push(() => makeCharacter(
  24620. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24621. {
  24622. front: {
  24623. height: math.unit(5 + 4 / 12, "feet"),
  24624. weight: math.unit(125, "lb"),
  24625. name: "Front",
  24626. image: {
  24627. source: "./media/characters/fisher/front.svg",
  24628. extra: 444 / 390,
  24629. bottom: 2 / 444.8
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Micro",
  24636. height: math.unit(4, "inches")
  24637. },
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(5 + 4 / 12, "feet"),
  24641. default: true
  24642. },
  24643. {
  24644. name: "Macro",
  24645. height: math.unit(100, "feet")
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24651. {
  24652. front: {
  24653. height: math.unit(6.71, "feet"),
  24654. weight: math.unit(200, "lb"),
  24655. capacity: math.unit(1000000, "people"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/gliss/front.svg",
  24659. extra: 2347 / 2231,
  24660. bottom: 113 / 2462
  24661. }
  24662. },
  24663. hammerspaceSize: {
  24664. height: math.unit(6.71 * 717, "feet"),
  24665. weight: math.unit(200, "lb"),
  24666. capacity: math.unit(1000000, "people"),
  24667. name: "Hammerspace Size",
  24668. image: {
  24669. source: "./media/characters/gliss/front.svg",
  24670. extra: 2347 / 2231,
  24671. bottom: 113 / 2462
  24672. }
  24673. },
  24674. },
  24675. [
  24676. {
  24677. name: "Normal",
  24678. height: math.unit(6.71, "feet"),
  24679. default: true
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24685. {
  24686. side: {
  24687. height: math.unit(1.44, "m"),
  24688. weight: math.unit(80, "kg"),
  24689. name: "Side",
  24690. image: {
  24691. source: "./media/characters/dune-anderson/side.svg",
  24692. bottom: 49 / 1426
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Wolf-sized",
  24699. height: math.unit(1.44, "meters")
  24700. },
  24701. {
  24702. name: "Normal",
  24703. height: math.unit(5.05, "meters"),
  24704. default: true
  24705. },
  24706. {
  24707. name: "Big",
  24708. height: math.unit(14.4, "meters")
  24709. },
  24710. {
  24711. name: "Huge",
  24712. height: math.unit(144, "meters")
  24713. },
  24714. ]
  24715. ))
  24716. characterMakers.push(() => makeCharacter(
  24717. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24718. {
  24719. front: {
  24720. height: math.unit(7, "feet"),
  24721. weight: math.unit(425, "lb"),
  24722. name: "Front",
  24723. image: {
  24724. source: "./media/characters/hind/front.svg",
  24725. extra: 2091 / 1860,
  24726. bottom: 129 / 2220
  24727. }
  24728. },
  24729. back: {
  24730. height: math.unit(7, "feet"),
  24731. weight: math.unit(425, "lb"),
  24732. name: "Back",
  24733. image: {
  24734. source: "./media/characters/hind/back.svg",
  24735. extra: 2091 / 1860,
  24736. bottom: 24.6 / 2309
  24737. }
  24738. },
  24739. tail: {
  24740. height: math.unit(2.8, "feet"),
  24741. name: "Tail",
  24742. image: {
  24743. source: "./media/characters/hind/tail.svg"
  24744. }
  24745. },
  24746. head: {
  24747. height: math.unit(2.55, "feet"),
  24748. name: "Head",
  24749. image: {
  24750. source: "./media/characters/hind/head.svg"
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "XS",
  24757. height: math.unit(0.7, "feet")
  24758. },
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(7, "feet"),
  24762. default: true
  24763. },
  24764. {
  24765. name: "XL",
  24766. height: math.unit(70, "feet")
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24772. {
  24773. front: {
  24774. height: math.unit(6, "feet"),
  24775. weight: math.unit(150, "lb"),
  24776. name: "Front",
  24777. image: {
  24778. source: "./media/characters/dylan-skaven/front.svg",
  24779. extra: 2318 / 2063,
  24780. bottom: 93.4 / 2410
  24781. }
  24782. },
  24783. },
  24784. [
  24785. {
  24786. name: "Nano",
  24787. height: math.unit(1, "mm")
  24788. },
  24789. {
  24790. name: "Micro",
  24791. height: math.unit(1, "cm")
  24792. },
  24793. {
  24794. name: "Normal",
  24795. height: math.unit(2.1, "meters"),
  24796. default: true
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24802. {
  24803. front: {
  24804. height: math.unit(7 + 5 / 12, "feet"),
  24805. weight: math.unit(357, "lb"),
  24806. name: "Front",
  24807. image: {
  24808. source: "./media/characters/solex-draconov/front.svg",
  24809. extra: 1993 / 1865,
  24810. bottom: 117 / 2111
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Natural Height",
  24817. height: math.unit(7 + 5 / 12, "feet"),
  24818. default: true
  24819. },
  24820. {
  24821. name: "Macro",
  24822. height: math.unit(350, "feet")
  24823. },
  24824. {
  24825. name: "Macro+",
  24826. height: math.unit(1000, "feet")
  24827. },
  24828. {
  24829. name: "Megamacro",
  24830. height: math.unit(20, "km")
  24831. },
  24832. {
  24833. name: "Megamacro+",
  24834. height: math.unit(1000, "km")
  24835. },
  24836. {
  24837. name: "Gigamacro",
  24838. height: math.unit(2.5, "Gm")
  24839. },
  24840. {
  24841. name: "Teramacro",
  24842. height: math.unit(15, "Tm")
  24843. },
  24844. {
  24845. name: "Galactic",
  24846. height: math.unit(30, "Zm")
  24847. },
  24848. {
  24849. name: "Universal",
  24850. height: math.unit(21000, "Ym")
  24851. },
  24852. {
  24853. name: "Omniversal",
  24854. height: math.unit(9.861e50, "Ym")
  24855. },
  24856. {
  24857. name: "Existential",
  24858. height: math.unit(1e300, "meters")
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24864. {
  24865. side: {
  24866. height: math.unit(25, "feet"),
  24867. weight: math.unit(90000, "lb"),
  24868. name: "Side",
  24869. image: {
  24870. source: "./media/characters/mandarax/side.svg",
  24871. extra: 614 / 332,
  24872. bottom: 55 / 630
  24873. }
  24874. },
  24875. head: {
  24876. height: math.unit(11.4, "feet"),
  24877. name: "Head",
  24878. image: {
  24879. source: "./media/characters/mandarax/head.svg"
  24880. }
  24881. },
  24882. belly: {
  24883. height: math.unit(33, "feet"),
  24884. name: "Belly",
  24885. capacity: math.unit(500, "people"),
  24886. image: {
  24887. source: "./media/characters/mandarax/belly.svg"
  24888. }
  24889. },
  24890. dick: {
  24891. height: math.unit(8.46, "feet"),
  24892. name: "Dick",
  24893. image: {
  24894. source: "./media/characters/mandarax/dick.svg"
  24895. }
  24896. },
  24897. top: {
  24898. height: math.unit(28, "meters"),
  24899. name: "Top",
  24900. image: {
  24901. source: "./media/characters/mandarax/top.svg"
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Normal",
  24908. height: math.unit(25, "feet"),
  24909. default: true
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(5, "feet"),
  24918. weight: math.unit(90, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/pixil/front.svg",
  24922. extra: 2000 / 1618,
  24923. bottom: 12.3 / 2011
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(5, "feet"),
  24931. default: true
  24932. },
  24933. {
  24934. name: "Megamacro",
  24935. height: math.unit(10, "miles"),
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(7 + 2 / 12, "feet"),
  24944. weight: math.unit(200, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/angel/front.svg",
  24948. extra: 1830 / 1737,
  24949. bottom: 22.6 / 1854,
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(7 + 2 / 12, "feet"),
  24957. default: true
  24958. },
  24959. {
  24960. name: "Macro",
  24961. height: math.unit(1000, "feet")
  24962. },
  24963. {
  24964. name: "Megamacro",
  24965. height: math.unit(2, "miles")
  24966. },
  24967. {
  24968. name: "Gigamacro",
  24969. height: math.unit(20, "earths")
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(5, "feet"),
  24978. weight: math.unit(180, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/mekana/front.svg",
  24982. extra: 1671 / 1605,
  24983. bottom: 3.5 / 1691
  24984. }
  24985. },
  24986. side: {
  24987. height: math.unit(5, "feet"),
  24988. weight: math.unit(180, "lb"),
  24989. name: "Side",
  24990. image: {
  24991. source: "./media/characters/mekana/side.svg",
  24992. extra: 1671 / 1605,
  24993. bottom: 3.5 / 1691
  24994. }
  24995. },
  24996. back: {
  24997. height: math.unit(5, "feet"),
  24998. weight: math.unit(180, "lb"),
  24999. name: "Back",
  25000. image: {
  25001. source: "./media/characters/mekana/back.svg",
  25002. extra: 1671 / 1605,
  25003. bottom: 3.5 / 1691
  25004. }
  25005. },
  25006. },
  25007. [
  25008. {
  25009. name: "Normal",
  25010. height: math.unit(5, "feet"),
  25011. default: true
  25012. },
  25013. ]
  25014. ))
  25015. characterMakers.push(() => makeCharacter(
  25016. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25017. {
  25018. front: {
  25019. height: math.unit(4 + 6 / 12, "feet"),
  25020. weight: math.unit(80, "lb"),
  25021. name: "Front",
  25022. image: {
  25023. source: "./media/characters/pixie/front.svg",
  25024. extra: 1924 / 1825,
  25025. bottom: 22.4 / 1946
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(4 + 6 / 12, "feet"),
  25033. default: true
  25034. },
  25035. {
  25036. name: "Macro",
  25037. height: math.unit(40, "feet")
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(2.1, "meters"),
  25046. weight: math.unit(200, "lb"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/the-lascivious/front.svg",
  25050. extra: 1 / 0.893,
  25051. bottom: 3.5 / 573.7
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Human Scale",
  25058. height: math.unit(2.1, "meters")
  25059. },
  25060. {
  25061. name: "Wolxi Scale",
  25062. height: math.unit(46.2, "m"),
  25063. default: true
  25064. },
  25065. {
  25066. name: "Boinker of Buildings",
  25067. height: math.unit(10, "km")
  25068. },
  25069. {
  25070. name: "Shagger of Skyscrapers",
  25071. height: math.unit(40, "km")
  25072. },
  25073. {
  25074. name: "Banger of Boroughs",
  25075. height: math.unit(4000, "km")
  25076. },
  25077. {
  25078. name: "Screwer of States",
  25079. height: math.unit(100000, "km")
  25080. },
  25081. {
  25082. name: "Pounder of Planets",
  25083. height: math.unit(2000000, "km")
  25084. },
  25085. ]
  25086. ))
  25087. characterMakers.push(() => makeCharacter(
  25088. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25089. {
  25090. front: {
  25091. height: math.unit(6, "feet"),
  25092. weight: math.unit(150, "lb"),
  25093. name: "Front",
  25094. image: {
  25095. source: "./media/characters/aj/front.svg",
  25096. extra: 2039 / 1562,
  25097. bottom: 40 / 2079
  25098. }
  25099. },
  25100. },
  25101. [
  25102. {
  25103. name: "Normal",
  25104. height: math.unit(11 + 6 / 12, "feet"),
  25105. default: true
  25106. },
  25107. {
  25108. name: "Megamacro",
  25109. height: math.unit(60, "megameters")
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25115. {
  25116. side: {
  25117. height: math.unit(31 + 8 / 12, "feet"),
  25118. weight: math.unit(75000, "kg"),
  25119. name: "Side",
  25120. image: {
  25121. source: "./media/characters/koros/side.svg",
  25122. extra: 1442 / 1297,
  25123. bottom: 122.7 / 1562
  25124. }
  25125. },
  25126. dicksKingsCrown: {
  25127. height: math.unit(6, "feet"),
  25128. name: "Dicks (King's Crown)",
  25129. image: {
  25130. source: "./media/characters/koros/dicks-kings-crown.svg"
  25131. }
  25132. },
  25133. dicksTailSet: {
  25134. height: math.unit(3, "feet"),
  25135. name: "Dicks (Tail Set)",
  25136. image: {
  25137. source: "./media/characters/koros/dicks-tail-set.svg"
  25138. }
  25139. },
  25140. dickCumming: {
  25141. height: math.unit(7.98, "feet"),
  25142. name: "Dick (Cumming)",
  25143. image: {
  25144. source: "./media/characters/koros/dick-cumming.svg"
  25145. }
  25146. },
  25147. dicksBack: {
  25148. height: math.unit(5.9, "feet"),
  25149. name: "Dicks (Back)",
  25150. image: {
  25151. source: "./media/characters/koros/dicks-back.svg"
  25152. }
  25153. },
  25154. dicksFront: {
  25155. height: math.unit(3.72, "feet"),
  25156. name: "Dicks (Front)",
  25157. image: {
  25158. source: "./media/characters/koros/dicks-front.svg"
  25159. }
  25160. },
  25161. dicksPeeking: {
  25162. height: math.unit(3.0, "feet"),
  25163. name: "Dicks (Peeking)",
  25164. image: {
  25165. source: "./media/characters/koros/dicks-peeking.svg"
  25166. }
  25167. },
  25168. eye: {
  25169. height: math.unit(1.7, "feet"),
  25170. name: "Eye",
  25171. image: {
  25172. source: "./media/characters/koros/eye.svg"
  25173. }
  25174. },
  25175. headFront: {
  25176. height: math.unit(11.69, "feet"),
  25177. name: "Head (Front)",
  25178. image: {
  25179. source: "./media/characters/koros/head-front.svg"
  25180. }
  25181. },
  25182. headSide: {
  25183. height: math.unit(14, "feet"),
  25184. name: "Head (Side)",
  25185. image: {
  25186. source: "./media/characters/koros/head-side.svg"
  25187. }
  25188. },
  25189. leg: {
  25190. height: math.unit(17, "feet"),
  25191. name: "Leg",
  25192. image: {
  25193. source: "./media/characters/koros/leg.svg"
  25194. }
  25195. },
  25196. mawSide: {
  25197. height: math.unit(12.8, "feet"),
  25198. name: "Maw (Side)",
  25199. image: {
  25200. source: "./media/characters/koros/maw-side.svg"
  25201. }
  25202. },
  25203. mawSpitting: {
  25204. height: math.unit(17, "feet"),
  25205. name: "Maw (Spitting)",
  25206. image: {
  25207. source: "./media/characters/koros/maw-spitting.svg"
  25208. }
  25209. },
  25210. slit: {
  25211. height: math.unit(2.8, "feet"),
  25212. name: "Slit",
  25213. image: {
  25214. source: "./media/characters/koros/slit.svg"
  25215. }
  25216. },
  25217. stomach: {
  25218. height: math.unit(6.8, "feet"),
  25219. capacity: math.unit(20, "people"),
  25220. name: "Stomach",
  25221. image: {
  25222. source: "./media/characters/koros/stomach.svg"
  25223. }
  25224. },
  25225. wingspanBottom: {
  25226. height: math.unit(114, "feet"),
  25227. name: "Wingspan (Bottom)",
  25228. image: {
  25229. source: "./media/characters/koros/wingspan-bottom.svg"
  25230. }
  25231. },
  25232. wingspanTop: {
  25233. height: math.unit(104, "feet"),
  25234. name: "Wingspan (Top)",
  25235. image: {
  25236. source: "./media/characters/koros/wingspan-top.svg"
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(31 + 8 / 12, "feet"),
  25244. default: true
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25250. {
  25251. front: {
  25252. height: math.unit(18 + 5 / 12, "feet"),
  25253. weight: math.unit(3750, "kg"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/vexx/front.svg",
  25257. extra: 426 / 396,
  25258. bottom: 31.5 / 458
  25259. }
  25260. },
  25261. maw: {
  25262. height: math.unit(6, "feet"),
  25263. name: "Maw",
  25264. image: {
  25265. source: "./media/characters/vexx/maw.svg"
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(18 + 5 / 12, "feet"),
  25273. default: true
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25279. {
  25280. front: {
  25281. height: math.unit(17 + 6 / 12, "feet"),
  25282. weight: math.unit(150, "lb"),
  25283. name: "Front",
  25284. image: {
  25285. source: "./media/characters/baadra/front.svg",
  25286. extra: 3137 / 2890,
  25287. bottom: 168.4 / 3305
  25288. }
  25289. },
  25290. back: {
  25291. height: math.unit(17 + 6 / 12, "feet"),
  25292. weight: math.unit(150, "lb"),
  25293. name: "Back",
  25294. image: {
  25295. source: "./media/characters/baadra/back.svg",
  25296. extra: 3142 / 2890,
  25297. bottom: 220 / 3371
  25298. }
  25299. },
  25300. head: {
  25301. height: math.unit(5.45, "feet"),
  25302. name: "Head",
  25303. image: {
  25304. source: "./media/characters/baadra/head.svg"
  25305. }
  25306. },
  25307. headAngry: {
  25308. height: math.unit(4.95, "feet"),
  25309. name: "Head (Angry)",
  25310. image: {
  25311. source: "./media/characters/baadra/head-angry.svg"
  25312. }
  25313. },
  25314. headOpen: {
  25315. height: math.unit(6, "feet"),
  25316. name: "Head (Open)",
  25317. image: {
  25318. source: "./media/characters/baadra/head-open.svg"
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Normal",
  25325. height: math.unit(17 + 6 / 12, "feet"),
  25326. default: true
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25332. {
  25333. front: {
  25334. height: math.unit(7 + 3 / 12, "feet"),
  25335. weight: math.unit(180, "lb"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/juri/front.svg",
  25339. extra: 1401 / 1237,
  25340. bottom: 18.5 / 1418
  25341. }
  25342. },
  25343. side: {
  25344. height: math.unit(7 + 3 / 12, "feet"),
  25345. weight: math.unit(180, "lb"),
  25346. name: "Side",
  25347. image: {
  25348. source: "./media/characters/juri/side.svg",
  25349. extra: 1424 / 1242,
  25350. bottom: 18.5 / 1447
  25351. }
  25352. },
  25353. sitting: {
  25354. height: math.unit(6, "feet"),
  25355. weight: math.unit(180, "lb"),
  25356. name: "Sitting",
  25357. image: {
  25358. source: "./media/characters/juri/sitting.svg",
  25359. extra: 1270 / 1143,
  25360. bottom: 100 / 1343
  25361. }
  25362. },
  25363. back: {
  25364. height: math.unit(7 + 3 / 12, "feet"),
  25365. weight: math.unit(180, "lb"),
  25366. name: "Back",
  25367. image: {
  25368. source: "./media/characters/juri/back.svg",
  25369. extra: 1377 / 1240,
  25370. bottom: 23.7 / 1405
  25371. }
  25372. },
  25373. maw: {
  25374. height: math.unit(2.8, "feet"),
  25375. name: "Maw",
  25376. image: {
  25377. source: "./media/characters/juri/maw.svg"
  25378. }
  25379. },
  25380. stomach: {
  25381. height: math.unit(0.89, "feet"),
  25382. capacity: math.unit(4, "liters"),
  25383. name: "Stomach",
  25384. image: {
  25385. source: "./media/characters/juri/stomach.svg"
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(7 + 3 / 12, "feet"),
  25393. default: true
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25399. {
  25400. fox: {
  25401. height: math.unit(5 + 6 / 12, "feet"),
  25402. weight: math.unit(140, "lb"),
  25403. name: "Fox",
  25404. image: {
  25405. source: "./media/characters/maxene-sita/fox.svg",
  25406. extra: 146 / 138,
  25407. bottom: 2.1 / 148.19
  25408. }
  25409. },
  25410. foxLaying: {
  25411. height: math.unit(1.70, "feet"),
  25412. weight: math.unit(140, "lb"),
  25413. name: "Fox (Laying)",
  25414. image: {
  25415. source: "./media/characters/maxene-sita/fox-laying.svg",
  25416. extra: 910 / 572,
  25417. bottom: 71 / 981
  25418. }
  25419. },
  25420. kitsune: {
  25421. height: math.unit(10, "feet"),
  25422. weight: math.unit(800, "lb"),
  25423. name: "Kitsune",
  25424. image: {
  25425. source: "./media/characters/maxene-sita/kitsune.svg",
  25426. extra: 185 / 176,
  25427. bottom: 4.7 / 189.9
  25428. }
  25429. },
  25430. hellhound: {
  25431. height: math.unit(10, "feet"),
  25432. weight: math.unit(700, "lb"),
  25433. name: "Hellhound",
  25434. image: {
  25435. source: "./media/characters/maxene-sita/hellhound.svg",
  25436. extra: 1600 / 1545,
  25437. bottom: 81 / 1681
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(5 + 6 / 12, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25451. {
  25452. front: {
  25453. height: math.unit(3 + 4 / 12, "feet"),
  25454. weight: math.unit(70, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/maia/front.svg",
  25458. extra: 227 / 219.5,
  25459. bottom: 40 / 267
  25460. }
  25461. },
  25462. back: {
  25463. height: math.unit(3 + 4 / 12, "feet"),
  25464. weight: math.unit(70, "lb"),
  25465. name: "Back",
  25466. image: {
  25467. source: "./media/characters/maia/back.svg",
  25468. extra: 237 / 225
  25469. }
  25470. },
  25471. },
  25472. [
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(3 + 4 / 12, "feet"),
  25476. default: true
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(5 + 10 / 12, "feet"),
  25485. weight: math.unit(197, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/jabaro/front.svg",
  25489. extra: 225 / 216,
  25490. bottom: 5.06 / 230
  25491. }
  25492. },
  25493. back: {
  25494. height: math.unit(5 + 10 / 12, "feet"),
  25495. weight: math.unit(197, "lb"),
  25496. name: "Back",
  25497. image: {
  25498. source: "./media/characters/jabaro/back.svg",
  25499. extra: 225 / 219,
  25500. bottom: 1.9 / 227
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(5 + 10 / 12, "feet"),
  25508. default: true
  25509. },
  25510. ]
  25511. ))
  25512. characterMakers.push(() => makeCharacter(
  25513. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25514. {
  25515. front: {
  25516. height: math.unit(5 + 8 / 12, "feet"),
  25517. weight: math.unit(139, "lb"),
  25518. name: "Front",
  25519. image: {
  25520. source: "./media/characters/risa/front.svg",
  25521. extra: 270 / 260,
  25522. bottom: 11.2 / 282
  25523. }
  25524. },
  25525. back: {
  25526. height: math.unit(5 + 8 / 12, "feet"),
  25527. weight: math.unit(139, "lb"),
  25528. name: "Back",
  25529. image: {
  25530. source: "./media/characters/risa/back.svg",
  25531. extra: 264 / 255,
  25532. bottom: 4 / 268
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(5 + 8 / 12, "feet"),
  25540. default: true
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25546. {
  25547. front: {
  25548. height: math.unit(2 + 11 / 12, "feet"),
  25549. weight: math.unit(30, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/weatley/front.svg",
  25553. bottom: 10.7 / 414,
  25554. extra: 403.5 / 362
  25555. }
  25556. },
  25557. back: {
  25558. height: math.unit(2 + 11 / 12, "feet"),
  25559. weight: math.unit(30, "lb"),
  25560. name: "Back",
  25561. image: {
  25562. source: "./media/characters/weatley/back.svg",
  25563. bottom: 10.7 / 414,
  25564. extra: 403.5 / 362
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(2 + 11 / 12, "feet"),
  25572. default: true
  25573. },
  25574. ]
  25575. ))
  25576. characterMakers.push(() => makeCharacter(
  25577. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25578. {
  25579. front: {
  25580. height: math.unit(5 + 2 / 12, "feet"),
  25581. weight: math.unit(50, "kg"),
  25582. name: "Front",
  25583. image: {
  25584. source: "./media/characters/mercury-crescent/front.svg",
  25585. extra: 1088 / 1033,
  25586. bottom: 18.9 / 1109
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(5 + 2 / 12, "feet"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(2, "feet"),
  25603. weight: math.unit(15, "kg"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/diamond-jones/front.svg",
  25607. extra: 727/723,
  25608. bottom: 46/773
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(2, "feet"),
  25616. default: true
  25617. },
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(3, "feet"),
  25625. weight: math.unit(30, "kg"),
  25626. name: "Front",
  25627. image: {
  25628. source: "./media/characters/sweet-bit/front.svg",
  25629. extra: 675 / 567,
  25630. bottom: 27.7 / 703
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(3, "feet"),
  25638. default: true
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25644. {
  25645. side: {
  25646. height: math.unit(9.178, "feet"),
  25647. weight: math.unit(500, "lb"),
  25648. name: "Side",
  25649. image: {
  25650. source: "./media/characters/umbrazen/side.svg",
  25651. extra: 1730 / 1473,
  25652. bottom: 34.6 / 1765
  25653. }
  25654. },
  25655. },
  25656. [
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(9.178, "feet"),
  25660. default: true
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25666. {
  25667. front: {
  25668. height: math.unit(10, "feet"),
  25669. weight: math.unit(750, "lb"),
  25670. name: "Front",
  25671. image: {
  25672. source: "./media/characters/arlist/front.svg",
  25673. extra: 961 / 778,
  25674. bottom: 6.2 / 986
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(10, "feet"),
  25682. default: true
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25688. {
  25689. front: {
  25690. height: math.unit(5 + 1 / 12, "feet"),
  25691. weight: math.unit(110, "lb"),
  25692. name: "Front",
  25693. image: {
  25694. source: "./media/characters/aradel/front.svg",
  25695. extra: 324 / 303,
  25696. bottom: 3.6 / 329.4
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(5 + 1 / 12, "feet"),
  25704. default: true
  25705. },
  25706. ]
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(3 + 8 / 12, "feet"),
  25713. weight: math.unit(50, "lb"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/serryn/front.svg",
  25717. extra: 1792 / 1656,
  25718. bottom: 43.5 / 1840
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Normal",
  25725. height: math.unit(3 + 8 / 12, "feet"),
  25726. default: true
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25732. {
  25733. front: {
  25734. height: math.unit(7 + 10 / 12, "feet"),
  25735. weight: math.unit(255, "lb"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/xavier-thyme/front.svg",
  25739. extra: 3733 / 3642,
  25740. bottom: 131 / 3869
  25741. }
  25742. },
  25743. frontRaven: {
  25744. height: math.unit(7 + 10 / 12, "feet"),
  25745. weight: math.unit(255, "lb"),
  25746. name: "Front (Raven)",
  25747. image: {
  25748. source: "./media/characters/xavier-thyme/front-raven.svg",
  25749. extra: 4385 / 3642,
  25750. bottom: 131 / 4517
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(7 + 10 / 12, "feet"),
  25758. default: true
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(1.6, "m"),
  25767. weight: math.unit(50, "kg"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/kiki/front.svg",
  25771. extra: 4682 / 3610,
  25772. bottom: 115 / 4777
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(1.6, "meters"),
  25780. default: true
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25786. {
  25787. front: {
  25788. height: math.unit(50, "m"),
  25789. weight: math.unit(500, "tonnes"),
  25790. name: "Front",
  25791. image: {
  25792. source: "./media/characters/ryoko/front.svg",
  25793. extra: 4632 / 3926,
  25794. bottom: 193 / 4823
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Normal",
  25801. height: math.unit(50, "meters"),
  25802. default: true
  25803. },
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25808. {
  25809. front: {
  25810. height: math.unit(30, "m"),
  25811. weight: math.unit(22, "tonnes"),
  25812. name: "Front",
  25813. image: {
  25814. source: "./media/characters/elio/front.svg",
  25815. extra: 4582 / 3720,
  25816. bottom: 236 / 4828
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(30, "meters"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(6 + 3 / 12, "feet"),
  25833. weight: math.unit(120, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/azura/front.svg",
  25837. extra: 1149 / 1135,
  25838. bottom: 45 / 1194
  25839. }
  25840. },
  25841. frontClothed: {
  25842. height: math.unit(6 + 3 / 12, "feet"),
  25843. weight: math.unit(120, "lb"),
  25844. name: "Front (Clothed)",
  25845. image: {
  25846. source: "./media/characters/azura/front-clothed.svg",
  25847. extra: 1149 / 1135,
  25848. bottom: 45 / 1194
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Normal",
  25855. height: math.unit(6 + 3 / 12, "feet"),
  25856. default: true
  25857. },
  25858. {
  25859. name: "Macro",
  25860. height: math.unit(20 + 6 / 12, "feet")
  25861. },
  25862. {
  25863. name: "Megamacro",
  25864. height: math.unit(12, "miles")
  25865. },
  25866. {
  25867. name: "Gigamacro",
  25868. height: math.unit(10000, "miles")
  25869. },
  25870. {
  25871. name: "Teramacro",
  25872. height: math.unit(900000, "miles")
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25878. {
  25879. front: {
  25880. height: math.unit(12, "feet"),
  25881. weight: math.unit(1, "ton"),
  25882. capacity: math.unit(660000, "gallons"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/zeus/front.svg",
  25886. extra: 5005 / 4717,
  25887. bottom: 363 / 5388
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(12, "feet")
  25895. },
  25896. {
  25897. name: "Preferred Size",
  25898. height: math.unit(0.5, "miles"),
  25899. default: true
  25900. },
  25901. {
  25902. name: "Giga Horse",
  25903. height: math.unit(300, "miles")
  25904. },
  25905. {
  25906. name: "Riding Planets",
  25907. height: math.unit(30, "megameters")
  25908. },
  25909. {
  25910. name: "Cosmic Giant",
  25911. height: math.unit(3, "zettameters")
  25912. },
  25913. {
  25914. name: "Breeding God",
  25915. height: math.unit(9.92e22, "yottameters")
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25921. {
  25922. side: {
  25923. height: math.unit(9, "feet"),
  25924. weight: math.unit(1500, "kg"),
  25925. name: "Side",
  25926. image: {
  25927. source: "./media/characters/fang/side.svg",
  25928. extra: 924 / 866,
  25929. bottom: 47.5 / 972.3
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(9, "feet"),
  25937. default: true
  25938. },
  25939. {
  25940. name: "Macro",
  25941. height: math.unit(75 + 6 / 12, "feet")
  25942. },
  25943. {
  25944. name: "Teramacro",
  25945. height: math.unit(50000, "miles")
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(10, "feet"),
  25954. weight: math.unit(2, "tons"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/rekhit/front.svg",
  25958. extra: 2796 / 2590,
  25959. bottom: 225 / 3022
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(10, "feet"),
  25967. default: true
  25968. },
  25969. {
  25970. name: "Macro",
  25971. height: math.unit(500, "feet")
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(7 + 6.451 / 12, "feet"),
  25980. weight: math.unit(310, "lb"),
  25981. name: "Front",
  25982. image: {
  25983. source: "./media/characters/dahlia-verrick/front.svg",
  25984. extra: 1488 / 1365,
  25985. bottom: 6.2 / 1495
  25986. }
  25987. },
  25988. back: {
  25989. height: math.unit(7 + 6.451 / 12, "feet"),
  25990. weight: math.unit(310, "lb"),
  25991. name: "Back",
  25992. image: {
  25993. source: "./media/characters/dahlia-verrick/back.svg",
  25994. extra: 1472 / 1351,
  25995. bottom: 5.28 / 1477
  25996. }
  25997. },
  25998. frontBusiness: {
  25999. height: math.unit(7 + 6.451 / 12, "feet"),
  26000. weight: math.unit(200, "lb"),
  26001. name: "Front (Business)",
  26002. image: {
  26003. source: "./media/characters/dahlia-verrick/front-business.svg",
  26004. extra: 1478 / 1381,
  26005. bottom: 5.5 / 1484
  26006. }
  26007. },
  26008. frontCasual: {
  26009. height: math.unit(7 + 6.451 / 12, "feet"),
  26010. weight: math.unit(200, "lb"),
  26011. name: "Front (Casual)",
  26012. image: {
  26013. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26014. extra: 1478 / 1381,
  26015. bottom: 5.5 / 1484
  26016. }
  26017. },
  26018. },
  26019. [
  26020. {
  26021. name: "Travel-Sized",
  26022. height: math.unit(7.45, "inches")
  26023. },
  26024. {
  26025. name: "Normal",
  26026. height: math.unit(7 + 6.451 / 12, "feet"),
  26027. default: true
  26028. },
  26029. {
  26030. name: "Hitting the Town",
  26031. height: math.unit(37 + 8 / 12, "feet")
  26032. },
  26033. {
  26034. name: "Stomp in the Suburbs",
  26035. height: math.unit(964 + 9.728 / 12, "feet")
  26036. },
  26037. {
  26038. name: "Sit on the City",
  26039. height: math.unit(61747 + 10.592 / 12, "feet")
  26040. },
  26041. {
  26042. name: "Glomp the Globe",
  26043. height: math.unit(252919327 + 4.832 / 12, "feet")
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(6 + 4 / 12, "feet"),
  26052. weight: math.unit(320, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/balina-mahigan/front.svg",
  26056. extra: 447 / 428,
  26057. bottom: 18 / 466
  26058. }
  26059. },
  26060. back: {
  26061. height: math.unit(6 + 4 / 12, "feet"),
  26062. weight: math.unit(320, "lb"),
  26063. name: "Back",
  26064. image: {
  26065. source: "./media/characters/balina-mahigan/back.svg",
  26066. extra: 445 / 428,
  26067. bottom: 4.07 / 448
  26068. }
  26069. },
  26070. arm: {
  26071. height: math.unit(1.88, "feet"),
  26072. name: "Arm",
  26073. image: {
  26074. source: "./media/characters/balina-mahigan/arm.svg"
  26075. }
  26076. },
  26077. backPort: {
  26078. height: math.unit(0.685, "feet"),
  26079. name: "Back Port",
  26080. image: {
  26081. source: "./media/characters/balina-mahigan/back-port.svg"
  26082. }
  26083. },
  26084. hoofpaw: {
  26085. height: math.unit(1.41, "feet"),
  26086. name: "Hoofpaw",
  26087. image: {
  26088. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26089. }
  26090. },
  26091. leftHandBack: {
  26092. height: math.unit(0.938, "feet"),
  26093. name: "Left Hand (Back)",
  26094. image: {
  26095. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26096. }
  26097. },
  26098. leftHandFront: {
  26099. height: math.unit(0.938, "feet"),
  26100. name: "Left Hand (Front)",
  26101. image: {
  26102. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26103. }
  26104. },
  26105. rightHandBack: {
  26106. height: math.unit(0.95, "feet"),
  26107. name: "Right Hand (Back)",
  26108. image: {
  26109. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26110. }
  26111. },
  26112. rightHandFront: {
  26113. height: math.unit(0.95, "feet"),
  26114. name: "Right Hand (Front)",
  26115. image: {
  26116. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(6 + 4 / 12, "feet"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26130. {
  26131. front: {
  26132. height: math.unit(6, "feet"),
  26133. weight: math.unit(320, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/balina-mejeri/front.svg",
  26137. extra: 517 / 488,
  26138. bottom: 44.2 / 561
  26139. }
  26140. },
  26141. },
  26142. [
  26143. {
  26144. name: "Normal",
  26145. height: math.unit(6 + 4 / 12, "feet")
  26146. },
  26147. {
  26148. name: "Business",
  26149. height: math.unit(155, "feet"),
  26150. default: true
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26156. {
  26157. kneeling: {
  26158. height: math.unit(6 + 4 / 12, "feet"),
  26159. weight: math.unit(300 * 20, "lb"),
  26160. name: "Kneeling",
  26161. image: {
  26162. source: "./media/characters/balbarian/kneeling.svg",
  26163. extra: 922 / 862,
  26164. bottom: 42.4 / 965
  26165. }
  26166. },
  26167. },
  26168. [
  26169. {
  26170. name: "Normal",
  26171. height: math.unit(6 + 4 / 12, "feet")
  26172. },
  26173. {
  26174. name: "Treasured",
  26175. height: math.unit(18 + 9 / 12, "feet"),
  26176. default: true
  26177. },
  26178. {
  26179. name: "Macro",
  26180. height: math.unit(900, "feet")
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26186. {
  26187. front: {
  26188. height: math.unit(6 + 4 / 12, "feet"),
  26189. weight: math.unit(325, "lb"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/balina-amarini/front.svg",
  26193. extra: 415 / 403,
  26194. bottom: 19 / 433.4
  26195. }
  26196. },
  26197. back: {
  26198. height: math.unit(6 + 4 / 12, "feet"),
  26199. weight: math.unit(325, "lb"),
  26200. name: "Back",
  26201. image: {
  26202. source: "./media/characters/balina-amarini/back.svg",
  26203. extra: 415 / 403,
  26204. bottom: 13.5 / 432
  26205. }
  26206. },
  26207. overdrive: {
  26208. height: math.unit(6 + 4 / 12, "feet"),
  26209. weight: math.unit(400, "lb"),
  26210. name: "Overdrive",
  26211. image: {
  26212. source: "./media/characters/balina-amarini/overdrive.svg",
  26213. extra: 269 / 259,
  26214. bottom: 12 / 282
  26215. }
  26216. },
  26217. },
  26218. [
  26219. {
  26220. name: "Boom",
  26221. height: math.unit(9 + 10 / 12, "feet"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Macro",
  26226. height: math.unit(280, "feet")
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26232. {
  26233. goddess: {
  26234. height: math.unit(600, "feet"),
  26235. weight: math.unit(2000000, "tons"),
  26236. name: "Goddess",
  26237. image: {
  26238. source: "./media/characters/lady-kubwa/goddess.svg",
  26239. extra: 1240.5 / 1223,
  26240. bottom: 22 / 1263
  26241. }
  26242. },
  26243. goddesser: {
  26244. height: math.unit(900, "feet"),
  26245. weight: math.unit(20000000, "lb"),
  26246. name: "Goddess-er",
  26247. image: {
  26248. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26249. extra: 899 / 888,
  26250. bottom: 12.6 / 912
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Macro",
  26257. height: math.unit(600, "feet"),
  26258. default: true
  26259. },
  26260. {
  26261. name: "Megamacro",
  26262. height: math.unit(250, "miles")
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26268. {
  26269. front: {
  26270. height: math.unit(7 + 7 / 12, "feet"),
  26271. weight: math.unit(250, "lb"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/tala-grovehorn/front.svg",
  26275. extra: 2636 / 2525,
  26276. bottom: 147 / 2781
  26277. }
  26278. },
  26279. back: {
  26280. height: math.unit(7 + 7 / 12, "feet"),
  26281. weight: math.unit(250, "lb"),
  26282. name: "Back",
  26283. image: {
  26284. source: "./media/characters/tala-grovehorn/back.svg",
  26285. extra: 2635 / 2539,
  26286. bottom: 100 / 2732.8
  26287. }
  26288. },
  26289. mouth: {
  26290. height: math.unit(1.15, "feet"),
  26291. name: "Mouth",
  26292. image: {
  26293. source: "./media/characters/tala-grovehorn/mouth.svg"
  26294. }
  26295. },
  26296. dick: {
  26297. height: math.unit(2.36, "feet"),
  26298. name: "Dick",
  26299. image: {
  26300. source: "./media/characters/tala-grovehorn/dick.svg"
  26301. }
  26302. },
  26303. slit: {
  26304. height: math.unit(0.61, "feet"),
  26305. name: "Slit",
  26306. image: {
  26307. source: "./media/characters/tala-grovehorn/slit.svg"
  26308. }
  26309. },
  26310. },
  26311. [
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26316. {
  26317. front: {
  26318. height: math.unit(7 + 7 / 12, "feet"),
  26319. weight: math.unit(225, "lb"),
  26320. name: "Front",
  26321. image: {
  26322. source: "./media/characters/epona/front.svg",
  26323. extra: 2445 / 2290,
  26324. bottom: 251 / 2696
  26325. }
  26326. },
  26327. back: {
  26328. height: math.unit(7 + 7 / 12, "feet"),
  26329. weight: math.unit(225, "lb"),
  26330. name: "Back",
  26331. image: {
  26332. source: "./media/characters/epona/back.svg",
  26333. extra: 2546 / 2408,
  26334. bottom: 44 / 2589
  26335. }
  26336. },
  26337. genitals: {
  26338. height: math.unit(1.5, "feet"),
  26339. name: "Genitals",
  26340. image: {
  26341. source: "./media/characters/epona/genitals.svg"
  26342. }
  26343. },
  26344. },
  26345. [
  26346. {
  26347. name: "Normal",
  26348. height: math.unit(7 + 7 / 12, "feet"),
  26349. default: true
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26355. {
  26356. front: {
  26357. height: math.unit(7, "feet"),
  26358. weight: math.unit(518, "lb"),
  26359. name: "Front",
  26360. image: {
  26361. source: "./media/characters/avia-bloodbourn/front.svg",
  26362. extra: 1466 / 1350,
  26363. bottom: 65 / 1527
  26364. }
  26365. },
  26366. },
  26367. [
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26372. {
  26373. front: {
  26374. height: math.unit(9.35, "feet"),
  26375. weight: math.unit(600, "lb"),
  26376. name: "Front",
  26377. image: {
  26378. source: "./media/characters/amera/front.svg",
  26379. extra: 891 / 818,
  26380. bottom: 30 / 922.7
  26381. }
  26382. },
  26383. back: {
  26384. height: math.unit(9.35, "feet"),
  26385. weight: math.unit(600, "lb"),
  26386. name: "Back",
  26387. image: {
  26388. source: "./media/characters/amera/back.svg",
  26389. extra: 876 / 824,
  26390. bottom: 6.8 / 884
  26391. }
  26392. },
  26393. dick: {
  26394. height: math.unit(2.14, "feet"),
  26395. name: "Dick",
  26396. image: {
  26397. source: "./media/characters/amera/dick.svg"
  26398. }
  26399. },
  26400. },
  26401. [
  26402. {
  26403. name: "Normal",
  26404. height: math.unit(9.35, "feet"),
  26405. default: true
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26411. {
  26412. kneeling: {
  26413. height: math.unit(3 + 4 / 12, "feet"),
  26414. weight: math.unit(90, "lb"),
  26415. name: "Kneeling",
  26416. image: {
  26417. source: "./media/characters/rosewen/kneeling.svg",
  26418. extra: 1835 / 1571,
  26419. bottom: 27.7 / 1862
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Normal",
  26426. height: math.unit(3 + 4 / 12, "feet"),
  26427. default: true
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26433. {
  26434. front: {
  26435. height: math.unit(5 + 10 / 12, "feet"),
  26436. weight: math.unit(200, "lb"),
  26437. name: "Front",
  26438. image: {
  26439. source: "./media/characters/sabah/front.svg",
  26440. extra: 849 / 763,
  26441. bottom: 33.9 / 881
  26442. }
  26443. },
  26444. },
  26445. [
  26446. {
  26447. name: "Normal",
  26448. height: math.unit(5 + 10 / 12, "feet"),
  26449. default: true
  26450. },
  26451. ]
  26452. ))
  26453. characterMakers.push(() => makeCharacter(
  26454. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26455. {
  26456. front: {
  26457. height: math.unit(3 + 5 / 12, "feet"),
  26458. weight: math.unit(40, "kg"),
  26459. name: "Front",
  26460. image: {
  26461. source: "./media/characters/purple-flame/front.svg",
  26462. extra: 1577 / 1412,
  26463. bottom: 97 / 1694
  26464. }
  26465. },
  26466. frontDressed: {
  26467. height: math.unit(3 + 5 / 12, "feet"),
  26468. weight: math.unit(40, "kg"),
  26469. name: "Front (Dressed)",
  26470. image: {
  26471. source: "./media/characters/purple-flame/front-dressed.svg",
  26472. extra: 1577 / 1412,
  26473. bottom: 97 / 1694
  26474. }
  26475. },
  26476. headphones: {
  26477. height: math.unit(0.85, "feet"),
  26478. name: "Headphones",
  26479. image: {
  26480. source: "./media/characters/purple-flame/headphones.svg"
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Really Small",
  26487. height: math.unit(5, "cm")
  26488. },
  26489. {
  26490. name: "Micro",
  26491. height: math.unit(1 + 5 / 12, "feet")
  26492. },
  26493. {
  26494. name: "Normal",
  26495. height: math.unit(3 + 5 / 12, "feet"),
  26496. default: true
  26497. },
  26498. {
  26499. name: "Minimacro",
  26500. height: math.unit(125, "feet")
  26501. },
  26502. {
  26503. name: "Macro",
  26504. height: math.unit(0.5, "miles")
  26505. },
  26506. {
  26507. name: "Megamacro",
  26508. height: math.unit(50, "miles")
  26509. },
  26510. {
  26511. name: "Gigantic",
  26512. height: math.unit(750, "miles")
  26513. },
  26514. {
  26515. name: "Planetary",
  26516. height: math.unit(15000, "miles")
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26522. {
  26523. front: {
  26524. height: math.unit(14, "feet"),
  26525. weight: math.unit(959, "lb"),
  26526. name: "Front",
  26527. image: {
  26528. source: "./media/characters/arsenal/front.svg",
  26529. extra: 2357 / 2157,
  26530. bottom: 93 / 2458
  26531. }
  26532. },
  26533. },
  26534. [
  26535. {
  26536. name: "Normal",
  26537. height: math.unit(14, "feet"),
  26538. default: true
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(6, "feet"),
  26547. weight: math.unit(150, "lb"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/adira/front.svg",
  26551. extra: 1078 / 1029,
  26552. bottom: 87 / 1166
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Micro",
  26559. height: math.unit(4, "inches"),
  26560. default: true
  26561. },
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(50, "feet")
  26565. },
  26566. ]
  26567. ))
  26568. characterMakers.push(() => makeCharacter(
  26569. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26570. {
  26571. front: {
  26572. height: math.unit(16, "feet"),
  26573. weight: math.unit(1000, "lb"),
  26574. name: "Front",
  26575. image: {
  26576. source: "./media/characters/grim/front.svg",
  26577. extra: 622 / 614,
  26578. bottom: 18.1 / 642
  26579. }
  26580. },
  26581. back: {
  26582. height: math.unit(16, "feet"),
  26583. weight: math.unit(1000, "lb"),
  26584. name: "Back",
  26585. image: {
  26586. source: "./media/characters/grim/back.svg",
  26587. extra: 610.6 / 602,
  26588. bottom: 40.8 / 652
  26589. }
  26590. },
  26591. hunched: {
  26592. height: math.unit(9.75, "feet"),
  26593. weight: math.unit(1000, "lb"),
  26594. name: "Hunched",
  26595. image: {
  26596. source: "./media/characters/grim/hunched.svg",
  26597. extra: 304 / 297,
  26598. bottom: 35.4 / 394
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Normal",
  26605. height: math.unit(16, "feet"),
  26606. default: true
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(2.3, "meters"),
  26615. weight: math.unit(300, "lb"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/sinja/front-sfw.svg",
  26619. extra: 1393 / 1294,
  26620. bottom: 70 / 1463
  26621. }
  26622. },
  26623. frontNsfw: {
  26624. height: math.unit(2.3, "meters"),
  26625. weight: math.unit(300, "lb"),
  26626. name: "Front (NSFW)",
  26627. image: {
  26628. source: "./media/characters/sinja/front-nsfw.svg",
  26629. extra: 1393 / 1294,
  26630. bottom: 70 / 1463
  26631. }
  26632. },
  26633. back: {
  26634. height: math.unit(2.3, "meters"),
  26635. weight: math.unit(300, "lb"),
  26636. name: "Back",
  26637. image: {
  26638. source: "./media/characters/sinja/back.svg",
  26639. extra: 1393 / 1294,
  26640. bottom: 70 / 1463
  26641. }
  26642. },
  26643. head: {
  26644. height: math.unit(1.771, "feet"),
  26645. name: "Head",
  26646. image: {
  26647. source: "./media/characters/sinja/head.svg"
  26648. }
  26649. },
  26650. slit: {
  26651. height: math.unit(0.8, "feet"),
  26652. name: "Slit",
  26653. image: {
  26654. source: "./media/characters/sinja/slit.svg"
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(2.3, "meters")
  26662. },
  26663. {
  26664. name: "Macro",
  26665. height: math.unit(91, "meters"),
  26666. default: true
  26667. },
  26668. {
  26669. name: "Megamacro",
  26670. height: math.unit(91440, "meters")
  26671. },
  26672. {
  26673. name: "Gigamacro",
  26674. height: math.unit(60960000, "meters")
  26675. },
  26676. {
  26677. name: "Teramacro",
  26678. height: math.unit(9144000000, "meters")
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(1.7, "meters"),
  26687. weight: math.unit(130, "lb"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/kyu/front.svg",
  26691. extra: 415 / 395,
  26692. bottom: 5 / 420
  26693. }
  26694. },
  26695. head: {
  26696. height: math.unit(1.75, "feet"),
  26697. name: "Head",
  26698. image: {
  26699. source: "./media/characters/kyu/head.svg"
  26700. }
  26701. },
  26702. foot: {
  26703. height: math.unit(0.81, "feet"),
  26704. name: "Foot",
  26705. image: {
  26706. source: "./media/characters/kyu/foot.svg"
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(1.7, "meters")
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(131, "feet"),
  26718. default: true
  26719. },
  26720. {
  26721. name: "Megamacro",
  26722. height: math.unit(91440, "meters")
  26723. },
  26724. {
  26725. name: "Gigamacro",
  26726. height: math.unit(60960000, "meters")
  26727. },
  26728. {
  26729. name: "Teramacro",
  26730. height: math.unit(9144000000, "meters")
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(7 + 1 / 12, "feet"),
  26739. weight: math.unit(250, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/joey/front.svg",
  26743. extra: 1791 / 1537,
  26744. bottom: 28 / 1816
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Micro",
  26751. height: math.unit(3, "inches")
  26752. },
  26753. {
  26754. name: "Normal",
  26755. height: math.unit(7 + 1 / 12, "feet"),
  26756. default: true
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(165, "cm"),
  26765. weight: math.unit(140, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/sam-evans/front.svg",
  26769. extra: 3417 / 3230,
  26770. bottom: 41.3 / 3417
  26771. }
  26772. },
  26773. frontSixTails: {
  26774. height: math.unit(165, "cm"),
  26775. weight: math.unit(140, "lb"),
  26776. name: "Front-six-tails",
  26777. image: {
  26778. source: "./media/characters/sam-evans/front-six-tails.svg",
  26779. extra: 3417 / 3230,
  26780. bottom: 41.3 / 3417
  26781. }
  26782. },
  26783. back: {
  26784. height: math.unit(165, "cm"),
  26785. weight: math.unit(140, "lb"),
  26786. name: "Back",
  26787. image: {
  26788. source: "./media/characters/sam-evans/back.svg",
  26789. extra: 3227 / 3032,
  26790. bottom: 6.8 / 3234
  26791. }
  26792. },
  26793. face: {
  26794. height: math.unit(0.68, "feet"),
  26795. name: "Face",
  26796. image: {
  26797. source: "./media/characters/sam-evans/face.svg"
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Normal",
  26804. height: math.unit(165, "cm"),
  26805. default: true
  26806. },
  26807. {
  26808. name: "Macro",
  26809. height: math.unit(100, "meters")
  26810. },
  26811. {
  26812. name: "Macro+",
  26813. height: math.unit(800, "meters")
  26814. },
  26815. {
  26816. name: "Macro++",
  26817. height: math.unit(3, "km")
  26818. },
  26819. {
  26820. name: "Macro+++",
  26821. height: math.unit(30, "km")
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(10, "feet"),
  26830. weight: math.unit(750, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/juliet-a/front.svg",
  26834. extra: 1766 / 1720,
  26835. bottom: 43 / 1809
  26836. }
  26837. },
  26838. back: {
  26839. height: math.unit(10, "feet"),
  26840. weight: math.unit(750, "lb"),
  26841. name: "Back",
  26842. image: {
  26843. source: "./media/characters/juliet-a/back.svg",
  26844. extra: 1781 / 1734,
  26845. bottom: 35 / 1810,
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(10, "feet"),
  26853. default: true
  26854. },
  26855. {
  26856. name: "Dragon Form",
  26857. height: math.unit(250, "feet")
  26858. },
  26859. {
  26860. name: "Macro",
  26861. height: math.unit(1000, "feet")
  26862. },
  26863. {
  26864. name: "Megamacro",
  26865. height: math.unit(10000, "feet")
  26866. }
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26871. {
  26872. regular: {
  26873. height: math.unit(7 + 3 / 12, "feet"),
  26874. weight: math.unit(260, "lb"),
  26875. name: "Regular",
  26876. image: {
  26877. source: "./media/characters/wild/regular.svg",
  26878. extra: 97.45 / 92,
  26879. bottom: 6.8 / 104.3
  26880. }
  26881. },
  26882. biggums: {
  26883. height: math.unit(8 + 6 / 12, "feet"),
  26884. weight: math.unit(425, "lb"),
  26885. name: "Biggums",
  26886. image: {
  26887. source: "./media/characters/wild/biggums.svg",
  26888. extra: 97.45 / 92,
  26889. bottom: 7.5 / 132.34
  26890. }
  26891. },
  26892. mawRegular: {
  26893. height: math.unit(1.24, "feet"),
  26894. name: "Maw (Regular)",
  26895. image: {
  26896. source: "./media/characters/wild/maw.svg"
  26897. }
  26898. },
  26899. mawBiggums: {
  26900. height: math.unit(1.47, "feet"),
  26901. name: "Maw (Biggums)",
  26902. image: {
  26903. source: "./media/characters/wild/maw.svg"
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(7 + 3 / 12, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26917. {
  26918. front: {
  26919. height: math.unit(2.5, "meters"),
  26920. weight: math.unit(200, "kg"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/vidar/front.svg",
  26924. extra: 2994 / 2795,
  26925. bottom: 56 / 3061
  26926. }
  26927. },
  26928. back: {
  26929. height: math.unit(2.5, "meters"),
  26930. weight: math.unit(200, "kg"),
  26931. name: "Back",
  26932. image: {
  26933. source: "./media/characters/vidar/back.svg",
  26934. extra: 3131 / 2928,
  26935. bottom: 13.5 / 3141.5
  26936. }
  26937. },
  26938. feral: {
  26939. height: math.unit(2.5, "meters"),
  26940. weight: math.unit(2000, "kg"),
  26941. name: "Feral",
  26942. image: {
  26943. source: "./media/characters/vidar/feral.svg",
  26944. extra: 2790 / 1765,
  26945. bottom: 6 / 2796
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(2.5, "meters"),
  26953. default: true
  26954. },
  26955. {
  26956. name: "Macro",
  26957. height: math.unit(100, "meters")
  26958. },
  26959. ]
  26960. ))
  26961. characterMakers.push(() => makeCharacter(
  26962. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26963. {
  26964. front: {
  26965. height: math.unit(5 + 9 / 12, "feet"),
  26966. weight: math.unit(120, "lb"),
  26967. name: "Front",
  26968. image: {
  26969. source: "./media/characters/ash/front.svg",
  26970. extra: 2189 / 1961,
  26971. bottom: 5.2 / 2194
  26972. }
  26973. },
  26974. },
  26975. [
  26976. {
  26977. name: "Normal",
  26978. height: math.unit(5 + 9 / 12, "feet"),
  26979. default: true
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26985. {
  26986. front: {
  26987. height: math.unit(9, "feet"),
  26988. weight: math.unit(10000, "lb"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/gygabite/front.svg",
  26992. bottom: 31.7 / 537.8,
  26993. extra: 505 / 370
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Normal",
  27000. height: math.unit(9, "feet"),
  27001. default: true
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(12, "feet"),
  27010. weight: math.unit(35000, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/p0tat0/front.svg",
  27014. extra: 1065 / 921,
  27015. bottom: 55.7 / 1121.25
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Normal",
  27022. height: math.unit(12, "feet"),
  27023. default: true
  27024. },
  27025. ]
  27026. ))
  27027. characterMakers.push(() => makeCharacter(
  27028. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27029. {
  27030. side: {
  27031. height: math.unit(6.5, "feet"),
  27032. weight: math.unit(800, "lb"),
  27033. name: "Side",
  27034. image: {
  27035. source: "./media/characters/dusk/side.svg",
  27036. extra: 615 / 373,
  27037. bottom: 53 / 664
  27038. }
  27039. },
  27040. sitting: {
  27041. height: math.unit(7, "feet"),
  27042. weight: math.unit(800, "lb"),
  27043. name: "Sitting",
  27044. image: {
  27045. source: "./media/characters/dusk/sitting.svg",
  27046. extra: 753 / 425,
  27047. bottom: 33 / 774
  27048. }
  27049. },
  27050. head: {
  27051. height: math.unit(6.1, "feet"),
  27052. name: "Head",
  27053. image: {
  27054. source: "./media/characters/dusk/head.svg"
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(7, "feet"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27068. {
  27069. front: {
  27070. height: math.unit(15, "feet"),
  27071. weight: math.unit(7000, "lb"),
  27072. name: "Front",
  27073. image: {
  27074. source: "./media/characters/jay-direwolf/front.svg",
  27075. extra: 1810 / 1732,
  27076. bottom: 66 / 1892
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Normal",
  27083. height: math.unit(15, "feet"),
  27084. default: true
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(4 + 9 / 12, "feet"),
  27093. weight: math.unit(130, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/anchovie/front.svg",
  27097. extra: 382 / 350,
  27098. bottom: 25 / 409
  27099. }
  27100. },
  27101. back: {
  27102. height: math.unit(4 + 9 / 12, "feet"),
  27103. weight: math.unit(130, "lb"),
  27104. name: "Back",
  27105. image: {
  27106. source: "./media/characters/anchovie/back.svg",
  27107. extra: 385 / 352,
  27108. bottom: 16.6 / 402
  27109. }
  27110. },
  27111. frontDressed: {
  27112. height: math.unit(4 + 9 / 12, "feet"),
  27113. weight: math.unit(130, "lb"),
  27114. name: "Front (Dressed)",
  27115. image: {
  27116. source: "./media/characters/anchovie/front-dressed.svg",
  27117. extra: 382 / 350,
  27118. bottom: 25 / 409
  27119. }
  27120. },
  27121. backDressed: {
  27122. height: math.unit(4 + 9 / 12, "feet"),
  27123. weight: math.unit(130, "lb"),
  27124. name: "Back (Dressed)",
  27125. image: {
  27126. source: "./media/characters/anchovie/back-dressed.svg",
  27127. extra: 385 / 352,
  27128. bottom: 16.6 / 402
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Micro",
  27135. height: math.unit(6.4, "inches")
  27136. },
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(4 + 9 / 12, "feet"),
  27140. default: true
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(2, "meters"),
  27149. weight: math.unit(180, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/acidrenamon/front.svg",
  27153. extra: 987 / 890,
  27154. bottom: 22.8 / 1009
  27155. }
  27156. },
  27157. back: {
  27158. height: math.unit(2, "meters"),
  27159. weight: math.unit(180, "lb"),
  27160. name: "Back",
  27161. image: {
  27162. source: "./media/characters/acidrenamon/back.svg",
  27163. extra: 983 / 891,
  27164. bottom: 8.4 / 992
  27165. }
  27166. },
  27167. head: {
  27168. height: math.unit(1.92, "feet"),
  27169. name: "Head",
  27170. image: {
  27171. source: "./media/characters/acidrenamon/head.svg"
  27172. }
  27173. },
  27174. rump: {
  27175. height: math.unit(1.72, "feet"),
  27176. name: "Rump",
  27177. image: {
  27178. source: "./media/characters/acidrenamon/rump.svg"
  27179. }
  27180. },
  27181. tail: {
  27182. height: math.unit(4.2, "feet"),
  27183. name: "Tail",
  27184. image: {
  27185. source: "./media/characters/acidrenamon/tail.svg"
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(2, "meters"),
  27193. default: true
  27194. },
  27195. {
  27196. name: "Minimacro",
  27197. height: math.unit(7, "meters")
  27198. },
  27199. {
  27200. name: "Macro",
  27201. height: math.unit(200, "meters")
  27202. },
  27203. {
  27204. name: "Gigamacro",
  27205. height: math.unit(0.2, "earths")
  27206. },
  27207. ]
  27208. ))
  27209. characterMakers.push(() => makeCharacter(
  27210. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27211. {
  27212. front: {
  27213. height: math.unit(6, "feet"),
  27214. weight: math.unit(150, "lb"),
  27215. name: "Front",
  27216. image: {
  27217. source: "./media/characters/kenzie-lee/front.svg",
  27218. extra: 1525 / 1465,
  27219. bottom: 45 / 1570
  27220. }
  27221. },
  27222. side: {
  27223. height: math.unit(6, "feet"),
  27224. weight: math.unit(150, "lb"),
  27225. name: "Side",
  27226. image: {
  27227. source: "./media/characters/kenzie-lee/side.svg",
  27228. extra: 5505 / 5383,
  27229. bottom: 60 / 5573
  27230. }
  27231. },
  27232. paw: {
  27233. height: math.unit(0.57, "feet"),
  27234. name: "Paw",
  27235. image: {
  27236. source: "./media/characters/kenzie-lee/paw.svg"
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(152, "feet"),
  27244. default: true
  27245. },
  27246. {
  27247. name: "Megamacro",
  27248. height: math.unit(7, "miles")
  27249. },
  27250. {
  27251. name: "Gigamacro",
  27252. height: math.unit(8000, "miles")
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27258. {
  27259. side: {
  27260. height: math.unit(6, "feet"),
  27261. weight: math.unit(150, "lb"),
  27262. name: "Side",
  27263. image: {
  27264. source: "./media/characters/withers/side.svg",
  27265. extra: 1830 / 1728,
  27266. bottom: 96 / 1927
  27267. }
  27268. },
  27269. front: {
  27270. height: math.unit(6, "feet"),
  27271. weight: math.unit(150, "lb"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/withers/front.svg",
  27275. extra: 1514 / 1438,
  27276. bottom: 118 / 1632
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Macro",
  27283. height: math.unit(168, "feet"),
  27284. default: true
  27285. },
  27286. {
  27287. name: "Megamacro",
  27288. height: math.unit(15, "miles")
  27289. }
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27294. {
  27295. front: {
  27296. height: math.unit(6 + 7 / 12, "feet"),
  27297. weight: math.unit(250, "lb"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/nemoskii/front.svg",
  27301. extra: 2270 / 1734,
  27302. bottom: 86 / 2354
  27303. }
  27304. },
  27305. back: {
  27306. height: math.unit(6 + 7 / 12, "feet"),
  27307. weight: math.unit(250, "lb"),
  27308. name: "Back",
  27309. image: {
  27310. source: "./media/characters/nemoskii/back.svg",
  27311. extra: 1845 / 1788,
  27312. bottom: 10.5 / 1852
  27313. }
  27314. },
  27315. head: {
  27316. height: math.unit(1.31, "feet"),
  27317. name: "Head",
  27318. image: {
  27319. source: "./media/characters/nemoskii/head.svg"
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Micro",
  27326. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27327. },
  27328. {
  27329. name: "Normal",
  27330. height: math.unit(6 + 7 / 12, "feet"),
  27331. default: true
  27332. },
  27333. {
  27334. name: "Macro",
  27335. height: math.unit((6 + 7 / 12) * 150, "feet")
  27336. },
  27337. {
  27338. name: "Macro+",
  27339. height: math.unit((6 + 7 / 12) * 500, "feet")
  27340. },
  27341. {
  27342. name: "Megamacro",
  27343. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27344. },
  27345. ]
  27346. ))
  27347. characterMakers.push(() => makeCharacter(
  27348. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27349. {
  27350. front: {
  27351. height: math.unit(1, "mile"),
  27352. weight: math.unit(265261.9, "lb"),
  27353. name: "Front",
  27354. image: {
  27355. source: "./media/characters/shui/front.svg",
  27356. extra: 1633 / 1564,
  27357. bottom: 91.5 / 1726
  27358. }
  27359. },
  27360. },
  27361. [
  27362. {
  27363. name: "Macro",
  27364. height: math.unit(1, "mile"),
  27365. default: true
  27366. },
  27367. ]
  27368. ))
  27369. characterMakers.push(() => makeCharacter(
  27370. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27371. {
  27372. front: {
  27373. height: math.unit(12 + 6 / 12, "feet"),
  27374. weight: math.unit(1342, "lb"),
  27375. name: "Front",
  27376. image: {
  27377. source: "./media/characters/arokh-takakura/front.svg",
  27378. extra: 1089 / 1043,
  27379. bottom: 77.4 / 1176.7
  27380. }
  27381. },
  27382. back: {
  27383. height: math.unit(12 + 6 / 12, "feet"),
  27384. weight: math.unit(1342, "lb"),
  27385. name: "Back",
  27386. image: {
  27387. source: "./media/characters/arokh-takakura/back.svg",
  27388. extra: 1046 / 1019,
  27389. bottom: 102 / 1150
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Big",
  27396. height: math.unit(12 + 6 / 12, "feet"),
  27397. default: true
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27403. {
  27404. front: {
  27405. height: math.unit(5 + 6 / 12, "feet"),
  27406. weight: math.unit(150, "lb"),
  27407. name: "Front",
  27408. image: {
  27409. source: "./media/characters/theo/front.svg",
  27410. extra: 1184 / 1131,
  27411. bottom: 7.4 / 1191
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Micro",
  27418. height: math.unit(5, "inches")
  27419. },
  27420. {
  27421. name: "Normal",
  27422. height: math.unit(5 + 6 / 12, "feet"),
  27423. default: true
  27424. },
  27425. ]
  27426. ))
  27427. characterMakers.push(() => makeCharacter(
  27428. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27429. {
  27430. front: {
  27431. height: math.unit(5 + 9 / 12, "feet"),
  27432. weight: math.unit(130, "lb"),
  27433. name: "Front",
  27434. image: {
  27435. source: "./media/characters/cecelia-swift/front.svg",
  27436. extra: 502 / 484,
  27437. bottom: 23 / 523
  27438. }
  27439. },
  27440. back: {
  27441. height: math.unit(5 + 9 / 12, "feet"),
  27442. weight: math.unit(130, "lb"),
  27443. name: "Back",
  27444. image: {
  27445. source: "./media/characters/cecelia-swift/back.svg",
  27446. extra: 499 / 485,
  27447. bottom: 12 / 511
  27448. }
  27449. },
  27450. head: {
  27451. height: math.unit(0.90, "feet"),
  27452. name: "Head",
  27453. image: {
  27454. source: "./media/characters/cecelia-swift/head.svg"
  27455. }
  27456. },
  27457. rump: {
  27458. height: math.unit(1.75, "feet"),
  27459. name: "Rump",
  27460. image: {
  27461. source: "./media/characters/cecelia-swift/rump.svg"
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Normal",
  27468. height: math.unit(5 + 9 / 12, "feet"),
  27469. default: true
  27470. },
  27471. {
  27472. name: "Big",
  27473. height: math.unit(50, "feet")
  27474. },
  27475. {
  27476. name: "Macro",
  27477. height: math.unit(100, "feet")
  27478. },
  27479. {
  27480. name: "Macro+",
  27481. height: math.unit(500, "feet")
  27482. },
  27483. {
  27484. name: "Macro++",
  27485. height: math.unit(1000, "feet")
  27486. },
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27491. {
  27492. front: {
  27493. height: math.unit(6, "feet"),
  27494. weight: math.unit(150, "lb"),
  27495. name: "Front",
  27496. image: {
  27497. source: "./media/characters/kaunan/front.svg",
  27498. extra: 2890 / 2523,
  27499. bottom: 49 / 2939
  27500. }
  27501. },
  27502. },
  27503. [
  27504. {
  27505. name: "Macro",
  27506. height: math.unit(150, "feet"),
  27507. default: true
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27513. {
  27514. front: {
  27515. height: math.unit(175, "cm"),
  27516. weight: math.unit(60, "kg"),
  27517. name: "Front",
  27518. image: {
  27519. source: "./media/characters/fei/front.svg",
  27520. extra: 1873/1723,
  27521. bottom: 53/1926
  27522. }
  27523. },
  27524. },
  27525. [
  27526. {
  27527. name: "Mortal",
  27528. height: math.unit(175, "cm")
  27529. },
  27530. {
  27531. name: "Normal",
  27532. height: math.unit(3500, "m"),
  27533. default: true
  27534. },
  27535. {
  27536. name: "Stroll",
  27537. height: math.unit(17.5, "km")
  27538. },
  27539. {
  27540. name: "Showoff",
  27541. height: math.unit(175, "km")
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(7, "feet"),
  27550. weight: math.unit(1000, "kg"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/edrax/front.svg",
  27554. extra: 2838 / 2550,
  27555. bottom: 130 / 2968
  27556. }
  27557. },
  27558. },
  27559. [
  27560. {
  27561. name: "Small",
  27562. height: math.unit(7, "feet")
  27563. },
  27564. {
  27565. name: "Normal",
  27566. height: math.unit(1500, "meters")
  27567. },
  27568. {
  27569. name: "Mega",
  27570. height: math.unit(12000000, "km"),
  27571. default: true
  27572. },
  27573. {
  27574. name: "Megamacro",
  27575. height: math.unit(10600000, "lightyears")
  27576. },
  27577. {
  27578. name: "Hypermacro",
  27579. height: math.unit(256, "yottameters")
  27580. },
  27581. ]
  27582. ))
  27583. characterMakers.push(() => makeCharacter(
  27584. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27585. {
  27586. front: {
  27587. height: math.unit(10, "feet"),
  27588. weight: math.unit(750, "lb"),
  27589. name: "Front",
  27590. image: {
  27591. source: "./media/characters/clove/front.svg",
  27592. extra: 2031 / 1860,
  27593. bottom: 47.8 / 2080
  27594. }
  27595. },
  27596. back: {
  27597. height: math.unit(10, "feet"),
  27598. weight: math.unit(750, "lb"),
  27599. name: "Back",
  27600. image: {
  27601. source: "./media/characters/clove/back.svg",
  27602. extra: 2025 / 1859,
  27603. bottom: 46 / 2071
  27604. }
  27605. },
  27606. },
  27607. [
  27608. {
  27609. name: "Normal",
  27610. height: math.unit(10, "feet"),
  27611. default: true
  27612. },
  27613. ]
  27614. ))
  27615. characterMakers.push(() => makeCharacter(
  27616. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27617. {
  27618. front: {
  27619. height: math.unit(4, "feet"),
  27620. weight: math.unit(50, "lb"),
  27621. name: "Front",
  27622. image: {
  27623. source: "./media/characters/alex-rabbit/front.svg",
  27624. extra: 507 / 458,
  27625. bottom: 18.5 / 527
  27626. }
  27627. },
  27628. back: {
  27629. height: math.unit(4, "feet"),
  27630. weight: math.unit(50, "lb"),
  27631. name: "Back",
  27632. image: {
  27633. source: "./media/characters/alex-rabbit/back.svg",
  27634. extra: 502 / 460,
  27635. bottom: 18.9 / 521
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(4, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(1 + 3 / 12, "feet"),
  27652. weight: math.unit(80, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/zander-rose/front.svg",
  27656. extra: 916 / 797,
  27657. bottom: 17 / 933
  27658. }
  27659. },
  27660. back: {
  27661. height: math.unit(1 + 3 / 12, "feet"),
  27662. weight: math.unit(80, "lb"),
  27663. name: "Back",
  27664. image: {
  27665. source: "./media/characters/zander-rose/back.svg",
  27666. extra: 903 / 779,
  27667. bottom: 31 / 934
  27668. }
  27669. },
  27670. },
  27671. [
  27672. {
  27673. name: "Normal",
  27674. height: math.unit(1 + 3 / 12, "feet"),
  27675. default: true
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27681. {
  27682. anthro: {
  27683. height: math.unit(6, "feet"),
  27684. weight: math.unit(150, "lb"),
  27685. name: "Anthro",
  27686. image: {
  27687. source: "./media/characters/razz/anthro.svg",
  27688. extra: 1437 / 1343,
  27689. bottom: 48 / 1485
  27690. }
  27691. },
  27692. feral: {
  27693. height: math.unit(6, "feet"),
  27694. weight: math.unit(150, "lb"),
  27695. name: "Feral",
  27696. image: {
  27697. source: "./media/characters/razz/feral.svg",
  27698. extra: 2569 / 1385,
  27699. bottom: 95 / 2664
  27700. }
  27701. },
  27702. },
  27703. [
  27704. {
  27705. name: "Normal",
  27706. height: math.unit(6, "feet"),
  27707. default: true
  27708. },
  27709. ]
  27710. ))
  27711. characterMakers.push(() => makeCharacter(
  27712. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27713. {
  27714. front: {
  27715. height: math.unit(9 + 4 / 12, "feet"),
  27716. weight: math.unit(500, "lb"),
  27717. name: "Front",
  27718. image: {
  27719. source: "./media/characters/morrigan/front.svg",
  27720. extra: 2707 / 2579,
  27721. bottom: 156 / 2863
  27722. }
  27723. },
  27724. },
  27725. [
  27726. {
  27727. name: "Normal",
  27728. height: math.unit(9 + 4 / 12, "feet"),
  27729. default: true
  27730. },
  27731. ]
  27732. ))
  27733. characterMakers.push(() => makeCharacter(
  27734. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27735. {
  27736. front: {
  27737. height: math.unit(5, "stories"),
  27738. weight: math.unit(4000, "lb"),
  27739. name: "Front",
  27740. image: {
  27741. source: "./media/characters/jenene/front.svg",
  27742. extra: 1780 / 1710,
  27743. bottom: 57 / 1837
  27744. }
  27745. },
  27746. },
  27747. [
  27748. {
  27749. name: "Normal",
  27750. height: math.unit(5, "stories"),
  27751. default: true
  27752. },
  27753. ]
  27754. ))
  27755. characterMakers.push(() => makeCharacter(
  27756. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27757. {
  27758. taurSfw: {
  27759. height: math.unit(10, "meters"),
  27760. weight: math.unit(17500, "kg"),
  27761. name: "Taur",
  27762. image: {
  27763. source: "./media/characters/faey/taur-sfw.svg",
  27764. extra: 1200 / 968,
  27765. bottom: 41 / 1241
  27766. }
  27767. },
  27768. chestmaw: {
  27769. height: math.unit(2.01, "meters"),
  27770. name: "Chestmaw",
  27771. image: {
  27772. source: "./media/characters/faey/chestmaw.svg"
  27773. }
  27774. },
  27775. foot: {
  27776. height: math.unit(2.43, "meters"),
  27777. name: "Foot",
  27778. image: {
  27779. source: "./media/characters/faey/foot.svg"
  27780. }
  27781. },
  27782. jaws: {
  27783. height: math.unit(1.66, "meters"),
  27784. name: "Jaws",
  27785. image: {
  27786. source: "./media/characters/faey/jaws.svg"
  27787. }
  27788. },
  27789. tongues: {
  27790. height: math.unit(2.01, "meters"),
  27791. name: "Tongues",
  27792. image: {
  27793. source: "./media/characters/faey/tongues.svg"
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Small",
  27800. height: math.unit(10, "meters"),
  27801. default: true
  27802. },
  27803. {
  27804. name: "Big",
  27805. height: math.unit(500000, "km")
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27811. {
  27812. front: {
  27813. height: math.unit(7, "feet"),
  27814. weight: math.unit(275, "lb"),
  27815. name: "Front",
  27816. image: {
  27817. source: "./media/characters/roku/front.svg",
  27818. extra: 903 / 878,
  27819. bottom: 37 / 940
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Normal",
  27826. height: math.unit(7, "feet"),
  27827. default: true
  27828. },
  27829. {
  27830. name: "Macro",
  27831. height: math.unit(500, "feet")
  27832. },
  27833. {
  27834. name: "Megamacro",
  27835. height: math.unit(200, "miles")
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(6 + 2 / 12, "feet"),
  27844. weight: math.unit(150, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/lira/front.svg",
  27848. extra: 1727 / 1605,
  27849. bottom: 26 / 1753
  27850. }
  27851. },
  27852. back: {
  27853. height: math.unit(6 + 2 / 12, "feet"),
  27854. weight: math.unit(150, "lb"),
  27855. name: "Back",
  27856. image: {
  27857. source: "./media/characters/lira/back.svg",
  27858. extra: 1713/1621,
  27859. bottom: 20/1733
  27860. }
  27861. },
  27862. hand: {
  27863. height: math.unit(0.75, "feet"),
  27864. name: "Hand",
  27865. image: {
  27866. source: "./media/characters/lira/hand.svg"
  27867. }
  27868. },
  27869. maw: {
  27870. height: math.unit(0.65, "feet"),
  27871. name: "Maw",
  27872. image: {
  27873. source: "./media/characters/lira/maw.svg"
  27874. }
  27875. },
  27876. pawDigi: {
  27877. height: math.unit(1.6, "feet"),
  27878. name: "Paw Digi",
  27879. image: {
  27880. source: "./media/characters/lira/paw-digi.svg"
  27881. }
  27882. },
  27883. pawPlanti: {
  27884. height: math.unit(1.4, "feet"),
  27885. name: "Paw Planti",
  27886. image: {
  27887. source: "./media/characters/lira/paw-planti.svg"
  27888. }
  27889. },
  27890. },
  27891. [
  27892. {
  27893. name: "Normal",
  27894. height: math.unit(6 + 2 / 12, "feet"),
  27895. default: true
  27896. },
  27897. {
  27898. name: "Macro",
  27899. height: math.unit(100, "feet")
  27900. },
  27901. {
  27902. name: "Macro²",
  27903. height: math.unit(1600, "feet")
  27904. },
  27905. {
  27906. name: "Planetary",
  27907. height: math.unit(20, "earths")
  27908. },
  27909. ]
  27910. ))
  27911. characterMakers.push(() => makeCharacter(
  27912. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27913. {
  27914. front: {
  27915. height: math.unit(6, "feet"),
  27916. weight: math.unit(150, "lb"),
  27917. name: "Front",
  27918. image: {
  27919. source: "./media/characters/hadjet/front.svg",
  27920. extra: 1480 / 1346,
  27921. bottom: 26 / 1506
  27922. }
  27923. },
  27924. frontNsfw: {
  27925. height: math.unit(6, "feet"),
  27926. weight: math.unit(150, "lb"),
  27927. name: "Front (NSFW)",
  27928. image: {
  27929. source: "./media/characters/hadjet/front-nsfw.svg",
  27930. extra: 1440 / 1358,
  27931. bottom: 52 / 1492
  27932. }
  27933. },
  27934. },
  27935. [
  27936. {
  27937. name: "Macro",
  27938. height: math.unit(10, "stories"),
  27939. default: true
  27940. },
  27941. {
  27942. name: "Megamacro",
  27943. height: math.unit(1.5, "miles")
  27944. },
  27945. {
  27946. name: "Megamacro+",
  27947. height: math.unit(5, "miles")
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27953. {
  27954. side: {
  27955. height: math.unit(106, "feet"),
  27956. weight: math.unit(500, "tonnes"),
  27957. name: "Side",
  27958. image: {
  27959. source: "./media/characters/kodran/side.svg",
  27960. extra: 553 / 480,
  27961. bottom: 33 / 586
  27962. }
  27963. },
  27964. front: {
  27965. height: math.unit(132, "feet"),
  27966. weight: math.unit(500, "tonnes"),
  27967. name: "Front",
  27968. image: {
  27969. source: "./media/characters/kodran/front.svg",
  27970. extra: 667 / 643,
  27971. bottom: 42 / 709
  27972. }
  27973. },
  27974. flying: {
  27975. height: math.unit(350, "feet"),
  27976. weight: math.unit(500, "tonnes"),
  27977. name: "Flying",
  27978. image: {
  27979. source: "./media/characters/kodran/flying.svg"
  27980. }
  27981. },
  27982. foot: {
  27983. height: math.unit(33, "feet"),
  27984. name: "Foot",
  27985. image: {
  27986. source: "./media/characters/kodran/foot.svg"
  27987. }
  27988. },
  27989. footFront: {
  27990. height: math.unit(19, "feet"),
  27991. name: "Foot (Front)",
  27992. image: {
  27993. source: "./media/characters/kodran/foot-front.svg",
  27994. extra: 261 / 261,
  27995. bottom: 91 / 352
  27996. }
  27997. },
  27998. headFront: {
  27999. height: math.unit(53, "feet"),
  28000. name: "Head (Front)",
  28001. image: {
  28002. source: "./media/characters/kodran/head-front.svg"
  28003. }
  28004. },
  28005. headSide: {
  28006. height: math.unit(65, "feet"),
  28007. name: "Head (Side)",
  28008. image: {
  28009. source: "./media/characters/kodran/head-side.svg"
  28010. }
  28011. },
  28012. throat: {
  28013. height: math.unit(79, "feet"),
  28014. name: "Throat",
  28015. image: {
  28016. source: "./media/characters/kodran/throat.svg"
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Large",
  28023. height: math.unit(106, "feet"),
  28024. default: true
  28025. },
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28030. {
  28031. side: {
  28032. height: math.unit(11, "feet"),
  28033. weight: math.unit(150, "lb"),
  28034. name: "Side",
  28035. image: {
  28036. source: "./media/characters/pyxaron/side.svg",
  28037. extra: 305 / 195,
  28038. bottom: 17 / 322
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Normal",
  28045. height: math.unit(11, "feet"),
  28046. default: true
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(6, "feet"),
  28055. weight: math.unit(150, "lb"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/meep/front.svg",
  28059. extra: 88 / 80,
  28060. bottom: 6 / 94
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Fun Sized",
  28067. height: math.unit(2, "inches"),
  28068. default: true
  28069. },
  28070. {
  28071. name: "Friend Sized",
  28072. height: math.unit(8, "inches")
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(15, "feet"),
  28081. weight: math.unit(2500, "lb"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/holly-rabbit/front.svg",
  28085. extra: 1433 / 1233,
  28086. bottom: 125 / 1558
  28087. }
  28088. },
  28089. dick: {
  28090. height: math.unit(4.6, "feet"),
  28091. name: "Dick",
  28092. image: {
  28093. source: "./media/characters/holly-rabbit/dick.svg"
  28094. }
  28095. },
  28096. },
  28097. [
  28098. {
  28099. name: "Normal",
  28100. height: math.unit(15, "feet"),
  28101. default: true
  28102. },
  28103. {
  28104. name: "Macro",
  28105. height: math.unit(250, "feet")
  28106. },
  28107. {
  28108. name: "Macro+",
  28109. height: math.unit(2500, "feet")
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28115. {
  28116. front: {
  28117. height: math.unit(3.02, "meters"),
  28118. weight: math.unit(500, "kg"),
  28119. name: "Front",
  28120. image: {
  28121. source: "./media/characters/drena/front.svg",
  28122. extra: 282 / 243,
  28123. bottom: 8 / 290
  28124. }
  28125. },
  28126. side: {
  28127. height: math.unit(3.02, "meters"),
  28128. weight: math.unit(500, "kg"),
  28129. name: "Side",
  28130. image: {
  28131. source: "./media/characters/drena/side.svg",
  28132. extra: 280 / 245,
  28133. bottom: 10 / 290
  28134. }
  28135. },
  28136. back: {
  28137. height: math.unit(3.02, "meters"),
  28138. weight: math.unit(500, "kg"),
  28139. name: "Back",
  28140. image: {
  28141. source: "./media/characters/drena/back.svg",
  28142. extra: 278 / 243,
  28143. bottom: 2 / 280
  28144. }
  28145. },
  28146. foot: {
  28147. height: math.unit(0.75, "meters"),
  28148. name: "Foot",
  28149. image: {
  28150. source: "./media/characters/drena/foot.svg"
  28151. }
  28152. },
  28153. maw: {
  28154. height: math.unit(0.82, "meters"),
  28155. name: "Maw",
  28156. image: {
  28157. source: "./media/characters/drena/maw.svg"
  28158. }
  28159. },
  28160. rump: {
  28161. height: math.unit(0.93, "meters"),
  28162. name: "Rump",
  28163. image: {
  28164. source: "./media/characters/drena/rump.svg"
  28165. }
  28166. },
  28167. },
  28168. [
  28169. {
  28170. name: "Normal",
  28171. height: math.unit(3.02, "meters"),
  28172. default: true
  28173. },
  28174. ]
  28175. ))
  28176. characterMakers.push(() => makeCharacter(
  28177. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28178. {
  28179. front: {
  28180. height: math.unit(6 + 4 / 12, "feet"),
  28181. weight: math.unit(250, "lb"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/remmyzilla/front.svg",
  28185. extra: 4033 / 3588,
  28186. bottom: 123 / 4156
  28187. }
  28188. },
  28189. back: {
  28190. height: math.unit(6 + 4 / 12, "feet"),
  28191. weight: math.unit(250, "lb"),
  28192. name: "Back",
  28193. image: {
  28194. source: "./media/characters/remmyzilla/back.svg",
  28195. extra: 2687 / 2555,
  28196. bottom: 48 / 2735
  28197. }
  28198. },
  28199. paw: {
  28200. height: math.unit(1.73, "feet"),
  28201. name: "Paw",
  28202. image: {
  28203. source: "./media/characters/remmyzilla/paw.svg"
  28204. }
  28205. },
  28206. maw: {
  28207. height: math.unit(1.73, "feet"),
  28208. name: "Maw",
  28209. image: {
  28210. source: "./media/characters/remmyzilla/maw.svg"
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Normal",
  28217. height: math.unit(6 + 4 / 12, "feet")
  28218. },
  28219. {
  28220. name: "Minimacro",
  28221. height: math.unit(12 + 8 / 12, "feet")
  28222. },
  28223. {
  28224. name: "Normal",
  28225. height: math.unit(640, "feet"),
  28226. default: true
  28227. },
  28228. {
  28229. name: "Megamacro",
  28230. height: math.unit(6400, "feet")
  28231. },
  28232. {
  28233. name: "Gigamacro",
  28234. height: math.unit(64000, "miles")
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(2.5, "meters"),
  28243. weight: math.unit(300, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/lawrence/front.svg",
  28247. extra: 357 / 335,
  28248. bottom: 30 / 387
  28249. }
  28250. },
  28251. back: {
  28252. height: math.unit(2.5, "meters"),
  28253. weight: math.unit(300, "lb"),
  28254. name: "Back",
  28255. image: {
  28256. source: "./media/characters/lawrence/back.svg",
  28257. extra: 357 / 338,
  28258. bottom: 16 / 373
  28259. }
  28260. },
  28261. head: {
  28262. height: math.unit(0.9, "meter"),
  28263. name: "Head",
  28264. image: {
  28265. source: "./media/characters/lawrence/head.svg"
  28266. }
  28267. },
  28268. maw: {
  28269. height: math.unit(0.7, "meter"),
  28270. name: "Maw",
  28271. image: {
  28272. source: "./media/characters/lawrence/maw.svg"
  28273. }
  28274. },
  28275. footBottom: {
  28276. height: math.unit(0.5, "meter"),
  28277. name: "Foot (Bottom)",
  28278. image: {
  28279. source: "./media/characters/lawrence/foot-bottom.svg"
  28280. }
  28281. },
  28282. footTop: {
  28283. height: math.unit(0.5, "meter"),
  28284. name: "Foot (Top)",
  28285. image: {
  28286. source: "./media/characters/lawrence/foot-top.svg"
  28287. }
  28288. },
  28289. },
  28290. [
  28291. {
  28292. name: "Normal",
  28293. height: math.unit(2.5, "meters"),
  28294. default: true
  28295. },
  28296. {
  28297. name: "Macro",
  28298. height: math.unit(95, "meters")
  28299. },
  28300. {
  28301. name: "Megamacro",
  28302. height: math.unit(150, "km")
  28303. },
  28304. ]
  28305. ))
  28306. characterMakers.push(() => makeCharacter(
  28307. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28308. {
  28309. front: {
  28310. height: math.unit(4.2, "meters"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/sydney/front.svg",
  28314. extra: 1323 / 1277,
  28315. bottom: 111 / 1434
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(4.2, "meters"),
  28323. default: true
  28324. },
  28325. ]
  28326. ))
  28327. characterMakers.push(() => makeCharacter(
  28328. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28329. {
  28330. back: {
  28331. height: math.unit(201, "feet"),
  28332. name: "Back",
  28333. image: {
  28334. source: "./media/characters/jessica/back.svg",
  28335. extra: 273 / 259,
  28336. bottom: 7 / 280
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(201, "feet"),
  28344. default: true
  28345. },
  28346. {
  28347. name: "Megamacro",
  28348. height: math.unit(8, "miles")
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28354. {
  28355. side: {
  28356. height: math.unit(320, "cm"),
  28357. name: "Side",
  28358. image: {
  28359. source: "./media/characters/victoria/side.svg",
  28360. extra: 778 / 346,
  28361. bottom: 56 / 834
  28362. }
  28363. },
  28364. maw: {
  28365. height: math.unit(5.9, "feet"),
  28366. name: "Maw",
  28367. image: {
  28368. source: "./media/characters/victoria/maw.svg"
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(320, "cm"),
  28376. default: true
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28382. {
  28383. front: {
  28384. height: math.unit(5 + 6 / 12, "feet"),
  28385. name: "Front",
  28386. image: {
  28387. source: "./media/characters/cat/front.svg",
  28388. extra: 1374 / 1257,
  28389. bottom: 59 / 1433
  28390. }
  28391. },
  28392. back: {
  28393. height: math.unit(5 + 6 / 12, "feet"),
  28394. name: "Back",
  28395. image: {
  28396. source: "./media/characters/cat/back.svg",
  28397. extra: 1337 / 1226,
  28398. bottom: 34 / 1371
  28399. }
  28400. },
  28401. taur: {
  28402. height: math.unit(7, "feet"),
  28403. name: "Taur",
  28404. image: {
  28405. source: "./media/characters/cat/taur.svg",
  28406. extra: 1345 / 1231,
  28407. bottom: 66 / 1411
  28408. }
  28409. },
  28410. lucario: {
  28411. height: math.unit(4, "feet"),
  28412. name: "Lucario",
  28413. image: {
  28414. source: "./media/characters/cat/lucario.svg",
  28415. extra: 1470 / 1318,
  28416. bottom: 65 / 1535
  28417. }
  28418. },
  28419. megaLucario: {
  28420. height: math.unit(4, "feet"),
  28421. name: "Mega Lucario",
  28422. image: {
  28423. source: "./media/characters/cat/mega-lucario.svg",
  28424. extra: 1515 / 1319,
  28425. bottom: 63 / 1578
  28426. }
  28427. },
  28428. nickit: {
  28429. height: math.unit(2, "feet"),
  28430. name: "Nickit",
  28431. image: {
  28432. source: "./media/characters/cat/nickit.svg",
  28433. extra: 1980 / 1585,
  28434. bottom: 102 / 2082
  28435. }
  28436. },
  28437. lopunnyFront: {
  28438. height: math.unit(5, "feet"),
  28439. name: "Lopunny (Front)",
  28440. image: {
  28441. source: "./media/characters/cat/lopunny-front.svg",
  28442. extra: 1782 / 1469,
  28443. bottom: 38 / 1820
  28444. }
  28445. },
  28446. lopunnyBack: {
  28447. height: math.unit(5, "feet"),
  28448. name: "Lopunny (Back)",
  28449. image: {
  28450. source: "./media/characters/cat/lopunny-back.svg",
  28451. extra: 1660 / 1490,
  28452. bottom: 25 / 1685
  28453. }
  28454. },
  28455. },
  28456. [
  28457. {
  28458. name: "Really small",
  28459. height: math.unit(1, "nm")
  28460. },
  28461. {
  28462. name: "Micro",
  28463. height: math.unit(5, "inches")
  28464. },
  28465. {
  28466. name: "Normal",
  28467. height: math.unit(5 + 6 / 12, "feet"),
  28468. default: true
  28469. },
  28470. {
  28471. name: "Macro",
  28472. height: math.unit(50, "feet")
  28473. },
  28474. {
  28475. name: "Macro+",
  28476. height: math.unit(150, "feet")
  28477. },
  28478. {
  28479. name: "Megamacro",
  28480. height: math.unit(100, "miles")
  28481. },
  28482. ]
  28483. ))
  28484. characterMakers.push(() => makeCharacter(
  28485. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28486. {
  28487. front: {
  28488. height: math.unit(63.4, "meters"),
  28489. weight: math.unit(3.28349e+6, "kilograms"),
  28490. name: "Front",
  28491. image: {
  28492. source: "./media/characters/kirina-violet/front.svg",
  28493. extra: 2812 / 2725,
  28494. bottom: 0 / 2812
  28495. }
  28496. },
  28497. back: {
  28498. height: math.unit(63.4, "meters"),
  28499. weight: math.unit(3.28349e+6, "kilograms"),
  28500. name: "Back",
  28501. image: {
  28502. source: "./media/characters/kirina-violet/back.svg",
  28503. extra: 2812 / 2725,
  28504. bottom: 0 / 2812
  28505. }
  28506. },
  28507. mouth: {
  28508. height: math.unit(4.35, "meters"),
  28509. name: "Mouth",
  28510. image: {
  28511. source: "./media/characters/kirina-violet/mouth.svg"
  28512. }
  28513. },
  28514. paw: {
  28515. height: math.unit(5.6, "meters"),
  28516. name: "Paw",
  28517. image: {
  28518. source: "./media/characters/kirina-violet/paw.svg"
  28519. }
  28520. },
  28521. tail: {
  28522. height: math.unit(18, "meters"),
  28523. name: "Tail",
  28524. image: {
  28525. source: "./media/characters/kirina-violet/tail.svg"
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Macro",
  28532. height: math.unit(63.4, "meters"),
  28533. default: true
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(75, "feet"),
  28542. name: "Front",
  28543. image: {
  28544. source: "./media/characters/cat-gigachu/front.svg",
  28545. extra: 1239/1027,
  28546. bottom: 32/1271
  28547. }
  28548. },
  28549. back: {
  28550. height: math.unit(75, "feet"),
  28551. name: "Back",
  28552. image: {
  28553. source: "./media/characters/cat-gigachu/back.svg",
  28554. extra: 1229/1030,
  28555. bottom: 9/1238
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Dynamax",
  28562. height: math.unit(75, "feet"),
  28563. default: true
  28564. },
  28565. ]
  28566. ))
  28567. characterMakers.push(() => makeCharacter(
  28568. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28569. {
  28570. front: {
  28571. height: math.unit(6, "feet"),
  28572. weight: math.unit(150, "lb"),
  28573. name: "Front",
  28574. image: {
  28575. source: "./media/characters/sfaiyan/front.svg",
  28576. extra: 999 / 978,
  28577. bottom: 5 / 1004
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Normal",
  28584. height: math.unit(1.82, "meters")
  28585. },
  28586. {
  28587. name: "Giant",
  28588. height: math.unit(2.27, "km"),
  28589. default: true
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(179, "cm"),
  28598. weight: math.unit(100, "kg"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/raunehkeli/front.svg",
  28602. extra: 1934 / 1926,
  28603. bottom: 0 / 1934
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Normal",
  28610. height: math.unit(179, "cm")
  28611. },
  28612. {
  28613. name: "Maximum",
  28614. height: math.unit(575, "meters"),
  28615. default: true
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(6, "feet"),
  28624. weight: math.unit(150, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28628. extra: 2625 / 2518,
  28629. bottom: 60 / 2685
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(6 + 2 / 12, "feet")
  28637. },
  28638. {
  28639. name: "Macro",
  28640. height: math.unit(1180, "feet"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(5 + 6 / 12, "feet"),
  28650. weight: math.unit(108, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/lilith-zott/front.svg",
  28654. extra: 2510 / 2238,
  28655. bottom: 100 / 2610
  28656. }
  28657. },
  28658. frontDressed: {
  28659. height: math.unit(5 + 6 / 12, "feet"),
  28660. weight: math.unit(108, "lb"),
  28661. name: "Front (Dressed)",
  28662. image: {
  28663. source: "./media/characters/lilith-zott/front-dressed.svg",
  28664. extra: 2510 / 2238,
  28665. bottom: 100 / 2610
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(5 + 6 / 12, "feet")
  28673. },
  28674. {
  28675. name: "Macro",
  28676. height: math.unit(1030, "feet"),
  28677. default: true
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(6, "feet"),
  28686. weight: math.unit(150, "lb"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28690. extra: 2567 / 2435,
  28691. bottom: 39 / 2606
  28692. }
  28693. },
  28694. frontSuper: {
  28695. height: math.unit(6, "feet"),
  28696. name: "Front (Super)",
  28697. image: {
  28698. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28699. extra: 2567 / 2435,
  28700. bottom: 39 / 2606
  28701. }
  28702. },
  28703. },
  28704. [
  28705. {
  28706. name: "Normal",
  28707. height: math.unit(5 + 10 / 12, "feet")
  28708. },
  28709. {
  28710. name: "Macro",
  28711. height: math.unit(1100, "feet"),
  28712. default: true
  28713. },
  28714. ]
  28715. ))
  28716. characterMakers.push(() => makeCharacter(
  28717. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28718. {
  28719. front: {
  28720. height: math.unit(100, "miles"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/sona/front.svg",
  28724. extra: 2433 / 2201,
  28725. bottom: 53 / 2486
  28726. }
  28727. },
  28728. foot: {
  28729. height: math.unit(16.1, "miles"),
  28730. name: "Foot",
  28731. image: {
  28732. source: "./media/characters/sona/foot.svg"
  28733. }
  28734. },
  28735. },
  28736. [
  28737. {
  28738. name: "Macro",
  28739. height: math.unit(100, "miles"),
  28740. default: true
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28746. {
  28747. front: {
  28748. height: math.unit(6, "feet"),
  28749. weight: math.unit(150, "lb"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/bailey/front.svg",
  28753. extra: 1778 / 1724,
  28754. bottom: 30 / 1808
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Micro",
  28761. height: math.unit(4, "inches")
  28762. },
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(5 + 5 / 12, "feet"),
  28766. default: true
  28767. },
  28768. {
  28769. name: "Macro",
  28770. height: math.unit(250, "feet")
  28771. },
  28772. {
  28773. name: "Megamacro",
  28774. height: math.unit(100, "miles")
  28775. },
  28776. ]
  28777. ))
  28778. characterMakers.push(() => makeCharacter(
  28779. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28780. {
  28781. front: {
  28782. height: math.unit(5 + 2 / 12, "feet"),
  28783. weight: math.unit(120, "lb"),
  28784. name: "Front",
  28785. image: {
  28786. source: "./media/characters/snaps/front.svg",
  28787. extra: 2370 / 2177,
  28788. bottom: 48 / 2418
  28789. }
  28790. },
  28791. back: {
  28792. height: math.unit(5 + 2 / 12, "feet"),
  28793. weight: math.unit(120, "lb"),
  28794. name: "Back",
  28795. image: {
  28796. source: "./media/characters/snaps/back.svg",
  28797. extra: 2408 / 2258,
  28798. bottom: 15 / 2423
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Micro",
  28805. height: math.unit(9, "inches")
  28806. },
  28807. {
  28808. name: "Normal",
  28809. height: math.unit(5 + 2 / 12, "feet"),
  28810. default: true
  28811. },
  28812. {
  28813. name: "Mini Macro",
  28814. height: math.unit(10, "feet")
  28815. },
  28816. ]
  28817. ))
  28818. characterMakers.push(() => makeCharacter(
  28819. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28820. {
  28821. front: {
  28822. height: math.unit(1.8, "meters"),
  28823. weight: math.unit(85, "kg"),
  28824. name: "Front",
  28825. image: {
  28826. source: "./media/characters/azteck/front.svg",
  28827. extra: 2815 / 2625,
  28828. bottom: 89 / 2904
  28829. }
  28830. },
  28831. back: {
  28832. height: math.unit(1.8, "meters"),
  28833. weight: math.unit(85, "kg"),
  28834. name: "Back",
  28835. image: {
  28836. source: "./media/characters/azteck/back.svg",
  28837. extra: 2856 / 2648,
  28838. bottom: 85 / 2941
  28839. }
  28840. },
  28841. frontDressed: {
  28842. height: math.unit(1.8, "meters"),
  28843. weight: math.unit(85, "kg"),
  28844. name: "Front (Dressed)",
  28845. image: {
  28846. source: "./media/characters/azteck/front-dressed.svg",
  28847. extra: 2147 / 2003,
  28848. bottom: 68 / 2215
  28849. }
  28850. },
  28851. head: {
  28852. height: math.unit(0.47, "meters"),
  28853. weight: math.unit(85, "kg"),
  28854. name: "Head",
  28855. image: {
  28856. source: "./media/characters/azteck/head.svg"
  28857. }
  28858. },
  28859. },
  28860. [
  28861. {
  28862. name: "Bite sized",
  28863. height: math.unit(16, "cm")
  28864. },
  28865. {
  28866. name: "Normal",
  28867. height: math.unit(1.8, "meters"),
  28868. default: true
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28874. {
  28875. front: {
  28876. height: math.unit(6, "feet"),
  28877. weight: math.unit(150, "lb"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/pidge/front.svg",
  28881. extra: 620 / 588,
  28882. bottom: 9 / 629
  28883. }
  28884. },
  28885. back: {
  28886. height: math.unit(6, "feet"),
  28887. weight: math.unit(150, "lb"),
  28888. name: "Back",
  28889. image: {
  28890. source: "./media/characters/pidge/back.svg",
  28891. extra: 620 / 588,
  28892. bottom: 9 / 629
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Macro",
  28899. height: math.unit(1, "mile"),
  28900. default: true
  28901. },
  28902. ]
  28903. ))
  28904. characterMakers.push(() => makeCharacter(
  28905. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28906. {
  28907. front: {
  28908. height: math.unit(6, "feet"),
  28909. weight: math.unit(150, "lb"),
  28910. name: "Front",
  28911. image: {
  28912. source: "./media/characters/en/front.svg",
  28913. extra: 1697 / 1563,
  28914. bottom: 103 / 1800
  28915. }
  28916. },
  28917. back: {
  28918. height: math.unit(6, "feet"),
  28919. weight: math.unit(150, "lb"),
  28920. name: "Back",
  28921. image: {
  28922. source: "./media/characters/en/back.svg",
  28923. extra: 1700 / 1570,
  28924. bottom: 51 / 1751
  28925. }
  28926. },
  28927. frontDressed: {
  28928. height: math.unit(6, "feet"),
  28929. weight: math.unit(150, "lb"),
  28930. name: "Front (Dressed)",
  28931. image: {
  28932. source: "./media/characters/en/front-dressed.svg",
  28933. extra: 1697 / 1563,
  28934. bottom: 103 / 1800
  28935. }
  28936. },
  28937. backDressed: {
  28938. height: math.unit(6, "feet"),
  28939. weight: math.unit(150, "lb"),
  28940. name: "Back (Dressed)",
  28941. image: {
  28942. source: "./media/characters/en/back-dressed.svg",
  28943. extra: 1700 / 1570,
  28944. bottom: 51 / 1751
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Macro",
  28951. height: math.unit(210, "feet"),
  28952. default: true
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(6, "feet"),
  28961. weight: math.unit(150, "lb"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/haze-orris/front.svg",
  28965. extra: 3975 / 3525,
  28966. bottom: 137 / 4112
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Micro",
  28973. height: math.unit(150, "mm"),
  28974. default: true
  28975. },
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28980. {
  28981. front: {
  28982. height: math.unit(6, "feet"),
  28983. weight: math.unit(150, "lb"),
  28984. name: "Front",
  28985. image: {
  28986. source: "./media/characters/casselene-yaro/front.svg",
  28987. extra: 4721 / 4541,
  28988. bottom: 82 / 4803
  28989. }
  28990. },
  28991. back: {
  28992. height: math.unit(6, "feet"),
  28993. weight: math.unit(150, "lb"),
  28994. name: "Back",
  28995. image: {
  28996. source: "./media/characters/casselene-yaro/back.svg",
  28997. extra: 4569 / 4377,
  28998. bottom: 69 / 4638
  28999. }
  29000. },
  29001. frontDressed: {
  29002. height: math.unit(6, "feet"),
  29003. weight: math.unit(150, "lb"),
  29004. name: "Front-dressed",
  29005. image: {
  29006. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29007. extra: 4721 / 4541,
  29008. bottom: 82 / 4803
  29009. }
  29010. },
  29011. },
  29012. [
  29013. {
  29014. name: "Macro",
  29015. height: math.unit(190, "feet"),
  29016. default: true
  29017. },
  29018. ]
  29019. ))
  29020. characterMakers.push(() => makeCharacter(
  29021. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29022. {
  29023. front: {
  29024. height: math.unit(6, "feet"),
  29025. weight: math.unit(150, "lb"),
  29026. name: "Front",
  29027. image: {
  29028. source: "./media/characters/myra-rue-delore/front.svg",
  29029. extra: 1340 / 1308,
  29030. bottom: 67 / 1407
  29031. }
  29032. },
  29033. back: {
  29034. height: math.unit(6, "feet"),
  29035. weight: math.unit(150, "lb"),
  29036. name: "Back",
  29037. image: {
  29038. source: "./media/characters/myra-rue-delore/back.svg",
  29039. extra: 1341 / 1310,
  29040. bottom: 40 / 1381
  29041. }
  29042. },
  29043. frontDressed: {
  29044. height: math.unit(6, "feet"),
  29045. weight: math.unit(150, "lb"),
  29046. name: "Front (Dressed)",
  29047. image: {
  29048. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29049. extra: 1340 / 1308,
  29050. bottom: 67 / 1407
  29051. }
  29052. },
  29053. },
  29054. [
  29055. {
  29056. name: "Macro",
  29057. height: math.unit(150, "feet"),
  29058. default: true
  29059. },
  29060. ]
  29061. ))
  29062. characterMakers.push(() => makeCharacter(
  29063. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29064. {
  29065. front: {
  29066. height: math.unit(10, "feet"),
  29067. weight: math.unit(15015, "lb"),
  29068. name: "Front",
  29069. image: {
  29070. source: "./media/characters/fem!plat/front.svg",
  29071. extra: 2799 / 2604,
  29072. bottom: 149 / 2948
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Normal",
  29079. height: math.unit(10, "feet"),
  29080. default: true
  29081. },
  29082. {
  29083. name: "Macro",
  29084. height: math.unit(100, "feet")
  29085. },
  29086. {
  29087. name: "Megamacro",
  29088. height: math.unit(1000, "feet")
  29089. },
  29090. ]
  29091. ))
  29092. characterMakers.push(() => makeCharacter(
  29093. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29094. {
  29095. front: {
  29096. height: math.unit(15 + 5 / 12, "feet"),
  29097. weight: math.unit(4600, "lb"),
  29098. name: "Front",
  29099. image: {
  29100. source: "./media/characters/neapolitan-ananassa/front.svg",
  29101. extra: 2903 / 2736,
  29102. bottom: 0 / 2903
  29103. }
  29104. },
  29105. side: {
  29106. height: math.unit(15 + 5 / 12, "feet"),
  29107. weight: math.unit(4600, "lb"),
  29108. name: "Side",
  29109. image: {
  29110. source: "./media/characters/neapolitan-ananassa/side.svg",
  29111. extra: 2925 / 2719,
  29112. bottom: 0 / 2925
  29113. }
  29114. },
  29115. back: {
  29116. height: math.unit(15 + 5 / 12, "feet"),
  29117. weight: math.unit(4600, "lb"),
  29118. name: "Back",
  29119. image: {
  29120. source: "./media/characters/neapolitan-ananassa/back.svg",
  29121. extra: 2903 / 2736,
  29122. bottom: 0 / 2903
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Normal",
  29129. height: math.unit(15 + 5 / 12, "feet"),
  29130. default: true
  29131. },
  29132. {
  29133. name: "Post-Millenium",
  29134. height: math.unit(35 + 5 / 12, "feet")
  29135. },
  29136. {
  29137. name: "Post-Era",
  29138. height: math.unit(450 + 5 / 12, "feet")
  29139. },
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29144. {
  29145. front: {
  29146. height: math.unit(300, "meters"),
  29147. weight: math.unit(125000, "tonnes"),
  29148. name: "Front",
  29149. image: {
  29150. source: "./media/characters/pazuzu/front.svg",
  29151. extra: 877 / 794,
  29152. bottom: 47 / 924
  29153. }
  29154. },
  29155. },
  29156. [
  29157. {
  29158. name: "Macro",
  29159. height: math.unit(300, "meters"),
  29160. default: true
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29166. {
  29167. side: {
  29168. height: math.unit(10 + 7 / 12, "feet"),
  29169. weight: math.unit(2.5, "tons"),
  29170. name: "Side",
  29171. image: {
  29172. source: "./media/characters/aasha/side.svg",
  29173. extra: 1345 / 1245,
  29174. bottom: 111 / 1456
  29175. }
  29176. },
  29177. back: {
  29178. height: math.unit(10 + 7 / 12, "feet"),
  29179. weight: math.unit(2.5, "tons"),
  29180. name: "Back",
  29181. image: {
  29182. source: "./media/characters/aasha/back.svg",
  29183. extra: 1133 / 1057,
  29184. bottom: 257 / 1390
  29185. }
  29186. },
  29187. },
  29188. [
  29189. {
  29190. name: "Normal",
  29191. height: math.unit(10 + 7 / 12, "feet"),
  29192. default: true
  29193. },
  29194. ]
  29195. ))
  29196. characterMakers.push(() => makeCharacter(
  29197. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29198. {
  29199. front: {
  29200. height: math.unit(6 + 3 / 12, "feet"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/nevan/front.svg",
  29204. extra: 704 / 704,
  29205. bottom: 28 / 732
  29206. }
  29207. },
  29208. back: {
  29209. height: math.unit(6 + 3 / 12, "feet"),
  29210. name: "Back",
  29211. image: {
  29212. source: "./media/characters/nevan/back.svg",
  29213. extra: 714 / 714,
  29214. bottom: 21 / 735
  29215. }
  29216. },
  29217. frontFlaccid: {
  29218. height: math.unit(6 + 3 / 12, "feet"),
  29219. name: "Front (Flaccid)",
  29220. image: {
  29221. source: "./media/characters/nevan/front-flaccid.svg",
  29222. extra: 704 / 704,
  29223. bottom: 28 / 732
  29224. }
  29225. },
  29226. frontErect: {
  29227. height: math.unit(6 + 3 / 12, "feet"),
  29228. name: "Front (Erect)",
  29229. image: {
  29230. source: "./media/characters/nevan/front-erect.svg",
  29231. extra: 704 / 704,
  29232. bottom: 28 / 732
  29233. }
  29234. },
  29235. backFlaccid: {
  29236. height: math.unit(6 + 3 / 12, "feet"),
  29237. name: "Back (Flaccid)",
  29238. image: {
  29239. source: "./media/characters/nevan/back-flaccid.svg",
  29240. extra: 714 / 714,
  29241. bottom: 21 / 735
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(6 + 3 / 12, "feet"),
  29249. default: true
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29255. {
  29256. front: {
  29257. height: math.unit(4, "feet"),
  29258. name: "Front",
  29259. image: {
  29260. source: "./media/characters/arhan/front.svg",
  29261. extra: 3368 / 3133,
  29262. bottom: 0 / 3368
  29263. }
  29264. },
  29265. side: {
  29266. height: math.unit(4, "feet"),
  29267. name: "Side",
  29268. image: {
  29269. source: "./media/characters/arhan/side.svg",
  29270. extra: 3347 / 3105,
  29271. bottom: 0 / 3347
  29272. }
  29273. },
  29274. tongue: {
  29275. height: math.unit(1.42, "feet"),
  29276. name: "Tongue",
  29277. image: {
  29278. source: "./media/characters/arhan/tongue.svg"
  29279. }
  29280. },
  29281. head: {
  29282. height: math.unit(0.85, "feet"),
  29283. name: "Head",
  29284. image: {
  29285. source: "./media/characters/arhan/head.svg"
  29286. }
  29287. },
  29288. },
  29289. [
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(4, "feet"),
  29293. default: true
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29299. {
  29300. front: {
  29301. height: math.unit(5 + 7.5 / 12, "feet"),
  29302. weight: math.unit(120, "lb"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/digi-duncan/front.svg",
  29306. extra: 330 / 326,
  29307. bottom: 16 / 346
  29308. }
  29309. },
  29310. side: {
  29311. height: math.unit(5 + 7.5 / 12, "feet"),
  29312. weight: math.unit(120, "lb"),
  29313. name: "Side",
  29314. image: {
  29315. source: "./media/characters/digi-duncan/side.svg",
  29316. extra: 341 / 337,
  29317. bottom: 1 / 342
  29318. }
  29319. },
  29320. back: {
  29321. height: math.unit(5 + 7.5 / 12, "feet"),
  29322. weight: math.unit(120, "lb"),
  29323. name: "Back",
  29324. image: {
  29325. source: "./media/characters/digi-duncan/back.svg",
  29326. extra: 330 / 326,
  29327. bottom: 12 / 342
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Speck",
  29334. height: math.unit(0.25, "mm")
  29335. },
  29336. {
  29337. name: "Micro",
  29338. height: math.unit(5, "mm")
  29339. },
  29340. {
  29341. name: "Tiny",
  29342. height: math.unit(0.5, "inches"),
  29343. default: true
  29344. },
  29345. {
  29346. name: "Human",
  29347. height: math.unit(5 + 7.5 / 12, "feet")
  29348. },
  29349. {
  29350. name: "Minigiant",
  29351. height: math.unit(8 + 5.25, "feet")
  29352. },
  29353. {
  29354. name: "Giant",
  29355. height: math.unit(2000, "feet")
  29356. },
  29357. {
  29358. name: "Mega",
  29359. height: math.unit(371.1, "miles")
  29360. },
  29361. ]
  29362. ))
  29363. characterMakers.push(() => makeCharacter(
  29364. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29365. {
  29366. front: {
  29367. height: math.unit(2, "meters"),
  29368. weight: math.unit(350, "kg"),
  29369. name: "Front",
  29370. image: {
  29371. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29372. extra: 898 / 838,
  29373. bottom: 9 / 907
  29374. }
  29375. },
  29376. },
  29377. [
  29378. {
  29379. name: "Micro",
  29380. height: math.unit(8, "meters")
  29381. },
  29382. {
  29383. name: "Normal",
  29384. height: math.unit(50, "meters"),
  29385. default: true
  29386. },
  29387. {
  29388. name: "Macro",
  29389. height: math.unit(500, "meters")
  29390. },
  29391. ]
  29392. ))
  29393. characterMakers.push(() => makeCharacter(
  29394. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29395. {
  29396. front: {
  29397. height: math.unit(6 + 6 / 12, "feet"),
  29398. name: "Front",
  29399. image: {
  29400. source: "./media/characters/khardesh/front.svg",
  29401. extra: 888 / 797,
  29402. bottom: 25 / 913
  29403. }
  29404. },
  29405. },
  29406. [
  29407. {
  29408. name: "Normal",
  29409. height: math.unit(6 + 6 / 12, "feet"),
  29410. default: true
  29411. },
  29412. {
  29413. name: "Normal+",
  29414. height: math.unit(4, "meters")
  29415. },
  29416. {
  29417. name: "Macro",
  29418. height: math.unit(50, "meters")
  29419. },
  29420. {
  29421. name: "Macro+",
  29422. height: math.unit(100, "meters")
  29423. },
  29424. {
  29425. name: "Megamacro",
  29426. height: math.unit(20, "km")
  29427. },
  29428. ]
  29429. ))
  29430. characterMakers.push(() => makeCharacter(
  29431. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29432. {
  29433. front: {
  29434. height: math.unit(6, "feet"),
  29435. weight: math.unit(150, "lb"),
  29436. name: "Front",
  29437. image: {
  29438. source: "./media/characters/kosho/front.svg",
  29439. extra: 1847 / 1847,
  29440. bottom: 86 / 1933
  29441. }
  29442. },
  29443. },
  29444. [
  29445. {
  29446. name: "Second-stage micro",
  29447. height: math.unit(0.5, "inches")
  29448. },
  29449. {
  29450. name: "First-stage micro",
  29451. height: math.unit(6, "inches")
  29452. },
  29453. {
  29454. name: "Normal",
  29455. height: math.unit(6, "feet"),
  29456. default: true
  29457. },
  29458. {
  29459. name: "First-stage macro",
  29460. height: math.unit(72, "feet")
  29461. },
  29462. {
  29463. name: "Second-stage macro",
  29464. height: math.unit(864, "feet")
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29470. {
  29471. normal: {
  29472. height: math.unit(4 + 6 / 12, "feet"),
  29473. name: "Normal",
  29474. image: {
  29475. source: "./media/characters/hydra/normal.svg",
  29476. extra: 2833 / 2634,
  29477. bottom: 68 / 2901
  29478. }
  29479. },
  29480. smol: {
  29481. height: math.unit(0.705, "inches"),
  29482. name: "Smol",
  29483. image: {
  29484. source: "./media/characters/hydra/smol.svg",
  29485. extra: 2715 / 2540,
  29486. bottom: 0 / 2715
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Normal",
  29493. height: math.unit(4 + 6 / 12, "feet"),
  29494. default: true
  29495. }
  29496. ]
  29497. ))
  29498. characterMakers.push(() => makeCharacter(
  29499. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29500. {
  29501. front: {
  29502. height: math.unit(0.6, "cm"),
  29503. name: "Front",
  29504. image: {
  29505. source: "./media/characters/daz/front.svg",
  29506. extra: 1682 / 1164,
  29507. bottom: 42 / 1724
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Normal",
  29514. height: math.unit(0.6, "cm"),
  29515. default: true
  29516. },
  29517. ]
  29518. ))
  29519. characterMakers.push(() => makeCharacter(
  29520. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29521. {
  29522. front: {
  29523. height: math.unit(6, "feet"),
  29524. weight: math.unit(235, "lb"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/theo-pangolin/front.svg",
  29528. extra: 1996 / 1969,
  29529. bottom: 115 / 2111
  29530. }
  29531. },
  29532. back: {
  29533. height: math.unit(6, "feet"),
  29534. weight: math.unit(235, "lb"),
  29535. name: "Back",
  29536. image: {
  29537. source: "./media/characters/theo-pangolin/back.svg",
  29538. extra: 1979 / 1979,
  29539. bottom: 40 / 2019
  29540. }
  29541. },
  29542. feral: {
  29543. height: math.unit(2, "feet"),
  29544. weight: math.unit(30, "lb"),
  29545. name: "Feral",
  29546. image: {
  29547. source: "./media/characters/theo-pangolin/feral.svg",
  29548. extra: 803 / 791,
  29549. bottom: 181 / 984
  29550. }
  29551. },
  29552. footFive: {
  29553. height: math.unit(1.43, "feet"),
  29554. name: "Foot (Five Toes)",
  29555. image: {
  29556. source: "./media/characters/theo-pangolin/foot-five.svg"
  29557. }
  29558. },
  29559. footFour: {
  29560. height: math.unit(1.43, "feet"),
  29561. name: "Foot (Four Toes)",
  29562. image: {
  29563. source: "./media/characters/theo-pangolin/foot-four.svg"
  29564. }
  29565. },
  29566. handFour: {
  29567. height: math.unit(0.81, "feet"),
  29568. name: "Hand (Four Fingers)",
  29569. image: {
  29570. source: "./media/characters/theo-pangolin/hand-four.svg"
  29571. }
  29572. },
  29573. handThree: {
  29574. height: math.unit(0.81, "feet"),
  29575. name: "Hand (Three Fingers)",
  29576. image: {
  29577. source: "./media/characters/theo-pangolin/hand-three.svg"
  29578. }
  29579. },
  29580. headFront: {
  29581. height: math.unit(1.37, "feet"),
  29582. name: "Head (Front)",
  29583. image: {
  29584. source: "./media/characters/theo-pangolin/head-front.svg"
  29585. }
  29586. },
  29587. headSide: {
  29588. height: math.unit(1.43, "feet"),
  29589. name: "Head (Side)",
  29590. image: {
  29591. source: "./media/characters/theo-pangolin/head-side.svg"
  29592. }
  29593. },
  29594. tongue: {
  29595. height: math.unit(2.29, "feet"),
  29596. name: "Tongue",
  29597. image: {
  29598. source: "./media/characters/theo-pangolin/tongue.svg"
  29599. }
  29600. },
  29601. },
  29602. [
  29603. {
  29604. name: "Normal",
  29605. height: math.unit(6, "feet")
  29606. },
  29607. {
  29608. name: "Macro",
  29609. height: math.unit(400, "feet"),
  29610. default: true
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29616. {
  29617. front: {
  29618. height: math.unit(6, "inches"),
  29619. weight: math.unit(0.036, "kg"),
  29620. name: "Front",
  29621. image: {
  29622. source: "./media/characters/renée/front.svg",
  29623. extra: 900 / 886,
  29624. bottom: 8 / 908
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Nano",
  29631. height: math.unit(1, "nm")
  29632. },
  29633. {
  29634. name: "Micro",
  29635. height: math.unit(1, "mm")
  29636. },
  29637. {
  29638. name: "Normal",
  29639. height: math.unit(6, "inches")
  29640. },
  29641. {
  29642. name: "Macro",
  29643. height: math.unit(2000, "feet"),
  29644. default: true
  29645. },
  29646. {
  29647. name: "Megamacro",
  29648. height: math.unit(2, "km")
  29649. },
  29650. {
  29651. name: "Gigamacro",
  29652. height: math.unit(2000, "km")
  29653. },
  29654. {
  29655. name: "Teramacro",
  29656. height: math.unit(250000, "km")
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29662. {
  29663. front: {
  29664. height: math.unit(4, "meters"),
  29665. weight: math.unit(150, "kg"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/caledvwlch/front.svg",
  29669. extra: 1760 / 1551,
  29670. bottom: 28 / 1788
  29671. }
  29672. },
  29673. side: {
  29674. height: math.unit(4, "meters"),
  29675. weight: math.unit(150, "kg"),
  29676. name: "Side",
  29677. image: {
  29678. source: "./media/characters/caledvwlch/side.svg",
  29679. extra: 1605 / 1536,
  29680. bottom: 31 / 1636
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(4, "meters"),
  29685. weight: math.unit(150, "kg"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/caledvwlch/back.svg",
  29689. extra: 1635 / 1565,
  29690. bottom: 27 / 1662
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "\"Incognito\"",
  29697. height: math.unit(4, "meters")
  29698. },
  29699. {
  29700. name: "Small rampage",
  29701. height: math.unit(600, "meters")
  29702. },
  29703. {
  29704. name: "Mega",
  29705. height: math.unit(30, "km")
  29706. },
  29707. {
  29708. name: "Home-size",
  29709. height: math.unit(50, "km"),
  29710. default: true
  29711. },
  29712. {
  29713. name: "Giga",
  29714. height: math.unit(300, "km")
  29715. },
  29716. {
  29717. name: "Lounging",
  29718. height: math.unit(11000, "km")
  29719. },
  29720. {
  29721. name: "Planet snacking",
  29722. height: math.unit(2000000, "km")
  29723. },
  29724. ]
  29725. ))
  29726. characterMakers.push(() => makeCharacter(
  29727. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29728. {
  29729. front: {
  29730. height: math.unit(6, "feet"),
  29731. weight: math.unit(215, "lb"),
  29732. name: "Front",
  29733. image: {
  29734. source: "./media/characters/sapphire-svell/front.svg",
  29735. extra: 495 / 455,
  29736. bottom: 20 / 515
  29737. }
  29738. },
  29739. back: {
  29740. height: math.unit(6, "feet"),
  29741. weight: math.unit(216, "lb"),
  29742. name: "Back",
  29743. image: {
  29744. source: "./media/characters/sapphire-svell/back.svg",
  29745. extra: 497 / 477,
  29746. bottom: 7 / 504
  29747. }
  29748. },
  29749. maw: {
  29750. height: math.unit(1.57, "feet"),
  29751. name: "Maw",
  29752. image: {
  29753. source: "./media/characters/sapphire-svell/maw.svg"
  29754. }
  29755. },
  29756. foot: {
  29757. height: math.unit(1.07, "feet"),
  29758. name: "Foot",
  29759. image: {
  29760. source: "./media/characters/sapphire-svell/foot.svg"
  29761. }
  29762. },
  29763. toering: {
  29764. height: math.unit(1.7, "inch"),
  29765. name: "Toering",
  29766. image: {
  29767. source: "./media/characters/sapphire-svell/toering.svg"
  29768. }
  29769. },
  29770. },
  29771. [
  29772. {
  29773. name: "Normal",
  29774. height: math.unit(300, "feet"),
  29775. default: true
  29776. },
  29777. {
  29778. name: "Augmented",
  29779. height: math.unit(1250, "feet")
  29780. },
  29781. {
  29782. name: "Unleashed",
  29783. height: math.unit(3000, "feet")
  29784. },
  29785. ]
  29786. ))
  29787. characterMakers.push(() => makeCharacter(
  29788. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29789. {
  29790. side: {
  29791. height: math.unit(2 + 3 / 12, "feet"),
  29792. weight: math.unit(110, "lb"),
  29793. name: "Side",
  29794. image: {
  29795. source: "./media/characters/glitch-flux/side.svg",
  29796. extra: 997 / 805,
  29797. bottom: 20 / 1017
  29798. }
  29799. },
  29800. },
  29801. [
  29802. {
  29803. name: "Normal",
  29804. height: math.unit(2 + 3 / 12, "feet"),
  29805. default: true
  29806. },
  29807. ]
  29808. ))
  29809. characterMakers.push(() => makeCharacter(
  29810. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29811. {
  29812. front: {
  29813. height: math.unit(4, "meters"),
  29814. name: "Front",
  29815. image: {
  29816. source: "./media/characters/mid/front.svg",
  29817. extra: 507 / 476,
  29818. bottom: 17 / 524
  29819. }
  29820. },
  29821. back: {
  29822. height: math.unit(4, "meters"),
  29823. name: "Back",
  29824. image: {
  29825. source: "./media/characters/mid/back.svg",
  29826. extra: 519 / 487,
  29827. bottom: 7 / 526
  29828. }
  29829. },
  29830. stuck: {
  29831. height: math.unit(2.2, "meters"),
  29832. name: "Stuck",
  29833. image: {
  29834. source: "./media/characters/mid/stuck.svg",
  29835. extra: 1951 / 1869,
  29836. bottom: 88 / 2039
  29837. }
  29838. }
  29839. },
  29840. [
  29841. {
  29842. name: "Normal",
  29843. height: math.unit(4, "meters"),
  29844. default: true
  29845. },
  29846. {
  29847. name: "Big",
  29848. height: math.unit(10, "meters")
  29849. },
  29850. {
  29851. name: "Macro",
  29852. height: math.unit(800, "meters")
  29853. },
  29854. {
  29855. name: "Megamacro",
  29856. height: math.unit(100, "km")
  29857. },
  29858. {
  29859. name: "Overgrown",
  29860. height: math.unit(1, "parsec")
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29866. {
  29867. front: {
  29868. height: math.unit(2.5, "meters"),
  29869. weight: math.unit(225, "kg"),
  29870. name: "Front",
  29871. image: {
  29872. source: "./media/characters/iris/front.svg",
  29873. extra: 3348 / 3251,
  29874. bottom: 205 / 3553
  29875. }
  29876. },
  29877. maw: {
  29878. height: math.unit(0.56, "meter"),
  29879. name: "Maw",
  29880. image: {
  29881. source: "./media/characters/iris/maw.svg"
  29882. }
  29883. },
  29884. },
  29885. [
  29886. {
  29887. name: "Mewter cat",
  29888. height: math.unit(1.2, "meters")
  29889. },
  29890. {
  29891. name: "Minimacro",
  29892. height: math.unit(2.5, "meters"),
  29893. default: true
  29894. },
  29895. {
  29896. name: "Macro",
  29897. height: math.unit(180, "meters")
  29898. },
  29899. {
  29900. name: "Megamacro",
  29901. height: math.unit(2746, "meters")
  29902. },
  29903. ]
  29904. ))
  29905. characterMakers.push(() => makeCharacter(
  29906. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29907. {
  29908. front: {
  29909. height: math.unit(6, "feet"),
  29910. weight: math.unit(135, "lb"),
  29911. name: "Front",
  29912. image: {
  29913. source: "./media/characters/axel/front.svg",
  29914. extra: 908 / 908,
  29915. bottom: 58 / 966
  29916. }
  29917. },
  29918. side: {
  29919. height: math.unit(6, "feet"),
  29920. weight: math.unit(135, "lb"),
  29921. name: "Side",
  29922. image: {
  29923. source: "./media/characters/axel/side.svg",
  29924. extra: 958 / 958,
  29925. bottom: 11 / 969
  29926. }
  29927. },
  29928. back: {
  29929. height: math.unit(6, "feet"),
  29930. weight: math.unit(135, "lb"),
  29931. name: "Back",
  29932. image: {
  29933. source: "./media/characters/axel/back.svg",
  29934. extra: 887 / 887,
  29935. bottom: 34 / 921
  29936. }
  29937. },
  29938. head: {
  29939. height: math.unit(1.07, "feet"),
  29940. name: "Head",
  29941. image: {
  29942. source: "./media/characters/axel/head.svg"
  29943. }
  29944. },
  29945. beak: {
  29946. height: math.unit(1.4, "feet"),
  29947. name: "Beak",
  29948. image: {
  29949. source: "./media/characters/axel/beak.svg"
  29950. }
  29951. },
  29952. beakSide: {
  29953. height: math.unit(1.4, "feet"),
  29954. name: "Beak Side",
  29955. image: {
  29956. source: "./media/characters/axel/beak-side.svg"
  29957. }
  29958. },
  29959. sheath: {
  29960. height: math.unit(0.5, "feet"),
  29961. name: "Sheath",
  29962. image: {
  29963. source: "./media/characters/axel/sheath.svg"
  29964. }
  29965. },
  29966. dick: {
  29967. height: math.unit(0.98, "feet"),
  29968. name: "Dick",
  29969. image: {
  29970. source: "./media/characters/axel/dick.svg"
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Macro",
  29977. height: math.unit(68, "meters"),
  29978. default: true
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(3.5, "meters"),
  29987. weight: math.unit(1200, "kg"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/joanna/front.svg",
  29991. extra: 1596 / 1488,
  29992. bottom: 29 / 1625
  29993. }
  29994. },
  29995. back: {
  29996. height: math.unit(3.5, "meters"),
  29997. weight: math.unit(1200, "kg"),
  29998. name: "Back",
  29999. image: {
  30000. source: "./media/characters/joanna/back.svg",
  30001. extra: 1594 / 1495,
  30002. bottom: 26 / 1620
  30003. }
  30004. },
  30005. frontShorts: {
  30006. height: math.unit(3.5, "meters"),
  30007. weight: math.unit(1200, "kg"),
  30008. name: "Front (Shorts)",
  30009. image: {
  30010. source: "./media/characters/joanna/front-shorts.svg",
  30011. extra: 1596 / 1488,
  30012. bottom: 29 / 1625
  30013. }
  30014. },
  30015. frontBiker: {
  30016. height: math.unit(3.5, "meters"),
  30017. weight: math.unit(1200, "kg"),
  30018. name: "Front (Biker)",
  30019. image: {
  30020. source: "./media/characters/joanna/front-biker.svg",
  30021. extra: 1596 / 1488,
  30022. bottom: 29 / 1625
  30023. }
  30024. },
  30025. backBiker: {
  30026. height: math.unit(3.5, "meters"),
  30027. weight: math.unit(1200, "kg"),
  30028. name: "Back (Biker)",
  30029. image: {
  30030. source: "./media/characters/joanna/back-biker.svg",
  30031. extra: 1594 / 1495,
  30032. bottom: 88 / 1682
  30033. }
  30034. },
  30035. bikeLeft: {
  30036. height: math.unit(2.4, "meters"),
  30037. weight: math.unit(1600, "kg"),
  30038. name: "Bike (Left)",
  30039. image: {
  30040. source: "./media/characters/joanna/bike-left.svg",
  30041. extra: 720 / 720,
  30042. bottom: 8 / 728
  30043. }
  30044. },
  30045. bikeRight: {
  30046. height: math.unit(2.4, "meters"),
  30047. weight: math.unit(1600, "kg"),
  30048. name: "Bike (Right)",
  30049. image: {
  30050. source: "./media/characters/joanna/bike-right.svg",
  30051. extra: 720 / 720,
  30052. bottom: 8 / 728
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Incognito",
  30059. height: math.unit(3.5, "meters")
  30060. },
  30061. {
  30062. name: "Casual Big",
  30063. height: math.unit(200, "meters")
  30064. },
  30065. {
  30066. name: "Macro",
  30067. height: math.unit(600, "meters")
  30068. },
  30069. {
  30070. name: "Original",
  30071. height: math.unit(20, "km"),
  30072. default: true
  30073. },
  30074. {
  30075. name: "Giga",
  30076. height: math.unit(400, "km")
  30077. },
  30078. {
  30079. name: "Lounging",
  30080. height: math.unit(1500, "km")
  30081. },
  30082. {
  30083. name: "Planetary",
  30084. height: math.unit(200000, "km")
  30085. },
  30086. ]
  30087. ))
  30088. characterMakers.push(() => makeCharacter(
  30089. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30090. {
  30091. front: {
  30092. height: math.unit(6, "feet"),
  30093. weight: math.unit(150, "lb"),
  30094. name: "Front",
  30095. image: {
  30096. source: "./media/characters/hugo-sigil/front.svg",
  30097. extra: 522 / 500,
  30098. bottom: 2 / 524
  30099. }
  30100. },
  30101. back: {
  30102. height: math.unit(6, "feet"),
  30103. weight: math.unit(150, "lb"),
  30104. name: "Back",
  30105. image: {
  30106. source: "./media/characters/hugo-sigil/back.svg",
  30107. extra: 519 / 495,
  30108. bottom: 5 / 524
  30109. }
  30110. },
  30111. maw: {
  30112. height: math.unit(1.4, "feet"),
  30113. weight: math.unit(150, "lb"),
  30114. name: "Maw",
  30115. image: {
  30116. source: "./media/characters/hugo-sigil/maw.svg"
  30117. }
  30118. },
  30119. feet: {
  30120. height: math.unit(1.56, "feet"),
  30121. weight: math.unit(150, "lb"),
  30122. name: "Feet",
  30123. image: {
  30124. source: "./media/characters/hugo-sigil/feet.svg",
  30125. extra: 177 / 177,
  30126. bottom: 12 / 189
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(6, "feet")
  30134. },
  30135. {
  30136. name: "Macro",
  30137. height: math.unit(200, "feet"),
  30138. default: true
  30139. },
  30140. ]
  30141. ))
  30142. characterMakers.push(() => makeCharacter(
  30143. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30144. {
  30145. front: {
  30146. height: math.unit(6, "feet"),
  30147. weight: math.unit(150, "lb"),
  30148. name: "Front",
  30149. image: {
  30150. source: "./media/characters/peri/front.svg",
  30151. extra: 2354 / 2233,
  30152. bottom: 49 / 2403
  30153. }
  30154. },
  30155. },
  30156. [
  30157. {
  30158. name: "Really Small",
  30159. height: math.unit(1, "nm")
  30160. },
  30161. {
  30162. name: "Micro",
  30163. height: math.unit(4, "inches")
  30164. },
  30165. {
  30166. name: "Normal",
  30167. height: math.unit(7, "inches"),
  30168. default: true
  30169. },
  30170. {
  30171. name: "Macro",
  30172. height: math.unit(400, "feet")
  30173. },
  30174. {
  30175. name: "Megamacro",
  30176. height: math.unit(100, "miles")
  30177. },
  30178. ]
  30179. ))
  30180. characterMakers.push(() => makeCharacter(
  30181. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30182. {
  30183. frontSlim: {
  30184. height: math.unit(7, "feet"),
  30185. name: "Front (Slim)",
  30186. image: {
  30187. source: "./media/characters/issilora/front-slim.svg",
  30188. extra: 529 / 449,
  30189. bottom: 53 / 582
  30190. }
  30191. },
  30192. sideSlim: {
  30193. height: math.unit(7, "feet"),
  30194. name: "Side (Slim)",
  30195. image: {
  30196. source: "./media/characters/issilora/side-slim.svg",
  30197. extra: 570 / 480,
  30198. bottom: 30 / 600
  30199. }
  30200. },
  30201. backSlim: {
  30202. height: math.unit(7, "feet"),
  30203. name: "Back (Slim)",
  30204. image: {
  30205. source: "./media/characters/issilora/back-slim.svg",
  30206. extra: 537 / 455,
  30207. bottom: 46 / 583
  30208. }
  30209. },
  30210. frontBuff: {
  30211. height: math.unit(7, "feet"),
  30212. name: "Front (Buff)",
  30213. image: {
  30214. source: "./media/characters/issilora/front-buff.svg",
  30215. extra: 2310 / 2035,
  30216. bottom: 335 / 2645
  30217. }
  30218. },
  30219. head: {
  30220. height: math.unit(1.94, "feet"),
  30221. name: "Head",
  30222. image: {
  30223. source: "./media/characters/issilora/head.svg"
  30224. }
  30225. },
  30226. },
  30227. [
  30228. {
  30229. name: "Minimum",
  30230. height: math.unit(7, "feet")
  30231. },
  30232. {
  30233. name: "Comfortable",
  30234. height: math.unit(17, "feet")
  30235. },
  30236. {
  30237. name: "Fun Size",
  30238. height: math.unit(47, "feet")
  30239. },
  30240. {
  30241. name: "Natural Macro",
  30242. height: math.unit(137, "feet"),
  30243. default: true
  30244. },
  30245. {
  30246. name: "Maximum Kaiju",
  30247. height: math.unit(397, "feet")
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30253. {
  30254. front: {
  30255. height: math.unit(50 + 9/12, "feet"),
  30256. weight: math.unit(32.8, "tons"),
  30257. name: "Front",
  30258. image: {
  30259. source: "./media/characters/irb'iiritaahn/front.svg",
  30260. extra: 1878/1826,
  30261. bottom: 326/2204
  30262. }
  30263. },
  30264. back: {
  30265. height: math.unit(50 + 9/12, "feet"),
  30266. weight: math.unit(32.8, "tons"),
  30267. name: "Back",
  30268. image: {
  30269. source: "./media/characters/irb'iiritaahn/back.svg",
  30270. extra: 2052/2018,
  30271. bottom: 152/2204
  30272. }
  30273. },
  30274. head: {
  30275. height: math.unit(12.86, "feet"),
  30276. name: "Head",
  30277. image: {
  30278. source: "./media/characters/irb'iiritaahn/head.svg"
  30279. }
  30280. },
  30281. maw: {
  30282. height: math.unit(9.66, "feet"),
  30283. name: "Maw",
  30284. image: {
  30285. source: "./media/characters/irb'iiritaahn/maw.svg"
  30286. }
  30287. },
  30288. frontDick: {
  30289. height: math.unit(8.78461, "feet"),
  30290. name: "Front Dick",
  30291. image: {
  30292. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30293. }
  30294. },
  30295. rearDick: {
  30296. height: math.unit(8.78461, "feet"),
  30297. name: "Rear Dick",
  30298. image: {
  30299. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30300. }
  30301. },
  30302. rearDickUnfolded: {
  30303. height: math.unit(8.78, "feet"),
  30304. name: "Rear Dick (Unfolded)",
  30305. image: {
  30306. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30307. }
  30308. },
  30309. wings: {
  30310. height: math.unit(43, "feet"),
  30311. name: "Wings",
  30312. image: {
  30313. source: "./media/characters/irb'iiritaahn/wings.svg"
  30314. }
  30315. },
  30316. },
  30317. [
  30318. {
  30319. name: "Macro",
  30320. height: math.unit(50 + 9/12, "feet"),
  30321. default: true
  30322. },
  30323. ]
  30324. ))
  30325. characterMakers.push(() => makeCharacter(
  30326. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30327. {
  30328. front: {
  30329. height: math.unit(205, "cm"),
  30330. weight: math.unit(102, "kg"),
  30331. name: "Front",
  30332. image: {
  30333. source: "./media/characters/irbisgreif/front.svg",
  30334. extra: 785/706,
  30335. bottom: 13/798
  30336. }
  30337. },
  30338. back: {
  30339. height: math.unit(205, "cm"),
  30340. weight: math.unit(102, "kg"),
  30341. name: "Back",
  30342. image: {
  30343. source: "./media/characters/irbisgreif/back.svg",
  30344. extra: 713/701,
  30345. bottom: 26/739
  30346. }
  30347. },
  30348. frontDressed: {
  30349. height: math.unit(216, "cm"),
  30350. weight: math.unit(102, "kg"),
  30351. name: "Front-dressed",
  30352. image: {
  30353. source: "./media/characters/irbisgreif/front-dressed.svg",
  30354. extra: 902/776,
  30355. bottom: 14/916
  30356. }
  30357. },
  30358. sideDressed: {
  30359. height: math.unit(195, "cm"),
  30360. weight: math.unit(102, "kg"),
  30361. name: "Side-dressed",
  30362. image: {
  30363. source: "./media/characters/irbisgreif/side-dressed.svg",
  30364. extra: 788/688,
  30365. bottom: 21/809
  30366. }
  30367. },
  30368. backDressed: {
  30369. height: math.unit(216, "cm"),
  30370. weight: math.unit(102, "kg"),
  30371. name: "Back-dressed",
  30372. image: {
  30373. source: "./media/characters/irbisgreif/back-dressed.svg",
  30374. extra: 901/783,
  30375. bottom: 10/911
  30376. }
  30377. },
  30378. dick: {
  30379. height: math.unit(0.49, "feet"),
  30380. name: "Dick",
  30381. image: {
  30382. source: "./media/characters/irbisgreif/dick.svg"
  30383. }
  30384. },
  30385. wingTop: {
  30386. height: math.unit(1.93 , "feet"),
  30387. name: "Wing-top",
  30388. image: {
  30389. source: "./media/characters/irbisgreif/wing-top.svg"
  30390. }
  30391. },
  30392. wingBottom: {
  30393. height: math.unit(1.93 , "feet"),
  30394. name: "Wing-bottom",
  30395. image: {
  30396. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30397. }
  30398. },
  30399. },
  30400. [
  30401. {
  30402. name: "Normal",
  30403. height: math.unit(216, "cm"),
  30404. default: true
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(6, "feet"),
  30413. weight: math.unit(150, "lb"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/pride/front.svg",
  30417. extra: 1299/1230,
  30418. bottom: 18/1317
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Normal",
  30425. height: math.unit(7, "feet")
  30426. },
  30427. {
  30428. name: "Mini-macro",
  30429. height: math.unit(11, "feet")
  30430. },
  30431. {
  30432. name: "Macro",
  30433. height: math.unit(15, "meters"),
  30434. default: true
  30435. },
  30436. {
  30437. name: "Macro+",
  30438. height: math.unit(40, "meters")
  30439. },
  30440. ]
  30441. ))
  30442. characterMakers.push(() => makeCharacter(
  30443. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30444. {
  30445. front: {
  30446. height: math.unit(4 + 2 / 12, "feet"),
  30447. weight: math.unit(95, "lb"),
  30448. name: "Front",
  30449. image: {
  30450. source: "./media/characters/vaelophis-nyx/front.svg",
  30451. extra: 2532/2330,
  30452. bottom: 0/2532
  30453. }
  30454. },
  30455. back: {
  30456. height: math.unit(4 + 2 / 12, "feet"),
  30457. weight: math.unit(95, "lb"),
  30458. name: "Back",
  30459. image: {
  30460. source: "./media/characters/vaelophis-nyx/back.svg",
  30461. extra: 2484/2361,
  30462. bottom: 0/2484
  30463. }
  30464. },
  30465. feralSide: {
  30466. height: math.unit(2 + 1/12, "feet"),
  30467. weight: math.unit(20, "lb"),
  30468. name: "Feral (Side)",
  30469. image: {
  30470. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30471. extra: 1721/1581,
  30472. bottom: 70/1791
  30473. }
  30474. },
  30475. feralLazing: {
  30476. height: math.unit(1.08, "feet"),
  30477. weight: math.unit(20, "lb"),
  30478. name: "Feral (Lazing)",
  30479. image: {
  30480. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30481. extra: 822/822,
  30482. bottom: 248/1070
  30483. }
  30484. },
  30485. ear: {
  30486. height: math.unit(0.416, "feet"),
  30487. name: "Ear",
  30488. image: {
  30489. source: "./media/characters/vaelophis-nyx/ear.svg"
  30490. }
  30491. },
  30492. eye: {
  30493. height: math.unit(0.0748, "feet"),
  30494. name: "Eye",
  30495. image: {
  30496. source: "./media/characters/vaelophis-nyx/eye.svg"
  30497. }
  30498. },
  30499. mouth: {
  30500. height: math.unit(0.378, "feet"),
  30501. name: "Mouth",
  30502. image: {
  30503. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30504. }
  30505. },
  30506. spade: {
  30507. height: math.unit(0.55, "feet"),
  30508. name: "Spade",
  30509. image: {
  30510. source: "./media/characters/vaelophis-nyx/spade.svg"
  30511. }
  30512. },
  30513. },
  30514. [
  30515. {
  30516. name: "Normal",
  30517. height: math.unit(4 + 2/12, "feet"),
  30518. default: true
  30519. },
  30520. ]
  30521. ))
  30522. characterMakers.push(() => makeCharacter(
  30523. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30524. {
  30525. front: {
  30526. height: math.unit(7, "feet"),
  30527. weight: math.unit(231, "lb"),
  30528. name: "Front",
  30529. image: {
  30530. source: "./media/characters/flux/front.svg",
  30531. extra: 919/871,
  30532. bottom: 0/919
  30533. }
  30534. },
  30535. back: {
  30536. height: math.unit(7, "feet"),
  30537. weight: math.unit(231, "lb"),
  30538. name: "Back",
  30539. image: {
  30540. source: "./media/characters/flux/back.svg",
  30541. extra: 1040/992,
  30542. bottom: 0/1040
  30543. }
  30544. },
  30545. frontDressed: {
  30546. height: math.unit(7, "feet"),
  30547. weight: math.unit(231, "lb"),
  30548. name: "Front (Dressed)",
  30549. image: {
  30550. source: "./media/characters/flux/front-dressed.svg",
  30551. extra: 919/871,
  30552. bottom: 0/919
  30553. }
  30554. },
  30555. feralSide: {
  30556. height: math.unit(5, "feet"),
  30557. weight: math.unit(150, "lb"),
  30558. name: "Feral (Side)",
  30559. image: {
  30560. source: "./media/characters/flux/feral-side.svg",
  30561. extra: 598/528,
  30562. bottom: 28/626
  30563. }
  30564. },
  30565. head: {
  30566. height: math.unit(1.585, "feet"),
  30567. name: "Head",
  30568. image: {
  30569. source: "./media/characters/flux/head.svg"
  30570. }
  30571. },
  30572. headSide: {
  30573. height: math.unit(1.74, "feet"),
  30574. name: "Head (Side)",
  30575. image: {
  30576. source: "./media/characters/flux/head-side.svg"
  30577. }
  30578. },
  30579. headSideFire: {
  30580. height: math.unit(1.76, "feet"),
  30581. name: "Head (Side, Fire)",
  30582. image: {
  30583. source: "./media/characters/flux/head-side-fire.svg"
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Normal",
  30590. height: math.unit(7, "feet"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30597. {
  30598. front: {
  30599. height: math.unit(9, "feet"),
  30600. weight: math.unit(1012, "lb"),
  30601. name: "Front",
  30602. image: {
  30603. source: "./media/characters/ulfra-lupae/front.svg",
  30604. extra: 1083/1011,
  30605. bottom: 67/1150
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Micro",
  30612. height: math.unit(6, "inches")
  30613. },
  30614. {
  30615. name: "Socializing",
  30616. height: math.unit(6 + 5/12, "feet")
  30617. },
  30618. {
  30619. name: "Normal",
  30620. height: math.unit(9, "feet"),
  30621. default: true
  30622. },
  30623. {
  30624. name: "Macro",
  30625. height: math.unit(150, "feet")
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30631. {
  30632. front: {
  30633. height: math.unit(5 + 2/12, "feet"),
  30634. weight: math.unit(120, "lb"),
  30635. name: "Front",
  30636. image: {
  30637. source: "./media/characters/timber/front.svg",
  30638. extra: 2814/2705,
  30639. bottom: 181/2995
  30640. }
  30641. },
  30642. },
  30643. [
  30644. {
  30645. name: "Normal",
  30646. height: math.unit(5 + 2/12, "feet"),
  30647. default: true
  30648. },
  30649. ]
  30650. ))
  30651. characterMakers.push(() => makeCharacter(
  30652. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30653. {
  30654. front: {
  30655. height: math.unit(5 + 7/12, "feet"),
  30656. weight: math.unit(220, "lb"),
  30657. name: "Front",
  30658. image: {
  30659. source: "./media/characters/nicki/front.svg",
  30660. extra: 453/419,
  30661. bottom: 7/460
  30662. }
  30663. },
  30664. frontAlt: {
  30665. height: math.unit(5 + 7/12, "feet"),
  30666. weight: math.unit(220, "lb"),
  30667. name: "Front-alt",
  30668. image: {
  30669. source: "./media/characters/nicki/front-alt.svg",
  30670. extra: 435/411,
  30671. bottom: 12/447
  30672. }
  30673. },
  30674. back: {
  30675. height: math.unit(5 + 7/12, "feet"),
  30676. weight: math.unit(220, "lb"),
  30677. name: "Back",
  30678. image: {
  30679. source: "./media/characters/nicki/back.svg",
  30680. extra: 440/413,
  30681. bottom: 19/459
  30682. }
  30683. },
  30684. taur: {
  30685. height: math.unit(7 + 6/12, "feet"),
  30686. weight: math.unit(700, "lb"),
  30687. name: "Taur",
  30688. image: {
  30689. source: "./media/characters/nicki/taur.svg",
  30690. extra: 975/773,
  30691. bottom: 0/975
  30692. }
  30693. },
  30694. frontNsfw: {
  30695. height: math.unit(5 + 7/12, "feet"),
  30696. weight: math.unit(220, "lb"),
  30697. name: "Front (NSFW)",
  30698. image: {
  30699. source: "./media/characters/nicki/front-nsfw.svg",
  30700. extra: 453/419,
  30701. bottom: 7/460
  30702. }
  30703. },
  30704. frontNsfwAlt: {
  30705. height: math.unit(5 + 7/12, "feet"),
  30706. weight: math.unit(220, "lb"),
  30707. name: "Front (Alt, NSFW)",
  30708. image: {
  30709. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30710. extra: 435/411,
  30711. bottom: 12/447
  30712. }
  30713. },
  30714. backNsfw: {
  30715. height: math.unit(5 + 7/12, "feet"),
  30716. weight: math.unit(220, "lb"),
  30717. name: "Back (NSFW)",
  30718. image: {
  30719. source: "./media/characters/nicki/back-nsfw.svg",
  30720. extra: 440/413,
  30721. bottom: 19/459
  30722. }
  30723. },
  30724. head: {
  30725. height: math.unit(2.1, "feet"),
  30726. name: "Head",
  30727. image: {
  30728. source: "./media/characters/nicki/head.svg"
  30729. }
  30730. },
  30731. paw: {
  30732. height: math.unit(1.88, "feet"),
  30733. name: "Paw",
  30734. image: {
  30735. source: "./media/characters/nicki/paw.svg"
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Normal",
  30742. height: math.unit(5 + 7/12, "feet"),
  30743. default: true
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(7 + 10/12, "feet"),
  30752. weight: math.unit(3.5, "tons"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/lee/front.svg",
  30756. extra: 1773/1615,
  30757. bottom: 86/1859
  30758. }
  30759. },
  30760. hand: {
  30761. height: math.unit(1.78, "feet"),
  30762. name: "Hand",
  30763. image: {
  30764. source: "./media/characters/lee/hand.svg"
  30765. }
  30766. },
  30767. maw: {
  30768. height: math.unit(1.18, "feet"),
  30769. name: "Maw",
  30770. image: {
  30771. source: "./media/characters/lee/maw.svg"
  30772. }
  30773. },
  30774. },
  30775. [
  30776. {
  30777. name: "Normal",
  30778. height: math.unit(7 + 10/12, "feet"),
  30779. default: true
  30780. },
  30781. ]
  30782. ))
  30783. characterMakers.push(() => makeCharacter(
  30784. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30785. {
  30786. front: {
  30787. height: math.unit(9, "feet"),
  30788. name: "Front",
  30789. image: {
  30790. source: "./media/characters/guti/front.svg",
  30791. extra: 4551/4355,
  30792. bottom: 123/4674
  30793. }
  30794. },
  30795. tongue: {
  30796. height: math.unit(1, "feet"),
  30797. name: "Tongue",
  30798. image: {
  30799. source: "./media/characters/guti/tongue.svg"
  30800. }
  30801. },
  30802. paw: {
  30803. height: math.unit(1.18, "feet"),
  30804. name: "Paw",
  30805. image: {
  30806. source: "./media/characters/guti/paw.svg"
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Normal",
  30813. height: math.unit(9, "feet"),
  30814. default: true
  30815. },
  30816. ]
  30817. ))
  30818. characterMakers.push(() => makeCharacter(
  30819. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30820. {
  30821. side: {
  30822. height: math.unit(5, "meters"),
  30823. name: "Side",
  30824. image: {
  30825. source: "./media/characters/vesper/side.svg",
  30826. extra: 1605/1518,
  30827. bottom: 0/1605
  30828. }
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Small",
  30834. height: math.unit(5, "meters")
  30835. },
  30836. {
  30837. name: "Sage",
  30838. height: math.unit(100, "meters"),
  30839. default: true
  30840. },
  30841. {
  30842. name: "Fun Size",
  30843. height: math.unit(600, "meters")
  30844. },
  30845. {
  30846. name: "Goddess",
  30847. height: math.unit(20000, "km")
  30848. },
  30849. {
  30850. name: "Maximum",
  30851. height: math.unit(5, "galaxies")
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(6 + 3/12, "feet"),
  30860. weight: math.unit(190, "lb"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/gawain/front.svg",
  30864. extra: 2222/2139,
  30865. bottom: 90/2312
  30866. }
  30867. },
  30868. back: {
  30869. height: math.unit(6 + 3/12, "feet"),
  30870. weight: math.unit(190, "lb"),
  30871. name: "Back",
  30872. image: {
  30873. source: "./media/characters/gawain/back.svg",
  30874. extra: 2199/2111,
  30875. bottom: 73/2272
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(6 + 3/12, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30889. {
  30890. side: {
  30891. height: math.unit(3.5, "meters"),
  30892. weight: math.unit(16000, "lb"),
  30893. name: "Side",
  30894. image: {
  30895. source: "./media/characters/dascalti/side.svg",
  30896. extra: 392/273,
  30897. bottom: 47/439
  30898. }
  30899. },
  30900. breath: {
  30901. height: math.unit(7.4, "feet"),
  30902. name: "Breath",
  30903. image: {
  30904. source: "./media/characters/dascalti/breath.svg"
  30905. }
  30906. },
  30907. fed: {
  30908. height: math.unit(3.6, "meters"),
  30909. weight: math.unit(16000, "lb"),
  30910. name: "Fed",
  30911. image: {
  30912. source: "./media/characters/dascalti/fed.svg",
  30913. extra: 1419/820,
  30914. bottom: 95/1514
  30915. }
  30916. },
  30917. },
  30918. [
  30919. {
  30920. name: "Normal",
  30921. height: math.unit(3.5, "meters"),
  30922. default: true
  30923. },
  30924. ]
  30925. ))
  30926. characterMakers.push(() => makeCharacter(
  30927. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30928. {
  30929. front: {
  30930. height: math.unit(3 + 5/12, "feet"),
  30931. name: "Front",
  30932. image: {
  30933. source: "./media/characters/mauve/front.svg",
  30934. extra: 1126/1033,
  30935. bottom: 65/1191
  30936. }
  30937. },
  30938. side: {
  30939. height: math.unit(3 + 5/12, "feet"),
  30940. name: "Side",
  30941. image: {
  30942. source: "./media/characters/mauve/side.svg",
  30943. extra: 1089/1001,
  30944. bottom: 29/1118
  30945. }
  30946. },
  30947. back: {
  30948. height: math.unit(3 + 5/12, "feet"),
  30949. name: "Back",
  30950. image: {
  30951. source: "./media/characters/mauve/back.svg",
  30952. extra: 1173/1053,
  30953. bottom: 109/1282
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Normal",
  30960. height: math.unit(3 + 5/12, "feet"),
  30961. default: true
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30967. {
  30968. front: {
  30969. height: math.unit(6 + 3/12, "feet"),
  30970. weight: math.unit(430, "lb"),
  30971. name: "Front",
  30972. image: {
  30973. source: "./media/characters/carlos/front.svg",
  30974. extra: 1964/1913,
  30975. bottom: 70/2034
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(6 + 3/12, "feet"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30989. {
  30990. back: {
  30991. height: math.unit(5 + 10/12, "feet"),
  30992. weight: math.unit(200, "lb"),
  30993. name: "Back",
  30994. image: {
  30995. source: "./media/characters/jax/back.svg",
  30996. extra: 764/739,
  30997. bottom: 25/789
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Normal",
  31004. height: math.unit(5 + 10/12, "feet"),
  31005. default: true
  31006. },
  31007. ]
  31008. ))
  31009. characterMakers.push(() => makeCharacter(
  31010. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31011. {
  31012. front: {
  31013. height: math.unit(8, "feet"),
  31014. weight: math.unit(250, "lb"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/eikthynir/front.svg",
  31018. extra: 1332/1166,
  31019. bottom: 82/1414
  31020. }
  31021. },
  31022. back: {
  31023. height: math.unit(8, "feet"),
  31024. weight: math.unit(250, "lb"),
  31025. name: "Back",
  31026. image: {
  31027. source: "./media/characters/eikthynir/back.svg",
  31028. extra: 1342/1190,
  31029. bottom: 19/1361
  31030. }
  31031. },
  31032. dick: {
  31033. height: math.unit(2.35, "feet"),
  31034. name: "Dick",
  31035. image: {
  31036. source: "./media/characters/eikthynir/dick.svg"
  31037. }
  31038. },
  31039. },
  31040. [
  31041. {
  31042. name: "Normal",
  31043. height: math.unit(8, "feet"),
  31044. default: true
  31045. },
  31046. ]
  31047. ))
  31048. characterMakers.push(() => makeCharacter(
  31049. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31050. {
  31051. front: {
  31052. height: math.unit(99, "meters"),
  31053. weight: math.unit(13000, "tons"),
  31054. name: "Front",
  31055. image: {
  31056. source: "./media/characters/zlmos/front.svg",
  31057. extra: 2202/1992,
  31058. bottom: 315/2517
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Macro",
  31065. height: math.unit(99, "meters"),
  31066. default: true
  31067. },
  31068. ]
  31069. ))
  31070. characterMakers.push(() => makeCharacter(
  31071. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31072. {
  31073. front: {
  31074. height: math.unit(6 + 5/12, "feet"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/purri/front.svg",
  31078. extra: 1698/1610,
  31079. bottom: 32/1730
  31080. }
  31081. },
  31082. frontAlt: {
  31083. height: math.unit(6 + 5/12, "feet"),
  31084. name: "Front (Alt)",
  31085. image: {
  31086. source: "./media/characters/purri/front-alt.svg",
  31087. extra: 450/420,
  31088. bottom: 26/476
  31089. }
  31090. },
  31091. boots: {
  31092. height: math.unit(5.5, "feet"),
  31093. name: "Boots",
  31094. image: {
  31095. source: "./media/characters/purri/boots.svg",
  31096. extra: 905/853,
  31097. bottom: 18/923
  31098. }
  31099. },
  31100. lying: {
  31101. height: math.unit(2, "feet"),
  31102. name: "Lying",
  31103. image: {
  31104. source: "./media/characters/purri/lying.svg",
  31105. extra: 940/843,
  31106. bottom: 146/1086
  31107. }
  31108. },
  31109. devious: {
  31110. height: math.unit(1.77, "feet"),
  31111. name: "Devious",
  31112. image: {
  31113. source: "./media/characters/purri/devious.svg",
  31114. extra: 1440/1155,
  31115. bottom: 147/1587
  31116. }
  31117. },
  31118. bean: {
  31119. height: math.unit(1.94, "feet"),
  31120. name: "Bean",
  31121. image: {
  31122. source: "./media/characters/purri/bean.svg"
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Micro",
  31129. height: math.unit(1, "mm")
  31130. },
  31131. {
  31132. name: "Normal",
  31133. height: math.unit(6 + 5/12, "feet"),
  31134. default: true
  31135. },
  31136. {
  31137. name: "Macro :3c",
  31138. height: math.unit(2, "miles")
  31139. },
  31140. ]
  31141. ))
  31142. characterMakers.push(() => makeCharacter(
  31143. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31144. {
  31145. front: {
  31146. height: math.unit(6 + 2/12, "feet"),
  31147. weight: math.unit(250, "lb"),
  31148. name: "Front",
  31149. image: {
  31150. source: "./media/characters/moonlight/front.svg",
  31151. extra: 1044/908,
  31152. bottom: 56/1100
  31153. }
  31154. },
  31155. feral: {
  31156. height: math.unit(3 + 1/12, "feet"),
  31157. weight: math.unit(50, "kg"),
  31158. name: "Feral",
  31159. image: {
  31160. source: "./media/characters/moonlight/feral.svg",
  31161. extra: 3705/2791,
  31162. bottom: 145/3850
  31163. }
  31164. },
  31165. paw: {
  31166. height: math.unit(1, "feet"),
  31167. name: "Paw",
  31168. image: {
  31169. source: "./media/characters/moonlight/paw.svg"
  31170. }
  31171. },
  31172. paws: {
  31173. height: math.unit(0.98, "feet"),
  31174. name: "Paws",
  31175. image: {
  31176. source: "./media/characters/moonlight/paws.svg",
  31177. extra: 939/939,
  31178. bottom: 50/989
  31179. }
  31180. },
  31181. mouth: {
  31182. height: math.unit(0.48, "feet"),
  31183. name: "Mouth",
  31184. image: {
  31185. source: "./media/characters/moonlight/mouth.svg"
  31186. }
  31187. },
  31188. dick: {
  31189. height: math.unit(1.46, "feet"),
  31190. name: "Dick",
  31191. image: {
  31192. source: "./media/characters/moonlight/dick.svg"
  31193. }
  31194. },
  31195. },
  31196. [
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(6 + 2/12, "feet"),
  31200. default: true
  31201. },
  31202. {
  31203. name: "Macro",
  31204. height: math.unit(300, "feet")
  31205. },
  31206. {
  31207. name: "Macro+",
  31208. height: math.unit(1, "mile")
  31209. },
  31210. {
  31211. name: "Mt. Moon",
  31212. height: math.unit(5, "miles")
  31213. },
  31214. {
  31215. name: "Megamacro",
  31216. height: math.unit(15, "miles")
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31222. {
  31223. back: {
  31224. height: math.unit(6, "feet"),
  31225. weight: math.unit(150, "lb"),
  31226. name: "Back",
  31227. image: {
  31228. source: "./media/characters/sylen/back.svg",
  31229. extra: 1335/1273,
  31230. bottom: 107/1442
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(5 + 5/12, "feet")
  31238. },
  31239. {
  31240. name: "Megamacro",
  31241. height: math.unit(3, "miles"),
  31242. default: true
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31248. {
  31249. front: {
  31250. height: math.unit(6, "feet"),
  31251. weight: math.unit(190, "lb"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/huttser/front.svg",
  31255. extra: 1152/1058,
  31256. bottom: 23/1175
  31257. }
  31258. },
  31259. side: {
  31260. height: math.unit(6, "feet"),
  31261. weight: math.unit(190, "lb"),
  31262. name: "Side",
  31263. image: {
  31264. source: "./media/characters/huttser/side.svg",
  31265. extra: 1174/1065,
  31266. bottom: 18/1192
  31267. }
  31268. },
  31269. back: {
  31270. height: math.unit(6, "feet"),
  31271. weight: math.unit(190, "lb"),
  31272. name: "Back",
  31273. image: {
  31274. source: "./media/characters/huttser/back.svg",
  31275. extra: 1158/1056,
  31276. bottom: 12/1170
  31277. }
  31278. },
  31279. },
  31280. [
  31281. ]
  31282. ))
  31283. characterMakers.push(() => makeCharacter(
  31284. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31285. {
  31286. side: {
  31287. height: math.unit(12 + 9/12, "feet"),
  31288. weight: math.unit(15000, "lb"),
  31289. name: "Side",
  31290. image: {
  31291. source: "./media/characters/faan/side.svg",
  31292. extra: 2747/2697,
  31293. bottom: 0/2747
  31294. }
  31295. },
  31296. front: {
  31297. height: math.unit(12 + 9/12, "feet"),
  31298. weight: math.unit(15000, "lb"),
  31299. name: "Front",
  31300. image: {
  31301. source: "./media/characters/faan/front.svg",
  31302. extra: 607/571,
  31303. bottom: 24/631
  31304. }
  31305. },
  31306. head: {
  31307. height: math.unit(2.85, "feet"),
  31308. name: "Head",
  31309. image: {
  31310. source: "./media/characters/faan/head.svg"
  31311. }
  31312. },
  31313. headAlt: {
  31314. height: math.unit(3.13, "feet"),
  31315. name: "Head-alt",
  31316. image: {
  31317. source: "./media/characters/faan/head-alt.svg"
  31318. }
  31319. },
  31320. },
  31321. [
  31322. {
  31323. name: "Normal",
  31324. height: math.unit(12 + 9/12, "feet"),
  31325. default: true
  31326. },
  31327. ]
  31328. ))
  31329. characterMakers.push(() => makeCharacter(
  31330. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31331. {
  31332. front: {
  31333. height: math.unit(6, "feet"),
  31334. weight: math.unit(300, "lb"),
  31335. name: "Front",
  31336. image: {
  31337. source: "./media/characters/tanio/front.svg",
  31338. extra: 711/673,
  31339. bottom: 25/736
  31340. }
  31341. },
  31342. },
  31343. [
  31344. {
  31345. name: "Normal",
  31346. height: math.unit(6, "feet"),
  31347. default: true
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31353. {
  31354. front: {
  31355. height: math.unit(3, "inches"),
  31356. name: "Front",
  31357. image: {
  31358. source: "./media/characters/noboru/front.svg",
  31359. extra: 1039/932,
  31360. bottom: 18/1057
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Micro",
  31367. height: math.unit(3, "inches"),
  31368. default: true
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31374. {
  31375. front: {
  31376. height: math.unit(1.85, "meters"),
  31377. weight: math.unit(80, "kg"),
  31378. name: "Front",
  31379. image: {
  31380. source: "./media/characters/daniel-barrett/front.svg",
  31381. extra: 355/337,
  31382. bottom: 9/364
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Pico",
  31389. height: math.unit(0.0433, "mm")
  31390. },
  31391. {
  31392. name: "Nano",
  31393. height: math.unit(1.5, "mm")
  31394. },
  31395. {
  31396. name: "Micro",
  31397. height: math.unit(5.3, "cm"),
  31398. default: true
  31399. },
  31400. {
  31401. name: "Normal",
  31402. height: math.unit(1.85, "meters")
  31403. },
  31404. {
  31405. name: "Macro",
  31406. height: math.unit(64.7, "meters")
  31407. },
  31408. {
  31409. name: "Megamacro",
  31410. height: math.unit(2.26, "km")
  31411. },
  31412. {
  31413. name: "Gigamacro",
  31414. height: math.unit(79, "km")
  31415. },
  31416. {
  31417. name: "Teramacro",
  31418. height: math.unit(2765, "km")
  31419. },
  31420. {
  31421. name: "Petamacro",
  31422. height: math.unit(96678, "km")
  31423. },
  31424. ]
  31425. ))
  31426. characterMakers.push(() => makeCharacter(
  31427. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31428. {
  31429. front: {
  31430. height: math.unit(30, "meters"),
  31431. weight: math.unit(400, "tons"),
  31432. name: "Front",
  31433. image: {
  31434. source: "./media/characters/zeel/front.svg",
  31435. extra: 2599/2599,
  31436. bottom: 226/2825
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "Macro",
  31443. height: math.unit(30, "meters"),
  31444. default: true
  31445. },
  31446. ]
  31447. ))
  31448. characterMakers.push(() => makeCharacter(
  31449. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31450. {
  31451. front: {
  31452. height: math.unit(6 + 7/12, "feet"),
  31453. weight: math.unit(210, "lb"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/tarn/front.svg",
  31457. extra: 3517/3220,
  31458. bottom: 91/3608
  31459. }
  31460. },
  31461. back: {
  31462. height: math.unit(6 + 7/12, "feet"),
  31463. weight: math.unit(210, "lb"),
  31464. name: "Back",
  31465. image: {
  31466. source: "./media/characters/tarn/back.svg",
  31467. extra: 3566/3241,
  31468. bottom: 34/3600
  31469. }
  31470. },
  31471. dick: {
  31472. height: math.unit(1.65, "feet"),
  31473. name: "Dick",
  31474. image: {
  31475. source: "./media/characters/tarn/dick.svg"
  31476. }
  31477. },
  31478. paw: {
  31479. height: math.unit(1.80, "feet"),
  31480. name: "Paw",
  31481. image: {
  31482. source: "./media/characters/tarn/paw.svg"
  31483. }
  31484. },
  31485. tongue: {
  31486. height: math.unit(0.97, "feet"),
  31487. name: "Tongue",
  31488. image: {
  31489. source: "./media/characters/tarn/tongue.svg"
  31490. }
  31491. },
  31492. },
  31493. [
  31494. {
  31495. name: "Micro",
  31496. height: math.unit(4, "inches")
  31497. },
  31498. {
  31499. name: "Normal",
  31500. height: math.unit(6 + 7/12, "feet"),
  31501. default: true
  31502. },
  31503. {
  31504. name: "Macro",
  31505. height: math.unit(300, "feet")
  31506. },
  31507. ]
  31508. ))
  31509. characterMakers.push(() => makeCharacter(
  31510. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31511. {
  31512. front: {
  31513. height: math.unit(5 + 7/12, "feet"),
  31514. weight: math.unit(80, "kg"),
  31515. name: "Front",
  31516. image: {
  31517. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31518. extra: 3023/2865,
  31519. bottom: 33/3056
  31520. }
  31521. },
  31522. back: {
  31523. height: math.unit(5 + 7/12, "feet"),
  31524. weight: math.unit(80, "kg"),
  31525. name: "Back",
  31526. image: {
  31527. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31528. extra: 3020/2886,
  31529. bottom: 30/3050
  31530. }
  31531. },
  31532. dick: {
  31533. height: math.unit(0.98, "feet"),
  31534. name: "Dick",
  31535. image: {
  31536. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31537. }
  31538. },
  31539. anatomy: {
  31540. height: math.unit(2.86, "feet"),
  31541. name: "Anatomy",
  31542. image: {
  31543. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31544. }
  31545. },
  31546. },
  31547. [
  31548. {
  31549. name: "Really Small",
  31550. height: math.unit(2, "inches")
  31551. },
  31552. {
  31553. name: "Micro",
  31554. height: math.unit(5.583, "inches")
  31555. },
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(5 + 7/12, "feet"),
  31559. default: true
  31560. },
  31561. {
  31562. name: "Macro",
  31563. height: math.unit(67, "feet")
  31564. },
  31565. {
  31566. name: "Megamacro",
  31567. height: math.unit(134, "feet")
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(9, "feet"),
  31576. weight: math.unit(120, "lb"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/sally/front.svg",
  31580. extra: 1506/1349,
  31581. bottom: 66/1572
  31582. }
  31583. },
  31584. },
  31585. [
  31586. {
  31587. name: "Normal",
  31588. height: math.unit(9, "feet"),
  31589. default: true
  31590. },
  31591. ]
  31592. ))
  31593. characterMakers.push(() => makeCharacter(
  31594. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31595. {
  31596. front: {
  31597. height: math.unit(8, "feet"),
  31598. weight: math.unit(900, "lb"),
  31599. name: "Front",
  31600. image: {
  31601. source: "./media/characters/owen/front.svg",
  31602. extra: 1761/1657,
  31603. bottom: 74/1835
  31604. }
  31605. },
  31606. side: {
  31607. height: math.unit(8, "feet"),
  31608. weight: math.unit(900, "lb"),
  31609. name: "Side",
  31610. image: {
  31611. source: "./media/characters/owen/side.svg",
  31612. extra: 1797/1734,
  31613. bottom: 30/1827
  31614. }
  31615. },
  31616. back: {
  31617. height: math.unit(8, "feet"),
  31618. weight: math.unit(900, "lb"),
  31619. name: "Back",
  31620. image: {
  31621. source: "./media/characters/owen/back.svg",
  31622. extra: 1796/1706,
  31623. bottom: 59/1855
  31624. }
  31625. },
  31626. maw: {
  31627. height: math.unit(1.76, "feet"),
  31628. name: "Maw",
  31629. image: {
  31630. source: "./media/characters/owen/maw.svg"
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Normal",
  31637. height: math.unit(8, "feet"),
  31638. default: true
  31639. },
  31640. ]
  31641. ))
  31642. characterMakers.push(() => makeCharacter(
  31643. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31644. {
  31645. front: {
  31646. height: math.unit(4, "feet"),
  31647. weight: math.unit(400, "lb"),
  31648. name: "Front",
  31649. image: {
  31650. source: "./media/characters/ryth/front.svg",
  31651. extra: 876/691,
  31652. bottom: 25/901
  31653. }
  31654. },
  31655. goia: {
  31656. height: math.unit(12, "feet"),
  31657. weight: math.unit(10800, "lb"),
  31658. name: "Goia",
  31659. image: {
  31660. source: "./media/characters/ryth/goia.svg",
  31661. extra: 3450/3198,
  31662. bottom: 61/3511
  31663. }
  31664. },
  31665. },
  31666. [
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(4, "feet"),
  31670. default: true
  31671. },
  31672. ]
  31673. ))
  31674. characterMakers.push(() => makeCharacter(
  31675. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31676. {
  31677. front: {
  31678. height: math.unit(7, "feet"),
  31679. weight: math.unit(180, "lb"),
  31680. name: "Front",
  31681. image: {
  31682. source: "./media/characters/necrolance/front.svg",
  31683. extra: 1062/947,
  31684. bottom: 41/1103
  31685. }
  31686. },
  31687. back: {
  31688. height: math.unit(7, "feet"),
  31689. weight: math.unit(180, "lb"),
  31690. name: "Back",
  31691. image: {
  31692. source: "./media/characters/necrolance/back.svg",
  31693. extra: 1045/984,
  31694. bottom: 14/1059
  31695. }
  31696. },
  31697. wing: {
  31698. height: math.unit(2.67, "feet"),
  31699. name: "Wing",
  31700. image: {
  31701. source: "./media/characters/necrolance/wing.svg"
  31702. }
  31703. },
  31704. },
  31705. [
  31706. {
  31707. name: "Normal",
  31708. height: math.unit(7, "feet"),
  31709. default: true
  31710. },
  31711. ]
  31712. ))
  31713. characterMakers.push(() => makeCharacter(
  31714. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31715. {
  31716. front: {
  31717. height: math.unit(76, "meters"),
  31718. weight: math.unit(30000, "tons"),
  31719. name: "Front",
  31720. image: {
  31721. source: "./media/characters/tyler/front.svg",
  31722. extra: 1640/1640,
  31723. bottom: 114/1754
  31724. }
  31725. },
  31726. },
  31727. [
  31728. {
  31729. name: "Macro",
  31730. height: math.unit(76, "meters"),
  31731. default: true
  31732. },
  31733. ]
  31734. ))
  31735. characterMakers.push(() => makeCharacter(
  31736. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31737. {
  31738. front: {
  31739. height: math.unit(4 + 11/12, "feet"),
  31740. weight: math.unit(132, "lb"),
  31741. name: "Front",
  31742. image: {
  31743. source: "./media/characters/icey/front.svg",
  31744. extra: 2750/2550,
  31745. bottom: 33/2783
  31746. }
  31747. },
  31748. back: {
  31749. height: math.unit(4 + 11/12, "feet"),
  31750. weight: math.unit(132, "lb"),
  31751. name: "Back",
  31752. image: {
  31753. source: "./media/characters/icey/back.svg",
  31754. extra: 2624/2481,
  31755. bottom: 35/2659
  31756. }
  31757. },
  31758. },
  31759. [
  31760. {
  31761. name: "Normal",
  31762. height: math.unit(4 + 11/12, "feet"),
  31763. default: true
  31764. },
  31765. ]
  31766. ))
  31767. characterMakers.push(() => makeCharacter(
  31768. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31769. {
  31770. front: {
  31771. height: math.unit(100, "feet"),
  31772. weight: math.unit(0, "lb"),
  31773. name: "Front",
  31774. image: {
  31775. source: "./media/characters/smile/front.svg",
  31776. extra: 2983/2912,
  31777. bottom: 162/3145
  31778. }
  31779. },
  31780. back: {
  31781. height: math.unit(100, "feet"),
  31782. weight: math.unit(0, "lb"),
  31783. name: "Back",
  31784. image: {
  31785. source: "./media/characters/smile/back.svg",
  31786. extra: 3143/3031,
  31787. bottom: 91/3234
  31788. }
  31789. },
  31790. head: {
  31791. height: math.unit(26.3, "feet"),
  31792. weight: math.unit(0, "lb"),
  31793. name: "Head",
  31794. image: {
  31795. source: "./media/characters/smile/head.svg"
  31796. }
  31797. },
  31798. collar: {
  31799. height: math.unit(5.3, "feet"),
  31800. weight: math.unit(0, "lb"),
  31801. name: "Collar",
  31802. image: {
  31803. source: "./media/characters/smile/collar.svg"
  31804. }
  31805. },
  31806. },
  31807. [
  31808. {
  31809. name: "Macro",
  31810. height: math.unit(100, "feet"),
  31811. default: true
  31812. },
  31813. ]
  31814. ))
  31815. characterMakers.push(() => makeCharacter(
  31816. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31817. {
  31818. dragon: {
  31819. height: math.unit(26, "feet"),
  31820. weight: math.unit(36, "tons"),
  31821. name: "Dragon",
  31822. image: {
  31823. source: "./media/characters/arimphae/dragon.svg",
  31824. extra: 1574/983,
  31825. bottom: 357/1931
  31826. }
  31827. },
  31828. drake: {
  31829. height: math.unit(9, "feet"),
  31830. weight: math.unit(1.5, "tons"),
  31831. name: "Drake",
  31832. image: {
  31833. source: "./media/characters/arimphae/drake.svg",
  31834. extra: 1120/925,
  31835. bottom: 435/1555
  31836. }
  31837. },
  31838. },
  31839. [
  31840. {
  31841. name: "Small",
  31842. height: math.unit(26*5/9, "feet")
  31843. },
  31844. {
  31845. name: "Normal",
  31846. height: math.unit(26, "feet"),
  31847. default: true
  31848. },
  31849. ]
  31850. ))
  31851. characterMakers.push(() => makeCharacter(
  31852. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31853. {
  31854. front: {
  31855. height: math.unit(8 + 9/12, "feet"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/xander/front.svg",
  31859. extra: 848/673,
  31860. bottom: 62/910
  31861. }
  31862. },
  31863. },
  31864. [
  31865. {
  31866. name: "Normal",
  31867. height: math.unit(8 + 9/12, "feet"),
  31868. default: true
  31869. },
  31870. {
  31871. name: "Gaze Grabber",
  31872. height: math.unit(13 + 8/12, "feet")
  31873. },
  31874. {
  31875. name: "Jaw Dropper",
  31876. height: math.unit(27, "feet")
  31877. },
  31878. {
  31879. name: "Show Stopper",
  31880. height: math.unit(136, "feet")
  31881. },
  31882. {
  31883. name: "Superstar",
  31884. height: math.unit(1.9e6, "miles")
  31885. },
  31886. ]
  31887. ))
  31888. characterMakers.push(() => makeCharacter(
  31889. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31890. {
  31891. side: {
  31892. height: math.unit(2100, "feet"),
  31893. name: "Side",
  31894. image: {
  31895. source: "./media/characters/osiris/side.svg",
  31896. extra: 1105/939,
  31897. bottom: 167/1272
  31898. }
  31899. },
  31900. },
  31901. [
  31902. {
  31903. name: "Macro",
  31904. height: math.unit(2100, "feet"),
  31905. default: true
  31906. },
  31907. ]
  31908. ))
  31909. characterMakers.push(() => makeCharacter(
  31910. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31911. {
  31912. front: {
  31913. height: math.unit(6 + 8/12, "feet"),
  31914. weight: math.unit(225, "lb"),
  31915. name: "Front",
  31916. image: {
  31917. source: "./media/characters/rhys-londe/front.svg",
  31918. extra: 2258/2141,
  31919. bottom: 188/2446
  31920. }
  31921. },
  31922. back: {
  31923. height: math.unit(6 + 8/12, "feet"),
  31924. weight: math.unit(225, "lb"),
  31925. name: "Back",
  31926. image: {
  31927. source: "./media/characters/rhys-londe/back.svg",
  31928. extra: 2237/2137,
  31929. bottom: 63/2300
  31930. }
  31931. },
  31932. frontNsfw: {
  31933. height: math.unit(6 + 8/12, "feet"),
  31934. weight: math.unit(225, "lb"),
  31935. name: "Front (NSFW)",
  31936. image: {
  31937. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31938. extra: 2258/2141,
  31939. bottom: 188/2446
  31940. }
  31941. },
  31942. backNsfw: {
  31943. height: math.unit(6 + 8/12, "feet"),
  31944. weight: math.unit(225, "lb"),
  31945. name: "Back (NSFW)",
  31946. image: {
  31947. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31948. extra: 2237/2137,
  31949. bottom: 63/2300
  31950. }
  31951. },
  31952. dick: {
  31953. height: math.unit(30, "inches"),
  31954. name: "Dick",
  31955. image: {
  31956. source: "./media/characters/rhys-londe/dick.svg"
  31957. }
  31958. },
  31959. maw: {
  31960. height: math.unit(1.6, "feet"),
  31961. name: "Maw",
  31962. image: {
  31963. source: "./media/characters/rhys-londe/maw.svg"
  31964. }
  31965. },
  31966. },
  31967. [
  31968. {
  31969. name: "Normal",
  31970. height: math.unit(6 + 8/12, "feet"),
  31971. default: true
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(3 + 10/12, "feet"),
  31980. weight: math.unit(90, "lb"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/taivas-ensim/front.svg",
  31984. extra: 1327/1216,
  31985. bottom: 96/1423
  31986. }
  31987. },
  31988. back: {
  31989. height: math.unit(3 + 10/12, "feet"),
  31990. weight: math.unit(90, "lb"),
  31991. name: "Back",
  31992. image: {
  31993. source: "./media/characters/taivas-ensim/back.svg",
  31994. extra: 1355/1247,
  31995. bottom: 11/1366
  31996. }
  31997. },
  31998. frontNsfw: {
  31999. height: math.unit(3 + 10/12, "feet"),
  32000. weight: math.unit(90, "lb"),
  32001. name: "Front (NSFW)",
  32002. image: {
  32003. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32004. extra: 1327/1216,
  32005. bottom: 96/1423
  32006. }
  32007. },
  32008. backNsfw: {
  32009. height: math.unit(3 + 10/12, "feet"),
  32010. weight: math.unit(90, "lb"),
  32011. name: "Back (NSFW)",
  32012. image: {
  32013. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32014. extra: 1355/1247,
  32015. bottom: 11/1366
  32016. }
  32017. },
  32018. },
  32019. [
  32020. {
  32021. name: "Normal",
  32022. height: math.unit(3 + 10/12, "feet"),
  32023. default: true
  32024. },
  32025. ]
  32026. ))
  32027. characterMakers.push(() => makeCharacter(
  32028. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32029. {
  32030. front: {
  32031. height: math.unit(9 + 6/12, "feet"),
  32032. weight: math.unit(940, "lb"),
  32033. name: "Front",
  32034. image: {
  32035. source: "./media/characters/byliss/front.svg",
  32036. extra: 1327/1290,
  32037. bottom: 82/1409
  32038. }
  32039. },
  32040. back: {
  32041. height: math.unit(9 + 6/12, "feet"),
  32042. weight: math.unit(940, "lb"),
  32043. name: "Back",
  32044. image: {
  32045. source: "./media/characters/byliss/back.svg",
  32046. extra: 1376/1349,
  32047. bottom: 9/1385
  32048. }
  32049. },
  32050. frontNsfw: {
  32051. height: math.unit(9 + 6/12, "feet"),
  32052. weight: math.unit(940, "lb"),
  32053. name: "Front (NSFW)",
  32054. image: {
  32055. source: "./media/characters/byliss/front-nsfw.svg",
  32056. extra: 1327/1290,
  32057. bottom: 82/1409
  32058. }
  32059. },
  32060. backNsfw: {
  32061. height: math.unit(9 + 6/12, "feet"),
  32062. weight: math.unit(940, "lb"),
  32063. name: "Back (NSFW)",
  32064. image: {
  32065. source: "./media/characters/byliss/back-nsfw.svg",
  32066. extra: 1376/1349,
  32067. bottom: 9/1385
  32068. }
  32069. },
  32070. },
  32071. [
  32072. {
  32073. name: "Normal",
  32074. height: math.unit(9 + 6/12, "feet"),
  32075. default: true
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32081. {
  32082. front: {
  32083. height: math.unit(5 + 2/12, "feet"),
  32084. weight: math.unit(200, "lb"),
  32085. name: "Front",
  32086. image: {
  32087. source: "./media/characters/noraly/front.svg",
  32088. extra: 4985/4773,
  32089. bottom: 150/5135
  32090. }
  32091. },
  32092. full: {
  32093. height: math.unit(5 + 2/12, "feet"),
  32094. weight: math.unit(164, "lb"),
  32095. name: "Full",
  32096. image: {
  32097. source: "./media/characters/noraly/full.svg",
  32098. extra: 1114/1059,
  32099. bottom: 35/1149
  32100. }
  32101. },
  32102. fuller: {
  32103. height: math.unit(5 + 2/12, "feet"),
  32104. weight: math.unit(230, "lb"),
  32105. name: "Fuller",
  32106. image: {
  32107. source: "./media/characters/noraly/fuller.svg",
  32108. extra: 1114/1059,
  32109. bottom: 35/1149
  32110. }
  32111. },
  32112. fullest: {
  32113. height: math.unit(5 + 2/12, "feet"),
  32114. weight: math.unit(300, "lb"),
  32115. name: "Fullest",
  32116. image: {
  32117. source: "./media/characters/noraly/fullest.svg",
  32118. extra: 1114/1059,
  32119. bottom: 35/1149
  32120. }
  32121. },
  32122. },
  32123. [
  32124. {
  32125. name: "Normal",
  32126. height: math.unit(5 + 2/12, "feet"),
  32127. default: true
  32128. },
  32129. ]
  32130. ))
  32131. characterMakers.push(() => makeCharacter(
  32132. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32133. {
  32134. front: {
  32135. height: math.unit(5 + 2/12, "feet"),
  32136. weight: math.unit(210, "lb"),
  32137. name: "Front",
  32138. image: {
  32139. source: "./media/characters/pera/front.svg",
  32140. extra: 1560/1531,
  32141. bottom: 165/1725
  32142. }
  32143. },
  32144. back: {
  32145. height: math.unit(5 + 2/12, "feet"),
  32146. weight: math.unit(210, "lb"),
  32147. name: "Back",
  32148. image: {
  32149. source: "./media/characters/pera/back.svg",
  32150. extra: 1523/1493,
  32151. bottom: 152/1675
  32152. }
  32153. },
  32154. dick: {
  32155. height: math.unit(2.4, "feet"),
  32156. name: "Dick",
  32157. image: {
  32158. source: "./media/characters/pera/dick.svg"
  32159. }
  32160. },
  32161. },
  32162. [
  32163. {
  32164. name: "Normal",
  32165. height: math.unit(5 + 2/12, "feet"),
  32166. default: true
  32167. },
  32168. ]
  32169. ))
  32170. characterMakers.push(() => makeCharacter(
  32171. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32172. {
  32173. front: {
  32174. height: math.unit(12, "feet"),
  32175. weight: math.unit(3200, "lb"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/julian/front.svg",
  32179. extra: 2962/2701,
  32180. bottom: 184/3146
  32181. }
  32182. },
  32183. maw: {
  32184. height: math.unit(5.35, "feet"),
  32185. name: "Maw",
  32186. image: {
  32187. source: "./media/characters/julian/maw.svg"
  32188. }
  32189. },
  32190. paw: {
  32191. height: math.unit(3.07, "feet"),
  32192. name: "Paw",
  32193. image: {
  32194. source: "./media/characters/julian/paw.svg"
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Default",
  32201. height: math.unit(12, "feet"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Big",
  32206. height: math.unit(50, "feet")
  32207. },
  32208. {
  32209. name: "Really Big",
  32210. height: math.unit(1, "mile")
  32211. },
  32212. {
  32213. name: "Extremely Big",
  32214. height: math.unit(100, "miles")
  32215. },
  32216. {
  32217. name: "Planet Hugger",
  32218. height: math.unit(200, "megameters")
  32219. },
  32220. {
  32221. name: "Unreasonably Big",
  32222. height: math.unit(1e300, "meters")
  32223. },
  32224. ]
  32225. ))
  32226. characterMakers.push(() => makeCharacter(
  32227. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32228. {
  32229. solgooleo: {
  32230. height: math.unit(4, "meters"),
  32231. weight: math.unit(6000*1.5, "kg"),
  32232. volume: math.unit(6000, "liters"),
  32233. name: "Solgooleo",
  32234. image: {
  32235. source: "./media/characters/pi/solgooleo.svg",
  32236. extra: 388/331,
  32237. bottom: 29/417
  32238. }
  32239. },
  32240. },
  32241. [
  32242. {
  32243. name: "Normal",
  32244. height: math.unit(4, "meters"),
  32245. default: true
  32246. },
  32247. ]
  32248. ))
  32249. characterMakers.push(() => makeCharacter(
  32250. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32251. {
  32252. front: {
  32253. height: math.unit(8 + 2/12, "feet"),
  32254. weight: math.unit(4, "tons"),
  32255. name: "Front",
  32256. image: {
  32257. source: "./media/characters/shaun/front.svg",
  32258. extra: 1550/1505,
  32259. bottom: 353/1903
  32260. }
  32261. },
  32262. },
  32263. [
  32264. {
  32265. name: "Lorg",
  32266. height: math.unit(8 + 2/12, "feet"),
  32267. default: true
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32273. {
  32274. front: {
  32275. height: math.unit(7, "feet"),
  32276. name: "Front",
  32277. image: {
  32278. source: "./media/characters/sini/front.svg",
  32279. extra: 726/678,
  32280. bottom: 35/761
  32281. }
  32282. },
  32283. back: {
  32284. height: math.unit(7, "feet"),
  32285. name: "Back",
  32286. image: {
  32287. source: "./media/characters/sini/back.svg",
  32288. extra: 743/701,
  32289. bottom: 12/755
  32290. }
  32291. },
  32292. mawAnthro: {
  32293. height: math.unit(2.14, "feet"),
  32294. name: "Maw (Anthro)",
  32295. image: {
  32296. source: "./media/characters/sini/maw-anthro.svg"
  32297. }
  32298. },
  32299. dick: {
  32300. height: math.unit(1.45, "feet"),
  32301. name: "Dick (Anthro)",
  32302. image: {
  32303. source: "./media/characters/sini/dick-anthro.svg"
  32304. }
  32305. },
  32306. feral: {
  32307. height: math.unit(16, "feet"),
  32308. name: "Feral",
  32309. image: {
  32310. source: "./media/characters/sini/feral.svg",
  32311. extra: 814/605,
  32312. bottom: 11/825
  32313. }
  32314. },
  32315. mawFeral: {
  32316. height: math.unit(5.66, "feet"),
  32317. name: "Maw-feral",
  32318. image: {
  32319. source: "./media/characters/sini/maw-feral.svg"
  32320. }
  32321. },
  32322. footFeral: {
  32323. height: math.unit(5.17, "feet"),
  32324. name: "Foot-feral",
  32325. image: {
  32326. source: "./media/characters/sini/foot-feral.svg"
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(7, "feet"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32340. {
  32341. side: {
  32342. height: math.unit(13, "meters"),
  32343. weight: math.unit(9072, "kg"),
  32344. name: "Side",
  32345. image: {
  32346. source: "./media/characters/raylldo/side.svg",
  32347. extra: 403/344,
  32348. bottom: 42/445
  32349. }
  32350. },
  32351. leaping: {
  32352. height: math.unit(12.3, "meters"),
  32353. weight: math.unit(9072, "kg"),
  32354. name: "Leaping",
  32355. image: {
  32356. source: "./media/characters/raylldo/leaping.svg",
  32357. extra: 470/249,
  32358. bottom: 13/483
  32359. }
  32360. },
  32361. flying: {
  32362. height: math.unit(18, "meters"),
  32363. weight: math.unit(9072, "kg"),
  32364. name: "Flying",
  32365. image: {
  32366. source: "./media/characters/raylldo/flying.svg"
  32367. }
  32368. },
  32369. head: {
  32370. height: math.unit(5.85, "meters"),
  32371. name: "Head",
  32372. image: {
  32373. source: "./media/characters/raylldo/head.svg"
  32374. }
  32375. },
  32376. maw: {
  32377. height: math.unit(5.32, "meters"),
  32378. name: "Maw",
  32379. image: {
  32380. source: "./media/characters/raylldo/maw.svg"
  32381. }
  32382. },
  32383. eye: {
  32384. height: math.unit(0.54, "meters"),
  32385. name: "Eye",
  32386. image: {
  32387. source: "./media/characters/raylldo/eye.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Normal",
  32394. height: math.unit(13, "meters"),
  32395. default: true
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32401. {
  32402. anthroFront: {
  32403. height: math.unit(9, "feet"),
  32404. weight: math.unit(600, "lb"),
  32405. name: "Anthro (Front)",
  32406. image: {
  32407. source: "./media/characters/glint/anthro-front.svg",
  32408. extra: 1097/1018,
  32409. bottom: 28/1125
  32410. }
  32411. },
  32412. anthroBack: {
  32413. height: math.unit(9, "feet"),
  32414. weight: math.unit(600, "lb"),
  32415. name: "Anthro (Back)",
  32416. image: {
  32417. source: "./media/characters/glint/anthro-back.svg",
  32418. extra: 1154/997,
  32419. bottom: 36/1190
  32420. }
  32421. },
  32422. feral: {
  32423. height: math.unit(11, "feet"),
  32424. weight: math.unit(50000, "lb"),
  32425. name: "Feral",
  32426. image: {
  32427. source: "./media/characters/glint/feral.svg",
  32428. extra: 3035/1585,
  32429. bottom: 1169/4204
  32430. }
  32431. },
  32432. dickAnthro: {
  32433. height: math.unit(0.7, "meters"),
  32434. name: "Dick (Anthro)",
  32435. image: {
  32436. source: "./media/characters/glint/dick-anthro.svg"
  32437. }
  32438. },
  32439. dickFeral: {
  32440. height: math.unit(2.65, "meters"),
  32441. name: "Dick (Feral)",
  32442. image: {
  32443. source: "./media/characters/glint/dick-feral.svg"
  32444. }
  32445. },
  32446. slitHidden: {
  32447. height: math.unit(5.85, "meters"),
  32448. name: "Slit (Hidden)",
  32449. image: {
  32450. source: "./media/characters/glint/slit-hidden.svg"
  32451. }
  32452. },
  32453. slitErect: {
  32454. height: math.unit(5.85, "meters"),
  32455. name: "Slit (Erect)",
  32456. image: {
  32457. source: "./media/characters/glint/slit-erect.svg"
  32458. }
  32459. },
  32460. mawAnthro: {
  32461. height: math.unit(0.63, "meters"),
  32462. name: "Maw (Anthro)",
  32463. image: {
  32464. source: "./media/characters/glint/maw.svg"
  32465. }
  32466. },
  32467. mawFeral: {
  32468. height: math.unit(2.89, "meters"),
  32469. name: "Maw (Feral)",
  32470. image: {
  32471. source: "./media/characters/glint/maw.svg"
  32472. }
  32473. },
  32474. },
  32475. [
  32476. {
  32477. name: "Normal",
  32478. height: math.unit(9, "feet"),
  32479. default: true
  32480. },
  32481. ]
  32482. ))
  32483. characterMakers.push(() => makeCharacter(
  32484. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32485. {
  32486. side: {
  32487. height: math.unit(15, "feet"),
  32488. weight: math.unit(5000, "kg"),
  32489. name: "Side",
  32490. image: {
  32491. source: "./media/characters/kairne/side.svg",
  32492. extra: 979/811,
  32493. bottom: 13/992
  32494. }
  32495. },
  32496. front: {
  32497. height: math.unit(15, "feet"),
  32498. weight: math.unit(5000, "kg"),
  32499. name: "Front",
  32500. image: {
  32501. source: "./media/characters/kairne/front.svg",
  32502. extra: 908/814,
  32503. bottom: 26/934
  32504. }
  32505. },
  32506. sideNsfw: {
  32507. height: math.unit(15, "feet"),
  32508. weight: math.unit(5000, "kg"),
  32509. name: "Side (NSFW)",
  32510. image: {
  32511. source: "./media/characters/kairne/side-nsfw.svg",
  32512. extra: 979/811,
  32513. bottom: 13/992
  32514. }
  32515. },
  32516. frontNsfw: {
  32517. height: math.unit(15, "feet"),
  32518. weight: math.unit(5000, "kg"),
  32519. name: "Front (NSFW)",
  32520. image: {
  32521. source: "./media/characters/kairne/front-nsfw.svg",
  32522. extra: 908/814,
  32523. bottom: 26/934
  32524. }
  32525. },
  32526. dickCaged: {
  32527. height: math.unit(0.65, "meters"),
  32528. name: "Dick-caged",
  32529. image: {
  32530. source: "./media/characters/kairne/dick-caged.svg"
  32531. }
  32532. },
  32533. dick: {
  32534. height: math.unit(0.79, "meters"),
  32535. name: "Dick",
  32536. image: {
  32537. source: "./media/characters/kairne/dick.svg"
  32538. }
  32539. },
  32540. genitals: {
  32541. height: math.unit(1.29, "meters"),
  32542. name: "Genitals",
  32543. image: {
  32544. source: "./media/characters/kairne/genitals.svg"
  32545. }
  32546. },
  32547. maw: {
  32548. height: math.unit(1.73, "meters"),
  32549. name: "Maw",
  32550. image: {
  32551. source: "./media/characters/kairne/maw.svg"
  32552. }
  32553. },
  32554. },
  32555. [
  32556. {
  32557. name: "Normal",
  32558. height: math.unit(15, "feet"),
  32559. default: true
  32560. },
  32561. ]
  32562. ))
  32563. characterMakers.push(() => makeCharacter(
  32564. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32565. {
  32566. front: {
  32567. height: math.unit(5 + 8/12, "feet"),
  32568. weight: math.unit(139, "lb"),
  32569. name: "Front",
  32570. image: {
  32571. source: "./media/characters/biscuit-jackal/front.svg",
  32572. extra: 2106/1961,
  32573. bottom: 58/2164
  32574. }
  32575. },
  32576. back: {
  32577. height: math.unit(5 + 8/12, "feet"),
  32578. weight: math.unit(139, "lb"),
  32579. name: "Back",
  32580. image: {
  32581. source: "./media/characters/biscuit-jackal/back.svg",
  32582. extra: 2132/1976,
  32583. bottom: 57/2189
  32584. }
  32585. },
  32586. werejackal: {
  32587. height: math.unit(6 + 3/12, "feet"),
  32588. weight: math.unit(188, "lb"),
  32589. name: "Werejackal",
  32590. image: {
  32591. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32592. extra: 2373/2178,
  32593. bottom: 53/2426
  32594. }
  32595. },
  32596. },
  32597. [
  32598. {
  32599. name: "Normal",
  32600. height: math.unit(5 + 8/12, "feet"),
  32601. default: true
  32602. },
  32603. ]
  32604. ))
  32605. characterMakers.push(() => makeCharacter(
  32606. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32607. {
  32608. front: {
  32609. height: math.unit(140, "cm"),
  32610. weight: math.unit(45, "kg"),
  32611. name: "Front",
  32612. image: {
  32613. source: "./media/characters/tayra-white/front.svg",
  32614. extra: 2229/2192,
  32615. bottom: 75/2304
  32616. }
  32617. },
  32618. },
  32619. [
  32620. {
  32621. name: "Normal",
  32622. height: math.unit(140, "cm"),
  32623. default: true
  32624. },
  32625. ]
  32626. ))
  32627. characterMakers.push(() => makeCharacter(
  32628. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32629. {
  32630. front: {
  32631. height: math.unit(4 + 5/12, "feet"),
  32632. name: "Front",
  32633. image: {
  32634. source: "./media/characters/scoop/front.svg",
  32635. extra: 1257/1136,
  32636. bottom: 69/1326
  32637. }
  32638. },
  32639. back: {
  32640. height: math.unit(4 + 5/12, "feet"),
  32641. name: "Back",
  32642. image: {
  32643. source: "./media/characters/scoop/back.svg",
  32644. extra: 1321/1152,
  32645. bottom: 32/1353
  32646. }
  32647. },
  32648. maw: {
  32649. height: math.unit(0.68, "feet"),
  32650. name: "Maw",
  32651. image: {
  32652. source: "./media/characters/scoop/maw.svg"
  32653. }
  32654. },
  32655. },
  32656. [
  32657. {
  32658. name: "Really Small",
  32659. height: math.unit(1, "mm")
  32660. },
  32661. {
  32662. name: "Micro",
  32663. height: math.unit(1, "inch")
  32664. },
  32665. {
  32666. name: "Normal",
  32667. height: math.unit(4 + 5/12, "feet"),
  32668. default: true
  32669. },
  32670. {
  32671. name: "Macro",
  32672. height: math.unit(200, "feet")
  32673. },
  32674. {
  32675. name: "Megamacro",
  32676. height: math.unit(3240, "feet")
  32677. },
  32678. {
  32679. name: "Teramacro",
  32680. height: math.unit(2500, "miles")
  32681. },
  32682. ]
  32683. ))
  32684. characterMakers.push(() => makeCharacter(
  32685. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32686. {
  32687. front: {
  32688. height: math.unit(15 + 7/12, "feet"),
  32689. name: "Front",
  32690. image: {
  32691. source: "./media/characters/saphinara/front.svg",
  32692. extra: 604/546,
  32693. bottom: 19/623
  32694. }
  32695. },
  32696. side: {
  32697. height: math.unit(15 + 7/12, "feet"),
  32698. name: "Side",
  32699. image: {
  32700. source: "./media/characters/saphinara/side.svg",
  32701. extra: 605/547,
  32702. bottom: 6/611
  32703. }
  32704. },
  32705. back: {
  32706. height: math.unit(15 + 7/12, "feet"),
  32707. name: "Back",
  32708. image: {
  32709. source: "./media/characters/saphinara/back.svg",
  32710. extra: 591/531,
  32711. bottom: 13/604
  32712. }
  32713. },
  32714. frontTail: {
  32715. height: math.unit(15 + 7/12, "feet"),
  32716. name: "Front (Full Tail)",
  32717. image: {
  32718. source: "./media/characters/saphinara/front-tail.svg",
  32719. extra: 748/547,
  32720. bottom: 66/814
  32721. }
  32722. },
  32723. },
  32724. [
  32725. {
  32726. name: "Normal",
  32727. height: math.unit(15 + 7/12, "feet"),
  32728. default: true
  32729. },
  32730. {
  32731. name: "Angry",
  32732. height: math.unit(30 + 6/12, "feet")
  32733. },
  32734. {
  32735. name: "Enraged",
  32736. height: math.unit(102 + 1/12, "feet")
  32737. },
  32738. ]
  32739. ))
  32740. characterMakers.push(() => makeCharacter(
  32741. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32742. {
  32743. front: {
  32744. height: math.unit(6 + 8/12, "feet"),
  32745. weight: math.unit(300, "lb"),
  32746. name: "Front",
  32747. image: {
  32748. source: "./media/characters/jrain/front.svg",
  32749. extra: 3039/2865,
  32750. bottom: 399/3438
  32751. }
  32752. },
  32753. back: {
  32754. height: math.unit(6 + 8/12, "feet"),
  32755. weight: math.unit(300, "lb"),
  32756. name: "Back",
  32757. image: {
  32758. source: "./media/characters/jrain/back.svg",
  32759. extra: 3089/2938,
  32760. bottom: 172/3261
  32761. }
  32762. },
  32763. head: {
  32764. height: math.unit(2.14, "feet"),
  32765. name: "Head",
  32766. image: {
  32767. source: "./media/characters/jrain/head.svg"
  32768. }
  32769. },
  32770. maw: {
  32771. height: math.unit(1.77, "feet"),
  32772. name: "Maw",
  32773. image: {
  32774. source: "./media/characters/jrain/maw.svg"
  32775. }
  32776. },
  32777. leftHand: {
  32778. height: math.unit(1.1, "feet"),
  32779. name: "Left Hand",
  32780. image: {
  32781. source: "./media/characters/jrain/left-hand.svg"
  32782. }
  32783. },
  32784. rightHand: {
  32785. height: math.unit(1.1, "feet"),
  32786. name: "Right Hand",
  32787. image: {
  32788. source: "./media/characters/jrain/right-hand.svg"
  32789. }
  32790. },
  32791. eye: {
  32792. height: math.unit(0.35, "feet"),
  32793. name: "Eye",
  32794. image: {
  32795. source: "./media/characters/jrain/eye.svg"
  32796. }
  32797. },
  32798. },
  32799. [
  32800. {
  32801. name: "Normal",
  32802. height: math.unit(6 + 8/12, "feet"),
  32803. default: true
  32804. },
  32805. {
  32806. name: "Casually Large",
  32807. height: math.unit(25, "feet")
  32808. },
  32809. {
  32810. name: "Giant",
  32811. height: math.unit(100, "feet")
  32812. },
  32813. {
  32814. name: "Kaiju",
  32815. height: math.unit(300, "feet")
  32816. },
  32817. ]
  32818. ))
  32819. characterMakers.push(() => makeCharacter(
  32820. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32821. {
  32822. dragon: {
  32823. height: math.unit(5, "meters"),
  32824. name: "Dragon",
  32825. image: {
  32826. source: "./media/characters/sabrina/dragon.svg",
  32827. extra: 3670 / 2365,
  32828. bottom: 333 / 4003
  32829. }
  32830. },
  32831. gryphon: {
  32832. height: math.unit(3, "meters"),
  32833. name: "Gryphon",
  32834. image: {
  32835. source: "./media/characters/sabrina/gryphon.svg",
  32836. extra: 1576 / 945,
  32837. bottom: 71 / 1647
  32838. }
  32839. },
  32840. snake: {
  32841. height: math.unit(12, "meters"),
  32842. name: "Snake",
  32843. image: {
  32844. source: "./media/characters/sabrina/snake.svg",
  32845. extra: 1758 / 1320,
  32846. bottom: 186 / 1944
  32847. }
  32848. },
  32849. collar: {
  32850. height: math.unit(1.86, "meters"),
  32851. name: "Collar",
  32852. image: {
  32853. source: "./media/characters/sabrina/collar.svg"
  32854. }
  32855. },
  32856. eye: {
  32857. height: math.unit(0.53, "meters"),
  32858. name: "Eye",
  32859. image: {
  32860. source: "./media/characters/sabrina/eye.svg"
  32861. }
  32862. },
  32863. foot: {
  32864. height: math.unit(1.86, "meters"),
  32865. name: "Foot",
  32866. image: {
  32867. source: "./media/characters/sabrina/foot.svg"
  32868. }
  32869. },
  32870. hand: {
  32871. height: math.unit(1.32, "meters"),
  32872. name: "Hand",
  32873. image: {
  32874. source: "./media/characters/sabrina/hand.svg"
  32875. }
  32876. },
  32877. head: {
  32878. height: math.unit(2.44, "meters"),
  32879. name: "Head",
  32880. image: {
  32881. source: "./media/characters/sabrina/head.svg"
  32882. }
  32883. },
  32884. headAngry: {
  32885. height: math.unit(2.44, "meters"),
  32886. name: "Head (Angry))",
  32887. image: {
  32888. source: "./media/characters/sabrina/head-angry.svg"
  32889. }
  32890. },
  32891. maw: {
  32892. height: math.unit(1.65, "meters"),
  32893. name: "Maw",
  32894. image: {
  32895. source: "./media/characters/sabrina/maw.svg"
  32896. }
  32897. },
  32898. spikes: {
  32899. height: math.unit(1.69, "meters"),
  32900. name: "Spikes",
  32901. image: {
  32902. source: "./media/characters/sabrina/spikes.svg"
  32903. }
  32904. },
  32905. stomach: {
  32906. height: math.unit(1.15, "meters"),
  32907. name: "Stomach",
  32908. image: {
  32909. source: "./media/characters/sabrina/stomach.svg"
  32910. }
  32911. },
  32912. tongue: {
  32913. height: math.unit(1.27, "meters"),
  32914. name: "Tongue",
  32915. image: {
  32916. source: "./media/characters/sabrina/tongue.svg"
  32917. }
  32918. },
  32919. wingDorsal: {
  32920. height: math.unit(4.85, "meters"),
  32921. name: "Wing (Dorsal)",
  32922. image: {
  32923. source: "./media/characters/sabrina/wing-dorsal.svg"
  32924. }
  32925. },
  32926. wingVentral: {
  32927. height: math.unit(4.85, "meters"),
  32928. name: "Wing (Ventral)",
  32929. image: {
  32930. source: "./media/characters/sabrina/wing-ventral.svg"
  32931. }
  32932. },
  32933. },
  32934. [
  32935. {
  32936. name: "Normal",
  32937. height: math.unit(5, "meters"),
  32938. default: true
  32939. },
  32940. ]
  32941. ))
  32942. characterMakers.push(() => makeCharacter(
  32943. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32944. {
  32945. frontMaid: {
  32946. height: math.unit(5 + 5/12, "feet"),
  32947. weight: math.unit(130, "lb"),
  32948. name: "Front (Maid)",
  32949. image: {
  32950. source: "./media/characters/midnight-tales/front-maid.svg",
  32951. extra: 489/454,
  32952. bottom: 61/550
  32953. }
  32954. },
  32955. frontFormal: {
  32956. height: math.unit(5 + 5/12, "feet"),
  32957. weight: math.unit(130, "lb"),
  32958. name: "Front (Formal)",
  32959. image: {
  32960. source: "./media/characters/midnight-tales/front-formal.svg",
  32961. extra: 489/454,
  32962. bottom: 61/550
  32963. }
  32964. },
  32965. back: {
  32966. height: math.unit(5 + 5/12, "feet"),
  32967. weight: math.unit(130, "lb"),
  32968. name: "Back",
  32969. image: {
  32970. source: "./media/characters/midnight-tales/back.svg",
  32971. extra: 498/456,
  32972. bottom: 33/531
  32973. }
  32974. },
  32975. frontBeast: {
  32976. height: math.unit(40, "feet"),
  32977. weight: math.unit(64000, "lb"),
  32978. name: "Front (Beast)",
  32979. image: {
  32980. source: "./media/characters/midnight-tales/front-beast.svg",
  32981. extra: 927/860,
  32982. bottom: 53/980
  32983. }
  32984. },
  32985. backBeast: {
  32986. height: math.unit(40, "feet"),
  32987. weight: math.unit(64000, "lb"),
  32988. name: "Back (Beast)",
  32989. image: {
  32990. source: "./media/characters/midnight-tales/back-beast.svg",
  32991. extra: 929/855,
  32992. bottom: 16/945
  32993. }
  32994. },
  32995. footBeast: {
  32996. height: math.unit(6.7, "feet"),
  32997. name: "Foot (Beast)",
  32998. image: {
  32999. source: "./media/characters/midnight-tales/foot-beast.svg"
  33000. }
  33001. },
  33002. headBeast: {
  33003. height: math.unit(8, "feet"),
  33004. name: "Head (Beast)",
  33005. image: {
  33006. source: "./media/characters/midnight-tales/head-beast.svg"
  33007. }
  33008. },
  33009. },
  33010. [
  33011. {
  33012. name: "Normal",
  33013. height: math.unit(5 + 5 / 12, "feet"),
  33014. default: true
  33015. },
  33016. {
  33017. name: "Macro",
  33018. height: math.unit(25, "feet")
  33019. },
  33020. ]
  33021. ))
  33022. characterMakers.push(() => makeCharacter(
  33023. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33024. {
  33025. front: {
  33026. height: math.unit(5 + 10/12, "feet"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/argon/front.svg",
  33030. extra: 2009/1935,
  33031. bottom: 118/2127
  33032. }
  33033. },
  33034. back: {
  33035. height: math.unit(5 + 10/12, "feet"),
  33036. name: "Back",
  33037. image: {
  33038. source: "./media/characters/argon/back.svg",
  33039. extra: 2047/1992,
  33040. bottom: 20/2067
  33041. }
  33042. },
  33043. frontDressed: {
  33044. height: math.unit(5 + 10/12, "feet"),
  33045. name: "Front (Dressed)",
  33046. image: {
  33047. source: "./media/characters/argon/front-dressed.svg",
  33048. extra: 2009/1935,
  33049. bottom: 118/2127
  33050. }
  33051. },
  33052. },
  33053. [
  33054. {
  33055. name: "Normal",
  33056. height: math.unit(5 + 10/12, "feet"),
  33057. default: true
  33058. },
  33059. ]
  33060. ))
  33061. characterMakers.push(() => makeCharacter(
  33062. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33063. {
  33064. front: {
  33065. height: math.unit(8 + 6/12, "feet"),
  33066. weight: math.unit(1150, "lb"),
  33067. name: "Front",
  33068. image: {
  33069. source: "./media/characters/kichi/front.svg",
  33070. extra: 1267/1164,
  33071. bottom: 61/1328
  33072. }
  33073. },
  33074. back: {
  33075. height: math.unit(8 + 6/12, "feet"),
  33076. weight: math.unit(1150, "lb"),
  33077. name: "Back",
  33078. image: {
  33079. source: "./media/characters/kichi/back.svg",
  33080. extra: 1273/1166,
  33081. bottom: 33/1306
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(8 + 6/12, "feet"),
  33089. default: true
  33090. },
  33091. ]
  33092. ))
  33093. characterMakers.push(() => makeCharacter(
  33094. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33095. {
  33096. front: {
  33097. height: math.unit(6, "feet"),
  33098. weight: math.unit(210, "lb"),
  33099. name: "Front",
  33100. image: {
  33101. source: "./media/characters/manetel-greyscale/front.svg",
  33102. extra: 350/312,
  33103. bottom: 8/358
  33104. }
  33105. },
  33106. },
  33107. [
  33108. {
  33109. name: "Micro",
  33110. height: math.unit(2, "inches")
  33111. },
  33112. {
  33113. name: "Normal",
  33114. height: math.unit(6, "feet"),
  33115. default: true
  33116. },
  33117. {
  33118. name: "Minimacro",
  33119. height: math.unit(17, "feet")
  33120. },
  33121. {
  33122. name: "Macro",
  33123. height: math.unit(117, "feet")
  33124. },
  33125. ]
  33126. ))
  33127. characterMakers.push(() => makeCharacter(
  33128. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33129. {
  33130. side: {
  33131. height: math.unit(5 + 1/12, "feet"),
  33132. weight: math.unit(418, "lb"),
  33133. name: "Side",
  33134. image: {
  33135. source: "./media/characters/softpurr/side.svg",
  33136. extra: 1993/1945,
  33137. bottom: 134/2127
  33138. }
  33139. },
  33140. front: {
  33141. height: math.unit(5 + 1/12, "feet"),
  33142. weight: math.unit(418, "lb"),
  33143. name: "Front",
  33144. image: {
  33145. source: "./media/characters/softpurr/front.svg",
  33146. extra: 1950/1856,
  33147. bottom: 174/2124
  33148. }
  33149. },
  33150. paw: {
  33151. height: math.unit(1, "feet"),
  33152. name: "Paw",
  33153. image: {
  33154. source: "./media/characters/softpurr/paw.svg"
  33155. }
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "Normal",
  33161. height: math.unit(5 + 1/12, "feet"),
  33162. default: true
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33168. {
  33169. front: {
  33170. height: math.unit(260, "meters"),
  33171. name: "Front",
  33172. image: {
  33173. source: "./media/characters/anahita/front.svg",
  33174. extra: 665/635,
  33175. bottom: 89/754
  33176. }
  33177. },
  33178. },
  33179. [
  33180. {
  33181. name: "Macro",
  33182. height: math.unit(260, "meters"),
  33183. default: true
  33184. },
  33185. ]
  33186. ))
  33187. characterMakers.push(() => makeCharacter(
  33188. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33189. {
  33190. front: {
  33191. height: math.unit(4 + 10/12, "feet"),
  33192. weight: math.unit(160, "lb"),
  33193. name: "Front",
  33194. image: {
  33195. source: "./media/characters/chip-mouse/front.svg",
  33196. extra: 3528/3408,
  33197. bottom: 0/3528
  33198. }
  33199. },
  33200. frontNsfw: {
  33201. height: math.unit(4 + 10/12, "feet"),
  33202. weight: math.unit(160, "lb"),
  33203. name: "Front (NSFW)",
  33204. image: {
  33205. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33206. extra: 3528/3408,
  33207. bottom: 0/3528
  33208. }
  33209. },
  33210. },
  33211. [
  33212. {
  33213. name: "Normal",
  33214. height: math.unit(4 + 10/12, "feet"),
  33215. default: true
  33216. },
  33217. ]
  33218. ))
  33219. characterMakers.push(() => makeCharacter(
  33220. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33221. {
  33222. side: {
  33223. height: math.unit(10, "feet"),
  33224. weight: math.unit(14000, "lb"),
  33225. name: "Side",
  33226. image: {
  33227. source: "./media/characters/kremm/side.svg",
  33228. extra: 1390/1053,
  33229. bottom: 90/1480
  33230. }
  33231. },
  33232. gut: {
  33233. height: math.unit(5.8, "feet"),
  33234. name: "Gut",
  33235. image: {
  33236. source: "./media/characters/kremm/gut.svg"
  33237. }
  33238. },
  33239. ass: {
  33240. height: math.unit(6.1, "feet"),
  33241. name: "Ass",
  33242. image: {
  33243. source: "./media/characters/kremm/ass.svg"
  33244. }
  33245. },
  33246. jaws: {
  33247. height: math.unit(2.2, "feet"),
  33248. name: "Jaws",
  33249. image: {
  33250. source: "./media/characters/kremm/jaws.svg"
  33251. }
  33252. },
  33253. dick: {
  33254. height: math.unit(4.26, "feet"),
  33255. name: "Dick",
  33256. image: {
  33257. source: "./media/characters/kremm/dick.svg"
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(10, "feet"),
  33265. default: true
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(30, "stories"),
  33274. name: "Front",
  33275. image: {
  33276. source: "./media/characters/kai/front.svg",
  33277. extra: 1892/1718,
  33278. bottom: 162/2054
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Macro",
  33285. height: math.unit(30, "stories"),
  33286. default: true
  33287. },
  33288. ]
  33289. ))
  33290. characterMakers.push(() => makeCharacter(
  33291. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33292. {
  33293. front: {
  33294. height: math.unit(6 + 4/12, "feet"),
  33295. weight: math.unit(145, "lb"),
  33296. name: "Front",
  33297. image: {
  33298. source: "./media/characters/sykes/front.svg",
  33299. extra: 1321 / 1187,
  33300. bottom: 66 / 1387
  33301. }
  33302. },
  33303. back: {
  33304. height: math.unit(6 + 4/12, "feet"),
  33305. weight: math.unit(145, "lb"),
  33306. name: "Back",
  33307. image: {
  33308. source: "./media/characters/sykes/back.svg",
  33309. extra: 1326/1181,
  33310. bottom: 31/1357
  33311. }
  33312. },
  33313. handBack: {
  33314. height: math.unit(0.9, "feet"),
  33315. name: "Hand (Back)",
  33316. image: {
  33317. source: "./media/characters/sykes/hand-back.svg"
  33318. }
  33319. },
  33320. handFront: {
  33321. height: math.unit(0.839, "feet"),
  33322. name: "Hand (Front)",
  33323. image: {
  33324. source: "./media/characters/sykes/hand-front.svg"
  33325. }
  33326. },
  33327. leftFoot: {
  33328. height: math.unit(1.2, "feet"),
  33329. name: "Foot (Left)",
  33330. image: {
  33331. source: "./media/characters/sykes/foot-left.svg"
  33332. }
  33333. },
  33334. rightFoot: {
  33335. height: math.unit(1.2, "feet"),
  33336. name: "Foot (Right)",
  33337. image: {
  33338. source: "./media/characters/sykes/foot-right.svg"
  33339. }
  33340. },
  33341. maw: {
  33342. height: math.unit(1.93, "feet"),
  33343. name: "Maw",
  33344. image: {
  33345. source: "./media/characters/sykes/maw.svg"
  33346. }
  33347. },
  33348. teeth: {
  33349. height: math.unit(0.51, "feet"),
  33350. name: "Teeth",
  33351. image: {
  33352. source: "./media/characters/sykes/teeth.svg"
  33353. }
  33354. },
  33355. tongue: {
  33356. height: math.unit(2.13, "feet"),
  33357. name: "Tongue",
  33358. image: {
  33359. source: "./media/characters/sykes/tongue.svg"
  33360. }
  33361. },
  33362. uvula: {
  33363. height: math.unit(0.16, "feet"),
  33364. name: "Uvula",
  33365. image: {
  33366. source: "./media/characters/sykes/uvula.svg"
  33367. }
  33368. },
  33369. collar: {
  33370. height: math.unit(0.287, "feet"),
  33371. name: "Collar",
  33372. image: {
  33373. source: "./media/characters/sykes/collar.svg"
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Shrunken",
  33380. height: math.unit(5, "inches")
  33381. },
  33382. {
  33383. name: "Normal",
  33384. height: math.unit(6 + 4 / 12, "feet"),
  33385. default: true
  33386. },
  33387. {
  33388. name: "Big",
  33389. height: math.unit(15, "feet")
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33395. {
  33396. front: {
  33397. height: math.unit(5 + 8/12, "feet"),
  33398. weight: math.unit(190, "lb"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/oven-otter/front.svg",
  33402. extra: 1809/1740,
  33403. bottom: 181/1990
  33404. }
  33405. },
  33406. back: {
  33407. height: math.unit(5 + 8/12, "feet"),
  33408. weight: math.unit(190, "lb"),
  33409. name: "Back",
  33410. image: {
  33411. source: "./media/characters/oven-otter/back.svg",
  33412. extra: 1709/1635,
  33413. bottom: 118/1827
  33414. }
  33415. },
  33416. hand: {
  33417. height: math.unit(1.07, "feet"),
  33418. name: "Hand",
  33419. image: {
  33420. source: "./media/characters/oven-otter/hand.svg"
  33421. }
  33422. },
  33423. beans: {
  33424. height: math.unit(1.74, "feet"),
  33425. name: "Beans",
  33426. image: {
  33427. source: "./media/characters/oven-otter/beans.svg"
  33428. }
  33429. },
  33430. },
  33431. [
  33432. {
  33433. name: "Micro",
  33434. height: math.unit(0.5, "inches")
  33435. },
  33436. {
  33437. name: "Normal",
  33438. height: math.unit(5 + 8/12, "feet"),
  33439. default: true
  33440. },
  33441. {
  33442. name: "Macro",
  33443. height: math.unit(250, "feet")
  33444. },
  33445. {
  33446. name: "Really High",
  33447. height: math.unit(420, "feet")
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33453. {
  33454. front: {
  33455. height: math.unit(5, "meters"),
  33456. weight: math.unit(292000000000000, "kg"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/devourer/front.svg",
  33460. extra: 1800/1733,
  33461. bottom: 211/2011
  33462. }
  33463. },
  33464. maw: {
  33465. height: math.unit(1.1, "meter"),
  33466. name: "Maw",
  33467. image: {
  33468. source: "./media/characters/devourer/maw.svg"
  33469. }
  33470. },
  33471. },
  33472. [
  33473. {
  33474. name: "Small",
  33475. height: math.unit(3, "meters")
  33476. },
  33477. {
  33478. name: "Large",
  33479. height: math.unit(5, "meters"),
  33480. default: true
  33481. },
  33482. ]
  33483. ))
  33484. characterMakers.push(() => makeCharacter(
  33485. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33486. {
  33487. front: {
  33488. height: math.unit(6, "feet"),
  33489. weight: math.unit(400, "lb"),
  33490. name: "Front",
  33491. image: {
  33492. source: "./media/characters/ellarby/front.svg",
  33493. extra: 1909/1763,
  33494. bottom: 80/1989
  33495. }
  33496. },
  33497. back: {
  33498. height: math.unit(6, "feet"),
  33499. weight: math.unit(400, "lb"),
  33500. name: "Back",
  33501. image: {
  33502. source: "./media/characters/ellarby/back.svg",
  33503. extra: 1914/1784,
  33504. bottom: 172/2086
  33505. }
  33506. },
  33507. },
  33508. [
  33509. {
  33510. name: "Mischief",
  33511. height: math.unit(18, "inches")
  33512. },
  33513. {
  33514. name: "Trouble",
  33515. height: math.unit(12, "feet")
  33516. },
  33517. {
  33518. name: "Havoc",
  33519. height: math.unit(200, "feet"),
  33520. default: true
  33521. },
  33522. {
  33523. name: "Pandemonium",
  33524. height: math.unit(1, "mile")
  33525. },
  33526. {
  33527. name: "Catastrophe",
  33528. height: math.unit(100, "miles")
  33529. },
  33530. ]
  33531. ))
  33532. characterMakers.push(() => makeCharacter(
  33533. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33534. {
  33535. front: {
  33536. height: math.unit(4.7, "meters"),
  33537. weight: math.unit(6500, "kg"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/vex/front.svg",
  33541. extra: 1288/1140,
  33542. bottom: 100/1388
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(4.7, "meters"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33556. {
  33557. normal: {
  33558. height: math.unit(6, "feet"),
  33559. weight: math.unit(350, "lb"),
  33560. name: "Normal",
  33561. image: {
  33562. source: "./media/characters/teshy/normal.svg",
  33563. extra: 1795/1735,
  33564. bottom: 16/1811
  33565. }
  33566. },
  33567. monsterFront: {
  33568. height: math.unit(12, "feet"),
  33569. weight: math.unit(4700, "lb"),
  33570. name: "Monster (Front)",
  33571. image: {
  33572. source: "./media/characters/teshy/monster-front.svg",
  33573. extra: 2042/2034,
  33574. bottom: 128/2170
  33575. }
  33576. },
  33577. monsterSide: {
  33578. height: math.unit(12, "feet"),
  33579. weight: math.unit(4700, "lb"),
  33580. name: "Monster (Side)",
  33581. image: {
  33582. source: "./media/characters/teshy/monster-side.svg",
  33583. extra: 2067/2056,
  33584. bottom: 70/2137
  33585. }
  33586. },
  33587. monsterBack: {
  33588. height: math.unit(12, "feet"),
  33589. weight: math.unit(4700, "lb"),
  33590. name: "Monster (Back)",
  33591. image: {
  33592. source: "./media/characters/teshy/monster-back.svg",
  33593. extra: 1921/1914,
  33594. bottom: 171/2092
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Normal",
  33601. height: math.unit(6, "feet"),
  33602. default: true
  33603. },
  33604. ]
  33605. ))
  33606. characterMakers.push(() => makeCharacter(
  33607. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33608. {
  33609. front: {
  33610. height: math.unit(6, "feet"),
  33611. name: "Front",
  33612. image: {
  33613. source: "./media/characters/ramey/front.svg",
  33614. extra: 790/787,
  33615. bottom: 27/817
  33616. }
  33617. },
  33618. },
  33619. [
  33620. {
  33621. name: "Normal",
  33622. height: math.unit(6, "feet"),
  33623. default: true
  33624. },
  33625. ]
  33626. ))
  33627. characterMakers.push(() => makeCharacter(
  33628. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33629. {
  33630. front: {
  33631. height: math.unit(5 + 5/12, "feet"),
  33632. weight: math.unit(120, "lb"),
  33633. name: "Front",
  33634. image: {
  33635. source: "./media/characters/phirae/front.svg",
  33636. extra: 2491/2436,
  33637. bottom: 38/2529
  33638. }
  33639. },
  33640. },
  33641. [
  33642. {
  33643. name: "Normal",
  33644. height: math.unit(5 + 5/12, "feet"),
  33645. default: true
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33651. {
  33652. front: {
  33653. height: math.unit(6, "feet"),
  33654. weight: math.unit(150, "lb"),
  33655. name: "Front",
  33656. image: {
  33657. source: "./media/characters/stagglas/front.svg",
  33658. extra: 962/882,
  33659. bottom: 53/1015
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Normal",
  33666. height: math.unit(5 + 3/12, "feet"),
  33667. default: true
  33668. },
  33669. ]
  33670. ))
  33671. characterMakers.push(() => makeCharacter(
  33672. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33673. {
  33674. front: {
  33675. height: math.unit(5 + 4/12, "feet"),
  33676. weight: math.unit(145, "lb"),
  33677. name: "Front",
  33678. image: {
  33679. source: "./media/characters/starra/front.svg",
  33680. extra: 1790/1691,
  33681. bottom: 91/1881
  33682. }
  33683. },
  33684. },
  33685. [
  33686. {
  33687. name: "Normal",
  33688. height: math.unit(5 + 4/12, "feet"),
  33689. default: true
  33690. },
  33691. ]
  33692. ))
  33693. characterMakers.push(() => makeCharacter(
  33694. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33695. {
  33696. front: {
  33697. height: math.unit(2.2, "meters"),
  33698. name: "Front",
  33699. image: {
  33700. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33701. extra: 1194/1005,
  33702. bottom: 25/1219
  33703. }
  33704. },
  33705. },
  33706. [
  33707. {
  33708. name: "Normal",
  33709. height: math.unit(2.2, "meters"),
  33710. default: true
  33711. },
  33712. ]
  33713. ))
  33714. characterMakers.push(() => makeCharacter(
  33715. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33716. {
  33717. side: {
  33718. height: math.unit(8 + 2/12, "feet"),
  33719. weight: math.unit(1240, "lb"),
  33720. name: "Side",
  33721. image: {
  33722. source: "./media/characters/mika-valentine/side.svg",
  33723. extra: 2670/2501,
  33724. bottom: 250/2920
  33725. }
  33726. },
  33727. },
  33728. [
  33729. {
  33730. name: "Normal",
  33731. height: math.unit(8 + 2/12, "feet"),
  33732. default: true
  33733. },
  33734. ]
  33735. ))
  33736. characterMakers.push(() => makeCharacter(
  33737. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33738. {
  33739. front: {
  33740. height: math.unit(7 + 2/12, "feet"),
  33741. name: "Front",
  33742. image: {
  33743. source: "./media/characters/xoltol/front.svg",
  33744. extra: 2212/2124,
  33745. bottom: 84/2296
  33746. }
  33747. },
  33748. side: {
  33749. height: math.unit(7 + 2/12, "feet"),
  33750. name: "Side",
  33751. image: {
  33752. source: "./media/characters/xoltol/side.svg",
  33753. extra: 2273/2197,
  33754. bottom: 26/2299
  33755. }
  33756. },
  33757. hand: {
  33758. height: math.unit(2.5, "feet"),
  33759. name: "Hand",
  33760. image: {
  33761. source: "./media/characters/xoltol/hand.svg"
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Small-ish",
  33768. height: math.unit(5 + 11/12, "feet")
  33769. },
  33770. {
  33771. name: "Normal",
  33772. height: math.unit(7 + 2/12, "feet")
  33773. },
  33774. {
  33775. name: "\"Macro\"",
  33776. height: math.unit(14 + 9/12, "feet"),
  33777. default: true
  33778. },
  33779. {
  33780. name: "Alternate Height",
  33781. height: math.unit(20, "feet")
  33782. },
  33783. {
  33784. name: "Actually Macro",
  33785. height: math.unit(100, "feet")
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(5 + 2/12, "feet"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/kotetsu-redwood/front.svg",
  33797. extra: 1053/942,
  33798. bottom: 60/1113
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(5 + 2/12, "feet"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(2.4, "meters"),
  33815. weight: math.unit(125, "kg"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/lilith/front.svg",
  33819. extra: 1590/1513,
  33820. bottom: 203/1793
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Humanoid",
  33827. height: math.unit(2.4, "meters")
  33828. },
  33829. {
  33830. name: "Normal",
  33831. height: math.unit(6, "meters"),
  33832. default: true
  33833. },
  33834. {
  33835. name: "Largest",
  33836. height: math.unit(55, "meters")
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33842. {
  33843. front: {
  33844. height: math.unit(8 + 4/12, "feet"),
  33845. weight: math.unit(535, "lb"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/beh'kah-bolger/front.svg",
  33849. extra: 1660/1603,
  33850. bottom: 37/1697
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Normal",
  33857. height: math.unit(8 + 4/12, "feet"),
  33858. default: true
  33859. },
  33860. {
  33861. name: "Kaiju",
  33862. height: math.unit(250, "feet")
  33863. },
  33864. {
  33865. name: "Still Growing",
  33866. height: math.unit(10, "miles")
  33867. },
  33868. {
  33869. name: "Continental",
  33870. height: math.unit(5000, "miles")
  33871. },
  33872. {
  33873. name: "Final Form",
  33874. height: math.unit(2500000, "miles")
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(7 + 2/12, "feet"),
  33883. weight: math.unit(230, "kg"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/tatyana-milewska/front.svg",
  33887. extra: 1199/1150,
  33888. bottom: 86/1285
  33889. }
  33890. },
  33891. },
  33892. [
  33893. {
  33894. name: "Normal",
  33895. height: math.unit(7 + 2/12, "feet"),
  33896. default: true
  33897. },
  33898. {
  33899. name: "Big",
  33900. height: math.unit(12, "feet")
  33901. },
  33902. {
  33903. name: "Minimacro",
  33904. height: math.unit(20, "feet")
  33905. },
  33906. {
  33907. name: "Macro",
  33908. height: math.unit(120, "feet")
  33909. },
  33910. ]
  33911. ))
  33912. characterMakers.push(() => makeCharacter(
  33913. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33914. {
  33915. front: {
  33916. height: math.unit(7 + 8/12, "feet"),
  33917. weight: math.unit(152, "kg"),
  33918. name: "Front",
  33919. image: {
  33920. source: "./media/characters/helen-arri/front.svg",
  33921. extra: 440/423,
  33922. bottom: 14/454
  33923. }
  33924. },
  33925. back: {
  33926. height: math.unit(7 + 8/12, "feet"),
  33927. weight: math.unit(152, "kg"),
  33928. name: "Back",
  33929. image: {
  33930. source: "./media/characters/helen-arri/back.svg",
  33931. extra: 443/426,
  33932. bottom: 8/451
  33933. }
  33934. },
  33935. },
  33936. [
  33937. {
  33938. name: "Normal",
  33939. height: math.unit(7 + 8/12, "feet"),
  33940. default: true
  33941. },
  33942. {
  33943. name: "Big",
  33944. height: math.unit(14, "feet")
  33945. },
  33946. {
  33947. name: "Minimacro",
  33948. height: math.unit(24, "feet")
  33949. },
  33950. {
  33951. name: "Macro",
  33952. height: math.unit(140, "feet")
  33953. },
  33954. ]
  33955. ))
  33956. characterMakers.push(() => makeCharacter(
  33957. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33958. {
  33959. front: {
  33960. height: math.unit(6, "meters"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/ehanu-rehu/front.svg",
  33964. extra: 1800/1800,
  33965. bottom: 59/1859
  33966. }
  33967. },
  33968. },
  33969. [
  33970. {
  33971. name: "Normal",
  33972. height: math.unit(6, "meters"),
  33973. default: true
  33974. },
  33975. ]
  33976. ))
  33977. characterMakers.push(() => makeCharacter(
  33978. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33979. {
  33980. front: {
  33981. height: math.unit(7 + 3/12, "feet"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/renholder/front.svg",
  33985. extra: 3096/2960,
  33986. bottom: 250/3346
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Normal Bat",
  33993. height: math.unit(7 + 3/12, "feet"),
  33994. default: true
  33995. },
  33996. {
  33997. name: "Slightly Tall Bat",
  33998. height: math.unit(100, "feet")
  33999. },
  34000. {
  34001. name: "Big Bat",
  34002. height: math.unit(1000, "feet")
  34003. },
  34004. {
  34005. name: "City-Sized Bat",
  34006. height: math.unit(200000, "feet")
  34007. },
  34008. {
  34009. name: "Bigger Bat",
  34010. height: math.unit(10000, "miles")
  34011. },
  34012. {
  34013. name: "Solar Sized Bat",
  34014. height: math.unit(100, "AU")
  34015. },
  34016. {
  34017. name: "Galactic Bat",
  34018. height: math.unit(200000, "lightyears")
  34019. },
  34020. {
  34021. name: "Universally Known Bat",
  34022. height: math.unit(1, "universe")
  34023. },
  34024. ]
  34025. ))
  34026. characterMakers.push(() => makeCharacter(
  34027. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34028. {
  34029. front: {
  34030. height: math.unit(6 + 11/12, "feet"),
  34031. weight: math.unit(250, "lb"),
  34032. name: "Front",
  34033. image: {
  34034. source: "./media/characters/cookiecat/front.svg",
  34035. extra: 893/827,
  34036. bottom: 14/907
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Micro",
  34043. height: math.unit(3, "inches")
  34044. },
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(6 + 11/12, "feet"),
  34048. default: true
  34049. },
  34050. {
  34051. name: "Macro",
  34052. height: math.unit(100, "feet")
  34053. },
  34054. {
  34055. name: "Macro+",
  34056. height: math.unit(404, "feet")
  34057. },
  34058. {
  34059. name: "Megamacro",
  34060. height: math.unit(165, "miles")
  34061. },
  34062. {
  34063. name: "Planetary",
  34064. height: math.unit(4600, "miles")
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34070. {
  34071. front: {
  34072. height: math.unit(10 + 3/12, "feet"),
  34073. weight: math.unit(1500, "lb"),
  34074. name: "Front",
  34075. image: {
  34076. source: "./media/characters/tux-kusanagi/front.svg",
  34077. extra: 944/840,
  34078. bottom: 39/983
  34079. }
  34080. },
  34081. back: {
  34082. height: math.unit(10 + 3/12, "feet"),
  34083. weight: math.unit(1500, "lb"),
  34084. name: "Back",
  34085. image: {
  34086. source: "./media/characters/tux-kusanagi/back.svg",
  34087. extra: 941/842,
  34088. bottom: 28/969
  34089. }
  34090. },
  34091. rump: {
  34092. height: math.unit(5.25, "feet"),
  34093. name: "Rump",
  34094. image: {
  34095. source: "./media/characters/tux-kusanagi/rump.svg"
  34096. }
  34097. },
  34098. beak: {
  34099. height: math.unit(1.54, "feet"),
  34100. name: "Beak",
  34101. image: {
  34102. source: "./media/characters/tux-kusanagi/beak.svg"
  34103. }
  34104. },
  34105. },
  34106. [
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(10 + 3/12, "feet"),
  34110. default: true
  34111. },
  34112. ]
  34113. ))
  34114. characterMakers.push(() => makeCharacter(
  34115. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34116. {
  34117. front: {
  34118. height: math.unit(58, "feet"),
  34119. weight: math.unit(200, "tons"),
  34120. name: "Front",
  34121. image: {
  34122. source: "./media/characters/uzarmazari/front.svg",
  34123. extra: 1575/1455,
  34124. bottom: 152/1727
  34125. }
  34126. },
  34127. back: {
  34128. height: math.unit(58, "feet"),
  34129. weight: math.unit(200, "tons"),
  34130. name: "Back",
  34131. image: {
  34132. source: "./media/characters/uzarmazari/back.svg",
  34133. extra: 1585/1510,
  34134. bottom: 157/1742
  34135. }
  34136. },
  34137. head: {
  34138. height: math.unit(26, "feet"),
  34139. name: "Head",
  34140. image: {
  34141. source: "./media/characters/uzarmazari/head.svg"
  34142. }
  34143. },
  34144. },
  34145. [
  34146. {
  34147. name: "Normal",
  34148. height: math.unit(58, "feet"),
  34149. default: true
  34150. },
  34151. ]
  34152. ))
  34153. characterMakers.push(() => makeCharacter(
  34154. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34155. {
  34156. side: {
  34157. height: math.unit(15, "feet"),
  34158. name: "Side",
  34159. image: {
  34160. source: "./media/characters/akitu/side.svg",
  34161. extra: 1421/1321,
  34162. bottom: 157/1578
  34163. }
  34164. },
  34165. front: {
  34166. height: math.unit(15, "feet"),
  34167. name: "Front",
  34168. image: {
  34169. source: "./media/characters/akitu/front.svg",
  34170. extra: 1435/1326,
  34171. bottom: 232/1667
  34172. }
  34173. },
  34174. },
  34175. [
  34176. {
  34177. name: "Normal",
  34178. height: math.unit(15, "feet"),
  34179. default: true
  34180. },
  34181. ]
  34182. ))
  34183. characterMakers.push(() => makeCharacter(
  34184. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34185. {
  34186. front: {
  34187. height: math.unit(10 + 8/12, "feet"),
  34188. name: "Front",
  34189. image: {
  34190. source: "./media/characters/azalie-croixland/front.svg",
  34191. extra: 1972/1856,
  34192. bottom: 31/2003
  34193. }
  34194. },
  34195. },
  34196. [
  34197. {
  34198. name: "Original Height",
  34199. height: math.unit(5 + 4/12, "feet")
  34200. },
  34201. {
  34202. name: "Normal Height",
  34203. height: math.unit(10 + 8/12, "feet"),
  34204. default: true
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34210. {
  34211. side: {
  34212. height: math.unit(7 + 1/12, "feet"),
  34213. weight: math.unit(245, "lb"),
  34214. name: "Side",
  34215. image: {
  34216. source: "./media/characters/kavus-kazian/side.svg",
  34217. extra: 349/342,
  34218. bottom: 15/364
  34219. }
  34220. },
  34221. },
  34222. [
  34223. {
  34224. name: "Normal",
  34225. height: math.unit(7 + 1/12, "feet"),
  34226. default: true
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34232. {
  34233. normal: {
  34234. height: math.unit(5 + 11/12, "feet"),
  34235. name: "Normal",
  34236. image: {
  34237. source: "./media/characters/moonlight-rose/normal.svg",
  34238. extra: 1979/1835,
  34239. bottom: 14/1993
  34240. }
  34241. },
  34242. demon: {
  34243. height: math.unit(5, "km"),
  34244. name: "Demon",
  34245. image: {
  34246. source: "./media/characters/moonlight-rose/demon.svg",
  34247. extra: 986/916,
  34248. bottom: 28/1014
  34249. }
  34250. },
  34251. },
  34252. [
  34253. {
  34254. name: "\"Natural\" height",
  34255. height: math.unit(5 + 11/12, "feet")
  34256. },
  34257. {
  34258. name: "Comfortable Size",
  34259. height: math.unit(40, "meters")
  34260. },
  34261. {
  34262. name: "Common Size",
  34263. height: math.unit(50, "km"),
  34264. default: true
  34265. },
  34266. {
  34267. name: "Demonic",
  34268. height: math.unit(1.24415e+21, "meters")
  34269. },
  34270. ]
  34271. ))
  34272. characterMakers.push(() => makeCharacter(
  34273. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34274. {
  34275. front: {
  34276. height: math.unit(16, "feet"),
  34277. weight: math.unit(610, "kg"),
  34278. name: "Front",
  34279. image: {
  34280. source: "./media/characters/huckle/front.svg",
  34281. extra: 1731/1625,
  34282. bottom: 33/1764
  34283. }
  34284. },
  34285. back: {
  34286. height: math.unit(16, "feet"),
  34287. weight: math.unit(610, "kg"),
  34288. name: "Back",
  34289. image: {
  34290. source: "./media/characters/huckle/back.svg",
  34291. extra: 1738/1651,
  34292. bottom: 37/1775
  34293. }
  34294. },
  34295. laughing: {
  34296. height: math.unit(3.75, "feet"),
  34297. name: "Laughing",
  34298. image: {
  34299. source: "./media/characters/huckle/laughing.svg"
  34300. }
  34301. },
  34302. angry: {
  34303. height: math.unit(4.15, "feet"),
  34304. name: "Angry",
  34305. image: {
  34306. source: "./media/characters/huckle/angry.svg"
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Normal",
  34313. height: math.unit(16, "feet"),
  34314. default: true
  34315. },
  34316. {
  34317. name: "Mini Macro",
  34318. height: math.unit(463, "feet")
  34319. },
  34320. {
  34321. name: "Macro",
  34322. height: math.unit(1680, "meters")
  34323. },
  34324. {
  34325. name: "Mega Macro",
  34326. height: math.unit(175, "km")
  34327. },
  34328. {
  34329. name: "Terra Macro",
  34330. height: math.unit(32, "gigameters")
  34331. },
  34332. {
  34333. name: "Multiverse+",
  34334. height: math.unit(2.56e23, "yottameters")
  34335. },
  34336. ]
  34337. ))
  34338. characterMakers.push(() => makeCharacter(
  34339. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34340. {
  34341. front: {
  34342. height: math.unit(6 + 9/12, "feet"),
  34343. weight: math.unit(280, "lb"),
  34344. name: "Front",
  34345. image: {
  34346. source: "./media/characters/candy/front.svg",
  34347. extra: 234/217,
  34348. bottom: 11/245
  34349. }
  34350. },
  34351. },
  34352. [
  34353. {
  34354. name: "Really Small",
  34355. height: math.unit(0.1, "nm")
  34356. },
  34357. {
  34358. name: "Micro",
  34359. height: math.unit(2, "inches")
  34360. },
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(6 + 9/12, "feet"),
  34364. default: true
  34365. },
  34366. {
  34367. name: "Small Macro",
  34368. height: math.unit(69, "feet")
  34369. },
  34370. {
  34371. name: "Macro",
  34372. height: math.unit(160, "feet")
  34373. },
  34374. {
  34375. name: "Megamacro",
  34376. height: math.unit(22000, "miles")
  34377. },
  34378. {
  34379. name: "Gigamacro",
  34380. height: math.unit(50000, "miles")
  34381. },
  34382. ]
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34386. {
  34387. front: {
  34388. height: math.unit(4, "feet"),
  34389. weight: math.unit(90, "lb"),
  34390. name: "Front",
  34391. image: {
  34392. source: "./media/characters/joey-mcdonald/front.svg",
  34393. extra: 1059/852,
  34394. bottom: 33/1092
  34395. }
  34396. },
  34397. back: {
  34398. height: math.unit(4, "feet"),
  34399. weight: math.unit(90, "lb"),
  34400. name: "Back",
  34401. image: {
  34402. source: "./media/characters/joey-mcdonald/back.svg",
  34403. extra: 1077/879,
  34404. bottom: 5/1082
  34405. }
  34406. },
  34407. },
  34408. [
  34409. {
  34410. name: "Normal",
  34411. height: math.unit(4, "feet"),
  34412. default: true
  34413. },
  34414. ]
  34415. ))
  34416. characterMakers.push(() => makeCharacter(
  34417. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34418. {
  34419. front: {
  34420. height: math.unit(12 + 6/12, "feet"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/kass-lockheed/front.svg",
  34424. extra: 354/343,
  34425. bottom: 9/363
  34426. }
  34427. },
  34428. back: {
  34429. height: math.unit(12 + 6/12, "feet"),
  34430. name: "Back",
  34431. image: {
  34432. source: "./media/characters/kass-lockheed/back.svg",
  34433. extra: 364/352,
  34434. bottom: 3/367
  34435. }
  34436. },
  34437. dick: {
  34438. height: math.unit(3.12, "feet"),
  34439. name: "Dick",
  34440. image: {
  34441. source: "./media/characters/kass-lockheed/dick.svg"
  34442. }
  34443. },
  34444. head: {
  34445. height: math.unit(2.6, "feet"),
  34446. name: "Head",
  34447. image: {
  34448. source: "./media/characters/kass-lockheed/head.svg"
  34449. }
  34450. },
  34451. bleh: {
  34452. height: math.unit(2.85, "feet"),
  34453. name: "Bleh",
  34454. image: {
  34455. source: "./media/characters/kass-lockheed/bleh.svg"
  34456. }
  34457. },
  34458. smug: {
  34459. height: math.unit(2.85, "feet"),
  34460. name: "Smug",
  34461. image: {
  34462. source: "./media/characters/kass-lockheed/smug.svg"
  34463. }
  34464. },
  34465. },
  34466. [
  34467. {
  34468. name: "Normal",
  34469. height: math.unit(12 + 6/12, "feet"),
  34470. default: true
  34471. },
  34472. ]
  34473. ))
  34474. characterMakers.push(() => makeCharacter(
  34475. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34476. {
  34477. front: {
  34478. height: math.unit(6 + 2/12, "feet"),
  34479. name: "Front",
  34480. image: {
  34481. source: "./media/characters/taylor/front.svg",
  34482. extra: 639/495,
  34483. bottom: 12/651
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(6 + 2/12, "feet"),
  34491. default: true
  34492. },
  34493. {
  34494. name: "Big",
  34495. height: math.unit(15, "feet")
  34496. },
  34497. {
  34498. name: "Lorg",
  34499. height: math.unit(80, "feet")
  34500. },
  34501. {
  34502. name: "Too Lorg",
  34503. height: math.unit(120, "feet")
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34509. {
  34510. front: {
  34511. height: math.unit(15, "feet"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/kaizer/front.svg",
  34515. extra: 1612/1436,
  34516. bottom: 43/1655
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Normal",
  34523. height: math.unit(15, "feet"),
  34524. default: true
  34525. },
  34526. ]
  34527. ))
  34528. characterMakers.push(() => makeCharacter(
  34529. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34530. {
  34531. front: {
  34532. height: math.unit(2, "feet"),
  34533. weight: math.unit(30, "lb"),
  34534. name: "Front",
  34535. image: {
  34536. source: "./media/characters/sandy/front.svg",
  34537. extra: 1439/1307,
  34538. bottom: 194/1633
  34539. }
  34540. },
  34541. },
  34542. [
  34543. {
  34544. name: "Normal",
  34545. height: math.unit(2, "feet"),
  34546. default: true
  34547. },
  34548. ]
  34549. ))
  34550. characterMakers.push(() => makeCharacter(
  34551. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34552. {
  34553. front: {
  34554. height: math.unit(3, "feet"),
  34555. name: "Front",
  34556. image: {
  34557. source: "./media/characters/mellvi/front.svg",
  34558. extra: 1831/1630,
  34559. bottom: 58/1889
  34560. }
  34561. },
  34562. },
  34563. [
  34564. {
  34565. name: "Normal",
  34566. height: math.unit(3, "feet"),
  34567. default: true
  34568. },
  34569. ]
  34570. ))
  34571. characterMakers.push(() => makeCharacter(
  34572. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34573. {
  34574. front: {
  34575. height: math.unit(5 + 11/12, "feet"),
  34576. weight: math.unit(200, "lb"),
  34577. name: "Front",
  34578. image: {
  34579. source: "./media/characters/shirou/front.svg",
  34580. extra: 2491/2383,
  34581. bottom: 189/2680
  34582. }
  34583. },
  34584. back: {
  34585. height: math.unit(5 + 11/12, "feet"),
  34586. weight: math.unit(200, "lb"),
  34587. name: "Back",
  34588. image: {
  34589. source: "./media/characters/shirou/back.svg",
  34590. extra: 2554/2450,
  34591. bottom: 76/2630
  34592. }
  34593. },
  34594. },
  34595. [
  34596. {
  34597. name: "Normal",
  34598. height: math.unit(5 + 11/12, "feet"),
  34599. default: true
  34600. },
  34601. ]
  34602. ))
  34603. characterMakers.push(() => makeCharacter(
  34604. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34605. {
  34606. front: {
  34607. height: math.unit(6 + 3/12, "feet"),
  34608. weight: math.unit(177, "lb"),
  34609. name: "Front",
  34610. image: {
  34611. source: "./media/characters/noryu/front.svg",
  34612. extra: 973/885,
  34613. bottom: 10/983
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Normal",
  34620. height: math.unit(6 + 3/12, "feet"),
  34621. default: true
  34622. },
  34623. ]
  34624. ))
  34625. characterMakers.push(() => makeCharacter(
  34626. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34627. {
  34628. front: {
  34629. height: math.unit(5 + 6/12, "feet"),
  34630. weight: math.unit(170, "lb"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/mevolas-rubenido/front.svg",
  34634. extra: 2109/1901,
  34635. bottom: 96/2205
  34636. }
  34637. },
  34638. },
  34639. [
  34640. {
  34641. name: "Normal",
  34642. height: math.unit(5 + 6/12, "feet"),
  34643. default: true
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34649. {
  34650. front: {
  34651. height: math.unit(100, "feet"),
  34652. name: "Front",
  34653. image: {
  34654. source: "./media/characters/dee/front.svg",
  34655. extra: 2153/2036,
  34656. bottom: 59/2212
  34657. }
  34658. },
  34659. back: {
  34660. height: math.unit(100, "feet"),
  34661. name: "Back",
  34662. image: {
  34663. source: "./media/characters/dee/back.svg",
  34664. extra: 2183/2058,
  34665. bottom: 75/2258
  34666. }
  34667. },
  34668. foot: {
  34669. height: math.unit(19.43, "feet"),
  34670. name: "Foot",
  34671. image: {
  34672. source: "./media/characters/dee/foot.svg"
  34673. }
  34674. },
  34675. hoof: {
  34676. height: math.unit(20.6, "feet"),
  34677. name: "Hoof",
  34678. image: {
  34679. source: "./media/characters/dee/hoof.svg"
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Macro",
  34686. height: math.unit(100, "feet"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34693. {
  34694. front: {
  34695. height: math.unit(5 + 6/12, "feet"),
  34696. name: "Front",
  34697. image: {
  34698. source: "./media/characters/teh/front.svg",
  34699. extra: 1002/847,
  34700. bottom: 62/1064
  34701. }
  34702. },
  34703. },
  34704. [
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(5 + 6/12, "feet"),
  34708. default: true
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34714. {
  34715. side: {
  34716. height: math.unit(6 + 1/12, "feet"),
  34717. weight: math.unit(204, "lb"),
  34718. name: "Side",
  34719. image: {
  34720. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34721. extra: 974/775,
  34722. bottom: 169/1143
  34723. }
  34724. },
  34725. sitting: {
  34726. height: math.unit(6 + 2/12, "feet"),
  34727. weight: math.unit(204, "lb"),
  34728. name: "Sitting",
  34729. image: {
  34730. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34731. extra: 1175/964,
  34732. bottom: 378/1553
  34733. }
  34734. },
  34735. },
  34736. [
  34737. {
  34738. name: "Normal",
  34739. height: math.unit(6 + 1/12, "feet"),
  34740. default: true
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(6, "inches"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/tululi/front.svg",
  34752. extra: 1997/1876,
  34753. bottom: 20/2017
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Normal",
  34760. height: math.unit(6, "inches"),
  34761. default: true
  34762. },
  34763. ]
  34764. ))
  34765. characterMakers.push(() => makeCharacter(
  34766. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34767. {
  34768. front: {
  34769. height: math.unit(4 + 1/12, "feet"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/star/front.svg",
  34773. extra: 1493/1189,
  34774. bottom: 48/1541
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(4 + 1/12, "feet"),
  34782. default: true
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34788. {
  34789. front: {
  34790. height: math.unit(6 + 3/12, "feet"),
  34791. name: "Front",
  34792. image: {
  34793. source: "./media/characters/comet/front.svg",
  34794. extra: 1681/1462,
  34795. bottom: 26/1707
  34796. }
  34797. },
  34798. },
  34799. [
  34800. {
  34801. name: "Normal",
  34802. height: math.unit(6 + 3/12, "feet"),
  34803. default: true
  34804. },
  34805. ]
  34806. ))
  34807. characterMakers.push(() => makeCharacter(
  34808. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34809. {
  34810. front: {
  34811. height: math.unit(950, "feet"),
  34812. name: "Front",
  34813. image: {
  34814. source: "./media/characters/vortex/front.svg",
  34815. extra: 1497/1434,
  34816. bottom: 56/1553
  34817. }
  34818. },
  34819. maw: {
  34820. height: math.unit(285, "feet"),
  34821. name: "Maw",
  34822. image: {
  34823. source: "./media/characters/vortex/maw.svg"
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Macro",
  34830. height: math.unit(950, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(600, "feet"),
  34840. weight: math.unit(0.02, "grams"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/doodle/front.svg",
  34844. extra: 1578/1413,
  34845. bottom: 37/1615
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Macro",
  34852. height: math.unit(600, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(6 + 6/12, "feet"),
  34862. name: "Front",
  34863. image: {
  34864. source: "./media/characters/jai/front.svg",
  34865. extra: 1645/1534,
  34866. bottom: 115/1760
  34867. }
  34868. },
  34869. },
  34870. [
  34871. {
  34872. name: "Normal",
  34873. height: math.unit(6 + 6/12, "feet"),
  34874. default: true
  34875. },
  34876. ]
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34880. {
  34881. front: {
  34882. height: math.unit(6 + 8/12, "feet"),
  34883. name: "Front",
  34884. image: {
  34885. source: "./media/characters/pixel/front.svg",
  34886. extra: 1900/1735,
  34887. bottom: 63/1963
  34888. }
  34889. },
  34890. },
  34891. [
  34892. {
  34893. name: "Normal",
  34894. height: math.unit(6 + 8/12, "feet"),
  34895. default: true
  34896. },
  34897. ]
  34898. ))
  34899. characterMakers.push(() => makeCharacter(
  34900. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34901. {
  34902. front: {
  34903. height: math.unit(4 + 11/12, "feet"),
  34904. weight: math.unit(111, "lb"),
  34905. name: "Front",
  34906. image: {
  34907. source: "./media/characters/rhett/front.svg",
  34908. extra: 1682/1586,
  34909. bottom: 92/1774
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Mini",
  34916. height: math.unit(1 + 1/12, "feet")
  34917. },
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(4 + 11/12, "feet"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(3 + 3/12, "feet"),
  34930. name: "Front",
  34931. image: {
  34932. source: "./media/characters/penny/front.svg",
  34933. extra: 1406/1311,
  34934. bottom: 26/1432
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(3 + 3/12, "feet"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(4 + 11/12, "feet"),
  34951. name: "Front",
  34952. image: {
  34953. source: "./media/characters/monty/front.svg",
  34954. extra: 1479/1209,
  34955. bottom: 0/1479
  34956. }
  34957. },
  34958. },
  34959. [
  34960. {
  34961. name: "Normal",
  34962. height: math.unit(4 + 11/12, "feet"),
  34963. default: true
  34964. },
  34965. ]
  34966. ))
  34967. characterMakers.push(() => makeCharacter(
  34968. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34969. {
  34970. front: {
  34971. height: math.unit(8 + 4/12, "feet"),
  34972. name: "Front",
  34973. image: {
  34974. source: "./media/characters/sterling/front.svg",
  34975. extra: 1420/1236,
  34976. bottom: 27/1447
  34977. }
  34978. },
  34979. },
  34980. [
  34981. {
  34982. name: "Normal",
  34983. height: math.unit(8 + 4/12, "feet"),
  34984. default: true
  34985. },
  34986. ]
  34987. ))
  34988. characterMakers.push(() => makeCharacter(
  34989. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34990. {
  34991. front: {
  34992. height: math.unit(15, "feet"),
  34993. name: "Front",
  34994. image: {
  34995. source: "./media/characters/marble/front.svg",
  34996. extra: 973/937,
  34997. bottom: 32/1005
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Normal",
  35004. height: math.unit(15, "feet"),
  35005. default: true
  35006. },
  35007. ]
  35008. ))
  35009. characterMakers.push(() => makeCharacter(
  35010. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35011. {
  35012. front: {
  35013. height: math.unit(3, "inches"),
  35014. name: "Front",
  35015. image: {
  35016. source: "./media/characters/powder/front.svg",
  35017. extra: 1504/1334,
  35018. bottom: 518/2022
  35019. }
  35020. },
  35021. },
  35022. [
  35023. {
  35024. name: "Normal",
  35025. height: math.unit(3, "inches"),
  35026. default: true
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35032. {
  35033. front: {
  35034. height: math.unit(4 + 5/12, "feet"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/joey-raccoon/front.svg",
  35038. extra: 1273/1197,
  35039. bottom: 0/1273
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(4 + 5/12, "feet"),
  35047. default: true
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35053. {
  35054. front: {
  35055. height: math.unit(8 + 4/12, "feet"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/vick/front.svg",
  35059. extra: 2187/2118,
  35060. bottom: 47/2234
  35061. }
  35062. },
  35063. },
  35064. [
  35065. {
  35066. name: "Normal",
  35067. height: math.unit(8 + 4/12, "feet"),
  35068. default: true
  35069. },
  35070. ]
  35071. ))
  35072. characterMakers.push(() => makeCharacter(
  35073. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35074. {
  35075. front: {
  35076. height: math.unit(5 + 5/12, "feet"),
  35077. name: "Front",
  35078. image: {
  35079. source: "./media/characters/mitsy/front.svg",
  35080. extra: 1842/1695,
  35081. bottom: 0/1842
  35082. }
  35083. },
  35084. },
  35085. [
  35086. {
  35087. name: "Normal",
  35088. height: math.unit(5 + 5/12, "feet"),
  35089. default: true
  35090. },
  35091. ]
  35092. ))
  35093. characterMakers.push(() => makeCharacter(
  35094. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35095. {
  35096. front: {
  35097. height: math.unit(6 + 3/12, "feet"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/silvy/front.svg",
  35101. extra: 1995/1836,
  35102. bottom: 225/2220
  35103. }
  35104. },
  35105. },
  35106. [
  35107. {
  35108. name: "Normal",
  35109. height: math.unit(6 + 3/12, "feet"),
  35110. default: true
  35111. },
  35112. ]
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35116. {
  35117. front: {
  35118. height: math.unit(3 + 8/12, "feet"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/rodney/front.svg",
  35122. extra: 1956/1747,
  35123. bottom: 31/1987
  35124. }
  35125. },
  35126. frontDressed: {
  35127. height: math.unit(2.9, "feet"),
  35128. name: "Front (Dressed)",
  35129. image: {
  35130. source: "./media/characters/rodney/front-dressed.svg",
  35131. extra: 1382/1241,
  35132. bottom: 385/1767
  35133. }
  35134. },
  35135. },
  35136. [
  35137. {
  35138. name: "Normal",
  35139. height: math.unit(3 + 8/12, "feet"),
  35140. default: true
  35141. },
  35142. ]
  35143. ))
  35144. characterMakers.push(() => makeCharacter(
  35145. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35146. {
  35147. front: {
  35148. height: math.unit(5 + 9/12, "feet"),
  35149. weight: math.unit(194, "lbs"),
  35150. name: "Front",
  35151. image: {
  35152. source: "./media/characters/zakail-sudekai/front.svg",
  35153. extra: 2696/2533,
  35154. bottom: 248/2944
  35155. }
  35156. },
  35157. maw: {
  35158. height: math.unit(1.35, "feet"),
  35159. name: "Maw",
  35160. image: {
  35161. source: "./media/characters/zakail-sudekai/maw.svg"
  35162. }
  35163. },
  35164. },
  35165. [
  35166. {
  35167. name: "Normal",
  35168. height: math.unit(5 + 9/12, "feet"),
  35169. default: true
  35170. },
  35171. ]
  35172. ))
  35173. characterMakers.push(() => makeCharacter(
  35174. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35175. {
  35176. front: {
  35177. height: math.unit(8 + 4/12, "feet"),
  35178. weight: math.unit(1200, "lb"),
  35179. name: "Front",
  35180. image: {
  35181. source: "./media/characters/eleanor/front.svg",
  35182. extra: 1226/1192,
  35183. bottom: 52/1278
  35184. }
  35185. },
  35186. back: {
  35187. height: math.unit(8 + 4/12, "feet"),
  35188. weight: math.unit(1200, "lb"),
  35189. name: "Back",
  35190. image: {
  35191. source: "./media/characters/eleanor/back.svg",
  35192. extra: 1242/1184,
  35193. bottom: 60/1302
  35194. }
  35195. },
  35196. head: {
  35197. height: math.unit(2.62, "feet"),
  35198. name: "Head",
  35199. image: {
  35200. source: "./media/characters/eleanor/head.svg"
  35201. }
  35202. },
  35203. },
  35204. [
  35205. {
  35206. name: "Normal",
  35207. height: math.unit(8 + 4/12, "feet"),
  35208. default: true
  35209. },
  35210. ]
  35211. ))
  35212. characterMakers.push(() => makeCharacter(
  35213. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35214. {
  35215. front: {
  35216. height: math.unit(8 + 4/12, "feet"),
  35217. weight: math.unit(750, "lb"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/tanya/front.svg",
  35221. extra: 1749/1615,
  35222. bottom: 33/1782
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(8 + 4/12, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(5, "feet"),
  35239. weight: math.unit(225, "lb"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/cindy/front.svg",
  35243. extra: 1320/1250,
  35244. bottom: 42/1362
  35245. }
  35246. },
  35247. frontDressed: {
  35248. height: math.unit(5, "feet"),
  35249. weight: math.unit(225, "lb"),
  35250. name: "Front (Dressed)",
  35251. image: {
  35252. source: "./media/characters/cindy/front-dressed.svg",
  35253. extra: 1320/1250,
  35254. bottom: 42/1362
  35255. }
  35256. },
  35257. back: {
  35258. height: math.unit(5, "feet"),
  35259. weight: math.unit(225, "lb"),
  35260. name: "Back",
  35261. image: {
  35262. source: "./media/characters/cindy/back.svg",
  35263. extra: 1384/1346,
  35264. bottom: 14/1398
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(5, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(6 + 9/12, "feet"),
  35281. weight: math.unit(440, "lb"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/wilbur-owen/front.svg",
  35285. extra: 1575/1448,
  35286. bottom: 72/1647
  35287. }
  35288. },
  35289. back: {
  35290. height: math.unit(6 + 9/12, "feet"),
  35291. weight: math.unit(440, "lb"),
  35292. name: "Back",
  35293. image: {
  35294. source: "./media/characters/wilbur-owen/back.svg",
  35295. extra: 1578/1445,
  35296. bottom: 36/1614
  35297. }
  35298. },
  35299. },
  35300. [
  35301. {
  35302. name: "Normal",
  35303. height: math.unit(6 + 9/12, "feet"),
  35304. default: true
  35305. },
  35306. ]
  35307. ))
  35308. characterMakers.push(() => makeCharacter(
  35309. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35310. {
  35311. front: {
  35312. height: math.unit(6 + 5/12, "feet"),
  35313. weight: math.unit(650, "lb"),
  35314. name: "Front",
  35315. image: {
  35316. source: "./media/characters/keegan/front.svg",
  35317. extra: 2387/2198,
  35318. bottom: 33/2420
  35319. }
  35320. },
  35321. side: {
  35322. height: math.unit(6 + 5/12, "feet"),
  35323. weight: math.unit(650, "lb"),
  35324. name: "Side",
  35325. image: {
  35326. source: "./media/characters/keegan/side.svg",
  35327. extra: 2390/2202,
  35328. bottom: 47/2437
  35329. }
  35330. },
  35331. back: {
  35332. height: math.unit(6 + 5/12, "feet"),
  35333. weight: math.unit(650, "lb"),
  35334. name: "Back",
  35335. image: {
  35336. source: "./media/characters/keegan/back.svg",
  35337. extra: 2418/2268,
  35338. bottom: 15/2433
  35339. }
  35340. },
  35341. frontSfw: {
  35342. height: math.unit(6 + 5/12, "feet"),
  35343. weight: math.unit(650, "lb"),
  35344. name: "Front (SFW)",
  35345. image: {
  35346. source: "./media/characters/keegan/front-sfw.svg",
  35347. extra: 2387/2198,
  35348. bottom: 33/2420
  35349. }
  35350. },
  35351. beans: {
  35352. height: math.unit(1.85, "feet"),
  35353. name: "Beans",
  35354. image: {
  35355. source: "./media/characters/keegan/beans.svg"
  35356. }
  35357. },
  35358. },
  35359. [
  35360. {
  35361. name: "Normal",
  35362. height: math.unit(6 + 5/12, "feet"),
  35363. default: true
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35369. {
  35370. front: {
  35371. height: math.unit(9, "feet"),
  35372. name: "Front",
  35373. image: {
  35374. source: "./media/characters/colton/front.svg",
  35375. extra: 1589/1326,
  35376. bottom: 139/1728
  35377. }
  35378. },
  35379. },
  35380. [
  35381. {
  35382. name: "Normal",
  35383. height: math.unit(9, "feet"),
  35384. default: true
  35385. },
  35386. ]
  35387. ))
  35388. characterMakers.push(() => makeCharacter(
  35389. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35390. {
  35391. front: {
  35392. height: math.unit(2 + 9/12, "feet"),
  35393. name: "Front",
  35394. image: {
  35395. source: "./media/characters/bora/front.svg",
  35396. extra: 1265/1250,
  35397. bottom: 24/1289
  35398. }
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "Normal",
  35404. height: math.unit(2 + 9/12, "feet"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(8, "feet"),
  35414. name: "Front",
  35415. image: {
  35416. source: "./media/characters/myu-myu/front.svg",
  35417. extra: 1949/1857,
  35418. bottom: 90/2039
  35419. }
  35420. },
  35421. },
  35422. [
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(8, "feet"),
  35426. default: true
  35427. },
  35428. {
  35429. name: "Big",
  35430. height: math.unit(15, "feet")
  35431. },
  35432. {
  35433. name: "BIG",
  35434. height: math.unit(25, "feet")
  35435. },
  35436. ]
  35437. ))
  35438. characterMakers.push(() => makeCharacter(
  35439. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35440. {
  35441. side: {
  35442. height: math.unit(7 + 5/12, "feet"),
  35443. weight: math.unit(2800, "lb"),
  35444. name: "Side",
  35445. image: {
  35446. source: "./media/characters/haloren/side.svg",
  35447. extra: 1793/409,
  35448. bottom: 59/1852
  35449. }
  35450. },
  35451. frontPaw: {
  35452. height: math.unit(2.36, "feet"),
  35453. name: "Front paw",
  35454. image: {
  35455. source: "./media/characters/haloren/front-paw.svg"
  35456. }
  35457. },
  35458. hindPaw: {
  35459. height: math.unit(3.18, "feet"),
  35460. name: "Hind paw",
  35461. image: {
  35462. source: "./media/characters/haloren/hind-paw.svg"
  35463. }
  35464. },
  35465. maw: {
  35466. height: math.unit(5.05, "feet"),
  35467. name: "Maw",
  35468. image: {
  35469. source: "./media/characters/haloren/maw.svg"
  35470. }
  35471. },
  35472. dick: {
  35473. height: math.unit(2.90, "feet"),
  35474. name: "Dick",
  35475. image: {
  35476. source: "./media/characters/haloren/dick.svg"
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(7 + 5/12, "feet"),
  35484. default: true
  35485. },
  35486. {
  35487. name: "Enhanced",
  35488. height: math.unit(14 + 3/12, "feet")
  35489. },
  35490. ]
  35491. ))
  35492. characterMakers.push(() => makeCharacter(
  35493. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35494. {
  35495. front: {
  35496. height: math.unit(171, "cm"),
  35497. name: "Front",
  35498. image: {
  35499. source: "./media/characters/kimmy/front.svg",
  35500. extra: 1491/1435,
  35501. bottom: 53/1544
  35502. }
  35503. },
  35504. },
  35505. [
  35506. {
  35507. name: "Small",
  35508. height: math.unit(9, "cm")
  35509. },
  35510. {
  35511. name: "Normal",
  35512. height: math.unit(171, "cm"),
  35513. default: true
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35519. {
  35520. front: {
  35521. height: math.unit(8, "feet"),
  35522. weight: math.unit(300, "lb"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/galeboomer/front.svg",
  35526. extra: 4651/4415,
  35527. bottom: 162/4813
  35528. }
  35529. },
  35530. back: {
  35531. height: math.unit(8, "feet"),
  35532. weight: math.unit(300, "lb"),
  35533. name: "Back",
  35534. image: {
  35535. source: "./media/characters/galeboomer/back.svg",
  35536. extra: 4544/4314,
  35537. bottom: 16/4560
  35538. }
  35539. },
  35540. frontAlt: {
  35541. height: math.unit(8, "feet"),
  35542. weight: math.unit(300, "lb"),
  35543. name: "Front (Alt)",
  35544. image: {
  35545. source: "./media/characters/galeboomer/front-alt.svg",
  35546. extra: 4458/4228,
  35547. bottom: 68/4526
  35548. }
  35549. },
  35550. maw: {
  35551. height: math.unit(1.2, "feet"),
  35552. name: "Maw",
  35553. image: {
  35554. source: "./media/characters/galeboomer/maw.svg"
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(8, "feet"),
  35562. default: true
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35568. {
  35569. front: {
  35570. height: math.unit(5 + 9/12, "feet"),
  35571. weight: math.unit(120, "lb"),
  35572. name: "Front",
  35573. image: {
  35574. source: "./media/characters/chyr/front.svg",
  35575. extra: 1323/1254,
  35576. bottom: 63/1386
  35577. }
  35578. },
  35579. back: {
  35580. height: math.unit(5 + 9/12, "feet"),
  35581. weight: math.unit(120, "lb"),
  35582. name: "Back",
  35583. image: {
  35584. source: "./media/characters/chyr/back.svg",
  35585. extra: 1323/1252,
  35586. bottom: 48/1371
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(5 + 9/12, "feet"),
  35594. default: true
  35595. },
  35596. ]
  35597. ))
  35598. characterMakers.push(() => makeCharacter(
  35599. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35600. {
  35601. front: {
  35602. height: math.unit(7, "feet"),
  35603. weight: math.unit(310, "lb"),
  35604. name: "Front",
  35605. image: {
  35606. source: "./media/characters/solarus/front.svg",
  35607. extra: 2415/2021,
  35608. bottom: 103/2518
  35609. }
  35610. },
  35611. back: {
  35612. height: math.unit(7, "feet"),
  35613. weight: math.unit(310, "lb"),
  35614. name: "Back",
  35615. image: {
  35616. source: "./media/characters/solarus/back.svg",
  35617. extra: 2463/2089,
  35618. bottom: 79/2542
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(7, "feet"),
  35626. default: true
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35632. {
  35633. front: {
  35634. height: math.unit(16, "feet"),
  35635. name: "Front",
  35636. image: {
  35637. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35638. extra: 1844/1780,
  35639. bottom: 58/1902
  35640. }
  35641. },
  35642. },
  35643. [
  35644. {
  35645. name: "Normal",
  35646. height: math.unit(16, "feet"),
  35647. default: true
  35648. },
  35649. ]
  35650. ))
  35651. characterMakers.push(() => makeCharacter(
  35652. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35653. {
  35654. front: {
  35655. height: math.unit(11 + 6/12, "feet"),
  35656. weight: math.unit(1366, "lb"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/lexor/front.svg",
  35660. extra: 1560/1481,
  35661. bottom: 211/1771
  35662. }
  35663. },
  35664. back: {
  35665. height: math.unit(11 + 6/12, "feet"),
  35666. weight: math.unit(1366, "lb"),
  35667. name: "Back",
  35668. image: {
  35669. source: "./media/characters/lexor/back.svg",
  35670. extra: 1614/1533,
  35671. bottom: 76/1690
  35672. }
  35673. },
  35674. maw: {
  35675. height: math.unit(3, "feet"),
  35676. name: "Maw",
  35677. image: {
  35678. source: "./media/characters/lexor/maw.svg"
  35679. }
  35680. },
  35681. dick: {
  35682. height: math.unit(2.59, "feet"),
  35683. name: "Dick",
  35684. image: {
  35685. source: "./media/characters/lexor/dick.svg"
  35686. }
  35687. },
  35688. },
  35689. [
  35690. {
  35691. name: "Normal",
  35692. height: math.unit(11 + 6/12, "feet"),
  35693. default: true
  35694. },
  35695. ]
  35696. ))
  35697. characterMakers.push(() => makeCharacter(
  35698. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35699. {
  35700. front: {
  35701. height: math.unit(5 + 8/12, "feet"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/magnum/front.svg",
  35705. extra: 942/855,
  35706. bottom: 26/968
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(5 + 8/12, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(18 + 4/12, "feet"),
  35723. weight: math.unit(1500, "kg"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/solas-sharpsman/front.svg",
  35727. extra: 1698/1589,
  35728. bottom: 0/1698
  35729. }
  35730. },
  35731. },
  35732. [
  35733. {
  35734. name: "Normal",
  35735. height: math.unit(18 + 4/12, "feet"),
  35736. default: true
  35737. },
  35738. ]
  35739. ))
  35740. characterMakers.push(() => makeCharacter(
  35741. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35742. {
  35743. front: {
  35744. height: math.unit(5 + 5/12, "feet"),
  35745. weight: math.unit(180, "lb"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/october/front.svg",
  35749. extra: 1800/1650,
  35750. bottom: 0/1800
  35751. }
  35752. },
  35753. frontNsfw: {
  35754. height: math.unit(5 + 5/12, "feet"),
  35755. weight: math.unit(180, "lb"),
  35756. name: "Front (NSFW)",
  35757. image: {
  35758. source: "./media/characters/october/front-nsfw.svg",
  35759. extra: 1392/1307,
  35760. bottom: 42/1434
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(5 + 5/12, "feet"),
  35768. default: true
  35769. },
  35770. ]
  35771. ))
  35772. characterMakers.push(() => makeCharacter(
  35773. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35774. {
  35775. front: {
  35776. height: math.unit(8 + 6/12, "feet"),
  35777. name: "Front",
  35778. image: {
  35779. source: "./media/characters/essynkardi/front.svg",
  35780. extra: 1914/1846,
  35781. bottom: 22/1936
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Normal",
  35788. height: math.unit(8 + 6/12, "feet"),
  35789. default: true
  35790. },
  35791. ]
  35792. ))
  35793. characterMakers.push(() => makeCharacter(
  35794. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35795. {
  35796. front: {
  35797. height: math.unit(6 + 6/12, "feet"),
  35798. weight: math.unit(7, "lb"),
  35799. name: "Front",
  35800. image: {
  35801. source: "./media/characters/icky/front.svg",
  35802. extra: 813/782,
  35803. bottom: 66/879
  35804. }
  35805. },
  35806. back: {
  35807. height: math.unit(6 + 6/12, "feet"),
  35808. weight: math.unit(7, "lb"),
  35809. name: "Back",
  35810. image: {
  35811. source: "./media/characters/icky/back.svg",
  35812. extra: 754/735,
  35813. bottom: 56/810
  35814. }
  35815. },
  35816. },
  35817. [
  35818. {
  35819. name: "Normal",
  35820. height: math.unit(6 + 6/12, "feet"),
  35821. default: true
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35827. {
  35828. front: {
  35829. height: math.unit(15, "feet"),
  35830. name: "Front",
  35831. image: {
  35832. source: "./media/characters/rojas/front.svg",
  35833. extra: 1462/1408,
  35834. bottom: 95/1557
  35835. }
  35836. },
  35837. back: {
  35838. height: math.unit(15, "feet"),
  35839. name: "Back",
  35840. image: {
  35841. source: "./media/characters/rojas/back.svg",
  35842. extra: 1023/954,
  35843. bottom: 28/1051
  35844. }
  35845. },
  35846. },
  35847. [
  35848. {
  35849. name: "Normal",
  35850. height: math.unit(15, "feet"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35857. {
  35858. frontHuman: {
  35859. height: math.unit(5 + 7/12, "feet"),
  35860. name: "Front (Human)",
  35861. image: {
  35862. source: "./media/characters/alek-dryagan/front-human.svg",
  35863. extra: 1687/1667,
  35864. bottom: 69/1756
  35865. }
  35866. },
  35867. backHuman: {
  35868. height: math.unit(5 + 7/12, "feet"),
  35869. name: "Back (Human)",
  35870. image: {
  35871. source: "./media/characters/alek-dryagan/back-human.svg",
  35872. extra: 1670/1649,
  35873. bottom: 65/1735
  35874. }
  35875. },
  35876. frontDemi: {
  35877. height: math.unit(65, "feet"),
  35878. name: "Front (Demi)",
  35879. image: {
  35880. source: "./media/characters/alek-dryagan/front-demi.svg",
  35881. extra: 1669/1642,
  35882. bottom: 49/1718
  35883. }
  35884. },
  35885. backDemi: {
  35886. height: math.unit(65, "feet"),
  35887. name: "Back (Demi)",
  35888. image: {
  35889. source: "./media/characters/alek-dryagan/back-demi.svg",
  35890. extra: 1658/1637,
  35891. bottom: 40/1698
  35892. }
  35893. },
  35894. mawHuman: {
  35895. height: math.unit(0.3, "feet"),
  35896. name: "Maw (Human)",
  35897. image: {
  35898. source: "./media/characters/alek-dryagan/maw-human.svg"
  35899. }
  35900. },
  35901. mawDemi: {
  35902. height: math.unit(3.8, "feet"),
  35903. name: "Maw (Demi)",
  35904. image: {
  35905. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(5 + 7/12, "feet"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35919. {
  35920. frontHuman: {
  35921. height: math.unit(5 + 2/12, "feet"),
  35922. name: "Front (Human)",
  35923. image: {
  35924. source: "./media/characters/gen/front-human.svg",
  35925. extra: 1627/1538,
  35926. bottom: 71/1698
  35927. }
  35928. },
  35929. backHuman: {
  35930. height: math.unit(5 + 2/12, "feet"),
  35931. name: "Back (Human)",
  35932. image: {
  35933. source: "./media/characters/gen/back-human.svg",
  35934. extra: 1638/1548,
  35935. bottom: 69/1707
  35936. }
  35937. },
  35938. frontDemi: {
  35939. height: math.unit(5 + 2/12, "feet"),
  35940. name: "Front (Demi)",
  35941. image: {
  35942. source: "./media/characters/gen/front-demi.svg",
  35943. extra: 1627/1538,
  35944. bottom: 71/1698
  35945. }
  35946. },
  35947. backDemi: {
  35948. height: math.unit(5 + 2/12, "feet"),
  35949. name: "Back (Demi)",
  35950. image: {
  35951. source: "./media/characters/gen/back-demi.svg",
  35952. extra: 1638/1548,
  35953. bottom: 69/1707
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Normal",
  35960. height: math.unit(5 + 2/12, "feet"),
  35961. default: true
  35962. },
  35963. ]
  35964. ))
  35965. characterMakers.push(() => makeCharacter(
  35966. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35967. {
  35968. frontImp: {
  35969. height: math.unit(1 + 11/12, "feet"),
  35970. name: "Front (Imp)",
  35971. image: {
  35972. source: "./media/characters/max-kobold/front-imp.svg",
  35973. extra: 1238/1134,
  35974. bottom: 81/1319
  35975. }
  35976. },
  35977. backImp: {
  35978. height: math.unit(1 + 11/12, "feet"),
  35979. name: "Back (Imp)",
  35980. image: {
  35981. source: "./media/characters/max-kobold/back-imp.svg",
  35982. extra: 1334/1175,
  35983. bottom: 34/1368
  35984. }
  35985. },
  35986. frontDemi: {
  35987. height: math.unit(5 + 9/12, "feet"),
  35988. name: "Front (Demi)",
  35989. image: {
  35990. source: "./media/characters/max-kobold/front-demi.svg",
  35991. extra: 1715/1685,
  35992. bottom: 54/1769
  35993. }
  35994. },
  35995. backDemi: {
  35996. height: math.unit(5 + 9/12, "feet"),
  35997. name: "Back (Demi)",
  35998. image: {
  35999. source: "./media/characters/max-kobold/back-demi.svg",
  36000. extra: 1752/1729,
  36001. bottom: 41/1793
  36002. }
  36003. },
  36004. handImp: {
  36005. height: math.unit(0.45, "feet"),
  36006. name: "Hand (Imp)",
  36007. image: {
  36008. source: "./media/characters/max-kobold/hand.svg"
  36009. }
  36010. },
  36011. pawImp: {
  36012. height: math.unit(0.46, "feet"),
  36013. name: "Paw (Imp)",
  36014. image: {
  36015. source: "./media/characters/max-kobold/paw.svg"
  36016. }
  36017. },
  36018. handDemi: {
  36019. height: math.unit(0.80, "feet"),
  36020. name: "Hand (Demi)",
  36021. image: {
  36022. source: "./media/characters/max-kobold/hand.svg"
  36023. }
  36024. },
  36025. pawDemi: {
  36026. height: math.unit(1.1, "feet"),
  36027. name: "Paw (Demi)",
  36028. image: {
  36029. source: "./media/characters/max-kobold/paw.svg"
  36030. }
  36031. },
  36032. headImp: {
  36033. height: math.unit(1.33, "feet"),
  36034. name: "Head (Imp)",
  36035. image: {
  36036. source: "./media/characters/max-kobold/head-imp.svg"
  36037. }
  36038. },
  36039. mawImp: {
  36040. height: math.unit(0.75, "feet"),
  36041. name: "Maw (Imp)",
  36042. image: {
  36043. source: "./media/characters/max-kobold/maw-imp.svg"
  36044. }
  36045. },
  36046. mawDemi: {
  36047. height: math.unit(0.42, "feet"),
  36048. name: "Maw (Demi)",
  36049. image: {
  36050. source: "./media/characters/max-kobold/maw-demi.svg"
  36051. }
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "Normal",
  36057. height: math.unit(1 + 11/12, "feet"),
  36058. default: true
  36059. },
  36060. ]
  36061. ))
  36062. characterMakers.push(() => makeCharacter(
  36063. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36064. {
  36065. front: {
  36066. height: math.unit(7 + 5/12, "feet"),
  36067. name: "Front",
  36068. image: {
  36069. source: "./media/characters/carbon/front.svg",
  36070. extra: 1754/1689,
  36071. bottom: 65/1819
  36072. }
  36073. },
  36074. back: {
  36075. height: math.unit(7 + 5/12, "feet"),
  36076. name: "Back",
  36077. image: {
  36078. source: "./media/characters/carbon/back.svg",
  36079. extra: 1762/1695,
  36080. bottom: 24/1786
  36081. }
  36082. },
  36083. frontGigantamax: {
  36084. height: math.unit(150, "feet"),
  36085. name: "Front (Gigantamax)",
  36086. image: {
  36087. source: "./media/characters/carbon/front-gigantamax.svg",
  36088. extra: 1826/1669,
  36089. bottom: 59/1885
  36090. }
  36091. },
  36092. backGigantamax: {
  36093. height: math.unit(150, "feet"),
  36094. name: "Back (Gigantamax)",
  36095. image: {
  36096. source: "./media/characters/carbon/back-gigantamax.svg",
  36097. extra: 1796/1653,
  36098. bottom: 53/1849
  36099. }
  36100. },
  36101. maw: {
  36102. height: math.unit(0.48, "feet"),
  36103. name: "Maw",
  36104. image: {
  36105. source: "./media/characters/carbon/maw.svg"
  36106. }
  36107. },
  36108. mawGigantamax: {
  36109. height: math.unit(7.5, "feet"),
  36110. name: "Maw (Gigantamax)",
  36111. image: {
  36112. source: "./media/characters/carbon/maw-gigantamax.svg"
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(7 + 5/12, "feet"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36126. {
  36127. front: {
  36128. height: math.unit(6, "feet"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/maverick/front.svg",
  36132. extra: 1672/1661,
  36133. bottom: 85/1757
  36134. }
  36135. },
  36136. back: {
  36137. height: math.unit(6, "feet"),
  36138. name: "Back",
  36139. image: {
  36140. source: "./media/characters/maverick/back.svg",
  36141. extra: 1642/1631,
  36142. bottom: 38/1680
  36143. }
  36144. },
  36145. },
  36146. [
  36147. {
  36148. name: "Normal",
  36149. height: math.unit(6, "feet"),
  36150. default: true
  36151. },
  36152. ]
  36153. ))
  36154. characterMakers.push(() => makeCharacter(
  36155. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36156. {
  36157. front: {
  36158. height: math.unit(15, "feet"),
  36159. weight: math.unit(615, "lb"),
  36160. name: "Front",
  36161. image: {
  36162. source: "./media/characters/grockle/front.svg",
  36163. extra: 1535/1427,
  36164. bottom: 56/1591
  36165. }
  36166. },
  36167. },
  36168. [
  36169. {
  36170. name: "Normal",
  36171. height: math.unit(15, "feet"),
  36172. default: true
  36173. },
  36174. {
  36175. name: "Large",
  36176. height: math.unit(150, "feet")
  36177. },
  36178. {
  36179. name: "Macro",
  36180. height: math.unit(1876, "feet")
  36181. },
  36182. {
  36183. name: "Mega Macro",
  36184. height: math.unit(121940, "feet")
  36185. },
  36186. {
  36187. name: "Giga Macro",
  36188. height: math.unit(750, "km")
  36189. },
  36190. {
  36191. name: "Tera Macro",
  36192. height: math.unit(750000, "km")
  36193. },
  36194. {
  36195. name: "Galactic",
  36196. height: math.unit(1.4e5, "km")
  36197. },
  36198. {
  36199. name: "Godlike",
  36200. height: math.unit(9.8e280, "galaxies")
  36201. },
  36202. ]
  36203. ))
  36204. characterMakers.push(() => makeCharacter(
  36205. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36206. {
  36207. front: {
  36208. height: math.unit(11, "meters"),
  36209. weight: math.unit(20, "tonnes"),
  36210. name: "Front",
  36211. image: {
  36212. source: "./media/characters/alistair/front.svg",
  36213. extra: 1265/1009,
  36214. bottom: 93/1358
  36215. }
  36216. },
  36217. },
  36218. [
  36219. {
  36220. name: "Normal",
  36221. height: math.unit(11, "meters"),
  36222. default: true
  36223. },
  36224. ]
  36225. ))
  36226. characterMakers.push(() => makeCharacter(
  36227. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36228. {
  36229. front: {
  36230. height: math.unit(5 + 8/12, "feet"),
  36231. name: "Front",
  36232. image: {
  36233. source: "./media/characters/haruka/front.svg",
  36234. extra: 2012/1952,
  36235. bottom: 0/2012
  36236. }
  36237. },
  36238. },
  36239. [
  36240. {
  36241. name: "Normal",
  36242. height: math.unit(5 + 8/12, "feet"),
  36243. default: true
  36244. },
  36245. ]
  36246. ))
  36247. characterMakers.push(() => makeCharacter(
  36248. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36249. {
  36250. back: {
  36251. height: math.unit(9, "feet"),
  36252. name: "Back",
  36253. image: {
  36254. source: "./media/characters/vivian-sylveon/back.svg",
  36255. extra: 1853/1714,
  36256. bottom: 0/1853
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Normal",
  36263. height: math.unit(9, "feet"),
  36264. default: true
  36265. },
  36266. {
  36267. name: "Macro",
  36268. height: math.unit(500, "feet")
  36269. },
  36270. {
  36271. name: "Megamacro",
  36272. height: math.unit(600, "miles")
  36273. },
  36274. {
  36275. name: "Gigamacro",
  36276. height: math.unit(30000, "miles")
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36282. {
  36283. anthro: {
  36284. height: math.unit(5 + 10/12, "feet"),
  36285. weight: math.unit(100, "lb"),
  36286. name: "Anthro",
  36287. image: {
  36288. source: "./media/characters/daiki/anthro.svg",
  36289. extra: 1115/1027,
  36290. bottom: 69/1184
  36291. }
  36292. },
  36293. feral: {
  36294. height: math.unit(200, "feet"),
  36295. name: "Feral",
  36296. image: {
  36297. source: "./media/characters/daiki/feral.svg",
  36298. extra: 1256/313,
  36299. bottom: 39/1295
  36300. }
  36301. },
  36302. feralHead: {
  36303. height: math.unit(171, "feet"),
  36304. name: "Feral Head",
  36305. image: {
  36306. source: "./media/characters/daiki/feral-head.svg"
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(5 + 10/12, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36320. {
  36321. fullyEquippedFront: {
  36322. height: math.unit(3 + 1/12, "feet"),
  36323. weight: math.unit(24, "lb"),
  36324. name: "Fully Equipped (Front)",
  36325. image: {
  36326. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36327. extra: 687/605,
  36328. bottom: 18/705
  36329. }
  36330. },
  36331. fullyEquippedBack: {
  36332. height: math.unit(3 + 1/12, "feet"),
  36333. weight: math.unit(24, "lb"),
  36334. name: "Fully Equipped (Back)",
  36335. image: {
  36336. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36337. extra: 689/590,
  36338. bottom: 18/707
  36339. }
  36340. },
  36341. dailyWear: {
  36342. height: math.unit(3 + 1/12, "feet"),
  36343. weight: math.unit(24, "lb"),
  36344. name: "Daily Wear",
  36345. image: {
  36346. source: "./media/characters/tea-spot/daily-wear.svg",
  36347. extra: 701/620,
  36348. bottom: 21/722
  36349. }
  36350. },
  36351. maidWork: {
  36352. height: math.unit(3 + 1/12, "feet"),
  36353. weight: math.unit(24, "lb"),
  36354. name: "Maid Work",
  36355. image: {
  36356. source: "./media/characters/tea-spot/maid-work.svg",
  36357. extra: 693/609,
  36358. bottom: 15/708
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(3 + 1/12, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36372. {
  36373. front: {
  36374. height: math.unit(175, "cm"),
  36375. weight: math.unit(75, "kg"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/chee/front.svg",
  36379. extra: 1796/1740,
  36380. bottom: 40/1836
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Micro-Micro",
  36387. height: math.unit(1, "nm")
  36388. },
  36389. {
  36390. name: "Micro-erst",
  36391. height: math.unit(1, "micrometer")
  36392. },
  36393. {
  36394. name: "Micro-er",
  36395. height: math.unit(1, "cm")
  36396. },
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(175, "cm"),
  36400. default: true
  36401. },
  36402. {
  36403. name: "Macro",
  36404. height: math.unit(100, "m")
  36405. },
  36406. {
  36407. name: "Macro-er",
  36408. height: math.unit(1, "km")
  36409. },
  36410. {
  36411. name: "Macro-erst",
  36412. height: math.unit(10, "km")
  36413. },
  36414. {
  36415. name: "Macro-Macro",
  36416. height: math.unit(100, "km")
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36422. {
  36423. front: {
  36424. height: math.unit(11 + 9/12, "feet"),
  36425. weight: math.unit(935, "lb"),
  36426. name: "Front",
  36427. image: {
  36428. source: "./media/characters/kingsley/front.svg",
  36429. extra: 1803/1674,
  36430. bottom: 127/1930
  36431. }
  36432. },
  36433. frontNude: {
  36434. height: math.unit(11 + 9/12, "feet"),
  36435. weight: math.unit(935, "lb"),
  36436. name: "Front (Nude)",
  36437. image: {
  36438. source: "./media/characters/kingsley/front-nude.svg",
  36439. extra: 1803/1674,
  36440. bottom: 127/1930
  36441. }
  36442. },
  36443. },
  36444. [
  36445. {
  36446. name: "Normal",
  36447. height: math.unit(11 + 9/12, "feet"),
  36448. default: true
  36449. },
  36450. ]
  36451. ))
  36452. characterMakers.push(() => makeCharacter(
  36453. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36454. {
  36455. side: {
  36456. height: math.unit(9, "feet"),
  36457. name: "Side",
  36458. image: {
  36459. source: "./media/characters/rymel/side.svg",
  36460. extra: 792/469,
  36461. bottom: 121/913
  36462. }
  36463. },
  36464. maw: {
  36465. height: math.unit(2.4, "meters"),
  36466. name: "Maw",
  36467. image: {
  36468. source: "./media/characters/rymel/maw.svg"
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "House Drake",
  36475. height: math.unit(2, "feet")
  36476. },
  36477. {
  36478. name: "Reduced",
  36479. height: math.unit(4.5, "feet")
  36480. },
  36481. {
  36482. name: "Normal",
  36483. height: math.unit(9, "feet"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(1.74, "meters"),
  36493. weight: math.unit(55, "kg"),
  36494. name: "Front",
  36495. image: {
  36496. source: "./media/characters/rubus/front.svg",
  36497. extra: 1894/1742,
  36498. bottom: 44/1938
  36499. }
  36500. },
  36501. },
  36502. [
  36503. {
  36504. name: "Normal",
  36505. height: math.unit(1.74, "meters"),
  36506. default: true
  36507. },
  36508. ]
  36509. ))
  36510. characterMakers.push(() => makeCharacter(
  36511. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36512. {
  36513. front: {
  36514. height: math.unit(5 + 2/12, "feet"),
  36515. weight: math.unit(112, "lb"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/cassie-kingston/front.svg",
  36519. extra: 1438/1390,
  36520. bottom: 47/1485
  36521. }
  36522. },
  36523. },
  36524. [
  36525. {
  36526. name: "Normal",
  36527. height: math.unit(5 + 2/12, "feet"),
  36528. default: true
  36529. },
  36530. {
  36531. name: "Macro",
  36532. height: math.unit(128, "feet")
  36533. },
  36534. {
  36535. name: "Megamacro",
  36536. height: math.unit(2.56, "miles")
  36537. },
  36538. ]
  36539. ))
  36540. characterMakers.push(() => makeCharacter(
  36541. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36542. {
  36543. front: {
  36544. height: math.unit(7, "feet"),
  36545. name: "Front",
  36546. image: {
  36547. source: "./media/characters/fox/front.svg",
  36548. extra: 1798/1703,
  36549. bottom: 55/1853
  36550. }
  36551. },
  36552. back: {
  36553. height: math.unit(7, "feet"),
  36554. name: "Back",
  36555. image: {
  36556. source: "./media/characters/fox/back.svg",
  36557. extra: 1748/1649,
  36558. bottom: 32/1780
  36559. }
  36560. },
  36561. head: {
  36562. height: math.unit(1.95, "feet"),
  36563. name: "Head",
  36564. image: {
  36565. source: "./media/characters/fox/head.svg"
  36566. }
  36567. },
  36568. dick: {
  36569. height: math.unit(1.33, "feet"),
  36570. name: "Dick",
  36571. image: {
  36572. source: "./media/characters/fox/dick.svg"
  36573. }
  36574. },
  36575. foot: {
  36576. height: math.unit(1, "feet"),
  36577. name: "Foot",
  36578. image: {
  36579. source: "./media/characters/fox/foot.svg"
  36580. }
  36581. },
  36582. paw: {
  36583. height: math.unit(0.92, "feet"),
  36584. name: "Paw",
  36585. image: {
  36586. source: "./media/characters/fox/paw.svg"
  36587. }
  36588. },
  36589. },
  36590. [
  36591. {
  36592. name: "Small",
  36593. height: math.unit(3, "inches")
  36594. },
  36595. {
  36596. name: "\"Realistic\"",
  36597. height: math.unit(7, "feet")
  36598. },
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(150, "feet"),
  36602. default: true
  36603. },
  36604. {
  36605. name: "BIG",
  36606. height: math.unit(1200, "feet")
  36607. },
  36608. {
  36609. name: "👀",
  36610. height: math.unit(5, "miles")
  36611. },
  36612. {
  36613. name: "👀👀👀",
  36614. height: math.unit(64, "miles")
  36615. },
  36616. ]
  36617. ))
  36618. characterMakers.push(() => makeCharacter(
  36619. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36620. {
  36621. front: {
  36622. height: math.unit(625, "feet"),
  36623. name: "Front",
  36624. image: {
  36625. source: "./media/characters/asonja-rossa/front.svg",
  36626. extra: 1833/1686,
  36627. bottom: 24/1857
  36628. }
  36629. },
  36630. back: {
  36631. height: math.unit(625, "feet"),
  36632. name: "Back",
  36633. image: {
  36634. source: "./media/characters/asonja-rossa/back.svg",
  36635. extra: 1852/1753,
  36636. bottom: 26/1878
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Macro",
  36643. height: math.unit(625, "feet"),
  36644. default: true
  36645. },
  36646. ]
  36647. ))
  36648. characterMakers.push(() => makeCharacter(
  36649. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36650. {
  36651. side: {
  36652. height: math.unit(6, "feet"),
  36653. weight: math.unit(150, "lb"),
  36654. name: "Side",
  36655. image: {
  36656. source: "./media/characters/rezukii/side.svg",
  36657. extra: 979/542,
  36658. bottom: 87/1066
  36659. }
  36660. },
  36661. },
  36662. [
  36663. {
  36664. name: "Tiny",
  36665. height: math.unit(2, "feet")
  36666. },
  36667. {
  36668. name: "Smol",
  36669. height: math.unit(4, "feet")
  36670. },
  36671. {
  36672. name: "Normal",
  36673. height: math.unit(8, "feet"),
  36674. default: true
  36675. },
  36676. {
  36677. name: "Big",
  36678. height: math.unit(12, "feet")
  36679. },
  36680. {
  36681. name: "Macro",
  36682. height: math.unit(30, "feet")
  36683. },
  36684. ]
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(14, "feet"),
  36691. weight: math.unit(9.5, "tonnes"),
  36692. name: "Front",
  36693. image: {
  36694. source: "./media/characters/dawnheart/front.svg",
  36695. extra: 2792/2675,
  36696. bottom: 64/2856
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(14, "feet"),
  36704. default: true
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36710. {
  36711. front: {
  36712. height: math.unit(1.7, "m"),
  36713. name: "Front",
  36714. image: {
  36715. source: "./media/characters/gladi/front.svg",
  36716. extra: 1460/1362,
  36717. bottom: 19/1479
  36718. }
  36719. },
  36720. back: {
  36721. height: math.unit(1.7, "m"),
  36722. name: "Back",
  36723. image: {
  36724. source: "./media/characters/gladi/back.svg",
  36725. extra: 1459/1357,
  36726. bottom: 12/1471
  36727. }
  36728. },
  36729. feral: {
  36730. height: math.unit(2.05, "m"),
  36731. name: "Feral",
  36732. image: {
  36733. source: "./media/characters/gladi/feral.svg",
  36734. extra: 821/557,
  36735. bottom: 91/912
  36736. }
  36737. },
  36738. },
  36739. [
  36740. {
  36741. name: "Shortest",
  36742. height: math.unit(70, "cm")
  36743. },
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(1.7, "m")
  36747. },
  36748. {
  36749. name: "Macro",
  36750. height: math.unit(10, "m"),
  36751. default: true
  36752. },
  36753. {
  36754. name: "Tallest",
  36755. height: math.unit(200, "m")
  36756. },
  36757. ]
  36758. ))
  36759. characterMakers.push(() => makeCharacter(
  36760. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36761. {
  36762. front: {
  36763. height: math.unit(5 + 7/12, "feet"),
  36764. weight: math.unit(92, "kg"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/erdno/front.svg",
  36768. extra: 1954/1889,
  36769. bottom: 22/1976
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(5 + 7/12, "feet"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(5 + 10/12, "feet"),
  36786. weight: math.unit(150, "lb"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/jamie/front.svg",
  36790. extra: 1908/1768,
  36791. bottom: 19/1927
  36792. }
  36793. },
  36794. },
  36795. [
  36796. {
  36797. name: "Minimum",
  36798. height: math.unit(2, "cm")
  36799. },
  36800. {
  36801. name: "Micro",
  36802. height: math.unit(3, "inches")
  36803. },
  36804. {
  36805. name: "Normal",
  36806. height: math.unit(5 + 10/12, "feet"),
  36807. default: true
  36808. },
  36809. {
  36810. name: "Macro",
  36811. height: math.unit(150, "feet")
  36812. },
  36813. {
  36814. name: "Megamacro",
  36815. height: math.unit(10000, "m")
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(2, "meters"),
  36824. weight: math.unit(100, "kg"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/shiron/front.svg",
  36828. extra: 2103/1985,
  36829. bottom: 98/2201
  36830. }
  36831. },
  36832. back: {
  36833. height: math.unit(2, "meters"),
  36834. weight: math.unit(100, "kg"),
  36835. name: "Back",
  36836. image: {
  36837. source: "./media/characters/shiron/back.svg",
  36838. extra: 2110/2015,
  36839. bottom: 89/2199
  36840. }
  36841. },
  36842. hand: {
  36843. height: math.unit(0.96, "feet"),
  36844. name: "Hand",
  36845. image: {
  36846. source: "./media/characters/shiron/hand.svg"
  36847. }
  36848. },
  36849. foot: {
  36850. height: math.unit(1.464, "feet"),
  36851. name: "Foot",
  36852. image: {
  36853. source: "./media/characters/shiron/foot.svg"
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Normal",
  36860. height: math.unit(2, "meters")
  36861. },
  36862. {
  36863. name: "Macro",
  36864. height: math.unit(500, "meters"),
  36865. default: true
  36866. },
  36867. {
  36868. name: "Megamacro",
  36869. height: math.unit(20, "km")
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(6, "feet"),
  36878. name: "Front",
  36879. image: {
  36880. source: "./media/characters/sam/front.svg",
  36881. extra: 849/826,
  36882. bottom: 19/868
  36883. }
  36884. },
  36885. },
  36886. [
  36887. {
  36888. name: "Normal",
  36889. height: math.unit(6, "feet"),
  36890. default: true
  36891. },
  36892. ]
  36893. ))
  36894. characterMakers.push(() => makeCharacter(
  36895. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36896. {
  36897. front: {
  36898. height: math.unit(8 + 4/12, "feet"),
  36899. weight: math.unit(122, "kg"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/namori-kurogawa/front.svg",
  36903. extra: 1894/1576,
  36904. bottom: 34/1928
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(8 + 4/12, "feet"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(9, "feet"),
  36921. weight: math.unit(621, "lb"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/unmru/front.svg",
  36925. extra: 1853/1747,
  36926. bottom: 73/1926
  36927. }
  36928. },
  36929. side: {
  36930. height: math.unit(9, "feet"),
  36931. weight: math.unit(621, "lb"),
  36932. name: "Side",
  36933. image: {
  36934. source: "./media/characters/unmru/side.svg",
  36935. extra: 1781/1671,
  36936. bottom: 127/1908
  36937. }
  36938. },
  36939. back: {
  36940. height: math.unit(9, "feet"),
  36941. weight: math.unit(621, "lb"),
  36942. name: "Back",
  36943. image: {
  36944. source: "./media/characters/unmru/back.svg",
  36945. extra: 1894/1765,
  36946. bottom: 75/1969
  36947. }
  36948. },
  36949. dick: {
  36950. height: math.unit(3, "feet"),
  36951. weight: math.unit(35, "lb"),
  36952. name: "Dick",
  36953. image: {
  36954. source: "./media/characters/unmru/dick.svg"
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(9, "feet")
  36962. },
  36963. {
  36964. name: "Natural",
  36965. height: math.unit(27, "feet"),
  36966. default: true
  36967. },
  36968. {
  36969. name: "Giant",
  36970. height: math.unit(90, "feet")
  36971. },
  36972. {
  36973. name: "Kaiju",
  36974. height: math.unit(270, "feet")
  36975. },
  36976. {
  36977. name: "Macro",
  36978. height: math.unit(900, "feet")
  36979. },
  36980. {
  36981. name: "Macro+",
  36982. height: math.unit(2700, "feet")
  36983. },
  36984. {
  36985. name: "Megamacro",
  36986. height: math.unit(9000, "feet")
  36987. },
  36988. {
  36989. name: "City-Crushing",
  36990. height: math.unit(27000, "feet")
  36991. },
  36992. {
  36993. name: "Mountain-Mashing",
  36994. height: math.unit(90000, "feet")
  36995. },
  36996. {
  36997. name: "Earth-Eclipsing",
  36998. height: math.unit(2.7e8, "feet")
  36999. },
  37000. {
  37001. name: "Sol-Swallowing",
  37002. height: math.unit(9e10, "feet")
  37003. },
  37004. {
  37005. name: "Majoris-Munching",
  37006. height: math.unit(2.7e13, "feet")
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37012. {
  37013. front: {
  37014. height: math.unit(1, "inch"),
  37015. name: "Front",
  37016. image: {
  37017. source: "./media/characters/squeaks-mouse/front.svg",
  37018. extra: 352/308,
  37019. bottom: 25/377
  37020. }
  37021. },
  37022. },
  37023. [
  37024. {
  37025. name: "Micro",
  37026. height: math.unit(1, "inch"),
  37027. default: true
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37033. {
  37034. side: {
  37035. height: math.unit(35, "feet"),
  37036. name: "Side",
  37037. image: {
  37038. source: "./media/characters/sayko/side.svg",
  37039. extra: 1697/1021,
  37040. bottom: 82/1779
  37041. }
  37042. },
  37043. head: {
  37044. height: math.unit(16, "feet"),
  37045. name: "Head",
  37046. image: {
  37047. source: "./media/characters/sayko/head.svg"
  37048. }
  37049. },
  37050. forepaw: {
  37051. height: math.unit(7.85, "feet"),
  37052. name: "Forepaw",
  37053. image: {
  37054. source: "./media/characters/sayko/forepaw.svg"
  37055. }
  37056. },
  37057. hindpaw: {
  37058. height: math.unit(8.8, "feet"),
  37059. name: "Hindpaw",
  37060. image: {
  37061. source: "./media/characters/sayko/hindpaw.svg"
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(35, "feet"),
  37069. default: true
  37070. },
  37071. {
  37072. name: "Colossus",
  37073. height: math.unit(100, "meters")
  37074. },
  37075. {
  37076. name: "\"Small\" Deity",
  37077. height: math.unit(1, "km")
  37078. },
  37079. {
  37080. name: "\"Large\" Deity",
  37081. height: math.unit(15, "km")
  37082. },
  37083. ]
  37084. ))
  37085. characterMakers.push(() => makeCharacter(
  37086. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37087. {
  37088. front: {
  37089. height: math.unit(6, "feet"),
  37090. weight: math.unit(250, "lb"),
  37091. name: "Front",
  37092. image: {
  37093. source: "./media/characters/mukiro/front.svg",
  37094. extra: 1368/1310,
  37095. bottom: 34/1402
  37096. }
  37097. },
  37098. },
  37099. [
  37100. {
  37101. name: "Normal",
  37102. height: math.unit(6, "feet"),
  37103. default: true
  37104. },
  37105. ]
  37106. ))
  37107. characterMakers.push(() => makeCharacter(
  37108. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37109. {
  37110. front: {
  37111. height: math.unit(12 + 4/12, "feet"),
  37112. name: "Front",
  37113. image: {
  37114. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37115. extra: 1346/1311,
  37116. bottom: 65/1411
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Base",
  37123. height: math.unit(12 + 4/12, "feet"),
  37124. default: true
  37125. },
  37126. {
  37127. name: "Macro",
  37128. height: math.unit(150, "feet")
  37129. },
  37130. {
  37131. name: "Mega",
  37132. height: math.unit(2, "miles")
  37133. },
  37134. {
  37135. name: "Demi God",
  37136. height: math.unit(4, "AU")
  37137. },
  37138. {
  37139. name: "God Size",
  37140. height: math.unit(1, "universe")
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(3 + 3/12, "feet"),
  37149. weight: math.unit(88, "lb"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/trey/front.svg",
  37153. extra: 1815/1509,
  37154. bottom: 60/1875
  37155. }
  37156. },
  37157. },
  37158. [
  37159. {
  37160. name: "Normal",
  37161. height: math.unit(3 + 3/12, "feet"),
  37162. default: true
  37163. },
  37164. ]
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37168. {
  37169. front: {
  37170. height: math.unit(4, "meters"),
  37171. name: "Front",
  37172. image: {
  37173. source: "./media/characters/adelonda/front.svg",
  37174. extra: 1942/1775,
  37175. bottom: 33/1975
  37176. }
  37177. },
  37178. back: {
  37179. height: math.unit(4, "meters"),
  37180. name: "Back",
  37181. image: {
  37182. source: "./media/characters/adelonda/back.svg",
  37183. extra: 1932/1780,
  37184. bottom: 42/1974
  37185. }
  37186. },
  37187. bust: {
  37188. height: math.unit(1.8, "meter"),
  37189. name: "Bust",
  37190. image: {
  37191. source: "./media/characters/adelonda/bust.svg"
  37192. }
  37193. },
  37194. },
  37195. [
  37196. {
  37197. name: "Normal",
  37198. height: math.unit(4, "meters"),
  37199. default: true
  37200. },
  37201. ]
  37202. ))
  37203. characterMakers.push(() => makeCharacter(
  37204. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37205. {
  37206. front: {
  37207. height: math.unit(8 + 4/12, "feet"),
  37208. weight: math.unit(670, "lb"),
  37209. name: "Front",
  37210. image: {
  37211. source: "./media/characters/acadiel/front.svg",
  37212. extra: 1901/1595,
  37213. bottom: 142/2043
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Normal",
  37220. height: math.unit(8 + 4/12, "feet"),
  37221. default: true
  37222. },
  37223. {
  37224. name: "Macro",
  37225. height: math.unit(200, "feet")
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(6 + 2/12, "feet"),
  37234. weight: math.unit(185, "lb"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/kayne-ein/front.svg",
  37238. extra: 1780/1560,
  37239. bottom: 81/1861
  37240. }
  37241. },
  37242. },
  37243. [
  37244. {
  37245. name: "Normal",
  37246. height: math.unit(6 + 2/12, "feet"),
  37247. default: true
  37248. },
  37249. {
  37250. name: "Transformation Stage",
  37251. height: math.unit(15, "feet")
  37252. },
  37253. {
  37254. name: "Macro",
  37255. height: math.unit(150, "feet")
  37256. },
  37257. {
  37258. name: "Earth's Shadow",
  37259. height: math.unit(6200, "miles")
  37260. },
  37261. {
  37262. name: "Universal Demon",
  37263. height: math.unit(28e9, "parsecs")
  37264. },
  37265. {
  37266. name: "Multiverse God",
  37267. height: math.unit(3, "multiverses")
  37268. },
  37269. ]
  37270. ))
  37271. characterMakers.push(() => makeCharacter(
  37272. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37273. {
  37274. front: {
  37275. height: math.unit(5 + 5/12, "feet"),
  37276. name: "Front",
  37277. image: {
  37278. source: "./media/characters/fawn/front.svg",
  37279. extra: 1873/1731,
  37280. bottom: 95/1968
  37281. }
  37282. },
  37283. back: {
  37284. height: math.unit(5 + 5/12, "feet"),
  37285. name: "Back",
  37286. image: {
  37287. source: "./media/characters/fawn/back.svg",
  37288. extra: 1813/1700,
  37289. bottom: 14/1827
  37290. }
  37291. },
  37292. hoof: {
  37293. height: math.unit(1.45, "feet"),
  37294. name: "Hoof",
  37295. image: {
  37296. source: "./media/characters/fawn/hoof.svg"
  37297. }
  37298. },
  37299. },
  37300. [
  37301. {
  37302. name: "Normal",
  37303. height: math.unit(5 + 5/12, "feet"),
  37304. default: true
  37305. },
  37306. ]
  37307. ))
  37308. characterMakers.push(() => makeCharacter(
  37309. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37310. {
  37311. front: {
  37312. height: math.unit(2 + 5/12, "feet"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/orion/front.svg",
  37316. extra: 1366/1304,
  37317. bottom: 43/1409
  37318. }
  37319. },
  37320. paw: {
  37321. height: math.unit(0.52, "feet"),
  37322. name: "Paw",
  37323. image: {
  37324. source: "./media/characters/orion/paw.svg"
  37325. }
  37326. },
  37327. },
  37328. [
  37329. {
  37330. name: "Normal",
  37331. height: math.unit(2 + 5/12, "feet"),
  37332. default: true
  37333. },
  37334. ]
  37335. ))
  37336. characterMakers.push(() => makeCharacter(
  37337. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37338. {
  37339. front: {
  37340. height: math.unit(5 + 10/12, "feet"),
  37341. name: "Front",
  37342. image: {
  37343. source: "./media/characters/vera/front.svg",
  37344. extra: 1680/1575,
  37345. bottom: 49/1729
  37346. }
  37347. },
  37348. back: {
  37349. height: math.unit(5 + 10/12, "feet"),
  37350. name: "Back",
  37351. image: {
  37352. source: "./media/characters/vera/back.svg",
  37353. extra: 1700/1588,
  37354. bottom: 18/1718
  37355. }
  37356. },
  37357. arcanine: {
  37358. height: math.unit(6 + 8/12, "feet"),
  37359. name: "Arcanine",
  37360. image: {
  37361. source: "./media/characters/vera/arcanine.svg",
  37362. extra: 1590/1511,
  37363. bottom: 71/1661
  37364. }
  37365. },
  37366. maw: {
  37367. height: math.unit(0.82, "feet"),
  37368. name: "Maw",
  37369. image: {
  37370. source: "./media/characters/vera/maw.svg"
  37371. }
  37372. },
  37373. mawArcanine: {
  37374. height: math.unit(0.97, "feet"),
  37375. name: "Maw (Arcanine)",
  37376. image: {
  37377. source: "./media/characters/vera/maw-arcanine.svg"
  37378. }
  37379. },
  37380. paw: {
  37381. height: math.unit(0.75, "feet"),
  37382. name: "Paw",
  37383. image: {
  37384. source: "./media/characters/vera/paw.svg"
  37385. }
  37386. },
  37387. pawprint: {
  37388. height: math.unit(0.52, "feet"),
  37389. name: "Pawprint",
  37390. image: {
  37391. source: "./media/characters/vera/pawprint.svg"
  37392. }
  37393. },
  37394. },
  37395. [
  37396. {
  37397. name: "Normal",
  37398. height: math.unit(5 + 10/12, "feet"),
  37399. default: true
  37400. },
  37401. {
  37402. name: "Macro",
  37403. height: math.unit(75, "feet")
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37409. {
  37410. front: {
  37411. height: math.unit(4, "feet"),
  37412. weight: math.unit(40, "lb"),
  37413. name: "Front",
  37414. image: {
  37415. source: "./media/characters/orvan-rabbit/front.svg",
  37416. extra: 1896/1642,
  37417. bottom: 29/1925
  37418. }
  37419. },
  37420. },
  37421. [
  37422. {
  37423. name: "Normal",
  37424. height: math.unit(4, "feet"),
  37425. default: true
  37426. },
  37427. ]
  37428. ))
  37429. characterMakers.push(() => makeCharacter(
  37430. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37431. {
  37432. front: {
  37433. height: math.unit(6, "feet"),
  37434. weight: math.unit(168, "lb"),
  37435. name: "Front",
  37436. image: {
  37437. source: "./media/characters/lisa/front.svg",
  37438. extra: 2065/1867,
  37439. bottom: 46/2111
  37440. }
  37441. },
  37442. back: {
  37443. height: math.unit(6, "feet"),
  37444. weight: math.unit(168, "lb"),
  37445. name: "Back",
  37446. image: {
  37447. source: "./media/characters/lisa/back.svg",
  37448. extra: 1982/1838,
  37449. bottom: 29/2011
  37450. }
  37451. },
  37452. maw: {
  37453. height: math.unit(0.81, "feet"),
  37454. name: "Maw",
  37455. image: {
  37456. source: "./media/characters/lisa/maw.svg"
  37457. }
  37458. },
  37459. paw: {
  37460. height: math.unit(0.9, "feet"),
  37461. name: "Paw",
  37462. image: {
  37463. source: "./media/characters/lisa/paw.svg"
  37464. }
  37465. },
  37466. caribousune: {
  37467. height: math.unit(7 + 2/12, "feet"),
  37468. weight: math.unit(268, "lb"),
  37469. name: "Caribousune",
  37470. image: {
  37471. source: "./media/characters/lisa/caribousune.svg",
  37472. extra: 1843/1633,
  37473. bottom: 29/1872
  37474. }
  37475. },
  37476. frontCaribousune: {
  37477. height: math.unit(7 + 2/12, "feet"),
  37478. weight: math.unit(268, "lb"),
  37479. name: "Front (Caribousune)",
  37480. image: {
  37481. source: "./media/characters/lisa/front-caribousune.svg",
  37482. extra: 1818/1638,
  37483. bottom: 52/1870
  37484. }
  37485. },
  37486. sideCaribousune: {
  37487. height: math.unit(7 + 2/12, "feet"),
  37488. weight: math.unit(268, "lb"),
  37489. name: "Side (Caribousune)",
  37490. image: {
  37491. source: "./media/characters/lisa/side-caribousune.svg",
  37492. extra: 1851/1635,
  37493. bottom: 16/1867
  37494. }
  37495. },
  37496. backCaribousune: {
  37497. height: math.unit(7 + 2/12, "feet"),
  37498. weight: math.unit(268, "lb"),
  37499. name: "Back (Caribousune)",
  37500. image: {
  37501. source: "./media/characters/lisa/back-caribousune.svg",
  37502. extra: 1801/1604,
  37503. bottom: 44/1845
  37504. }
  37505. },
  37506. caribou: {
  37507. height: math.unit(7 + 2/12, "feet"),
  37508. weight: math.unit(268, "lb"),
  37509. name: "Caribou",
  37510. image: {
  37511. source: "./media/characters/lisa/caribou.svg",
  37512. extra: 1843/1633,
  37513. bottom: 29/1872
  37514. }
  37515. },
  37516. frontCaribou: {
  37517. height: math.unit(7 + 2/12, "feet"),
  37518. weight: math.unit(268, "lb"),
  37519. name: "Front (Caribou)",
  37520. image: {
  37521. source: "./media/characters/lisa/front-caribou.svg",
  37522. extra: 1818/1638,
  37523. bottom: 52/1870
  37524. }
  37525. },
  37526. sideCaribou: {
  37527. height: math.unit(7 + 2/12, "feet"),
  37528. weight: math.unit(268, "lb"),
  37529. name: "Side (Caribou)",
  37530. image: {
  37531. source: "./media/characters/lisa/side-caribou.svg",
  37532. extra: 1851/1635,
  37533. bottom: 16/1867
  37534. }
  37535. },
  37536. backCaribou: {
  37537. height: math.unit(7 + 2/12, "feet"),
  37538. weight: math.unit(268, "lb"),
  37539. name: "Back (Caribou)",
  37540. image: {
  37541. source: "./media/characters/lisa/back-caribou.svg",
  37542. extra: 1801/1604,
  37543. bottom: 44/1845
  37544. }
  37545. },
  37546. mawCaribou: {
  37547. height: math.unit(1.45, "feet"),
  37548. name: "Maw (Caribou)",
  37549. image: {
  37550. source: "./media/characters/lisa/maw-caribou.svg"
  37551. }
  37552. },
  37553. mawCaribousune: {
  37554. height: math.unit(1.45, "feet"),
  37555. name: "Maw (Caribousune)",
  37556. image: {
  37557. source: "./media/characters/lisa/maw-caribousune.svg"
  37558. }
  37559. },
  37560. pawCaribousune: {
  37561. height: math.unit(1.61, "feet"),
  37562. name: "Paw (Caribou)",
  37563. image: {
  37564. source: "./media/characters/lisa/paw-caribousune.svg"
  37565. }
  37566. },
  37567. },
  37568. [
  37569. {
  37570. name: "Normal",
  37571. height: math.unit(6, "feet")
  37572. },
  37573. {
  37574. name: "God Size",
  37575. height: math.unit(72, "feet"),
  37576. default: true
  37577. },
  37578. {
  37579. name: "Towering",
  37580. height: math.unit(288, "feet")
  37581. },
  37582. {
  37583. name: "City Size",
  37584. height: math.unit(48384, "feet")
  37585. },
  37586. {
  37587. name: "Continental",
  37588. height: math.unit(4200, "miles")
  37589. },
  37590. {
  37591. name: "Planet Eater",
  37592. height: math.unit(42, "earths")
  37593. },
  37594. {
  37595. name: "Star Swallower",
  37596. height: math.unit(42, "solarradii")
  37597. },
  37598. {
  37599. name: "System Swallower",
  37600. height: math.unit(84000, "AU")
  37601. },
  37602. {
  37603. name: "Galaxy Gobbler",
  37604. height: math.unit(42, "galaxies")
  37605. },
  37606. {
  37607. name: "Universe Devourer",
  37608. height: math.unit(42, "universes")
  37609. },
  37610. {
  37611. name: "Multiverse Muncher",
  37612. height: math.unit(42, "multiverses")
  37613. },
  37614. ]
  37615. ))
  37616. characterMakers.push(() => makeCharacter(
  37617. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37618. {
  37619. front: {
  37620. height: math.unit(36, "feet"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/shadow-rat/front.svg",
  37624. extra: 1845/1758,
  37625. bottom: 83/1928
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Macro",
  37632. height: math.unit(36, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37639. {
  37640. side: {
  37641. height: math.unit(8, "feet"),
  37642. weight: math.unit(2630, "lb"),
  37643. name: "Side",
  37644. image: {
  37645. source: "./media/characters/torallia/side.svg",
  37646. extra: 2164/2021,
  37647. bottom: 371/2535
  37648. }
  37649. },
  37650. },
  37651. [
  37652. {
  37653. name: "Mortal Interaction",
  37654. height: math.unit(8, "feet")
  37655. },
  37656. {
  37657. name: "Natural",
  37658. height: math.unit(24, "feet"),
  37659. default: true
  37660. },
  37661. {
  37662. name: "Giant",
  37663. height: math.unit(80, "feet")
  37664. },
  37665. {
  37666. name: "Kaiju",
  37667. height: math.unit(240, "feet")
  37668. },
  37669. {
  37670. name: "Macro",
  37671. height: math.unit(800, "feet")
  37672. },
  37673. {
  37674. name: "Macro+",
  37675. height: math.unit(2400, "feet")
  37676. },
  37677. {
  37678. name: "Macro++",
  37679. height: math.unit(8000, "feet")
  37680. },
  37681. {
  37682. name: "City-Crushing",
  37683. height: math.unit(24000, "feet")
  37684. },
  37685. {
  37686. name: "Mountain-Mashing",
  37687. height: math.unit(80000, "feet")
  37688. },
  37689. {
  37690. name: "District Demolisher",
  37691. height: math.unit(240000, "feet")
  37692. },
  37693. {
  37694. name: "Tri-County Terror",
  37695. height: math.unit(800000, "feet")
  37696. },
  37697. {
  37698. name: "State Smasher",
  37699. height: math.unit(2.4e6, "feet")
  37700. },
  37701. {
  37702. name: "Nation Nemesis",
  37703. height: math.unit(8e6, "feet")
  37704. },
  37705. {
  37706. name: "Continent Cracker",
  37707. height: math.unit(2.4e7, "feet")
  37708. },
  37709. {
  37710. name: "Planet-Pillaging",
  37711. height: math.unit(8e7, "feet")
  37712. },
  37713. {
  37714. name: "Earth-Eclipsing",
  37715. height: math.unit(2.4e8, "feet")
  37716. },
  37717. {
  37718. name: "Jovian-Jostling",
  37719. height: math.unit(8e8, "feet")
  37720. },
  37721. {
  37722. name: "Gas Giant Gulper",
  37723. height: math.unit(2.4e9, "feet")
  37724. },
  37725. {
  37726. name: "Astral Annihilator",
  37727. height: math.unit(8e9, "feet")
  37728. },
  37729. {
  37730. name: "Celestial Conqueror",
  37731. height: math.unit(2.4e10, "feet")
  37732. },
  37733. {
  37734. name: "Sol-Swallowing",
  37735. height: math.unit(8e10, "feet")
  37736. },
  37737. {
  37738. name: "Hunter of the Heavens",
  37739. height: math.unit(2.4e13, "feet")
  37740. },
  37741. ]
  37742. ))
  37743. characterMakers.push(() => makeCharacter(
  37744. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37745. {
  37746. front: {
  37747. height: math.unit(6 + 8/12, "feet"),
  37748. name: "Front",
  37749. image: {
  37750. source: "./media/characters/rebecca-pawlson/front.svg",
  37751. extra: 1737/1596,
  37752. bottom: 107/1844
  37753. }
  37754. },
  37755. back: {
  37756. height: math.unit(6 + 8/12, "feet"),
  37757. name: "Back",
  37758. image: {
  37759. source: "./media/characters/rebecca-pawlson/back.svg",
  37760. extra: 1702/1523,
  37761. bottom: 86/1788
  37762. }
  37763. },
  37764. },
  37765. [
  37766. {
  37767. name: "Normal",
  37768. height: math.unit(6 + 8/12, "feet")
  37769. },
  37770. {
  37771. name: "Mini Macro",
  37772. height: math.unit(10, "feet"),
  37773. default: true
  37774. },
  37775. {
  37776. name: "Macro",
  37777. height: math.unit(100, "feet")
  37778. },
  37779. {
  37780. name: "Mega Macro",
  37781. height: math.unit(2500, "feet")
  37782. },
  37783. {
  37784. name: "Giga Macro",
  37785. height: math.unit(50, "miles")
  37786. },
  37787. ]
  37788. ))
  37789. characterMakers.push(() => makeCharacter(
  37790. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37791. {
  37792. front: {
  37793. height: math.unit(7 + 6/12, "feet"),
  37794. weight: math.unit(600, "lb"),
  37795. name: "Front",
  37796. image: {
  37797. source: "./media/characters/moxie-nova/front.svg",
  37798. extra: 1734/1652,
  37799. bottom: 41/1775
  37800. }
  37801. },
  37802. },
  37803. [
  37804. {
  37805. name: "Normal",
  37806. height: math.unit(7 + 6/12, "feet"),
  37807. default: true
  37808. },
  37809. ]
  37810. ))
  37811. characterMakers.push(() => makeCharacter(
  37812. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37813. {
  37814. front: {
  37815. height: math.unit(5, "feet"),
  37816. weight: math.unit(150, "lb"),
  37817. name: "Front",
  37818. image: {
  37819. source: "./media/characters/tiffany/front.svg",
  37820. extra: 1941/1845,
  37821. bottom: 58/1999
  37822. }
  37823. },
  37824. },
  37825. [
  37826. {
  37827. name: "Normal",
  37828. height: math.unit(5, "feet"),
  37829. default: true
  37830. },
  37831. ]
  37832. ))
  37833. characterMakers.push(() => makeCharacter(
  37834. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37835. {
  37836. front: {
  37837. height: math.unit(8, "feet"),
  37838. weight: math.unit(300, "lb"),
  37839. name: "Front",
  37840. image: {
  37841. source: "./media/characters/raxinath/front.svg",
  37842. extra: 1407/1309,
  37843. bottom: 39/1446
  37844. }
  37845. },
  37846. back: {
  37847. height: math.unit(8, "feet"),
  37848. weight: math.unit(300, "lb"),
  37849. name: "Back",
  37850. image: {
  37851. source: "./media/characters/raxinath/back.svg",
  37852. extra: 1405/1315,
  37853. bottom: 9/1414
  37854. }
  37855. },
  37856. },
  37857. [
  37858. {
  37859. name: "Speck",
  37860. height: math.unit(0.5, "nm")
  37861. },
  37862. {
  37863. name: "Micro",
  37864. height: math.unit(3, "inches")
  37865. },
  37866. {
  37867. name: "Kobold",
  37868. height: math.unit(3, "feet")
  37869. },
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(8, "feet"),
  37873. default: true
  37874. },
  37875. {
  37876. name: "Giant",
  37877. height: math.unit(50, "feet")
  37878. },
  37879. {
  37880. name: "Macro",
  37881. height: math.unit(1000, "feet")
  37882. },
  37883. {
  37884. name: "Megamacro",
  37885. height: math.unit(1, "mile")
  37886. },
  37887. ]
  37888. ))
  37889. characterMakers.push(() => makeCharacter(
  37890. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37891. {
  37892. front: {
  37893. height: math.unit(10, "feet"),
  37894. weight: math.unit(1442, "lb"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/mal-dragon/front.svg",
  37898. extra: 1515/1444,
  37899. bottom: 113/1628
  37900. }
  37901. },
  37902. back: {
  37903. height: math.unit(10, "feet"),
  37904. weight: math.unit(1442, "lb"),
  37905. name: "Back",
  37906. image: {
  37907. source: "./media/characters/mal-dragon/back.svg",
  37908. extra: 1527/1434,
  37909. bottom: 25/1552
  37910. }
  37911. },
  37912. },
  37913. [
  37914. {
  37915. name: "Mortal Interaction",
  37916. height: math.unit(10, "feet"),
  37917. default: true
  37918. },
  37919. {
  37920. name: "Large",
  37921. height: math.unit(30, "feet")
  37922. },
  37923. {
  37924. name: "Kaiju",
  37925. height: math.unit(300, "feet")
  37926. },
  37927. {
  37928. name: "Megamacro",
  37929. height: math.unit(10000, "feet")
  37930. },
  37931. {
  37932. name: "Continent Cracker",
  37933. height: math.unit(30000000, "feet")
  37934. },
  37935. {
  37936. name: "Sol-Swallowing",
  37937. height: math.unit(1e11, "feet")
  37938. },
  37939. {
  37940. name: "Light Universal",
  37941. height: math.unit(5, "universes")
  37942. },
  37943. {
  37944. name: "Universe Atoms",
  37945. height: math.unit(1.829e9, "universes")
  37946. },
  37947. {
  37948. name: "Light Multiversal",
  37949. height: math.unit(5, "multiverses")
  37950. },
  37951. {
  37952. name: "Multiverse Atoms",
  37953. height: math.unit(1.829e9, "multiverses")
  37954. },
  37955. {
  37956. name: "Fabric of Time",
  37957. height: math.unit(1e262, "multiverses")
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(9, "feet"),
  37966. weight: math.unit(1050, "lb"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/tabitha/front.svg",
  37970. extra: 2083/1994,
  37971. bottom: 68/2151
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Baseline",
  37978. height: math.unit(9, "feet"),
  37979. default: true
  37980. },
  37981. {
  37982. name: "Giant",
  37983. height: math.unit(90, "feet")
  37984. },
  37985. {
  37986. name: "Macro",
  37987. height: math.unit(900, "feet")
  37988. },
  37989. {
  37990. name: "Megamacro",
  37991. height: math.unit(9000, "feet")
  37992. },
  37993. {
  37994. name: "City-Crushing",
  37995. height: math.unit(27000, "feet")
  37996. },
  37997. {
  37998. name: "Mountain-Mashing",
  37999. height: math.unit(90000, "feet")
  38000. },
  38001. {
  38002. name: "Nation Nemesis",
  38003. height: math.unit(9e6, "feet")
  38004. },
  38005. {
  38006. name: "Continent Cracker",
  38007. height: math.unit(27e6, "feet")
  38008. },
  38009. {
  38010. name: "Earth-Eclipsing",
  38011. height: math.unit(2.7e8, "feet")
  38012. },
  38013. {
  38014. name: "Gas Giant Gulper",
  38015. height: math.unit(2.7e9, "feet")
  38016. },
  38017. {
  38018. name: "Sol-Swallowing",
  38019. height: math.unit(9e10, "feet")
  38020. },
  38021. {
  38022. name: "Galaxy Gulper",
  38023. height: math.unit(9, "galaxies")
  38024. },
  38025. {
  38026. name: "Cosmos Churner",
  38027. height: math.unit(9, "universes")
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38033. {
  38034. front: {
  38035. height: math.unit(160, "cm"),
  38036. weight: math.unit(55, "kg"),
  38037. name: "Front",
  38038. image: {
  38039. source: "./media/characters/tow/front.svg",
  38040. extra: 1751/1722,
  38041. bottom: 74/1825
  38042. }
  38043. },
  38044. },
  38045. [
  38046. {
  38047. name: "Norm",
  38048. height: math.unit(160, "cm")
  38049. },
  38050. {
  38051. name: "Casual",
  38052. height: math.unit(3200, "m"),
  38053. default: true
  38054. },
  38055. {
  38056. name: "Show-Off",
  38057. height: math.unit(160, "km")
  38058. },
  38059. ]
  38060. ))
  38061. characterMakers.push(() => makeCharacter(
  38062. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38063. {
  38064. front: {
  38065. height: math.unit(7 + 11/12, "feet"),
  38066. weight: math.unit(342.8, "lb"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/vivian-orca-dragon/front.svg",
  38070. extra: 1890/1865,
  38071. bottom: 28/1918
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Micro",
  38078. height: math.unit(5, "inches")
  38079. },
  38080. {
  38081. name: "Normal",
  38082. height: math.unit(7 + 11/12, "feet"),
  38083. default: true
  38084. },
  38085. {
  38086. name: "Macro",
  38087. height: math.unit(395 + 7/12, "feet")
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38093. {
  38094. side: {
  38095. height: math.unit(10, "feet"),
  38096. weight: math.unit(1442, "lb"),
  38097. name: "Side",
  38098. image: {
  38099. source: "./media/characters/lotherakon/side.svg",
  38100. extra: 1604/1497,
  38101. bottom: 89/1693
  38102. }
  38103. },
  38104. },
  38105. [
  38106. {
  38107. name: "Mortal Interaction",
  38108. height: math.unit(10, "feet")
  38109. },
  38110. {
  38111. name: "Large",
  38112. height: math.unit(30, "feet"),
  38113. default: true
  38114. },
  38115. {
  38116. name: "Giant",
  38117. height: math.unit(100, "feet")
  38118. },
  38119. {
  38120. name: "Kaiju",
  38121. height: math.unit(300, "feet")
  38122. },
  38123. {
  38124. name: "Macro",
  38125. height: math.unit(1000, "feet")
  38126. },
  38127. {
  38128. name: "Macro+",
  38129. height: math.unit(3000, "feet")
  38130. },
  38131. {
  38132. name: "Megamacro",
  38133. height: math.unit(10000, "feet")
  38134. },
  38135. {
  38136. name: "City-Crushing",
  38137. height: math.unit(30000, "feet")
  38138. },
  38139. {
  38140. name: "Continent Cracker",
  38141. height: math.unit(30e6, "feet")
  38142. },
  38143. {
  38144. name: "Earth Eclipsing",
  38145. height: math.unit(3e8, "feet")
  38146. },
  38147. {
  38148. name: "Gas Giant Gulper",
  38149. height: math.unit(3e9, "feet")
  38150. },
  38151. {
  38152. name: "Sol-Swallowing",
  38153. height: math.unit(1e11, "feet")
  38154. },
  38155. {
  38156. name: "System Swallower",
  38157. height: math.unit(3e14, "feet")
  38158. },
  38159. {
  38160. name: "Galaxy Gulper",
  38161. height: math.unit(10, "galaxies")
  38162. },
  38163. {
  38164. name: "Light Universal",
  38165. height: math.unit(5, "universes")
  38166. },
  38167. {
  38168. name: "Universe Palm",
  38169. height: math.unit(20, "universes")
  38170. },
  38171. {
  38172. name: "Light Multiversal",
  38173. height: math.unit(5, "multiverses")
  38174. },
  38175. {
  38176. name: "Multiverse Palm",
  38177. height: math.unit(20, "multiverses")
  38178. },
  38179. {
  38180. name: "Inferno Incarnate",
  38181. height: math.unit(1e7, "multiverses")
  38182. },
  38183. ]
  38184. ))
  38185. characterMakers.push(() => makeCharacter(
  38186. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38187. {
  38188. front: {
  38189. height: math.unit(8, "feet"),
  38190. weight: math.unit(1200, "lb"),
  38191. name: "Front",
  38192. image: {
  38193. source: "./media/characters/malithee/front.svg",
  38194. extra: 1675/1640,
  38195. bottom: 162/1837
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Mortal Interaction",
  38202. height: math.unit(8, "feet"),
  38203. default: true
  38204. },
  38205. {
  38206. name: "Large",
  38207. height: math.unit(24, "feet")
  38208. },
  38209. {
  38210. name: "Kaiju",
  38211. height: math.unit(240, "feet")
  38212. },
  38213. {
  38214. name: "Megamacro",
  38215. height: math.unit(8000, "feet")
  38216. },
  38217. {
  38218. name: "Continent Cracker",
  38219. height: math.unit(24e6, "feet")
  38220. },
  38221. {
  38222. name: "Earth-Eclipsing",
  38223. height: math.unit(2.4e8, "feet")
  38224. },
  38225. {
  38226. name: "Sol-Swallowing",
  38227. height: math.unit(8e10, "feet")
  38228. },
  38229. {
  38230. name: "Galaxy Gulper",
  38231. height: math.unit(8, "galaxies")
  38232. },
  38233. {
  38234. name: "Light Universal",
  38235. height: math.unit(4, "universes")
  38236. },
  38237. {
  38238. name: "Universe Atoms",
  38239. height: math.unit(1.829e9, "universes")
  38240. },
  38241. {
  38242. name: "Light Multiversal",
  38243. height: math.unit(4, "multiverses")
  38244. },
  38245. {
  38246. name: "Multiverse Atoms",
  38247. height: math.unit(1.829e9, "multiverses")
  38248. },
  38249. {
  38250. name: "Nigh-Omnipresence",
  38251. height: math.unit(8e261, "multiverses")
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(10, "feet"),
  38260. weight: math.unit(1500, "lb"),
  38261. name: "Front",
  38262. image: {
  38263. source: "./media/characters/miles-thestia/front.svg",
  38264. extra: 1812/1727,
  38265. bottom: 86/1898
  38266. }
  38267. },
  38268. back: {
  38269. height: math.unit(10, "feet"),
  38270. weight: math.unit(1500, "lb"),
  38271. name: "Back",
  38272. image: {
  38273. source: "./media/characters/miles-thestia/back.svg",
  38274. extra: 1799/1690,
  38275. bottom: 47/1846
  38276. }
  38277. },
  38278. frontNsfw: {
  38279. height: math.unit(10, "feet"),
  38280. weight: math.unit(1500, "lb"),
  38281. name: "Front (NSFW)",
  38282. image: {
  38283. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38284. extra: 1812/1727,
  38285. bottom: 86/1898
  38286. }
  38287. },
  38288. },
  38289. [
  38290. {
  38291. name: "Mini-Macro",
  38292. height: math.unit(10, "feet"),
  38293. default: true
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38299. {
  38300. front: {
  38301. height: math.unit(25, "feet"),
  38302. name: "Front",
  38303. image: {
  38304. source: "./media/characters/titan-s-wulf/front.svg",
  38305. extra: 1560/1484,
  38306. bottom: 76/1636
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Smallest",
  38313. height: math.unit(25, "feet"),
  38314. default: true
  38315. },
  38316. {
  38317. name: "Normal",
  38318. height: math.unit(200, "feet")
  38319. },
  38320. {
  38321. name: "Macro",
  38322. height: math.unit(200000, "feet")
  38323. },
  38324. {
  38325. name: "Multiversal Original",
  38326. height: math.unit(10000, "multiverses")
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(8, "feet"),
  38335. weight: math.unit(553, "lb"),
  38336. name: "Front",
  38337. image: {
  38338. source: "./media/characters/tawendeh/front.svg",
  38339. extra: 2365/2268,
  38340. bottom: 83/2448
  38341. }
  38342. },
  38343. frontClothed: {
  38344. height: math.unit(8, "feet"),
  38345. weight: math.unit(553, "lb"),
  38346. name: "Front (Clothed)",
  38347. image: {
  38348. source: "./media/characters/tawendeh/front-clothed.svg",
  38349. extra: 2365/2268,
  38350. bottom: 83/2448
  38351. }
  38352. },
  38353. back: {
  38354. height: math.unit(8, "feet"),
  38355. weight: math.unit(553, "lb"),
  38356. name: "Back",
  38357. image: {
  38358. source: "./media/characters/tawendeh/back.svg",
  38359. extra: 2397/2294,
  38360. bottom: 42/2439
  38361. }
  38362. },
  38363. },
  38364. [
  38365. {
  38366. name: "Mortal Interaction",
  38367. height: math.unit(8, "feet"),
  38368. default: true
  38369. },
  38370. {
  38371. name: "Giant",
  38372. height: math.unit(80, "feet")
  38373. },
  38374. {
  38375. name: "Macro",
  38376. height: math.unit(800, "feet")
  38377. },
  38378. {
  38379. name: "Megamacro",
  38380. height: math.unit(8000, "feet")
  38381. },
  38382. {
  38383. name: "City-Crushing",
  38384. height: math.unit(24000, "feet")
  38385. },
  38386. {
  38387. name: "Mountain-Mashing",
  38388. height: math.unit(80000, "feet")
  38389. },
  38390. {
  38391. name: "Nation Nemesis",
  38392. height: math.unit(8e6, "feet")
  38393. },
  38394. {
  38395. name: "Continent Cracker",
  38396. height: math.unit(24e6, "feet")
  38397. },
  38398. {
  38399. name: "Earth-Eclipsing",
  38400. height: math.unit(2.4e8, "feet")
  38401. },
  38402. {
  38403. name: "Gas Giant Gulper",
  38404. height: math.unit(2.4e9, "feet")
  38405. },
  38406. {
  38407. name: "Sol-Swallowing",
  38408. height: math.unit(8e10, "feet")
  38409. },
  38410. {
  38411. name: "Galaxy Gulper",
  38412. height: math.unit(8, "galaxies")
  38413. },
  38414. {
  38415. name: "Cosmos Churner",
  38416. height: math.unit(8, "universes")
  38417. },
  38418. {
  38419. name: "Omnipotent Otter",
  38420. height: math.unit(80, "universes")
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38426. {
  38427. front: {
  38428. height: math.unit(2.6, "meters"),
  38429. weight: math.unit(900, "kg"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/neesha/front.svg",
  38433. extra: 1803/1653,
  38434. bottom: 128/1931
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(2.6, "meters"),
  38442. default: true
  38443. },
  38444. {
  38445. name: "Macro",
  38446. height: math.unit(50, "meters")
  38447. },
  38448. ]
  38449. ))
  38450. characterMakers.push(() => makeCharacter(
  38451. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38452. {
  38453. front: {
  38454. height: math.unit(5, "feet"),
  38455. weight: math.unit(185, "lb"),
  38456. name: "Front",
  38457. image: {
  38458. source: "./media/characters/kyera/front.svg",
  38459. extra: 1875/1790,
  38460. bottom: 96/1971
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Normal",
  38467. height: math.unit(5, "feet"),
  38468. default: true
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(7 + 6/12, "feet"),
  38477. weight: math.unit(540, "lb"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/yuko/front.svg",
  38481. extra: 1282/1222,
  38482. bottom: 101/1383
  38483. }
  38484. },
  38485. frontClothed: {
  38486. height: math.unit(7 + 6/12, "feet"),
  38487. weight: math.unit(540, "lb"),
  38488. name: "Front (Clothed)",
  38489. image: {
  38490. source: "./media/characters/yuko/front-clothed.svg",
  38491. extra: 1282/1222,
  38492. bottom: 101/1383
  38493. }
  38494. },
  38495. },
  38496. [
  38497. {
  38498. name: "Normal",
  38499. height: math.unit(7 + 6/12, "feet"),
  38500. default: true
  38501. },
  38502. {
  38503. name: "Macro",
  38504. height: math.unit(26 + 9/12, "feet")
  38505. },
  38506. {
  38507. name: "Megamacro",
  38508. height: math.unit(300, "feet")
  38509. },
  38510. {
  38511. name: "Gigamacro",
  38512. height: math.unit(5000, "feet")
  38513. },
  38514. {
  38515. name: "Planetary",
  38516. height: math.unit(10000, "miles")
  38517. },
  38518. ]
  38519. ))
  38520. characterMakers.push(() => makeCharacter(
  38521. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38522. {
  38523. front: {
  38524. height: math.unit(8 + 2/12, "feet"),
  38525. weight: math.unit(600, "lb"),
  38526. name: "Front",
  38527. image: {
  38528. source: "./media/characters/deam-nitrel/front.svg",
  38529. extra: 1308/1234,
  38530. bottom: 125/1433
  38531. }
  38532. },
  38533. },
  38534. [
  38535. {
  38536. name: "Normal",
  38537. height: math.unit(8 + 2/12, "feet"),
  38538. default: true
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38544. {
  38545. front: {
  38546. height: math.unit(6.1, "feet"),
  38547. weight: math.unit(180, "lb"),
  38548. name: "Front",
  38549. image: {
  38550. source: "./media/characters/skyress/front.svg",
  38551. extra: 1045/915,
  38552. bottom: 28/1073
  38553. }
  38554. },
  38555. maw: {
  38556. height: math.unit(1, "feet"),
  38557. name: "Maw",
  38558. image: {
  38559. source: "./media/characters/skyress/maw.svg"
  38560. }
  38561. },
  38562. },
  38563. [
  38564. {
  38565. name: "Normal",
  38566. height: math.unit(6.1, "feet"),
  38567. default: true
  38568. },
  38569. {
  38570. name: "Macro",
  38571. height: math.unit(200, "feet")
  38572. },
  38573. ]
  38574. ))
  38575. characterMakers.push(() => makeCharacter(
  38576. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38577. {
  38578. front: {
  38579. height: math.unit(4 + 2/12, "feet"),
  38580. weight: math.unit(40, "kg"),
  38581. name: "Front",
  38582. image: {
  38583. source: "./media/characters/amethyst-jones/front.svg",
  38584. extra: 1220/1150,
  38585. bottom: 101/1321
  38586. }
  38587. },
  38588. },
  38589. [
  38590. {
  38591. name: "Normal",
  38592. height: math.unit(4 + 2/12, "feet"),
  38593. default: true
  38594. },
  38595. ]
  38596. ))
  38597. characterMakers.push(() => makeCharacter(
  38598. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38599. {
  38600. front: {
  38601. height: math.unit(1.7, "m"),
  38602. weight: math.unit(135, "lb"),
  38603. name: "Front",
  38604. image: {
  38605. source: "./media/characters/jade/front.svg",
  38606. extra: 1818/1767,
  38607. bottom: 32/1850
  38608. }
  38609. },
  38610. back: {
  38611. height: math.unit(1.7, "m"),
  38612. weight: math.unit(135, "lb"),
  38613. name: "Back",
  38614. image: {
  38615. source: "./media/characters/jade/back.svg",
  38616. extra: 1869/1809,
  38617. bottom: 35/1904
  38618. }
  38619. },
  38620. hand: {
  38621. height: math.unit(0.24, "m"),
  38622. name: "Hand",
  38623. image: {
  38624. source: "./media/characters/jade/hand.svg"
  38625. }
  38626. },
  38627. foot: {
  38628. height: math.unit(0.263, "m"),
  38629. name: "Foot",
  38630. image: {
  38631. source: "./media/characters/jade/foot.svg"
  38632. }
  38633. },
  38634. dick: {
  38635. height: math.unit(0.47, "m"),
  38636. name: "Dick",
  38637. image: {
  38638. source: "./media/characters/jade/dick.svg"
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Micro",
  38645. height: math.unit(22, "cm")
  38646. },
  38647. {
  38648. name: "Normal",
  38649. height: math.unit(1.7, "m"),
  38650. default: true
  38651. },
  38652. {
  38653. name: "Macro",
  38654. height: math.unit(152, "m")
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38660. {
  38661. front: {
  38662. height: math.unit(100, "miles"),
  38663. weight: math.unit(20000, "tons"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/cookie/front.svg",
  38667. extra: 1125/1070,
  38668. bottom: 30/1155
  38669. }
  38670. },
  38671. },
  38672. [
  38673. {
  38674. name: "Big",
  38675. height: math.unit(50, "feet")
  38676. },
  38677. {
  38678. name: "Macro",
  38679. height: math.unit(100, "miles"),
  38680. default: true
  38681. },
  38682. {
  38683. name: "Megamacro",
  38684. height: math.unit(90000, "miles")
  38685. },
  38686. ]
  38687. ))
  38688. characterMakers.push(() => makeCharacter(
  38689. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38690. {
  38691. front: {
  38692. height: math.unit(6, "feet"),
  38693. weight: math.unit(145, "lb"),
  38694. name: "Front",
  38695. image: {
  38696. source: "./media/characters/farzian/front.svg",
  38697. extra: 1902/1693,
  38698. bottom: 108/2010
  38699. }
  38700. },
  38701. },
  38702. [
  38703. {
  38704. name: "Macro",
  38705. height: math.unit(500, "feet"),
  38706. default: true
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38712. {
  38713. front: {
  38714. height: math.unit(3 + 6/12, "feet"),
  38715. weight: math.unit(50, "lb"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/kimberly-tilson/front.svg",
  38719. extra: 1400/1322,
  38720. bottom: 36/1436
  38721. }
  38722. },
  38723. back: {
  38724. height: math.unit(3 + 6/12, "feet"),
  38725. weight: math.unit(50, "lb"),
  38726. name: "Back",
  38727. image: {
  38728. source: "./media/characters/kimberly-tilson/back.svg",
  38729. extra: 1370/1307,
  38730. bottom: 20/1390
  38731. }
  38732. },
  38733. },
  38734. [
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(3 + 6/12, "feet"),
  38738. default: true
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(1148, "feet"),
  38747. weight: math.unit(34057, "lb"),
  38748. name: "Front",
  38749. image: {
  38750. source: "./media/characters/harthos/front.svg",
  38751. extra: 1391/1339,
  38752. bottom: 13/1404
  38753. }
  38754. },
  38755. },
  38756. [
  38757. {
  38758. name: "Macro",
  38759. height: math.unit(1148, "feet"),
  38760. default: true
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(15, "feet"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/hypatia/front.svg",
  38772. extra: 1653/1591,
  38773. bottom: 79/1732
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(15, "feet")
  38781. },
  38782. {
  38783. name: "Small",
  38784. height: math.unit(300, "feet")
  38785. },
  38786. {
  38787. name: "Macro",
  38788. height: math.unit(2500, "feet"),
  38789. default: true
  38790. },
  38791. {
  38792. name: "Mega Macro",
  38793. height: math.unit(1500, "miles")
  38794. },
  38795. {
  38796. name: "Giga Macro",
  38797. height: math.unit(1.5e6, "miles")
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(6, "feet"),
  38806. weight: math.unit(200, "lb"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/wulver/front.svg",
  38810. extra: 1724/1632,
  38811. bottom: 130/1854
  38812. }
  38813. },
  38814. frontNsfw: {
  38815. height: math.unit(6, "feet"),
  38816. weight: math.unit(200, "lb"),
  38817. name: "Front (NSFW)",
  38818. image: {
  38819. source: "./media/characters/wulver/front-nsfw.svg",
  38820. extra: 1724/1632,
  38821. bottom: 130/1854
  38822. }
  38823. },
  38824. },
  38825. [
  38826. {
  38827. name: "Human-Sized",
  38828. height: math.unit(6, "feet")
  38829. },
  38830. {
  38831. name: "Normal",
  38832. height: math.unit(4, "meters"),
  38833. default: true
  38834. },
  38835. {
  38836. name: "Large",
  38837. height: math.unit(6, "m")
  38838. },
  38839. ]
  38840. ))
  38841. characterMakers.push(() => makeCharacter(
  38842. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38843. {
  38844. front: {
  38845. height: math.unit(7, "feet"),
  38846. name: "Front",
  38847. image: {
  38848. source: "./media/characters/maru/front.svg",
  38849. extra: 1595/1570,
  38850. bottom: 0/1595
  38851. }
  38852. },
  38853. },
  38854. [
  38855. {
  38856. name: "Normal",
  38857. height: math.unit(7, "feet"),
  38858. default: true
  38859. },
  38860. {
  38861. name: "Macro",
  38862. height: math.unit(700, "feet")
  38863. },
  38864. {
  38865. name: "Mega Macro",
  38866. height: math.unit(25, "miles")
  38867. },
  38868. ]
  38869. ))
  38870. characterMakers.push(() => makeCharacter(
  38871. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38872. {
  38873. front: {
  38874. height: math.unit(6, "feet"),
  38875. weight: math.unit(170, "lb"),
  38876. name: "Front",
  38877. image: {
  38878. source: "./media/characters/xenon/front.svg",
  38879. extra: 1376/1305,
  38880. bottom: 56/1432
  38881. }
  38882. },
  38883. back: {
  38884. height: math.unit(6, "feet"),
  38885. weight: math.unit(170, "lb"),
  38886. name: "Back",
  38887. image: {
  38888. source: "./media/characters/xenon/back.svg",
  38889. extra: 1328/1259,
  38890. bottom: 95/1423
  38891. }
  38892. },
  38893. maw: {
  38894. height: math.unit(0.52, "feet"),
  38895. name: "Maw",
  38896. image: {
  38897. source: "./media/characters/xenon/maw.svg"
  38898. }
  38899. },
  38900. hand: {
  38901. height: math.unit(0.82, "feet"),
  38902. name: "Hand",
  38903. image: {
  38904. source: "./media/characters/xenon/hand.svg"
  38905. }
  38906. },
  38907. foot: {
  38908. height: math.unit(1.13, "feet"),
  38909. name: "Foot",
  38910. image: {
  38911. source: "./media/characters/xenon/foot.svg"
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "Micro",
  38918. height: math.unit(0.8, "inches")
  38919. },
  38920. {
  38921. name: "Normal",
  38922. height: math.unit(6, "feet")
  38923. },
  38924. {
  38925. name: "Macro",
  38926. height: math.unit(50, "feet"),
  38927. default: true
  38928. },
  38929. {
  38930. name: "Macro+",
  38931. height: math.unit(250, "feet")
  38932. },
  38933. {
  38934. name: "Megamacro",
  38935. height: math.unit(1500, "feet")
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38941. {
  38942. front: {
  38943. height: math.unit(7 + 5/12, "feet"),
  38944. name: "Front",
  38945. image: {
  38946. source: "./media/characters/zane/front.svg",
  38947. extra: 1260/1203,
  38948. bottom: 94/1354
  38949. }
  38950. },
  38951. back: {
  38952. height: math.unit(5.05, "feet"),
  38953. name: "Back",
  38954. image: {
  38955. source: "./media/characters/zane/back.svg",
  38956. extra: 893/829,
  38957. bottom: 30/923
  38958. }
  38959. },
  38960. werewolf: {
  38961. height: math.unit(11, "feet"),
  38962. name: "Werewolf",
  38963. image: {
  38964. source: "./media/characters/zane/werewolf.svg",
  38965. extra: 1383/1323,
  38966. bottom: 89/1472
  38967. }
  38968. },
  38969. foot: {
  38970. height: math.unit(1.46, "feet"),
  38971. name: "Foot",
  38972. image: {
  38973. source: "./media/characters/zane/foot.svg"
  38974. }
  38975. },
  38976. footFront: {
  38977. height: math.unit(0.784, "feet"),
  38978. name: "Foot (Front)",
  38979. image: {
  38980. source: "./media/characters/zane/foot-front.svg"
  38981. }
  38982. },
  38983. dick: {
  38984. height: math.unit(1.95, "feet"),
  38985. name: "Dick",
  38986. image: {
  38987. source: "./media/characters/zane/dick.svg"
  38988. }
  38989. },
  38990. dickWerewolf: {
  38991. height: math.unit(3.77, "feet"),
  38992. name: "Dick (Werewolf)",
  38993. image: {
  38994. source: "./media/characters/zane/dick.svg"
  38995. }
  38996. },
  38997. },
  38998. [
  38999. {
  39000. name: "Normal",
  39001. height: math.unit(7 + 5/12, "feet"),
  39002. default: true
  39003. },
  39004. ]
  39005. ))
  39006. characterMakers.push(() => makeCharacter(
  39007. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39008. {
  39009. front: {
  39010. height: math.unit(6 + 2/12, "feet"),
  39011. weight: math.unit(284, "lb"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/benni-desparque/front.svg",
  39015. extra: 1353/1126,
  39016. bottom: 69/1422
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Civilian",
  39023. height: math.unit(6 + 2/12, "feet")
  39024. },
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(98, "feet"),
  39028. default: true
  39029. },
  39030. {
  39031. name: "Kaiju Fighter",
  39032. height: math.unit(268, "feet")
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39038. {
  39039. front: {
  39040. height: math.unit(5, "feet"),
  39041. weight: math.unit(105, "lb"),
  39042. name: "Front",
  39043. image: {
  39044. source: "./media/characters/maxine/front.svg",
  39045. extra: 1386/1250,
  39046. bottom: 71/1457
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(5, "feet"),
  39054. default: true
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39060. {
  39061. front: {
  39062. height: math.unit(11 + 7/12, "feet"),
  39063. weight: math.unit(9576, "lb"),
  39064. name: "Front",
  39065. image: {
  39066. source: "./media/characters/scaly/front.svg",
  39067. extra: 888/867,
  39068. bottom: 36/924
  39069. }
  39070. },
  39071. },
  39072. [
  39073. {
  39074. name: "Normal",
  39075. height: math.unit(11 + 7/12, "feet"),
  39076. default: true
  39077. },
  39078. ]
  39079. ))
  39080. characterMakers.push(() => makeCharacter(
  39081. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39082. {
  39083. front: {
  39084. height: math.unit(9, "inches"),
  39085. name: "Front",
  39086. image: {
  39087. source: "./media/characters/saelria/front.svg",
  39088. extra: 662/621,
  39089. bottom: 12/674
  39090. }
  39091. },
  39092. },
  39093. [
  39094. {
  39095. name: "Tiny",
  39096. height: math.unit(9, "inches"),
  39097. default: true
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(80, "meters"),
  39106. weight: math.unit(7000, "tonnes"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/tef/front.svg",
  39110. extra: 2036/1991,
  39111. bottom: 54/2090
  39112. }
  39113. },
  39114. back: {
  39115. height: math.unit(80, "meters"),
  39116. weight: math.unit(7000, "tonnes"),
  39117. name: "Back",
  39118. image: {
  39119. source: "./media/characters/tef/back.svg",
  39120. extra: 2036/1991,
  39121. bottom: 54/2090
  39122. }
  39123. },
  39124. },
  39125. [
  39126. {
  39127. name: "Macro",
  39128. height: math.unit(80, "meters"),
  39129. default: true
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(13, "feet"),
  39138. weight: math.unit(6, "tons"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/rover/front.svg",
  39142. extra: 1233/1156,
  39143. bottom: 50/1283
  39144. }
  39145. },
  39146. back: {
  39147. height: math.unit(13, "feet"),
  39148. weight: math.unit(6, "tons"),
  39149. name: "Back",
  39150. image: {
  39151. source: "./media/characters/rover/back.svg",
  39152. extra: 1327/1258,
  39153. bottom: 39/1366
  39154. }
  39155. },
  39156. },
  39157. [
  39158. {
  39159. name: "Normal",
  39160. height: math.unit(13, "feet"),
  39161. default: true
  39162. },
  39163. {
  39164. name: "Macro",
  39165. height: math.unit(1300, "feet")
  39166. },
  39167. {
  39168. name: "Megamacro",
  39169. height: math.unit(1300, "miles")
  39170. },
  39171. {
  39172. name: "Gigamacro",
  39173. height: math.unit(1300000, "miles")
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39179. {
  39180. front: {
  39181. height: math.unit(6, "feet"),
  39182. weight: math.unit(150, "lb"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/ariz/front.svg",
  39186. extra: 1401/1346,
  39187. bottom: 5/1406
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(10, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39201. {
  39202. front: {
  39203. height: math.unit(6, "feet"),
  39204. weight: math.unit(140, "lb"),
  39205. name: "Front",
  39206. image: {
  39207. source: "./media/characters/sigrun/front.svg",
  39208. extra: 1418/1359,
  39209. bottom: 27/1445
  39210. }
  39211. },
  39212. },
  39213. [
  39214. {
  39215. name: "Macro",
  39216. height: math.unit(35, "feet"),
  39217. default: true
  39218. },
  39219. ]
  39220. ))
  39221. characterMakers.push(() => makeCharacter(
  39222. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39223. {
  39224. front: {
  39225. height: math.unit(6, "feet"),
  39226. weight: math.unit(150, "lb"),
  39227. name: "Front",
  39228. image: {
  39229. source: "./media/characters/numin/front.svg",
  39230. extra: 1433/1388,
  39231. bottom: 12/1445
  39232. }
  39233. },
  39234. },
  39235. [
  39236. {
  39237. name: "Macro",
  39238. height: math.unit(21.5, "km"),
  39239. default: true
  39240. },
  39241. ]
  39242. ))
  39243. characterMakers.push(() => makeCharacter(
  39244. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39245. {
  39246. front: {
  39247. height: math.unit(6, "feet"),
  39248. weight: math.unit(463, "lb"),
  39249. name: "Front",
  39250. image: {
  39251. source: "./media/characters/melwa/front.svg",
  39252. extra: 1307/1248,
  39253. bottom: 93/1400
  39254. }
  39255. },
  39256. },
  39257. [
  39258. {
  39259. name: "Macro",
  39260. height: math.unit(50, "meters"),
  39261. default: true
  39262. },
  39263. ]
  39264. ))
  39265. characterMakers.push(() => makeCharacter(
  39266. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39267. {
  39268. front: {
  39269. height: math.unit(325, "feet"),
  39270. name: "Front",
  39271. image: {
  39272. source: "./media/characters/zorkaiju/front.svg",
  39273. extra: 1955/1814,
  39274. bottom: 40/1995
  39275. }
  39276. },
  39277. frontExtended: {
  39278. height: math.unit(325, "feet"),
  39279. name: "Front (Extended)",
  39280. image: {
  39281. source: "./media/characters/zorkaiju/front-extended.svg",
  39282. extra: 1955/1814,
  39283. bottom: 40/1995
  39284. }
  39285. },
  39286. side: {
  39287. height: math.unit(325, "feet"),
  39288. name: "Side",
  39289. image: {
  39290. source: "./media/characters/zorkaiju/side.svg",
  39291. extra: 1495/1396,
  39292. bottom: 17/1512
  39293. }
  39294. },
  39295. sideExtended: {
  39296. height: math.unit(325, "feet"),
  39297. name: "Side (Extended)",
  39298. image: {
  39299. source: "./media/characters/zorkaiju/side-extended.svg",
  39300. extra: 1495/1396,
  39301. bottom: 17/1512
  39302. }
  39303. },
  39304. back: {
  39305. height: math.unit(325, "feet"),
  39306. name: "Back",
  39307. image: {
  39308. source: "./media/characters/zorkaiju/back.svg",
  39309. extra: 1959/1821,
  39310. bottom: 31/1990
  39311. }
  39312. },
  39313. backExtended: {
  39314. height: math.unit(325, "feet"),
  39315. name: "Back (Extended)",
  39316. image: {
  39317. source: "./media/characters/zorkaiju/back-extended.svg",
  39318. extra: 1959/1821,
  39319. bottom: 31/1990
  39320. }
  39321. },
  39322. hand: {
  39323. height: math.unit(58.4, "feet"),
  39324. name: "Hand",
  39325. image: {
  39326. source: "./media/characters/zorkaiju/hand.svg"
  39327. }
  39328. },
  39329. handExtended: {
  39330. height: math.unit(61.4, "feet"),
  39331. name: "Hand (Extended)",
  39332. image: {
  39333. source: "./media/characters/zorkaiju/hand-extended.svg"
  39334. }
  39335. },
  39336. foot: {
  39337. height: math.unit(95, "feet"),
  39338. name: "Foot",
  39339. image: {
  39340. source: "./media/characters/zorkaiju/foot.svg"
  39341. }
  39342. },
  39343. leftArm: {
  39344. height: math.unit(59, "feet"),
  39345. name: "Left Arm",
  39346. image: {
  39347. source: "./media/characters/zorkaiju/left-arm.svg"
  39348. }
  39349. },
  39350. rightArm: {
  39351. height: math.unit(59, "feet"),
  39352. name: "Right Arm",
  39353. image: {
  39354. source: "./media/characters/zorkaiju/right-arm.svg"
  39355. }
  39356. },
  39357. tail: {
  39358. height: math.unit(104, "feet"),
  39359. name: "Tail",
  39360. image: {
  39361. source: "./media/characters/zorkaiju/tail.svg"
  39362. }
  39363. },
  39364. tailExtended: {
  39365. height: math.unit(104, "feet"),
  39366. name: "Tail (Extended)",
  39367. image: {
  39368. source: "./media/characters/zorkaiju/tail-extended.svg"
  39369. }
  39370. },
  39371. tailBottom: {
  39372. height: math.unit(104, "feet"),
  39373. name: "Tail Bottom",
  39374. image: {
  39375. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39376. }
  39377. },
  39378. crystal: {
  39379. height: math.unit(27.54, "feet"),
  39380. name: "Crystal",
  39381. image: {
  39382. source: "./media/characters/zorkaiju/crystal.svg"
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Kaiju",
  39389. height: math.unit(325, "feet"),
  39390. default: true
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39396. {
  39397. front: {
  39398. height: math.unit(6 + 1/12, "feet"),
  39399. weight: math.unit(115, "lb"),
  39400. name: "Front",
  39401. image: {
  39402. source: "./media/characters/bailey-belfry/front.svg",
  39403. extra: 1240/1121,
  39404. bottom: 101/1341
  39405. }
  39406. },
  39407. },
  39408. [
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(6 + 1/12, "feet"),
  39412. default: true
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39418. {
  39419. side: {
  39420. height: math.unit(4, "meters"),
  39421. weight: math.unit(250, "kg"),
  39422. name: "Side",
  39423. image: {
  39424. source: "./media/characters/blacky/side.svg",
  39425. extra: 1027/919,
  39426. bottom: 43/1070
  39427. }
  39428. },
  39429. maw: {
  39430. height: math.unit(1, "meters"),
  39431. name: "Maw",
  39432. image: {
  39433. source: "./media/characters/blacky/maw.svg"
  39434. }
  39435. },
  39436. paw: {
  39437. height: math.unit(1, "meters"),
  39438. name: "Paw",
  39439. image: {
  39440. source: "./media/characters/blacky/paw.svg"
  39441. }
  39442. },
  39443. },
  39444. [
  39445. {
  39446. name: "Normal",
  39447. height: math.unit(4, "meters"),
  39448. default: true
  39449. },
  39450. ]
  39451. ))
  39452. characterMakers.push(() => makeCharacter(
  39453. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39454. {
  39455. front: {
  39456. height: math.unit(170, "cm"),
  39457. weight: math.unit(66, "kg"),
  39458. name: "Front",
  39459. image: {
  39460. source: "./media/characters/thux-ei/front.svg",
  39461. extra: 1109/1011,
  39462. bottom: 8/1117
  39463. }
  39464. },
  39465. },
  39466. [
  39467. {
  39468. name: "Normal",
  39469. height: math.unit(170, "cm"),
  39470. default: true
  39471. },
  39472. ]
  39473. ))
  39474. characterMakers.push(() => makeCharacter(
  39475. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39476. {
  39477. front: {
  39478. height: math.unit(5, "feet"),
  39479. weight: math.unit(120, "lb"),
  39480. name: "Front",
  39481. image: {
  39482. source: "./media/characters/roxanne-voltaire/front.svg",
  39483. extra: 1901/1779,
  39484. bottom: 53/1954
  39485. }
  39486. },
  39487. },
  39488. [
  39489. {
  39490. name: "Normal",
  39491. height: math.unit(5, "feet"),
  39492. default: true
  39493. },
  39494. {
  39495. name: "Giant",
  39496. height: math.unit(50, "feet")
  39497. },
  39498. {
  39499. name: "Titan",
  39500. height: math.unit(500, "feet")
  39501. },
  39502. {
  39503. name: "Macro",
  39504. height: math.unit(5000, "feet")
  39505. },
  39506. {
  39507. name: "Megamacro",
  39508. height: math.unit(50000, "feet")
  39509. },
  39510. {
  39511. name: "Gigamacro",
  39512. height: math.unit(500000, "feet")
  39513. },
  39514. {
  39515. name: "Teramacro",
  39516. height: math.unit(5e6, "feet")
  39517. },
  39518. ]
  39519. ))
  39520. characterMakers.push(() => makeCharacter(
  39521. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39522. {
  39523. front: {
  39524. height: math.unit(6 + 2/12, "feet"),
  39525. name: "Front",
  39526. image: {
  39527. source: "./media/characters/squeaks/front.svg",
  39528. extra: 1823/1768,
  39529. bottom: 138/1961
  39530. }
  39531. },
  39532. },
  39533. [
  39534. {
  39535. name: "Micro",
  39536. height: math.unit(0.5, "inches")
  39537. },
  39538. {
  39539. name: "Normal",
  39540. height: math.unit(6 + 2/12, "feet"),
  39541. default: true
  39542. },
  39543. {
  39544. name: "Macro",
  39545. height: math.unit(600, "feet")
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39551. {
  39552. front: {
  39553. height: math.unit(1.72, "meters"),
  39554. name: "Front",
  39555. image: {
  39556. source: "./media/characters/archinger/front.svg",
  39557. extra: 1861/1675,
  39558. bottom: 125/1986
  39559. }
  39560. },
  39561. back: {
  39562. height: math.unit(1.72, "meters"),
  39563. name: "Back",
  39564. image: {
  39565. source: "./media/characters/archinger/back.svg",
  39566. extra: 1844/1701,
  39567. bottom: 104/1948
  39568. }
  39569. },
  39570. cock: {
  39571. height: math.unit(0.59, "feet"),
  39572. name: "Cock",
  39573. image: {
  39574. source: "./media/characters/archinger/cock.svg"
  39575. }
  39576. },
  39577. },
  39578. [
  39579. {
  39580. name: "Normal",
  39581. height: math.unit(1.72, "meters"),
  39582. default: true
  39583. },
  39584. {
  39585. name: "Macro",
  39586. height: math.unit(84, "meters")
  39587. },
  39588. {
  39589. name: "Macro+",
  39590. height: math.unit(112, "meters")
  39591. },
  39592. {
  39593. name: "Macro++",
  39594. height: math.unit(960, "meters")
  39595. },
  39596. {
  39597. name: "Macro+++",
  39598. height: math.unit(4, "km")
  39599. },
  39600. {
  39601. name: "Macro++++",
  39602. height: math.unit(48, "km")
  39603. },
  39604. {
  39605. name: "Macro+++++",
  39606. height: math.unit(4500, "km")
  39607. },
  39608. ]
  39609. ))
  39610. characterMakers.push(() => makeCharacter(
  39611. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39612. {
  39613. front: {
  39614. height: math.unit(5 + 5/12, "feet"),
  39615. name: "Front",
  39616. image: {
  39617. source: "./media/characters/alsnapz/front.svg",
  39618. extra: 1157/1065,
  39619. bottom: 42/1199
  39620. }
  39621. },
  39622. },
  39623. [
  39624. {
  39625. name: "Normal",
  39626. height: math.unit(5 + 5/12, "feet"),
  39627. default: true
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39633. {
  39634. side: {
  39635. height: math.unit(3.2, "earths"),
  39636. name: "Side",
  39637. image: {
  39638. source: "./media/characters/mag/side.svg",
  39639. extra: 1331/1008,
  39640. bottom: 52/1383
  39641. }
  39642. },
  39643. wing: {
  39644. height: math.unit(1.94, "earths"),
  39645. name: "Wing",
  39646. image: {
  39647. source: "./media/characters/mag/wing.svg"
  39648. }
  39649. },
  39650. dick: {
  39651. height: math.unit(1.8, "earths"),
  39652. name: "Dick",
  39653. image: {
  39654. source: "./media/characters/mag/dick.svg"
  39655. }
  39656. },
  39657. ass: {
  39658. height: math.unit(1.33, "earths"),
  39659. name: "Ass",
  39660. image: {
  39661. source: "./media/characters/mag/ass.svg"
  39662. }
  39663. },
  39664. head: {
  39665. height: math.unit(1.1, "earths"),
  39666. name: "Head",
  39667. image: {
  39668. source: "./media/characters/mag/head.svg"
  39669. }
  39670. },
  39671. maw: {
  39672. height: math.unit(1.62, "earths"),
  39673. name: "Maw",
  39674. image: {
  39675. source: "./media/characters/mag/maw.svg"
  39676. }
  39677. },
  39678. },
  39679. [
  39680. {
  39681. name: "Small",
  39682. height: math.unit(162, "feet")
  39683. },
  39684. {
  39685. name: "Normal",
  39686. height: math.unit(3.2, "earths"),
  39687. default: true
  39688. },
  39689. ]
  39690. ))
  39691. characterMakers.push(() => makeCharacter(
  39692. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39693. {
  39694. front: {
  39695. height: math.unit(512, "feet"),
  39696. weight: math.unit(63509, "tonnes"),
  39697. name: "Front",
  39698. image: {
  39699. source: "./media/characters/vorrel-harroc/front.svg",
  39700. extra: 1075/1063,
  39701. bottom: 62/1137
  39702. }
  39703. },
  39704. },
  39705. [
  39706. {
  39707. name: "Normal",
  39708. height: math.unit(10, "feet")
  39709. },
  39710. {
  39711. name: "Macro",
  39712. height: math.unit(512, "feet"),
  39713. default: true
  39714. },
  39715. {
  39716. name: "Megamacro",
  39717. height: math.unit(256, "miles")
  39718. },
  39719. {
  39720. name: "Gigamacro",
  39721. height: math.unit(4096, "miles")
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39727. {
  39728. side: {
  39729. height: math.unit(50, "feet"),
  39730. name: "Side",
  39731. image: {
  39732. source: "./media/characters/froimar/side.svg",
  39733. extra: 855/638,
  39734. bottom: 99/954
  39735. }
  39736. },
  39737. },
  39738. [
  39739. {
  39740. name: "Macro",
  39741. height: math.unit(50, "feet"),
  39742. default: true
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39748. {
  39749. front: {
  39750. height: math.unit(210, "miles"),
  39751. name: "Front",
  39752. image: {
  39753. source: "./media/characters/timothy/front.svg",
  39754. extra: 1007/943,
  39755. bottom: 62/1069
  39756. }
  39757. },
  39758. frontSkirt: {
  39759. height: math.unit(210, "miles"),
  39760. name: "Front (Skirt)",
  39761. image: {
  39762. source: "./media/characters/timothy/front-skirt.svg",
  39763. extra: 1007/943,
  39764. bottom: 62/1069
  39765. }
  39766. },
  39767. frontCoat: {
  39768. height: math.unit(210, "miles"),
  39769. name: "Front (Coat)",
  39770. image: {
  39771. source: "./media/characters/timothy/front-coat.svg",
  39772. extra: 1007/943,
  39773. bottom: 62/1069
  39774. }
  39775. },
  39776. },
  39777. [
  39778. {
  39779. name: "Macro",
  39780. height: math.unit(210, "miles"),
  39781. default: true
  39782. },
  39783. {
  39784. name: "Megamacro",
  39785. height: math.unit(210000, "miles")
  39786. },
  39787. ]
  39788. ))
  39789. characterMakers.push(() => makeCharacter(
  39790. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39791. {
  39792. front: {
  39793. height: math.unit(188, "feet"),
  39794. name: "Front",
  39795. image: {
  39796. source: "./media/characters/pyotr/front.svg",
  39797. extra: 1912/1826,
  39798. bottom: 18/1930
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Macro",
  39805. height: math.unit(188, "feet"),
  39806. default: true
  39807. },
  39808. {
  39809. name: "Megamacro",
  39810. height: math.unit(8, "miles")
  39811. },
  39812. ]
  39813. ))
  39814. characterMakers.push(() => makeCharacter(
  39815. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39816. {
  39817. side: {
  39818. height: math.unit(10, "feet"),
  39819. weight: math.unit(4500, "lb"),
  39820. name: "Side",
  39821. image: {
  39822. source: "./media/characters/ackart/side.svg",
  39823. extra: 1776/1668,
  39824. bottom: 116/1892
  39825. }
  39826. },
  39827. },
  39828. [
  39829. {
  39830. name: "Normal",
  39831. height: math.unit(10, "feet"),
  39832. default: true
  39833. },
  39834. ]
  39835. ))
  39836. characterMakers.push(() => makeCharacter(
  39837. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39838. {
  39839. side: {
  39840. height: math.unit(21, "feet"),
  39841. name: "Side",
  39842. image: {
  39843. source: "./media/characters/nolow/side.svg",
  39844. extra: 1484/1434,
  39845. bottom: 85/1569
  39846. }
  39847. },
  39848. sideErect: {
  39849. height: math.unit(21, "feet"),
  39850. name: "Side-erect",
  39851. image: {
  39852. source: "./media/characters/nolow/side-erect.svg",
  39853. extra: 1484/1434,
  39854. bottom: 85/1569
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Regular",
  39861. height: math.unit(12, "feet")
  39862. },
  39863. {
  39864. name: "Big Chee",
  39865. height: math.unit(21, "feet"),
  39866. default: true
  39867. },
  39868. ]
  39869. ))
  39870. characterMakers.push(() => makeCharacter(
  39871. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39872. {
  39873. front: {
  39874. height: math.unit(7, "feet"),
  39875. weight: math.unit(250, "lb"),
  39876. name: "Front",
  39877. image: {
  39878. source: "./media/characters/nines/front.svg",
  39879. extra: 1741/1607,
  39880. bottom: 41/1782
  39881. }
  39882. },
  39883. side: {
  39884. height: math.unit(7, "feet"),
  39885. weight: math.unit(250, "lb"),
  39886. name: "Side",
  39887. image: {
  39888. source: "./media/characters/nines/side.svg",
  39889. extra: 1854/1735,
  39890. bottom: 93/1947
  39891. }
  39892. },
  39893. back: {
  39894. height: math.unit(7, "feet"),
  39895. weight: math.unit(250, "lb"),
  39896. name: "Back",
  39897. image: {
  39898. source: "./media/characters/nines/back.svg",
  39899. extra: 1748/1615,
  39900. bottom: 20/1768
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Megamacro",
  39907. height: math.unit(99, "km"),
  39908. default: true
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39914. {
  39915. front: {
  39916. height: math.unit(5 + 10/12, "feet"),
  39917. weight: math.unit(210, "lb"),
  39918. name: "Front",
  39919. image: {
  39920. source: "./media/characters/zenith/front.svg",
  39921. extra: 1531/1452,
  39922. bottom: 198/1729
  39923. }
  39924. },
  39925. back: {
  39926. height: math.unit(5 + 10/12, "feet"),
  39927. weight: math.unit(210, "lb"),
  39928. name: "Back",
  39929. image: {
  39930. source: "./media/characters/zenith/back.svg",
  39931. extra: 1571/1487,
  39932. bottom: 75/1646
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(5 + 10/12, "feet"),
  39940. default: true
  39941. }
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(4, "feet"),
  39949. weight: math.unit(60, "lb"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/jasper/front.svg",
  39953. extra: 1450/1379,
  39954. bottom: 19/1469
  39955. }
  39956. },
  39957. },
  39958. [
  39959. {
  39960. name: "Normal",
  39961. height: math.unit(4, "feet"),
  39962. default: true
  39963. },
  39964. ]
  39965. ))
  39966. characterMakers.push(() => makeCharacter(
  39967. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39968. {
  39969. front: {
  39970. height: math.unit(6 + 5/12, "feet"),
  39971. weight: math.unit(290, "lb"),
  39972. name: "Front",
  39973. image: {
  39974. source: "./media/characters/tiberius-thyben/front.svg",
  39975. extra: 757/739,
  39976. bottom: 39/796
  39977. }
  39978. },
  39979. },
  39980. [
  39981. {
  39982. name: "Micro",
  39983. height: math.unit(1.5, "inches")
  39984. },
  39985. {
  39986. name: "Normal",
  39987. height: math.unit(6 + 5/12, "feet"),
  39988. default: true
  39989. },
  39990. {
  39991. name: "Macro",
  39992. height: math.unit(300, "feet")
  39993. },
  39994. ]
  39995. ))
  39996. characterMakers.push(() => makeCharacter(
  39997. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  39998. {
  39999. front: {
  40000. height: math.unit(5 + 6/12, "feet"),
  40001. weight: math.unit(60, "kg"),
  40002. name: "Front",
  40003. image: {
  40004. source: "./media/characters/sabre/front.svg",
  40005. extra: 738/671,
  40006. bottom: 27/765
  40007. }
  40008. },
  40009. },
  40010. [
  40011. {
  40012. name: "Teeny",
  40013. height: math.unit(2, "inches")
  40014. },
  40015. {
  40016. name: "Smol",
  40017. height: math.unit(8, "inches")
  40018. },
  40019. {
  40020. name: "Normal",
  40021. height: math.unit(5 + 6/12, "feet"),
  40022. default: true
  40023. },
  40024. {
  40025. name: "Mini-Macro",
  40026. height: math.unit(15, "feet")
  40027. },
  40028. {
  40029. name: "Macro",
  40030. height: math.unit(50, "feet")
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40036. {
  40037. front: {
  40038. height: math.unit(6 + 4/12, "feet"),
  40039. weight: math.unit(170, "lb"),
  40040. name: "Front",
  40041. image: {
  40042. source: "./media/characters/charlie/front.svg",
  40043. extra: 1348/1228,
  40044. bottom: 15/1363
  40045. }
  40046. },
  40047. },
  40048. [
  40049. {
  40050. name: "Macro",
  40051. height: math.unit(1700, "meters"),
  40052. default: true
  40053. },
  40054. {
  40055. name: "MegaMacro",
  40056. height: math.unit(20400, "meters")
  40057. },
  40058. ]
  40059. ))
  40060. characterMakers.push(() => makeCharacter(
  40061. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40062. {
  40063. front: {
  40064. height: math.unit(6 + 3/12, "feet"),
  40065. weight: math.unit(185, "lb"),
  40066. name: "Front",
  40067. image: {
  40068. source: "./media/characters/susan-grant/front.svg",
  40069. extra: 1351/1327,
  40070. bottom: 26/1377
  40071. }
  40072. },
  40073. },
  40074. [
  40075. {
  40076. name: "Normal",
  40077. height: math.unit(6 + 3/12, "feet"),
  40078. default: true
  40079. },
  40080. {
  40081. name: "Macro",
  40082. height: math.unit(225, "feet")
  40083. },
  40084. {
  40085. name: "Macro+",
  40086. height: math.unit(900, "feet")
  40087. },
  40088. {
  40089. name: "MegaMacro",
  40090. height: math.unit(14400, "feet")
  40091. },
  40092. ]
  40093. ))
  40094. characterMakers.push(() => makeCharacter(
  40095. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40096. {
  40097. front: {
  40098. height: math.unit(5 + 4/12, "feet"),
  40099. weight: math.unit(110, "lb"),
  40100. name: "Front",
  40101. image: {
  40102. source: "./media/characters/axel-isanov/front.svg",
  40103. extra: 1096/1065,
  40104. bottom: 13/1109
  40105. }
  40106. },
  40107. },
  40108. [
  40109. {
  40110. name: "Normal",
  40111. height: math.unit(5 + 4/12, "feet"),
  40112. default: true
  40113. },
  40114. ]
  40115. ))
  40116. characterMakers.push(() => makeCharacter(
  40117. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40118. {
  40119. front: {
  40120. height: math.unit(9, "feet"),
  40121. weight: math.unit(467, "lb"),
  40122. name: "Front",
  40123. image: {
  40124. source: "./media/characters/necahual/front.svg",
  40125. extra: 920/873,
  40126. bottom: 26/946
  40127. }
  40128. },
  40129. back: {
  40130. height: math.unit(9, "feet"),
  40131. weight: math.unit(467, "lb"),
  40132. name: "Back",
  40133. image: {
  40134. source: "./media/characters/necahual/back.svg",
  40135. extra: 930/884,
  40136. bottom: 16/946
  40137. }
  40138. },
  40139. frontUnderwear: {
  40140. height: math.unit(9, "feet"),
  40141. weight: math.unit(467, "lb"),
  40142. name: "Front (Underwear)",
  40143. image: {
  40144. source: "./media/characters/necahual/front-underwear.svg",
  40145. extra: 920/873,
  40146. bottom: 26/946
  40147. }
  40148. },
  40149. frontDressed: {
  40150. height: math.unit(9, "feet"),
  40151. weight: math.unit(467, "lb"),
  40152. name: "Front (Dressed)",
  40153. image: {
  40154. source: "./media/characters/necahual/front-dressed.svg",
  40155. extra: 920/873,
  40156. bottom: 26/946
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Comprsesed",
  40163. height: math.unit(9, "feet")
  40164. },
  40165. {
  40166. name: "Natural",
  40167. height: math.unit(15, "feet"),
  40168. default: true
  40169. },
  40170. {
  40171. name: "Boosted",
  40172. height: math.unit(50, "feet")
  40173. },
  40174. {
  40175. name: "Boosted+",
  40176. height: math.unit(150, "feet")
  40177. },
  40178. {
  40179. name: "Max",
  40180. height: math.unit(500, "feet")
  40181. },
  40182. ]
  40183. ))
  40184. characterMakers.push(() => makeCharacter(
  40185. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40186. {
  40187. front: {
  40188. height: math.unit(22 + 1/12, "feet"),
  40189. weight: math.unit(3200, "lb"),
  40190. name: "Front",
  40191. image: {
  40192. source: "./media/characters/theo-acacia/front.svg",
  40193. extra: 1796/1741,
  40194. bottom: 83/1879
  40195. }
  40196. },
  40197. frontUnderwear: {
  40198. height: math.unit(22 + 1/12, "feet"),
  40199. weight: math.unit(3200, "lb"),
  40200. name: "Front (Underwear)",
  40201. image: {
  40202. source: "./media/characters/theo-acacia/front-underwear.svg",
  40203. extra: 1796/1741,
  40204. bottom: 83/1879
  40205. }
  40206. },
  40207. frontNude: {
  40208. height: math.unit(22 + 1/12, "feet"),
  40209. weight: math.unit(3200, "lb"),
  40210. name: "Front (Nude)",
  40211. image: {
  40212. source: "./media/characters/theo-acacia/front-nude.svg",
  40213. extra: 1796/1741,
  40214. bottom: 83/1879
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Normal",
  40221. height: math.unit(22 + 1/12, "feet"),
  40222. default: true
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(20, "feet"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/astra/front.svg",
  40234. extra: 1850/1714,
  40235. bottom: 106/1956
  40236. }
  40237. },
  40238. frontUndressed: {
  40239. height: math.unit(20, "feet"),
  40240. name: "Front (Undressed)",
  40241. image: {
  40242. source: "./media/characters/astra/front-undressed.svg",
  40243. extra: 1926/1749,
  40244. bottom: 0/1926
  40245. }
  40246. },
  40247. hand: {
  40248. height: math.unit(1.53, "feet"),
  40249. name: "Hand",
  40250. image: {
  40251. source: "./media/characters/astra/hand.svg"
  40252. }
  40253. },
  40254. paw: {
  40255. height: math.unit(1.53, "feet"),
  40256. name: "Paw",
  40257. image: {
  40258. source: "./media/characters/astra/paw.svg"
  40259. }
  40260. },
  40261. },
  40262. [
  40263. {
  40264. name: "Smallest",
  40265. height: math.unit(20, "feet")
  40266. },
  40267. {
  40268. name: "Normal",
  40269. height: math.unit(1e9, "miles"),
  40270. default: true
  40271. },
  40272. {
  40273. name: "Larger",
  40274. height: math.unit(5, "multiverses")
  40275. },
  40276. {
  40277. name: "Largest",
  40278. height: math.unit(1e9, "multiverses")
  40279. },
  40280. ]
  40281. ))
  40282. characterMakers.push(() => makeCharacter(
  40283. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40284. {
  40285. front: {
  40286. height: math.unit(8, "feet"),
  40287. name: "Front",
  40288. image: {
  40289. source: "./media/characters/breanna/front.svg",
  40290. extra: 1912/1632,
  40291. bottom: 33/1945
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Smallest",
  40298. height: math.unit(8, "feet")
  40299. },
  40300. {
  40301. name: "Normal",
  40302. height: math.unit(1, "mile"),
  40303. default: true
  40304. },
  40305. {
  40306. name: "Maximum",
  40307. height: math.unit(1500000000000, "lightyears")
  40308. },
  40309. ]
  40310. ))
  40311. characterMakers.push(() => makeCharacter(
  40312. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40313. {
  40314. front: {
  40315. height: math.unit(5 + 11/12, "feet"),
  40316. weight: math.unit(155, "lb"),
  40317. name: "Front",
  40318. image: {
  40319. source: "./media/characters/cai/front.svg",
  40320. extra: 1823/1702,
  40321. bottom: 32/1855
  40322. }
  40323. },
  40324. back: {
  40325. height: math.unit(5 + 11/12, "feet"),
  40326. weight: math.unit(155, "lb"),
  40327. name: "Back",
  40328. image: {
  40329. source: "./media/characters/cai/back.svg",
  40330. extra: 1809/1708,
  40331. bottom: 31/1840
  40332. }
  40333. },
  40334. },
  40335. [
  40336. {
  40337. name: "Normal",
  40338. height: math.unit(5 + 11/12, "feet"),
  40339. default: true
  40340. },
  40341. {
  40342. name: "Big",
  40343. height: math.unit(15, "feet")
  40344. },
  40345. {
  40346. name: "Macro",
  40347. height: math.unit(200, "feet")
  40348. },
  40349. ]
  40350. ))
  40351. characterMakers.push(() => makeCharacter(
  40352. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40353. {
  40354. front: {
  40355. height: math.unit(5 + 6/12, "feet"),
  40356. weight: math.unit(160, "lb"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40360. extra: 1227/1174,
  40361. bottom: 37/1264
  40362. }
  40363. },
  40364. },
  40365. [
  40366. {
  40367. name: "Macro",
  40368. height: math.unit(444, "meters"),
  40369. default: true
  40370. },
  40371. ]
  40372. ))
  40373. characterMakers.push(() => makeCharacter(
  40374. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40375. {
  40376. front: {
  40377. height: math.unit(18 + 7/12, "feet"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/rex/front.svg",
  40381. extra: 1941/1807,
  40382. bottom: 66/2007
  40383. }
  40384. },
  40385. back: {
  40386. height: math.unit(18 + 7/12, "feet"),
  40387. name: "Back",
  40388. image: {
  40389. source: "./media/characters/rex/back.svg",
  40390. extra: 1937/1822,
  40391. bottom: 42/1979
  40392. }
  40393. },
  40394. boot: {
  40395. height: math.unit(3.45, "feet"),
  40396. name: "Boot",
  40397. image: {
  40398. source: "./media/characters/rex/boot.svg"
  40399. }
  40400. },
  40401. paw: {
  40402. height: math.unit(4.17, "feet"),
  40403. name: "Paw",
  40404. image: {
  40405. source: "./media/characters/rex/paw.svg"
  40406. }
  40407. },
  40408. head: {
  40409. height: math.unit(6.728, "feet"),
  40410. name: "Head",
  40411. image: {
  40412. source: "./media/characters/rex/head.svg"
  40413. }
  40414. },
  40415. },
  40416. [
  40417. {
  40418. name: "Nano",
  40419. height: math.unit(18 + 7/12, "feet")
  40420. },
  40421. {
  40422. name: "Micro",
  40423. height: math.unit(1.5, "megameters")
  40424. },
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(440, "megameters"),
  40428. default: true
  40429. },
  40430. {
  40431. name: "Macro",
  40432. height: math.unit(2.5, "gigameters")
  40433. },
  40434. {
  40435. name: "Gigamacro",
  40436. height: math.unit(2, "galaxies")
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40442. {
  40443. side: {
  40444. height: math.unit(32, "feet"),
  40445. weight: math.unit(250000, "lb"),
  40446. name: "Side",
  40447. image: {
  40448. source: "./media/characters/silverwing/side.svg",
  40449. extra: 1100/1019,
  40450. bottom: 204/1304
  40451. }
  40452. },
  40453. },
  40454. [
  40455. {
  40456. name: "Normal",
  40457. height: math.unit(32, "feet"),
  40458. default: true
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(6 + 6/12, "feet"),
  40467. weight: math.unit(350, "lb"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/tristan-hawthorne/front.svg",
  40471. extra: 1159/1124,
  40472. bottom: 37/1196
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Normal",
  40479. height: math.unit(6 + 6/12, "feet"),
  40480. default: true
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(5 + 11/12, "feet"),
  40489. weight: math.unit(190, "lb"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/mizu/front.svg",
  40493. extra: 1988/1788,
  40494. bottom: 14/2002
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Normal",
  40501. height: math.unit(5 + 11/12, "feet"),
  40502. default: true
  40503. },
  40504. ]
  40505. ))
  40506. //characters
  40507. function makeCharacters() {
  40508. const results = [];
  40509. characterMakers.forEach(character => {
  40510. results.push(character());
  40511. });
  40512. return results;
  40513. }